-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathromaklayt.DynamicFilter.Extensions.Async.csproj
More file actions
33 lines (29 loc) · 1.48 KB
/
Copy pathromaklayt.DynamicFilter.Extensions.Async.csproj
File metadata and controls
33 lines (29 loc) · 1.48 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<LangVersion>default</LangVersion>
<Description>A collection of async linq extensions for use with a dynamic filter</Description>
<Copyright>romaklayt</Copyright>
<Authors>Roman Kolyago</Authors>
<PackageProjectUrl>https://github.com/romaklayt/DynamicFilter</PackageProjectUrl>
<PackageTags>odata, orm, webapi, filter, dynamic, LINQ, query</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageIcon>package-icon.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<TargetFramework>net10.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="GitVersion.MsBuild" Version="6.5.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="System.Linq.Async" Version="7.0.0"/>
<PackageReference Include="System.Linq.Async.Queryable" Version="7.0.0"/>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\romaklayt.DynamicFilter.Parser\romaklayt.DynamicFilter.Parser.csproj"/>
</ItemGroup>
<ItemGroup>
<None Include="../../package-icon.png" Pack="true" Visible="false" PackagePath=""/>
<None Include="../../README.md" Pack="true" Visible="false" PackagePath=""/>
</ItemGroup>
</Project>