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

33 lines
1.4 KiB
XML
Raw Permalink 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>
2019-11-27 17:10:35 -05:00
<PackageIconUrl>https://secure.gravatar.com/avatar/4e32f73820c16718909a06c2927f1f8b?s=512&amp;amp;r=g&amp;amp;d=retro</PackageIconUrl>
2018-02-22 18:49:38 -05:00
<RepositoryType>github</RepositoryType>
<PackageTags>dynamic linq queryable</PackageTags>
2019-11-27 17:10:35 -05:00
<Version>1.1.0$(VersionSuffix)</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>