DotNet.ThirdParty.csproj 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>netstandard2.0</TargetFramework>
  4. <Nullable>disable</Nullable>
  5. <LangVersion>9</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\Assets\Scripts\ThirdParty\ETTask\**\*.cs">
  28. <Link>ETTask/%(RecursiveDir)%(FileName)%(Extension)</Link>
  29. </Compile>
  30. <Compile Include="..\..\Unity\Assets\Scripts\ThirdParty\Kcp\Kcp.cs">
  31. <Link>Kcp\Kcp.cs</Link>
  32. </Compile>
  33. <Compile Include="..\..\Unity\Library\PackageCache\com.unity.mathematics*\Unity.Mathematics\**\*.cs">
  34. <Link>Unity.Mathematics/$([System.String]::new(%(RecursiveDir)).Substring($([System.String]::new(%(RecursiveDir)).Indexof("Unity.Mathematics"))).Replace("Unity.Mathematics", ""))/%(FileName)%(Extension)</Link>
  35. </Compile>
  36. </ItemGroup>
  37. <ItemGroup>
  38. <Content Include="..\..\Unity\Assets\Plugins\MacOS\x86_64\libkcp.dylib">
  39. <Link>Runtimes\MacOS\libkcp.dylib</Link>
  40. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  41. </Content>
  42. <Content Include="..\..\Unity\Assets\Plugins\x86_64\kcp.dll">
  43. <Link>Runtimes\X86_64\kcp.dll</Link>
  44. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  45. </Content>
  46. <Content Include="..\..\Unity\Assets\Plugins\x86_64\libkcp.so">
  47. <Link>Runtimes\Linux\libkcp.so</Link>
  48. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  49. </Content>
  50. </ItemGroup>
  51. <ItemGroup>
  52. <PackageReference Include="CommandLineParser" Version="2.9.1" />
  53. <PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
  54. <PackageReference Include="EPPlus" Version="7.0.3" />
  55. <PackageReference Include="MongoDB.Driver" Version="2.22.0" />
  56. <PackageReference Include="NLog" Version="5.2.7" />
  57. <PackageReference Include="protobuf-net" Version="3.2.30" />
  58. <PackageReference Include="SharpZipLib" Version="1.4.2" />
  59. <PackageReference Include="Microsoft.CodeAnalysis.Common" Version="4.0.1" />
  60. <PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.0.1" />
  61. </ItemGroup>
  62. </Project>