ShareLib.csproj 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net6.0</TargetFramework>
  4. </PropertyGroup>
  5. <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
  6. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  7. <OutputPath>..\..\Bin\</OutputPath>
  8. </PropertyGroup>
  9. <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
  10. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  11. <OutputPath>..\..\Bin\</OutputPath>
  12. </PropertyGroup>
  13. <ItemGroup>
  14. <Content Include="..\..\Unity\Assets\Plugins\x86_64\RecastDll.dll">
  15. <Link>RecastDll.dll</Link>
  16. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  17. </Content>
  18. <Content Include="..\..\Unity\Assets\Plugins\MacOS\libkcp.dylib">
  19. <Link>libkcp.dylib</Link>
  20. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  21. </Content>
  22. <Content Include="..\..\Unity\Assets\Plugins\x86_64\kcp.dll">
  23. <Link>kcp.dll</Link>
  24. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  25. </Content>
  26. </ItemGroup>
  27. <ItemGroup>
  28. <ProjectReference Include="..\UnityEngine\UnityEngine.csproj" />
  29. </ItemGroup>
  30. <ItemGroup>
  31. <Compile Include="..\..\Unity\Assets\ThirdParty\ShareLib\Kcp\Kcp.cs">
  32. <Link>Kcp\Kcp.cs</Link>
  33. </Compile>
  34. <Compile Include="..\..\Unity\Assets\ThirdParty\ShareLib\Recast\Recast.cs">
  35. <Link>Recast\Recast.cs</Link>
  36. </Compile>
  37. </ItemGroup>
  38. <ItemGroup>
  39. <PackageReference Include="CommandLineParser" Version="2.8.0" />
  40. <PackageReference Include="EPPlus" Version="5.8.3" />
  41. <PackageReference Include="Microsoft.CodeAnalysis.Common" Version="4.0.1" />
  42. <PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.0.1" />
  43. <PackageReference Include="mongocsharpdriver" Version="2.13.3" />
  44. <PackageReference Include="MongoDB.Bson" Version="2.13.3" />
  45. <PackageReference Include="NLog" Version="4.7.12" />
  46. <PackageReference Include="protobuf-net" Version="2.4.0" />
  47. <PackageReference Include="SharpZipLib" Version="1.3.3" />
  48. </ItemGroup>
  49. </Project>