| 12345678910111213141516171819202122 | <Project Sdk="Microsoft.NET.Sdk">  <PropertyGroup>    <TargetFramework>netstandard2.1</TargetFramework>    <Nullable>enable</Nullable>    <GenerateDocumentationFile>True</GenerateDocumentationFile>  </PropertyGroup>    <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">    <NoWarn>1701;1702;8602;8616;8618;8625;8600;8603;8714;1591</NoWarn>  </PropertyGroup>  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">    <NoWarn>1701;1702;8602;8616;8618;8625;8600;8603;8714;1591</NoWarn>  </PropertyGroup>    <ItemGroup>    <PackageReference Include="SqlSugarCore" Version="5.1.4.72" />    <PackageReference Include="System.ComponentModel.Annotations" Version="5.0.0" />  </ItemGroup></Project>
 |