123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>netstandard2.0</TargetFramework>
- <Nullable>disable</Nullable>
- <LangVersion>10</LangVersion>
- <RootNamespace>ET</RootNamespace>
- <AssemblyName>ThirdParty</AssemblyName>
- </PropertyGroup>
-
- <PropertyGroup>
- <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
- <SatelliteResourceLanguages>en</SatelliteResourceLanguages>
- </PropertyGroup>
-
- <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
- <DefineConstants>DOTNET;UNITY_DOTSPLAYER</DefineConstants>
- <OutputPath>..\..\Bin\</OutputPath>
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
- <Optimize>true</Optimize>
- </PropertyGroup>
-
- <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
- <DefineConstants>DOTNET;UNITY_DOTSPLAYER</DefineConstants>
- <OutputPath>..\..\Bin\</OutputPath>
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
- </PropertyGroup>
- <ItemGroup>
- <Compile Include="..\..\Unity\Library\PackageCache\com.unity.mathematics*\Unity.Mathematics\**\*.cs">
- <Link>Unity.Mathematics/$([System.String]::new(%(RecursiveDir)).Substring($([System.String]::new(%(RecursiveDir)).Indexof("Unity.Mathematics"))).Replace("Unity.Mathematics", ""))/%(FileName)%(Extension)</Link>
- </Compile>
- </ItemGroup>
- <ItemGroup>
- <Content Include="..\..\Unity\Assets\Plugins\MacOS\arm64\libkcp.dylib">
- <Link>Runtimes\osx\native\arm64\libkcp.dylib</Link>
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
- <Content Include="..\..\Unity\Assets\Plugins\MacOS\x86_64\libkcp.dylib">
- <Link>Runtimes\osx\native\x86_64\libkcp.dylib</Link>
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
- <Content Include="..\..\Unity\Assets\Plugins\x86_64\kcp.dll">
- <Link>Runtimes\win\native\x86_64\kcp.dll</Link>
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
- <Content Include="..\..\Unity\Assets\Plugins\x86_64\libkcp.so">
- <Link>Runtimes\linux\native\x86_64\libkcp.so</Link>
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
- </ItemGroup>
- <ItemGroup>
- <PackageReference Include="CommandLineParser" Version="2.9.1" />
- <PackageReference Include="EPPlus" Version="7.0.3" />
- <PackageReference Include="MongoDB.Driver" Version="2.22.0" />
- <PackageReference Include="NLog" Version="5.2.7" />
- <PackageReference Include="protobuf-net" Version="3.2.30" />
- <PackageReference Include="SharpZipLib" Version="1.4.2" />
- <PackageReference Include="Microsoft.CodeAnalysis.Common" Version="4.0.1" />
- <PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.0.1" />
- </ItemGroup>
- </Project>
|