1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>netstandard2.0</TargetFramework>
- <Nullable>disable</Nullable>
- <LangVersion>9</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\Assets\Scripts\ThirdParty\ETTask\**\*.cs">
- <Link>ETTask/%(RecursiveDir)%(FileName)%(Extension)</Link>
- </Compile>
- <Compile Include="..\..\Unity\Assets\Scripts\ThirdParty\Kcp\Kcp.cs">
- <Link>Kcp\Kcp.cs</Link>
- </Compile>
- <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\x86_64\libkcp.dylib">
- <Link>Runtimes\MacOS\libkcp.dylib</Link>
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
- <Content Include="..\..\Unity\Assets\Plugins\x86_64\kcp.dll">
- <Link>Runtimes\X86_64\kcp.dll</Link>
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
- <Content Include="..\..\Unity\Assets\Plugins\x86_64\libkcp.so">
- <Link>Runtimes\Linux\libkcp.so</Link>
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
- </ItemGroup>
- <ItemGroup>
- <PackageReference Include="CommandLineParser" Version="2.9.1" />
- <PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
- <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>
|