TestNetCore.csproj 493 B

12345678910111213141516
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net8.0</TargetFramework>
  5. <ImplicitUsings>enable</ImplicitUsings>
  6. <Nullable>enable</Nullable>
  7. </PropertyGroup>
  8. <ItemGroup>
  9. <PackageReference Include="Dapper" Version="2.1.66" />
  10. <PackageReference Include="MySql.EntityFrameworkCore" Version="9.0.3" />
  11. <PackageReference Include="System.Threading.Tasks.Extensions" Version="4.5.4" />
  12. </ItemGroup>
  13. </Project>