-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathLombiq.HelpfulLibraries.LinqToDb.csproj
More file actions
30 lines (26 loc) · 1.5 KB
/
Lombiq.HelpfulLibraries.LinqToDb.csproj
File metadata and controls
30 lines (26 loc) · 1.5 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<DefaultItemExcludes>$(DefaultItemExcludes);.git*</DefaultItemExcludes>
<Nullable>enable</Nullable>
</PropertyGroup>
<PropertyGroup>
<Title>Lombiq Helpful Libraries - LINQ to DB Libraries for Orchard Core</Title>
<Authors>Lombiq Technologies</Authors>
<Copyright>Copyright © 2011, Lombiq Technologies Ltd.</Copyright>
<Description>Lombiq Helpful Libraries - LINQ to DB Libraries for Orchard Core: With the help of this project you can write LINQ expressions and run them with a YesSql ISession extension method to query from the DB instead of writing plain SQL queries. Uses the LINQ to DB project. See the project website for detailed documentation.</Description>
<PackageTags>OrchardCore;Lombiq;YesSql;linq2db;LinqToDB</PackageTags>
<PackageIcon>NuGetIcon.png</PackageIcon>
<RepositoryUrl>https://github.com/Lombiq/Helpful-Libraries</RepositoryUrl>
<PackageProjectUrl>https://github.com/Lombiq/Helpful-Libraries/blob/dev/Lombiq.HelpfulLibraries.LinqToDb/Readme.md</PackageProjectUrl>
<PackageLicenseExpression>BSD-3-Clause</PackageLicenseExpression>
</PropertyGroup>
<ItemGroup>
<None Include="Readme.md" />
<None Include="NuGetIcon.png" Pack="true" PackagePath="" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="linq2db" Version="6.2.1" />
<PackageReference Include="OrchardCore.Data.YesSql" Version="3.0.0-preview-18975" />
</ItemGroup>
</Project>