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

30 lines
1.0 KiB
XML
Raw Normal View History

2018-02-20 22:21:23 -05:00
<Project Sdk="Microsoft.NET.Sdk">
2018-02-11 20:55:29 -05:00
<PropertyGroup>
2018-02-20 22:21:23 -05:00
<TargetFramework>netstandard2.0</TargetFramework>
2018-10-23 17:14:28 -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>
2018-10-25 22:12:59 -04:00
<AssemblyVersion>1.1.6.0</AssemblyVersion>
<FileVersion>1.1.6.0</FileVersion>
2018-10-26 17:17:15 -04:00
<Version>1.1.7</Version>
2018-03-01 08:54:20 -05:00
<PackageProjectUrl>https://github.com/PoweredSoft/DynamicLinq</PackageProjectUrl>
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>