| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net5.0</TargetFramework>
- <RootNamespace>ET</RootNamespace>
- </PropertyGroup>
- <PropertyGroup>
- <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
- <SatelliteResourceLanguages>en</SatelliteResourceLanguages>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
- <OutputPath>../../Bin/</OutputPath>
- <DefineConstants>TRACECOREAPP;NOT_UNITY</DefineConstants>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
- <OutputPath>../../Bin/</OutputPath>
- <DefineConstants>TRACECOREAPP;NOT_UNITY</DefineConstants>
- </PropertyGroup>
- <ItemGroup>
- <ProjectReference Include="..\Model\Robot.Model.csproj" />
- </ItemGroup>
-
- <ItemGroup>
- <Compile Include="..\..\Unity\Assets\Hotfix\Module\AI\**\*.cs">
- <Link>Module\AI\%(RecursiveDir)%(FileName)%(Extension)</Link>
- </Compile>
- <Compile Include="..\..\Unity\Assets\Hotfix\Module\Message\**\*.cs">
- <Link>Module\Message\%(RecursiveDir)%(FileName)%(Extension)</Link>
- </Compile>
- <Compile Include="..\..\Unity\Assets\Hotfix\Module\MessageOuter\**\*.cs">
- <Link>Module\MessageOuter\%(RecursiveDir)%(FileName)%(Extension)</Link>
- </Compile>
- <Compile Include="..\..\Unity\Assets\Hotfix\Module\Numeric\**\*.cs">
- <Link>Module\Numeric\%(RecursiveDir)%(FileName)%(Extension)</Link>
- </Compile>
- <Compile Include="..\..\Server\Hotfix\Module\Actor\**\*.cs">
- <Link>Module\Actor\%(RecursiveDir)%(FileName)%(Extension)</Link>
- </Compile>
- <Compile Include="..\..\Server\Hotfix\Module\Message\**\*.cs">
- <Link>Module\Message\%(RecursiveDir)%(FileName)%(Extension)</Link>
- </Compile>
- <Compile Include="..\..\Server\Hotfix\Module\NetworkTCP\**\*.cs">
- <Link>Module\NetworkTCP\%(RecursiveDir)%(FileName)%(Extension)</Link>
- </Compile>
- <Compile Include="..\..\Unity\Assets\Hotfix\Demo\**\*.cs">
- <Link>Demo\%(RecursiveDir)%(FileName)%(Extension)</Link>
- </Compile>
- </ItemGroup>
-
- <ItemGroup>
- <Folder Include="Robot" />
- </ItemGroup>
- </Project>
|