DotNet.ThirdParty.csproj 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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</DefineConstants>
  15. <OutputPath>..\..\Bin\</OutputPath>
  16. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  17. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  18. </PropertyGroup>
  19. <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
  20. <DefineConstants>DOTNET</DefineConstants>
  21. <OutputPath>..\..\Bin\</OutputPath>
  22. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  23. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  24. </PropertyGroup>
  25. <ItemGroup>
  26. <Compile Include="..\..\Unity\Assets\Scripts\ThirdParty\ETTask\**\*.cs">
  27. <Link>ETTask/%(RecursiveDir)%(FileName)%(Extension)</Link>
  28. </Compile>
  29. <Compile Include="..\..\Unity\Assets\Scripts\ThirdParty\ShareLib\Kcp\Kcp.cs">
  30. <Link>Kcp\Kcp.cs</Link>
  31. </Compile>
  32. <Compile Include="..\..\Unity\Assets\Scripts\ThirdParty\ShareLib\Recast\Recast.cs">
  33. <Link>Recast\Recast.cs</Link>
  34. </Compile>
  35. </ItemGroup>
  36. <ItemGroup>
  37. <Content Include="..\..\Unity\Assets\Plugins\MacOS\arm64\libkcp.dylib">
  38. <Link>libkcp.dylib</Link>
  39. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  40. </Content>
  41. <Content Include="..\..\Unity\Assets\Plugins\MacOS\libRecastDll.dylib">
  42. <Link>libRecastDll.dylib</Link>
  43. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  44. </Content>
  45. <Content Include="..\..\Unity\Assets\Plugins\x86_64\kcp.dll">
  46. <Link>kcp.dll</Link>
  47. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  48. </Content>
  49. <Content Include="..\..\Unity\Assets\Plugins\x86_64\RecastDll.dll">
  50. <Link>RecastDll.dll</Link>
  51. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  52. </Content>
  53. </ItemGroup>
  54. <ItemGroup>
  55. <PackageReference Include="CommandLineParser" Version="2.8.0" />
  56. <PackageReference Include="EPPlus" Version="5.8.8" />
  57. <PackageReference Include="MongoDB.Driver" Version="2.15.0" />
  58. <PackageReference Include="NLog" Version="4.7.15" />
  59. <PackageReference Include="protobuf-net" Version="2.4.6" />
  60. <PackageReference Include="SharpZipLib" Version="1.3.3" />
  61. <PackageReference Include="Microsoft.CodeAnalysis.Common" Version="4.0.1" />
  62. <PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.0.1" />
  63. </ItemGroup>
  64. </Project>