ShareLib.csproj 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net5.0</TargetFramework>
  4. </PropertyGroup>
  5. <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
  6. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  7. </PropertyGroup>
  8. <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
  9. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  10. </PropertyGroup>
  11. <ItemGroup>
  12. <Content Include="..\..\Libs\RecastNavMesh\libRecastNavDll.dylib">
  13. <Link>libRecastNavDll.dylib</Link>
  14. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  15. </Content>
  16. <Content Include="..\..\Libs\RecastNavMesh\libRecastNavDll.so">
  17. <Link>libRecastNavDll.so</Link>
  18. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  19. </Content>
  20. <Content Include="..\..\Libs\RecastNavMesh\RecastNavDll.dll">
  21. <Link>RecastNavDll.dll</Link>
  22. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  23. </Content>
  24. <Content Include="..\..\Unity\Assets\Plugins\MacOS\libkcp.dylib">
  25. <Link>libkcp.dylib</Link>
  26. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  27. </Content>
  28. <Content Include="..\..\Unity\Assets\Plugins\x86_64\kcp.dll">
  29. <Link>kcp.dll</Link>
  30. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  31. </Content>
  32. </ItemGroup>
  33. <ItemGroup>
  34. <ProjectReference Include="..\UnityEngine\UnityEngine.csproj" />
  35. </ItemGroup>
  36. <ItemGroup>
  37. <Compile Include="..\..\Unity\Assets\ThirdParty\ShareLib\Kcp\Kcp.cs">
  38. <Link>Kcp\Kcp.cs</Link>
  39. </Compile>
  40. </ItemGroup>
  41. <ItemGroup>
  42. <PackageReference Include="CommandLineParser" Version="2.8.0" />
  43. <PackageReference Include="mongocsharpdriver" Version="2.13.0" />
  44. <PackageReference Include="MongoDB.Bson" Version="2.13.0" />
  45. <PackageReference Include="NLog" Version="4.7.10" />
  46. <PackageReference Include="SharpZipLib" Version="1.3.2" />
  47. </ItemGroup>
  48. </Project>