-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDBUtil.Standard.csproj
26 lines (22 loc) · 1.15 KB
/
DBUtil.Standard.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<PackageProjectUrl>https://github.com/jackletter/DBUtil.Standard</PackageProjectUrl>
<Description>.net core下常用的数据库访问工具,支持sqlserver、oracle、mysql、postgresql、sqlite;内嵌全局ID生成、编号生成</Description>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<Authors>jackletter</Authors>
<Company>jackletter</Company>
<Product>jackletter</Product>
<Version>1.0.4</Version>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DocumentationFile>E:\jackletter\github\DBUtil.Standard\DBUtil.Standard.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="MySql.Data" Version="8.0.17" />
<PackageReference Include="Npgsql" Version="4.0.10" />
<PackageReference Include="Oracle.ManagedDataAccess.Core" Version="2.19.31" />
<PackageReference Include="System.Data.SqlClient" Version="4.6.1" />
<PackageReference Include="System.Data.SQLite" Version="1.0.111" />
</ItemGroup>
</Project>