-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHBH.FiltraCore.csproj
47 lines (43 loc) · 1.73 KB
/
HBH.FiltraCore.csproj
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
47
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Title>HBH.FiltraCore</Title>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Company>Haitham Basim</Company>
<Version>1.0.0</Version>
<RootNamespace>HBH.FiltraCore</RootNamespace>
<AssemblyName>HBH.FiltraCore</AssemblyName>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<Authors>Haitham Basim (@haithambasim)</Authors>
<Description>Dynamic request filters</Description>
<PackageTags>Ef Core, Filter, Query, Dynamic</PackageTags>
<PackageProjectUrl>https://github.com/haithambasim/HBH.FiltraCore</PackageProjectUrl>
<RepositoryUrl>https://github.com/haithambasim/HBH.FiltraCore</RepositoryUrl>
<RepositoryType>Public</RepositoryType>
<PackageReleaseNotes></PackageReleaseNotes>
<Copyright>Copyright (c) 2023 Haitham Basim (@haithambasim)</Copyright>
<Version>1.0.0</Version>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
<PackageId>HBH.FiltraCore</PackageId>
<Product>HBH.FiltraCore</Product>
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
<PackageReference Include="System.Linq" Version="4.3.0" />
<PackageReference Include="System.Linq.Dynamic.Core" Version="1.2.25" />
</ItemGroup>
<ItemGroup>
<None Update="LICENSE.md">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Update="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>