DotNet.Model.csproj 2.3 KB

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