添加GaussDB驱动与测试项目

This commit is contained in:
张鹏
2025-03-31 08:03:24 +08:00
parent 3c0534c829
commit eb3e66b5af
22 changed files with 1086 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\SqlSugar\SqlSugar.csproj" />
</ItemGroup>
<ItemGroup>
<Reference Include="OpenGauss.NET">
<HintPath>OpenGauss.NET.dll</HintPath>
</Reference>
</ItemGroup>
</Project>