BITKit/BITKit.csproj

77 lines
2.6 KiB
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>disable</Nullable>
<PackageId>BITKit</PackageId>
<TargetFramework>net7.0</TargetFramework>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Packages\Common~\**" />
<Compile Remove="Packages\Editor\**" />
<Compile Remove="Packages\Runtime\**" />
<Compile Remove="Packages\Core\Cache\**" />
<Compile Remove="Packages\Tests\**" />
<Compile Remove="Packages\Runtime~\Unity\**" />
<Compile Remove="Packages\Runtime~\UnityPluginsSupport\**" />
<Compile Remove="Src\Unity\**" />
<Compile Remove="Src\UnityPluginsSupport\**" />
<Compile Remove="Src\UnityEditor\**" />
</ItemGroup>
<ItemGroup>
<!-- 排除Unity文件 -->
<None Remove="**\*.meta"/>
<None Remove="**\*.asmdef"/>
<None Remove="Src\Unity\**" />
<None Remove="Src\UnityPluginsSupport\**" />
<None Remove="Src\UnityEditor\**" />
</ItemGroup>
<ItemGroup>
<Reference Include="Unity.Mathematics">
<HintPath>DLL\Unity.Mathematics.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Kcp" Version="2.6.3" />
<PackageReference Include="LiteDB" Version="5.0.21" />
<PackageReference Include="MemoryPack" Version="1.21.3" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Scripting" Version="4.12.0" />
<PackageReference Include="Microsoft.CodeAnalysis.Scripting.Common" Version="4.12.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="7.0.9" />
<PackageReference Include="Microsoft.Extensions.Configuration" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="7.0.0" />
<PackageReference Include="MySql.EntityFrameworkCore" Version="6.0.13" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="Newtonsoft.Json.Bson" Version="1.0.3-beta1" />
<PackageReference Include="System.Data.SqlClient" Version="4.8.5" />
<PackageReference Include="UniTask" Version="2.3.3" />
<PackageReference Include="YamlDotNet" Version="16.3.0" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Remove="Src\Unity\**" />
<EmbeddedResource Remove="Src\UnityPluginsSupport\**" />
<EmbeddedResource Remove="Src\UnityEditor\**" />
</ItemGroup>
</Project>