-
Notifications
You must be signed in to change notification settings - Fork 0
/
CapitalSix.Linq.Extensions.csproj
29 lines (26 loc) · 1.26 KB
/
CapitalSix.Linq.Extensions.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageVersion>1.0</PackageVersion>
<PackageId>CapitalSix.Linq.Extensions</PackageId>
<PackageReadmeFile>README.md</PackageReadmeFile>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Title>A collection of reusable Linq extensions.</Title>
<RepositoryUrl>https://github.com/sixpaq/capitalsix.linq.extensions</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<Authors>Mike Wijnen</Authors>
<Company>CapitalSix</Company>
<Nullable>enable</Nullable>
<RootNamespace>CapitalSix.Linq.Extensions</RootNamespace>
<PackageLicense>none</PackageLicense>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<License>none</License>
<Description>This module contains a set of practical and resusable Linq extensions.</Description>
<PackageTags>linq;extensions;chunk;group;duplicates;</PackageTags>
<IncludeContentInPack>true</IncludeContentInPack>
<IncludeBuildOutput>true</IncludeBuildOutput>
</PropertyGroup>
<ItemGroup>
<None Include="README.md" Pack="true" Visible="false" PackagePath="README.md" />
</ItemGroup>
</Project>