29 lines
997 B
XML
29 lines
997 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|
<Company>Powered Softwares Inc.</Company>
|
|
<Authors>David Lebée</Authors>
|
|
<Copyright></Copyright>
|
|
<Product>DynamicLinq by PoweredSoft</Product>
|
|
<Description>Allows users to make dynamic query over a IQueryable<T></Description>
|
|
<RepositoryUrl>https://github.com/PoweredSoft/DynamicLinq</RepositoryUrl>
|
|
<RepositoryType>github</RepositoryType>
|
|
<PackageTags>dynamic linq queryable</PackageTags>
|
|
<AssemblyVersion>1.1.0.0</AssemblyVersion>
|
|
<FileVersion>1.1.0.0</FileVersion>
|
|
<Version>1.1.0</Version>
|
|
<PackageProjectUrl>https://github.com/PoweredSoft/DynamicLinq</PackageProjectUrl>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="Properties\" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="System.Reflection.Emit" Version="4.3.0" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|