Added .NET core SQL tester

This commit is contained in:
2022-01-27 18:20:28 +01:00
parent b1c1526363
commit 4562012db9
78 changed files with 74456 additions and 3 deletions

View File

@@ -0,0 +1,19 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Data.SqlClient" Version="4.0.1" />
</ItemGroup>
<ItemGroup>
<Reference Include="EonaCat.Sql">
<HintPath>..\..\..\EonaCat.Sql\bin\Release\net6.0\EonaCat.Sql.dll</HintPath>
</Reference>
</ItemGroup>
</Project>