mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-24 18:04:52 +08:00
19 lines
431 B
XML
19 lines
431 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Remove="UnitTest\models\**" />
|
|
<EmbeddedResource Remove="UnitTest\models\**" />
|
|
<None Remove="UnitTest\models\**" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\SqlSugar\SqlSugar.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|