Apps.Model.csproj 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net6.0</TargetFramework>
  4. <RootNamespace>ET</RootNamespace>
  5. <LangVersion>10</LangVersion>
  6. <AssemblyName>Model</AssemblyName>
  7. </PropertyGroup>
  8. <PropertyGroup>
  9. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  10. <SatelliteResourceLanguages>en</SatelliteResourceLanguages>
  11. </PropertyGroup>
  12. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  13. <DefineConstants>TRACE2_0;NOT_UNITY;APPS</DefineConstants>
  14. <OutputPath>..\..\Bin\</OutputPath>
  15. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  16. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  17. </PropertyGroup>
  18. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  19. <DefineConstants>TRACE2_0;SERVER;NOT_UNITY;APPS</DefineConstants>
  20. <OutputPath>..\..\Bin\</OutputPath>
  21. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  22. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  23. </PropertyGroup>
  24. <ItemGroup>
  25. <Compile Include="..\..\Unity\Codes\Model\Module\Recast\**\*.cs">
  26. <Link>Module\Recast\%(RecursiveDir)%(FileName)%(Extension)</Link>
  27. </Compile>
  28. <Compile Include="..\..\Unity\Assets\Mono\Core\**\*.cs">
  29. <Link>Core\%(RecursiveDir)%(FileName)%(Extension)</Link>
  30. </Compile>
  31. <Compile Include="..\..\Unity\Codes\Model\Module\Config\**\*.cs">
  32. <Link>Module\Config\%(RecursiveDir)%(FileName)%(Extension)</Link>
  33. </Compile>
  34. <Compile Include="..\..\Unity\Codes\Model\Module\ObjectWait\**\*.cs">
  35. <Link>Module\ObjectWait\%(RecursiveDir)%(FileName)%(Extension)</Link>
  36. </Compile>
  37. <Compile Include="..\..\Unity\Codes\Model\Module\Timer\**\*.cs">
  38. <Link>Module\Timer\%(RecursiveDir)%(FileName)%(Extension)</Link>
  39. </Compile>
  40. <Compile Include="..\..\Unity\Codes\Model\Module\AI\**\*.cs">
  41. <Link>Module\AI\%(RecursiveDir)%(FileName)%(Extension)</Link>
  42. </Compile>
  43. <Compile Include="..\..\Unity\Codes\Model\Module\CoroutineLock\**\*.cs">
  44. <Link>Module\CoroutineLock\%(RecursiveDir)%(FileName)%(Extension)</Link>
  45. </Compile>
  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\Module\Move\**\*.cs">
  68. <Link>Module\Move\%(RecursiveDir)%(FileName)%(Extension)</Link>
  69. </Compile>
  70. <Compile Include="..\..\Unity\Codes\Model\Module\Unit\**\*.cs">
  71. <Link>Module\Unit\%(RecursiveDir)%(FileName)%(Extension)</Link>
  72. </Compile>
  73. <Compile Include="..\..\Unity\Codes\Model\Client\**\*.cs">
  74. <Link>Client\%(RecursiveDir)%(FileName)%(Extension)</Link>
  75. </Compile>
  76. <Compile Include="..\..\Unity\Codes\Model\Share\**\*.cs">
  77. <Link>Share\%(RecursiveDir)%(FileName)%(Extension)</Link>
  78. </Compile>
  79. </ItemGroup>
  80. <ItemGroup>
  81. <ProjectReference Include="..\Core\Apps.Core.csproj" />
  82. <ProjectReference Include="..\ThirdParty\Apps.ThirdParty.csproj" />
  83. <ProjectReference Include="..\..\Share\Analyzer\Share.Analyzer.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
  84. </ItemGroup>
  85. </Project>