-
-
Notifications
You must be signed in to change notification settings - Fork 507
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0b12f6a
commit c7e673e
Showing
10 changed files
with
61 additions
and
227 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,25 @@ | ||
<?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> | ||
<PropertyGroup> | ||
<Title>SqlKata</Title> | ||
<Description>A powerful Dynamic Sql Query Builder supporting SQL Server, MySql, PostgreSql, Sqlite, and Oracle</Description> | ||
<Authors>Ahmad Moussawi</Authors> | ||
<Copyright>Copyright (c) 2017 Ahmad Moussawi</Copyright> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<RootNamespace>SqlKata</RootNamespace> | ||
<AssemblyName>SqlKata.Core</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> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,32 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<Title>SqlKata The C# Sql Query Builder</Title> | ||
<Description>Adds the execution capabilities for SqlKata</Description> | ||
<Authors>Ahmad Moussawi</Authors> | ||
<Copyright>Copyright (c) 2017 Ahmad Moussawi</Copyright> | ||
<TargetFrameworks>netstandard2.0</TargetFrameworks> | ||
<RootNamespace>SqlKata</RootNamespace> | ||
|
||
<!-- NuGet settings --> | ||
<PackageId>SqlKata.Execution</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)'=='Release|netstandard2.0|AnyCPU'"> | ||
<DocumentationFile>bin\Release\netstandard2.0\SqlKata.Execution.xml</DocumentationFile> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netstandard2.0|AnyCPU'"> | ||
<DocumentationFile>bin\Debug\netstandard2.0\SqlKata.Execution.xml</DocumentationFile> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\QueryBuilder\QueryBuilder.csproj" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="dapper" Version="2.0.123" /> | ||
<PackageReference Include="Humanizer.Core" Version="2.8.26" /> | ||
</ItemGroup> | ||
</Project> | ||
<PropertyGroup> | ||
<Title>SqlKata</Title> | ||
<Description>Adds the execution capabilities for SqlKata</Description> | ||
<Authors>Ahmad Moussawi</Authors> | ||
<Copyright>Copyright (c) 2017 Ahmad Moussawi</Copyright> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<RootNamespace>SqlKata</RootNamespace> | ||
<!-- NuGet settings --> | ||
<PackageId>SqlKata.Execution</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> | ||
<ItemGroup> | ||
<ProjectReference Include="..\QueryBuilder\QueryBuilder.csproj" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="dapper" | ||
Version="2.0.123" /> | ||
<PackageReference Include="Humanizer.Core" | ||
Version="2.8.26" /> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters