forked from sqlkata/querybuilder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQueryBuilder.csproj
executable file
·36 lines (34 loc) · 1.77 KB
/
QueryBuilder.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
27
28
29
30
31
32
33
34
35
36
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Title>SqlKata The C# Sql Query Builder</Title>
<Description>A powerful Dynamic Sql Query Builder supporting Sql Server, MySql, PostgreSql, Oracle and Firebird</Description>
<Authors>Ahmad Moussawi</Authors>
<Copyright>Copyright (c) 2017 Ahmad Moussawi</Copyright>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<RootNamespace>SqlKata</RootNamespace>
<AssemblyName>SqlKata</AssemblyName>
<!-- NuGet settings -->
<PackageId>SqlKata</PackageId>
<PackageTags>sql;query-builder;dynamic-query</PackageTags>
<PackageReleaseNotes>https://github.com/sqlkata/querybuilder</PackageReleaseNotes>
<PackageProjectUrl>https://github.com/sqlkata/querybuilder</PackageProjectUrl>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/sqlkata/querybuilder</RepositoryUrl>
<!-- SourceLink settings -->
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<NoWarn>CS1591</NoWarn>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netstandard2.0|AnyCPU'">
<DocumentationFile>bin\Debug\netstandard2.0\SqlKata.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netstandard2.0|AnyCPU'">
<DocumentationFile>bin\Release\netstandard2.0\SqlKata.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.Collections.Concurrent" Version="4.3.0" />
</ItemGroup>
</Project>