DotNet.ThirdParty.csproj 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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. </Content>
  44. <Content Include="..\..\Unity\Assets\Plugins\MacOS\x86_64\libRecastDll.dylib">
  45. <Link>Runtimes\MacOS\libRecastDll.dylib</Link>
  46. </Content>
  47. <Content Include="..\..\Unity\Assets\Plugins\x86_64\kcp.dll">
  48. <Link>Runtimes\X86_64\kcp.dll</Link>
  49. </Content>
  50. <Content Include="..\..\Unity\Assets\Plugins\x86_64\libkcp.so">
  51. <Link>Runtimes\Linux\libkcp.so</Link>
  52. </Content>
  53. <Content Include="..\..\Unity\Assets\Plugins\x86_64\libRecastDll.so">
  54. <Link>Runtimes\Linux\libRecastDll.so</Link>
  55. </Content>
  56. <Content Include="..\..\Unity\Assets\Plugins\x86_64\RecastDll.dll">
  57. <Link>Runtimes\X86_64\RecastDll.dll</Link>
  58. </Content>
  59. </ItemGroup>
  60. <ItemGroup>
  61. <PackageReference Include="CommandLineParser" Version="2.8.0" />
  62. <PackageReference Include="EPPlus" Version="5.8.8" />
  63. <PackageReference Include="MongoDB.Driver" Version="2.17.1" />
  64. <PackageReference Include="NLog" Version="4.7.15" />
  65. <PackageReference Include="protobuf-net" Version="2.4.6" />
  66. <PackageReference Include="SharpZipLib" Version="1.3.3" />
  67. <PackageReference Include="Microsoft.CodeAnalysis.Common" Version="4.0.1" />
  68. <PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.0.1" />
  69. </ItemGroup>
  70. </Project>