Robot.Hotfix.csproj 3.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net6.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="..\..\Server\Hotfix\Demo\Session\InnerMessageDispatcherHelper.cs">
  23. <Link>Server\Session\InnerMessageDispatcherHelper.cs</Link>
  24. </Compile>
  25. <Compile Include="..\..\Server\Hotfix\Demo\Session\SessionStreamDispatcherServerInner.cs">
  26. <Link>Server\Session\SessionStreamDispatcherServerInner.cs</Link>
  27. </Compile>
  28. <Compile Include="..\..\Unity\Codes\Hotfix\Module\AI\**\*.cs">
  29. <Link>Module\AI\%(RecursiveDir)%(FileName)%(Extension)</Link>
  30. </Compile>
  31. <Compile Include="..\..\Unity\Codes\Hotfix\Module\Message\**\*.cs">
  32. <Link>Module\Message\%(RecursiveDir)%(FileName)%(Extension)</Link>
  33. </Compile>
  34. <Compile Include="..\..\Unity\Codes\Hotfix\Module\MessageOuter\**\*.cs">
  35. <Link>Module\MessageOuter\%(RecursiveDir)%(FileName)%(Extension)</Link>
  36. </Compile>
  37. <Compile Include="..\..\Unity\Codes\Hotfix\Module\Numeric\**\*.cs">
  38. <Link>Module\Numeric\%(RecursiveDir)%(FileName)%(Extension)</Link>
  39. </Compile>
  40. <Compile Include="..\..\Server\Hotfix\Module\Actor\**\*.cs">
  41. <Link>Module\Actor\%(RecursiveDir)%(FileName)%(Extension)</Link>
  42. </Compile>
  43. <Compile Include="..\..\Server\Hotfix\Module\Message\**\*.cs">
  44. <Link>Module\Message\%(RecursiveDir)%(FileName)%(Extension)</Link>
  45. </Compile>
  46. <Compile Include="..\..\Server\Hotfix\Module\MessageInner\**\*.cs">
  47. <Link>Module\MessageInner\%(RecursiveDir)%(FileName)%(Extension)</Link>
  48. </Compile>
  49. <Compile Include="..\..\Server\Hotfix\Module\NetworkTCP\**\*.cs">
  50. <Link>Module\NetworkTCP\%(RecursiveDir)%(FileName)%(Extension)</Link>
  51. </Compile>
  52. <Compile Include="..\..\Unity\Codes\Hotfix\Demo\**\*.cs">
  53. <Link>Demo\%(RecursiveDir)%(FileName)%(Extension)</Link>
  54. </Compile>
  55. <Compile Include="..\..\Unity\Codes\Hotfix\Module\Config\**\*.cs">
  56. <Link>Module\Config\%(RecursiveDir)%(FileName)%(Extension)</Link>
  57. </Compile>
  58. <Compile Include="..\..\Unity\Codes\Hotfix\Module\Ping\**\*.cs">
  59. <Link>Module\Ping\%(RecursiveDir)%(FileName)%(Extension)</Link>
  60. </Compile>
  61. <Compile Include="..\..\Server\Hotfix\Module\Console\**\*.cs">
  62. <Link>Module\Console\%(RecursiveDir)%(FileName)%(Extension)</Link>
  63. </Compile>
  64. <Compile Include="..\..\Server\Hotfix\Config\**\*.cs">
  65. <Link>Config\%(RecursiveDir)%(FileName)%(Extension)</Link>
  66. </Compile>
  67. </ItemGroup>
  68. <ItemGroup>
  69. <Folder Include="Server" />
  70. </ItemGroup>
  71. </Project>