BITKit/BITKit.csproj

71 lines
2.2 KiB
XML
Raw Normal View History

2023-06-05 19:57:17 +08:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
2024-03-31 23:31:00 +08:00
<ImplicitUsings>disable</ImplicitUsings>
2023-06-05 19:57:17 +08:00
<Nullable>disable</Nullable>
<PackageId>BITKit</PackageId>
2023-07-17 10:23:47 +08:00
<TargetFramework>net7.0</TargetFramework>
2023-06-05 19:57:17 +08:00
</PropertyGroup>
<ItemGroup>
<Compile Remove="Packages\Common~\**" />
<Compile Remove="Packages\Editor\**" />
<Compile Remove="Packages\Runtime\**" />
<Compile Remove="Packages\Core\Cache\**" />
<Compile Remove="Packages\Tests\**" />
2023-06-29 14:57:11 +08:00
<Compile Remove="Packages\Runtime~\Unity\**" />
2023-08-23 01:59:26 +08:00
<Compile Remove="Packages\Runtime~\UnityPluginsSupport\**" />
2023-10-06 23:43:19 +08:00
<Compile Remove="Src\Unity\**" />
<Compile Remove="Src\UnityPluginsSupport\**" />
2023-10-24 23:38:22 +08:00
<Compile Remove="Src\UnityEditor\**" />
2023-06-05 19:57:17 +08:00
</ItemGroup>
<ItemGroup>
2023-10-06 23:43:19 +08:00
<!-- 排除Unity文件 -->
<None Remove="**\*.meta"/>
<None Remove="**\*.asmdef"/>
<None Remove="Src\Unity\**" />
<None Remove="Src\UnityPluginsSupport\**" />
2023-10-24 23:38:22 +08:00
<None Remove="Src\UnityEditor\**" />
2023-06-05 19:57:17 +08:00
</ItemGroup>
<ItemGroup>
<Reference Include="Unity.Mathematics">
<HintPath>DLL\Unity.Mathematics.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
2023-10-06 23:43:19 +08:00
<PackageReference Include="Kcp" Version="2.6.3" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="7.0.9" />
2023-08-23 01:59:26 +08:00
<PackageReference Include="Microsoft.Extensions.Configuration" Version="7.0.0" />
2023-10-06 23:43:19 +08:00
<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" />
2023-07-17 10:23:47 +08:00
<PackageReference Include="MySql.EntityFrameworkCore" Version="6.0.13" />
2023-06-05 19:57:17 +08:00
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
2023-06-29 14:57:11 +08:00
<PackageReference Include="Newtonsoft.Json.Bson" Version="1.0.3-beta1" />
2023-06-05 19:57:17 +08:00
<PackageReference Include="System.Data.SqlClient" Version="4.8.5" />
<PackageReference Include="UniTask" Version="2.3.3" />
2023-10-06 23:43:19 +08:00
2023-06-05 19:57:17 +08:00
</ItemGroup>
2023-10-06 23:43:19 +08:00
<ItemGroup>
<EmbeddedResource Remove="Src\Unity\**" />
<EmbeddedResource Remove="Src\UnityPluginsSupport\**" />
2023-10-24 23:38:22 +08:00
<EmbeddedResource Remove="Src\UnityEditor\**" />
2023-10-06 23:43:19 +08:00
</ItemGroup>
2023-08-23 01:59:26 +08:00
2023-06-05 19:57:17 +08:00
</Project>