Apps.Model.csproj 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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\Module\Recast\**\*.cs">
  28. <Link>Module\Recast\%(RecursiveDir)%(FileName)%(Extension)</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\Module\Config\**\*.cs">
  34. <Link>Module\Config\%(RecursiveDir)%(FileName)%(Extension)</Link>
  35. </Compile>
  36. <Compile Include="..\..\Unity\Codes\Model\Module\AI\**\*.cs">
  37. <Link>Module\AI\%(RecursiveDir)%(FileName)%(Extension)</Link>
  38. </Compile>
  39. <Compile Include="..\..\Unity\Codes\Model\Module\CoroutineLock\**\*.cs">
  40. <Link>Module\CoroutineLock\%(RecursiveDir)%(FileName)%(Extension)</Link>
  41. </Compile>
  42. <Compile Remove="Libs\**" />
  43. <Compile Remove="..\..\Unity\Codes\Model\Share\**" />
  44. </ItemGroup>
  45. <ItemGroup>
  46. <Compile Include="..\..\Unity\Codes\Model\Module\Actor\**\*.cs">
  47. <Link>Module\Actor\%(RecursiveDir)%(FileName)%(Extension)</Link>
  48. </Compile>
  49. <Compile Include="..\..\Unity\Codes\Model\Module\ActorLocation\**\*.cs">
  50. <Link>Module\ActorLocation\%(RecursiveDir)%(FileName)%(Extension)</Link>
  51. </Compile>
  52. <Compile Include="..\..\Unity\Assets\Mono\Module\NetworkTCP\**\*.cs">
  53. <Link>Module\NetworkTCP\%(RecursiveDir)%(FileName)%(Extension)</Link>
  54. </Compile>
  55. <Compile Include="..\..\Unity\Codes\Model\Module\Numeric\**\*.cs">
  56. <Link>Module\Numeric\%(RecursiveDir)%(FileName)%(Extension)</Link>
  57. </Compile>
  58. <Compile Include="..\..\Unity\Assets\Mono\Module\Network\**\*.cs">
  59. <Link>Module\Network\%(RecursiveDir)%(FileName)%(Extension)</Link>
  60. </Compile>
  61. <Compile Include="..\..\Unity\Codes\Model\Module\Message\**\*.cs">
  62. <Link>Module\Message\%(RecursiveDir)%(FileName)%(Extension)</Link>
  63. </Compile>
  64. <Compile Include="..\..\Unity\Assets\Mono\Module\Message\**\*.cs">
  65. <Link>Module\Message\%(RecursiveDir)%(FileName)%(Extension)</Link>
  66. </Compile>
  67. <Compile Include="..\..\Unity\Codes\Model\Client\**\*.cs">
  68. <Link>Client\%(RecursiveDir)%(FileName)%(Extension)</Link>
  69. </Compile>
  70. <Compile Include="..\..\Unity\Codes\Model\Share\**\*.cs">
  71. <Link>Share\%(RecursiveDir)%(FileName)%(Extension)</Link>
  72. </Compile>
  73. </ItemGroup>
  74. <ItemGroup>
  75. <ProjectReference Include="..\..\ThirdParty\ETTask\ETTask.csproj" />
  76. <ProjectReference Include="..\..\ThirdParty\ShareLib\ShareLib.csproj" />
  77. <ProjectReference Include="..\..\ThirdParty\UnityEngine\UnityEngine.csproj" />
  78. </ItemGroup>
  79. </Project>