DotNet.ThirdParty.csproj 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>netstandard2.0</TargetFramework>
  4. <Nullable>disable</Nullable>
  5. <LangVersion>10</LangVersion>
  6. <RootNamespace>ET</RootNamespace>
  7. <AssemblyName>ThirdParty</AssemblyName>
  8. </PropertyGroup>
  9. <PropertyGroup>
  10. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  11. <SatelliteResourceLanguages>en</SatelliteResourceLanguages>
  12. </PropertyGroup>
  13. <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
  14. <DefineConstants>DOTNET;UNITY_DOTSPLAYER</DefineConstants>
  15. <OutputPath>..\..\Bin\</OutputPath>
  16. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  17. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  18. <Optimize>true</Optimize>
  19. </PropertyGroup>
  20. <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
  21. <DefineConstants>DOTNET;UNITY_DOTSPLAYER</DefineConstants>
  22. <OutputPath>..\..\Bin\</OutputPath>
  23. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  24. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  25. </PropertyGroup>
  26. <ItemGroup>
  27. <Compile Include="..\..\Unity\Library\PackageCache\com.unity.mathematics*\Unity.Mathematics\**\*.cs">
  28. <Link>Unity.Mathematics/$([System.String]::new(%(RecursiveDir)).Substring($([System.String]::new(%(RecursiveDir)).Indexof("Unity.Mathematics"))).Replace("Unity.Mathematics", ""))/%(FileName)%(Extension)</Link>
  29. </Compile>
  30. </ItemGroup>
  31. <ItemGroup>
  32. <Content Include="..\..\Unity\Assets\Plugins\MacOS\arm64\libkcp.dylib">
  33. <Link>Runtimes\osx\native\arm64\libkcp.dylib</Link>
  34. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  35. </Content>
  36. <Content Include="..\..\Unity\Assets\Plugins\MacOS\x86_64\libkcp.dylib">
  37. <Link>Runtimes\osx\native\x86_64\libkcp.dylib</Link>
  38. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  39. </Content>
  40. <Content Include="..\..\Unity\Assets\Plugins\x86_64\kcp.dll">
  41. <Link>Runtimes\win\native\x86_64\kcp.dll</Link>
  42. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  43. </Content>
  44. <Content Include="..\..\Unity\Assets\Plugins\x86_64\libkcp.so">
  45. <Link>Runtimes\linux\native\x86_64\libkcp.so</Link>
  46. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  47. </Content>
  48. </ItemGroup>
  49. <ItemGroup>
  50. <PackageReference Include="CommandLineParser" Version="2.9.1" />
  51. <PackageReference Include="EPPlus" Version="7.0.3" />
  52. <PackageReference Include="MongoDB.Driver" Version="2.22.0" />
  53. <PackageReference Include="NLog" Version="5.2.7" />
  54. <PackageReference Include="protobuf-net" Version="3.2.30" />
  55. <PackageReference Include="SharpZipLib" Version="1.4.2" />
  56. <PackageReference Include="Microsoft.CodeAnalysis.Common" Version="4.0.1" />
  57. <PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.0.1" />
  58. </ItemGroup>
  59. </Project>