Robot.Hotfix.csproj 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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. <Compile Include="..\..\Unity\Assets\Hotfix\Module\Config\**\*.cs">
  47. <Link>Module\Config\%(RecursiveDir)%(FileName)%(Extension)</Link>
  48. </Compile>
  49. <Compile Include="..\..\Server\Hotfix\Module\Console\**\*.cs">
  50. <Link>Module\Console\%(RecursiveDir)%(FileName)%(Extension)</Link>
  51. </Compile>
  52. <Compile Include="..\..\Server\Hotfix\Config\**\*.cs">
  53. <Link>Config\%(RecursiveDir)%(FileName)%(Extension)</Link>
  54. </Compile>
  55. </ItemGroup>
  56. <ItemGroup>
  57. <Folder Include="..\..\Server\Hotfix\Helper">
  58. <Link>Helper</Link>
  59. </Folder>
  60. </ItemGroup>
  61. </Project>