-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSwiftSQL.csproj
More file actions
36 lines (28 loc) · 1.07 KB
/
SwiftSQL.csproj
File metadata and controls
36 lines (28 loc) · 1.07 KB
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
27
28
29
30
31
32
33
34
35
36
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>$(NoWarn);1591</NoWarn>
<IsPackable>true</IsPackable>
<PackageId>SwiftSQL</PackageId>
<Version>0.10.0</Version>
<Description>Lightweight, SwiftlyS2-friendly ORM-like data access library built on Dapper.</Description>
<Authors>itsAudio</Authors>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/itsAudioo/SwiftSQL</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>orm;dapper;sqlite;mysql;mariadb;postgresql;migrations;cs2;swiftlys2;plugin</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Dapper" Version="2.1.35" />
</ItemGroup>
<ItemGroup>
<Compile Remove="SwiftSQL.Tests\**\*.cs" />
</ItemGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="" />
</ItemGroup>
</Project>