DotNet.ThirdParty.csproj 3.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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\Assets\Scripts\ThirdParty\Recast\Recast.cs">
  34. <Link>Recast\Recast.cs</Link>
  35. </Compile>
  36. <Compile Include="..\..\Unity\Library\PackageCache\com.unity.mathematics*\Unity.Mathematics\**\*.cs">
  37. <Link>Unity.Mathematics/$([System.String]::new(%(RecursiveDir)).Substring($([System.String]::new(%(RecursiveDir)).Indexof("Unity.Mathematics"))).Replace("Unity.Mathematics", ""))/%(FileName)%(Extension)</Link>
  38. </Compile>
  39. </ItemGroup>
  40. <ItemGroup>
  41. <Content Include="..\..\Unity\Assets\Plugins\MacOS\x86_64\libkcp.dylib">
  42. <Link>Runtimes\MacOS\libkcp.dylib</Link>
  43. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  44. </Content>
  45. <Content Include="..\..\Unity\Assets\Plugins\MacOS\x86_64\libRecastDll.dylib">
  46. <Link>Runtimes\MacOS\libRecastDll.dylib</Link>
  47. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  48. </Content>
  49. <Content Include="..\..\Unity\Assets\Plugins\x86_64\kcp.dll">
  50. <Link>Runtimes\X86_64\kcp.dll</Link>
  51. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  52. </Content>
  53. <Content Include="..\..\Unity\Assets\Plugins\x86_64\libkcp.so">
  54. <Link>Runtimes\Linux\libkcp.so</Link>
  55. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  56. </Content>
  57. <Content Include="..\..\Unity\Assets\Plugins\x86_64\libRecastDll.so">
  58. <Link>Runtimes\Linux\libRecastDll.so</Link>
  59. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  60. </Content>
  61. <Content Include="..\..\Unity\Assets\Plugins\x86_64\RecastDll.dll">
  62. <Link>Runtimes\X86_64\RecastDll.dll</Link>
  63. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  64. </Content>
  65. </ItemGroup>
  66. <ItemGroup>
  67. <PackageReference Include="CommandLineParser" Version="2.8.0" />
  68. <PackageReference Include="EPPlus" Version="5.8.8" />
  69. <PackageReference Include="MongoDB.Driver" Version="2.17.1" />
  70. <PackageReference Include="NLog" Version="4.7.15" />
  71. <PackageReference Include="protobuf-net" Version="2.4.6" />
  72. <PackageReference Include="SharpZipLib" Version="1.3.3" />
  73. <PackageReference Include="Microsoft.CodeAnalysis.Common" Version="4.0.1" />
  74. <PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.0.1" />
  75. </ItemGroup>
  76. </Project>