Robot.Hotfix.csproj 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net5.0</TargetFramework>
  4. <RootNamespace>ET</RootNamespace>
  5. </PropertyGroup>
  6. <PropertyGroup>
  7. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  8. <SatelliteResourceLanguages>en</SatelliteResourceLanguages>
  9. </PropertyGroup>
  10. <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
  11. <OutputPath>../../Bin/</OutputPath>
  12. <DefineConstants>TRACECOREAPP;NOT_UNITY</DefineConstants>
  13. </PropertyGroup>
  14. <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
  15. <OutputPath>../../Bin/</OutputPath>
  16. <DefineConstants>TRACECOREAPP;NOT_UNITY</DefineConstants>
  17. </PropertyGroup>
  18. <ItemGroup>
  19. <ProjectReference Include="..\Model\Robot.Model.csproj" />
  20. </ItemGroup>
  21. <ItemGroup>
  22. <Compile Include="..\..\Unity\Assets\Hotfix\Module\AI\**\*.cs">
  23. <Link>Module\AI\%(RecursiveDir)%(FileName)%(Extension)</Link>
  24. </Compile>
  25. <Compile Include="..\..\Unity\Assets\Hotfix\Module\Message\**\*.cs">
  26. <Link>Module\Message\%(RecursiveDir)%(FileName)%(Extension)</Link>
  27. </Compile>
  28. <Compile Include="..\..\Unity\Assets\Hotfix\Module\MessageOuter\**\*.cs">
  29. <Link>Module\MessageOuter\%(RecursiveDir)%(FileName)%(Extension)</Link>
  30. </Compile>
  31. <Compile Include="..\..\Unity\Assets\Hotfix\Module\Numeric\**\*.cs">
  32. <Link>Module\Numeric\%(RecursiveDir)%(FileName)%(Extension)</Link>
  33. </Compile>
  34. <Compile Include="..\..\Server\Hotfix\Module\Actor\**\*.cs">
  35. <Link>Module\Actor\%(RecursiveDir)%(FileName)%(Extension)</Link>
  36. </Compile>
  37. <Compile Include="..\..\Server\Hotfix\Module\Message\**\*.cs">
  38. <Link>Module\Message\%(RecursiveDir)%(FileName)%(Extension)</Link>
  39. </Compile>
  40. <Compile Include="..\..\Server\Hotfix\Module\NetworkTCP\**\*.cs">
  41. <Link>Module\NetworkTCP\%(RecursiveDir)%(FileName)%(Extension)</Link>
  42. </Compile>
  43. <Compile Include="..\..\Unity\Assets\Hotfix\Demo\**\*.cs">
  44. <Link>Demo\%(RecursiveDir)%(FileName)%(Extension)</Link>
  45. </Compile>
  46. </ItemGroup>
  47. <ItemGroup>
  48. <Folder Include="Robot" />
  49. </ItemGroup>
  50. </Project>