-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathFlexQuery.NET.AspNetCore.csproj
More file actions
46 lines (36 loc) · 1.73 KB
/
FlexQuery.NET.AspNetCore.csproj
File metadata and controls
46 lines (36 loc) · 1.73 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
40
41
42
43
44
45
46
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net6.0;net8.0;net10.0</TargetFrameworks>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<LangVersion>latest</LangVersion>
<!-- NuGet Metadata -->
<PackageId>FlexQuery.NET.AspNetCore</PackageId>
<Authors>Peter John Casasola</Authors>
<Company>Peter John Casasola</Company>
<Product>FlexQuery.NET.AspNetCore</Product>
<Description>ASP.NET Core integration for FlexQuery.NET — declarative field-access security via [FieldAccess] attributes and action filters</Description>
<PackageTags>flexquery;dynamic;linq;aspnetcore;security;field-access;filtering</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/peterjohncasasola/FlexQuery.NET</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageProjectUrl>https://github.com/peterjohncasasola/FlexQuery.NET</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageIcon>logo.png</PackageIcon>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<Optimize>true</Optimize>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\FlexQuery.NET\FlexQuery.NET.csproj" />
<ProjectReference Include="..\FlexQuery.NET.EFCore\FlexQuery.NET.EFCore.csproj" />
</ItemGroup>
<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\README.md" Pack="true" PackagePath="" />
<None Include="..\..\assets\logo.png" Pack="true" PackagePath="" />
</ItemGroup>
</Project>