dotnet-dynamic-linq/PoweredSoft.DynamicLinq/PoweredSoft.DynamicLinq.csproj

34 lines
1.3 KiB
XML
Raw Normal View History

2019-03-19 18:39:58 -04:00
<Project Sdk="Microsoft.NET.Sdk">
2018-02-20 22:21:23 -05:00
2018-02-11 20:55:29 -05:00
<PropertyGroup>
2018-02-20 22:21:23 -05:00
<TargetFramework>netstandard2.0</TargetFramework>
2019-03-19 18:39:58 -04:00
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
2018-02-22 18:49:38 -05:00
<Company>Powered Softwares Inc.</Company>
<Authors>David Lebée</Authors>
<Copyright></Copyright>
<Product>DynamicLinq by PoweredSoft</Product>
2018-03-01 08:54:20 -05:00
<Description>Allows users to make dynamic query over a IQueryable&lt;T&gt;</Description>
2018-02-22 18:49:38 -05:00
<RepositoryUrl>https://github.com/PoweredSoft/DynamicLinq</RepositoryUrl>
<RepositoryType>github</RepositoryType>
<PackageTags>dynamic linq queryable</PackageTags>
2019-11-12 18:38:20 -05:00
<AssemblyVersion>1.1.9.0</AssemblyVersion>
<FileVersion>1.1.9.0</FileVersion>
<Version>1.1.9</Version>
2018-03-01 08:54:20 -05:00
<PackageProjectUrl>https://github.com/PoweredSoft/DynamicLinq</PackageProjectUrl>
2019-03-19 18:39:58 -04:00
<PackageId>PoweredSoft.DynamicLinq</PackageId>
<PackageReleaseNotes>Added not contains thanks to Jon-Galloway.
Added negate parameter to allow negating any conditions.</PackageReleaseNotes>
<PackageRequireLicenseAcceptance>False</PackageRequireLicenseAcceptance>
2018-02-11 20:55:29 -05:00
</PropertyGroup>
2018-02-20 22:21:23 -05:00
2018-02-11 20:55:29 -05:00
<ItemGroup>
2018-02-20 22:21:23 -05:00
<Folder Include="Properties\" />
2018-02-11 20:55:29 -05:00
</ItemGroup>
2018-02-20 22:21:23 -05:00
2018-03-09 00:22:12 -05:00
<ItemGroup>
<PackageReference Include="PoweredSoft.Types" Version="1.0.0" />
2018-03-09 00:22:12 -05:00
<PackageReference Include="System.Reflection.Emit" Version="4.3.0" />
</ItemGroup>
2018-02-20 22:21:23 -05:00
</Project>