22 lines
579 B
XML
22 lines
579 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="SqlSugarCore" Version="5.1.4.94" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Using Include="System.ComponentModel.DataAnnotations" />
|
|
<Using Include="System.ComponentModel.DataAnnotations.Schema" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Using Include="System.Text.Json" />
|
|
<Using Include="System.Text.Json.Serialization" />
|
|
</ItemGroup>
|
|
</Project>
|