DotNet.Model.csproj 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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>DOTNET</DefineConstants>
  14. <OutputPath>..\..\Bin\</OutputPath>
  15. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  16. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  17. <Optimize>false</Optimize>
  18. </PropertyGroup>
  19. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  20. <DefineConstants>DOTNET</DefineConstants>
  21. <OutputPath>..\..\Bin\</OutputPath>
  22. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  23. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  24. <Optimize>true</Optimize>
  25. </PropertyGroup>
  26. <ItemGroup>
  27. <Compile Include="..\..\Unity\Assets\Scripts\Codes\Model\Server\**\*.cs">
  28. <Link>Server\%(RecursiveDir)%(FileName)%(Extension)</Link>
  29. </Compile>
  30. <Compile Include="..\..\Unity\Assets\Scripts\Codes\Model\Client\**\*.cs">
  31. <Link>Client\%(RecursiveDir)%(FileName)%(Extension)</Link>
  32. </Compile>
  33. <Compile Include="..\..\Unity\Assets\Scripts\Codes\Model\Share\**\*.cs">
  34. <Link>Share\%(RecursiveDir)%(FileName)%(Extension)</Link>
  35. </Compile>
  36. <Compile Include="..\..\Unity\Assets\Scripts\Codes\Model\Generate\Server\**\*.cs">
  37. <Link>Generate\%(RecursiveDir)%(FileName)%(Extension)</Link>
  38. </Compile>
  39. </ItemGroup>
  40. <ItemGroup>
  41. <ProjectReference Include="..\..\Share\Analyzer\Share.Analyzer.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
  42. <ProjectReference Include="..\Core\DotNet.Core.csproj" />
  43. <ProjectReference Include="..\Loader\DotNet.Loader.csproj" />
  44. <ProjectReference Include="..\ThirdParty\DotNet.ThirdParty.csproj" />
  45. </ItemGroup>
  46. </Project>