DotNet.Model.csproj 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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. </PropertyGroup>
  24. <ItemGroup>
  25. <Compile Include="..\..\Unity\Assets\Mono\Core\**\*.cs">
  26. <Link>Core\%(RecursiveDir)%(FileName)%(Extension)</Link>
  27. </Compile>
  28. <Compile Include="..\..\Unity\Assets\Scripts\Codes\Model\Server\**\*.cs">
  29. <Link>Server\%(RecursiveDir)%(FileName)%(Extension)</Link>
  30. </Compile>
  31. <Compile Include="..\..\Unity\Assets\Scripts\Codes\Model\Client\**\*.cs">
  32. <Link>Client\%(RecursiveDir)%(FileName)%(Extension)</Link>
  33. </Compile>
  34. <Compile Include="..\..\Unity\Assets\Scripts\Codes\Model\Share\**\*.cs">
  35. <Link>Share\%(RecursiveDir)%(FileName)%(Extension)</Link>
  36. </Compile>
  37. <Compile Include="..\..\Unity\Assets\Scripts\Codes\Model\Generate\Server\**\*.cs">
  38. <Link>Generate\%(RecursiveDir)%(FileName)%(Extension)</Link>
  39. </Compile>
  40. <Compile Update="ConfigLoader.cs">
  41. <Link>Server\Module\Config\ConfigLoader.cs</Link>
  42. </Compile>
  43. </ItemGroup>
  44. <ItemGroup>
  45. <ProjectReference Include="..\..\Share\Analyzer\Share.Analyzer.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
  46. <ProjectReference Include="..\Core\DotNet.Core.csproj" />
  47. <ProjectReference Include="..\ThirdParty\DotNet.ThirdParty.csproj" />
  48. </ItemGroup>
  49. </Project>