-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathInfragistics.QueryBuilder.Executor.csproj
More file actions
39 lines (36 loc) · 2 KB
/
Infragistics.QueryBuilder.Executor.csproj
File metadata and controls
39 lines (36 loc) · 2 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
39
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PackageId>Infragistics.QueryBuilder.Executor</PackageId>
<Authors>Infragistics Inc.</Authors>
<Owners>Infragistics Inc.</Owners>
<Company>Infragistics Inc.</Company>
<Description>A .NET 9 library for dynamic, strongly-typed query building and execution over Entity Framework Core data sources. Supports advanced filtering, projection, and SQL generation.</Description>
<Version>1.0.0.0</Version>
<!-->We want to generate the version attributes at runtime and we need this flag enabled for that<-->
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Copyright>Infragistics</Copyright>
<PackageReadmeFile>ReadMe.md</PackageReadmeFile>
<PackageProjectUrl>https://github.com/IgniteUI/Infragistics.QueryBuilder.Executor</PackageProjectUrl>
<RepositoryUrl>https://github.com/IgniteUI/Infragistics.QueryBuilder.Executor</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageDocumentationUrl>https://github.com/IgniteUI/Infragistics.QueryBuilder.Executor</PackageDocumentationUrl>
<PackageTags>Infragistics;App Builder;Ignite UI;Filtering;Query;Query Builder;Models</PackageTags>
<PackageIcon>IgniteUI.png</PackageIcon>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AutoMapper" Version="14.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.4" />
<PackageReference Include="Swashbuckle.AspNetCore.SwaggerGen" Version="8.1.1" />
<None Include="IgniteUI.png" Pack="true" PackagePath="" />
<None Include="ReadMe.md">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
</Project>