DotNet.Model.csproj 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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\Share\**\*.cs">
  28. <Link>Share\%(RecursiveDir)%(FileName)%(Extension)</Link>
  29. </Compile>
  30. </ItemGroup>
  31. <ItemGroup>
  32. <PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
  33. <PackageReference Include="SuperSocket.ClientEngine" Version="0.10.0" />
  34. <PackageReference Include="SuperSocket.ProtoBase" Version="1.7.0.17" />
  35. </ItemGroup>
  36. <ItemGroup>
  37. <ProjectReference Include="..\..\Share\Analyzer\Share.Analyzer.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
  38. <ProjectReference Include="..\Core\DotNet.Core.csproj" />
  39. <ProjectReference Include="..\Loader\DotNet.Loader.csproj" />
  40. <ProjectReference Include="..\ThirdParty\DotNet.ThirdParty.csproj" />
  41. </ItemGroup>
  42. <ItemGroup>
  43. <Reference Include="Ice">
  44. <HintPath>..\library\Ice.dll</HintPath>
  45. </Reference>
  46. </ItemGroup>
  47. </Project>