-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFlySQL.csproj
More file actions
24 lines (21 loc) · 910 Bytes
/
FlySQL.csproj
File metadata and controls
24 lines (21 loc) · 910 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<PackageId>Fly.SQL</PackageId>
<Authors>jdmay2</Authors>
<PackageIcon>logo.png</PackageIcon>
<Description>FlySQL is a simple, easy to use companion for the MySQL.Data NuGet library.</Description>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Version>1.0.7</Version>
<PackageTags>MySql, SQL, Data, Query</PackageTags>
<RepositoryUrl>https://github.com/jdmay2/FlySQL</RepositoryUrl>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<None Include="./.github/resources/logo.png" Pack="true" PackagePath="" />
<PackageReference Include="MySql.Data" Version="8.0.28" />
<Using Include="MySql.Data.MySqlClient" />
<Using Include="System.Data" />
</ItemGroup>
</Project>