Server.Model.csproj 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net6.0</TargetFramework>
  4. <RootNamespace>ET</RootNamespace>
  5. <LangVersion>8</LangVersion>
  6. </PropertyGroup>
  7. <PropertyGroup>
  8. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  9. <SatelliteResourceLanguages>en</SatelliteResourceLanguages>
  10. </PropertyGroup>
  11. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  12. <DefineConstants>TRACE2_0;NOT_UNITY;SERVER</DefineConstants>
  13. <OutputPath>..\..\Bin\</OutputPath>
  14. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  15. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  16. </PropertyGroup>
  17. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  18. <DefineConstants>TRACE2_0;SERVER;NOT_UNITY</DefineConstants>
  19. <OutputPath>..\..\Bin\</OutputPath>
  20. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  21. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  22. </PropertyGroup>
  23. <ItemGroup>
  24. <Compile Include="..\..\Unity\Codes\Model\Core\**\*.cs">
  25. <Link>Core\%(RecursiveDir)%(FileName)%(Extension)</Link>
  26. </Compile>
  27. <Compile Include="..\..\Unity\Codes\Model\Demo\SessionStreamDispatcherType.cs">
  28. <Link>Demo\SessionStreamDispatcherType.cs</Link>
  29. </Compile>
  30. <Compile Include="..\..\Unity\Assets\Mono\Core\**\*.cs">
  31. <Link>Core\%(RecursiveDir)%(FileName)%(Extension)</Link>
  32. </Compile>
  33. <Compile Include="..\..\Unity\Codes\Model\Demo\Move\MoveComponent.cs">
  34. <Link>Demo\Move\MoveComponent.cs</Link>
  35. </Compile>
  36. <Compile Include="..\..\Unity\Codes\Model\Demo\TimerType.cs">
  37. <Link>Demo\TimerType.cs</Link>
  38. </Compile>
  39. <Compile Include="..\..\Unity\Codes\Model\Module\Config\**\*.cs">
  40. <Link>Module\Config\%(RecursiveDir)%(FileName)%(Extension)</Link>
  41. </Compile>
  42. <Compile Include="..\..\Unity\Codes\Model\Module\AI\**\*.cs">
  43. <Link>Module\AI\%(RecursiveDir)%(FileName)%(Extension)</Link>
  44. </Compile>
  45. <Compile Include="..\..\Unity\Codes\Model\Module\CoroutineLock\**\*.cs">
  46. <Link>Module\CoroutineLock\%(RecursiveDir)%(FileName)%(Extension)</Link>
  47. </Compile>
  48. <Compile Remove="Libs\**" />
  49. <Compile Include="..\..\Unity\Codes\Model\Module\ActorLocation\ActorResponse.cs">
  50. <Link>Module\ActorLocation\ActorResponse.cs</Link>
  51. </Compile>
  52. <Compile Include="..\..\Unity\Codes\Model\Module\ActorLocation\IActorLocationMessage.cs">
  53. <Link>Module\ActorLocation\IActorLocationMessage.cs</Link>
  54. </Compile>
  55. <Compile Include="..\..\Unity\Codes\Model\Module\Actor\IActorMessage.cs">
  56. <Link>Module\Actor\IActorMessage.cs</Link>
  57. </Compile>
  58. </ItemGroup>
  59. <ItemGroup>
  60. <Compile Include="..\..\Unity\Assets\Mono\Module\NetworkTCP\**\*.cs">
  61. <Link>Module\NetworkTCP\%(RecursiveDir)%(FileName)%(Extension)</Link>
  62. </Compile>
  63. <Compile Include="..\..\Unity\Codes\Model\Module\Numeric\INumericWatcher.cs">
  64. <Link>Module\Numeric\INumericWatcher.cs</Link>
  65. </Compile>
  66. <Compile Include="..\..\Unity\Codes\Model\Module\Numeric\NumericComponent.cs">
  67. <Link>Module\Numeric\NumericComponent.cs</Link>
  68. </Compile>
  69. <Compile Include="..\..\Unity\Codes\Model\Module\Numeric\NumericType.cs">
  70. <Link>Module\Numeric\NumericType.cs</Link>
  71. </Compile>
  72. <Compile Include="..\..\Unity\Codes\Model\Module\Numeric\NumericWatcherAttribute.cs">
  73. <Link>Module\Numeric\NumericWatcherAttribute.cs</Link>
  74. </Compile>
  75. <Compile Include="..\..\Unity\Codes\Model\Module\Numeric\NumericWatcherComponent.cs">
  76. <Link>Module\Numeric\NumericWatcherComponent.cs</Link>
  77. </Compile>
  78. </ItemGroup>
  79. <ItemGroup>
  80. <Compile Include="..\..\Unity\Assets\Mono\Module\Network\**\*.cs">
  81. <Link>Module\Network\%(RecursiveDir)%(FileName)%(Extension)</Link>
  82. </Compile>
  83. <Compile Include="..\..\Unity\Codes\Model\Module\Message\**\*.cs">
  84. <Link>Module\Message\%(RecursiveDir)%(FileName)%(Extension)</Link>
  85. </Compile>
  86. <Compile Include="..\..\Unity\Assets\Mono\Module\Message\**\*.cs">
  87. <Link>Module\Message\%(RecursiveDir)%(FileName)%(Extension)</Link>
  88. </Compile>
  89. </ItemGroup>
  90. <ItemGroup>
  91. <ProjectReference Include="..\..\ThirdParty\ETTask\ETTask.csproj" />
  92. <ProjectReference Include="..\..\ThirdParty\ShareLib\ShareLib.csproj" />
  93. <ProjectReference Include="..\..\ThirdParty\UnityEngine\UnityEngine.csproj" />
  94. </ItemGroup>
  95. </Project>