| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net5.0</TargetFramework>
- <RootNamespace>ET</RootNamespace>
- <LangVersion>8</LangVersion>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
- <DefineConstants>TRACE;SERVER;FEAT_SAFE</DefineConstants>
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
- <DefineConstants>TRACE;SERVER;FEAT_SAFE</DefineConstants>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="MongoDB.Driver" Version="2.11.5" />
- </ItemGroup>
- <ItemGroup>
- <Compile Include="..\..\Unity\Assets\ThirdParty\protobuf-net\**\*.cs">
- <Link>protobuf-net\%(RecursiveDir)%(FileName)%(Extension)</Link>
- </Compile>
- </ItemGroup>
- <ItemGroup>
- <Content Include="..\..\Libs\RecastNavMesh\libRecastNavDll.dylib">
- <Link>libRecastNavDll.dylib</Link>
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
- <Content Include="..\..\Libs\RecastNavMesh\RecastNavDll.dll">
- <Link>RecastNavDll.dll</Link>
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
- <Content Include="..\..\Libs\RecastNavMesh\libRecastNavDll.so">
- <Link>libRecastNavDll.so</Link>
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
- <Content Include="..\..\Unity\Assets\Plugins\MacOS\libkcp.dylib">
- <Link>libkcp.dylib</Link>
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
- <Content Include="..\..\Unity\Assets\Plugins\x86_64\kcp.dll">
- <Link>kcp.dll</Link>
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
- </ItemGroup>
- </Project>
|