-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNetDataQuery.csproj
More file actions
38 lines (32 loc) · 1.38 KB
/
NetDataQuery.csproj
File metadata and controls
38 lines (32 loc) · 1.38 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
37
38
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<IsPackable>true</IsPackable>
<Nullable>enable</Nullable>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageId>NetDataQuery</PackageId>
<Version>1.0.1</Version>
<Authors>Estuardo Ramírez</Authors>
<Company>estuardodev</Company>
<Product>NetDataQuery</Product>
<Description>Dynamic method-based query library for .NET with smart parsing of method names into LINQ expressions. Supports Includes, nested properties, and common filters.</Description>
<PackageTags>EntityFramework LINQ Repository DynamicQuery CodeGeneration</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/estuardodev/NetDataQuery</RepositoryUrl>
<PackageProjectUrl>https://github.com/estuardodev/NetDataQuery</PackageProjectUrl>
</PropertyGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="" />
</ItemGroup>
<ItemGroup>
<None Include="logo.png" Pack="true" PackagePath="\" />
</ItemGroup>
<PropertyGroup>
<PackageIcon>logo.png</PackageIcon>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.0" PrivateAssets="all" />
</ItemGroup>
</Project>