Server.ThirdParty.csproj 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net5.0</TargetFramework>
  4. <RootNamespace>ET</RootNamespace>
  5. <LangVersion>8</LangVersion>
  6. </PropertyGroup>
  7. <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
  8. <DefineConstants>TRACE;SERVER;FEAT_SAFE</DefineConstants>
  9. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  10. </PropertyGroup>
  11. <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
  12. <DefineConstants>TRACE;SERVER;FEAT_SAFE</DefineConstants>
  13. </PropertyGroup>
  14. <ItemGroup>
  15. <PackageReference Include="MongoDB.Driver" Version="2.11.5" />
  16. </ItemGroup>
  17. <ItemGroup>
  18. <Compile Include="..\..\Unity\Assets\ThirdParty\protobuf-net\**\*.cs">
  19. <Link>protobuf-net\%(RecursiveDir)%(FileName)%(Extension)</Link>
  20. </Compile>
  21. </ItemGroup>
  22. <ItemGroup>
  23. <Content Include="..\..\Libs\RecastNavMesh\libRecastNavDll.dylib">
  24. <Link>libRecastNavDll.dylib</Link>
  25. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  26. </Content>
  27. <Content Include="..\..\Libs\RecastNavMesh\RecastNavDll.dll">
  28. <Link>RecastNavDll.dll</Link>
  29. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  30. </Content>
  31. <Content Include="..\..\Libs\RecastNavMesh\libRecastNavDll.so">
  32. <Link>libRecastNavDll.so</Link>
  33. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  34. </Content>
  35. <Content Include="..\..\Unity\Assets\Plugins\MacOS\libkcp.dylib">
  36. <Link>libkcp.dylib</Link>
  37. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  38. </Content>
  39. <Content Include="..\..\Unity\Assets\Plugins\x86_64\kcp.dll">
  40. <Link>kcp.dll</Link>
  41. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  42. </Content>
  43. </ItemGroup>
  44. </Project>