|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 |
|
3 | | - <PropertyGroup> |
4 | | - <TargetFrameworks>netstandard2.0; netstandard2.1</TargetFrameworks> |
5 | | - <LangVersion>latest</LangVersion> |
| 3 | + <PropertyGroup> |
| 4 | + <TargetFrameworks>netstandard2.0; netstandard2.1</TargetFrameworks> |
| 5 | + <LangVersion>latest</LangVersion> |
6 | 6 | <Nullable>enable</Nullable> |
7 | | - <Authors>electricessence</Authors> |
8 | | - <Description> |
9 | | -A set of extensions for optimizing/simplifying System.Threading.Channels usage. |
| 7 | + <Authors>electricessence</Authors> |
| 8 | + <Description> |
| 9 | + A set of extensions for optimizing/simplifying System.Threading.Channels usage. |
10 | 10 |
|
11 | | -Includes: |
12 | | -ReadUntilCancelled, ReadAll, ReadAllConcurrently, WriteAll, WriteAllConcurrently, and Pipe operations. |
| 11 | + Includes: |
| 12 | + ReadUntilCancelled, ReadAll, ReadAllConcurrently, WriteAll, WriteAllConcurrently, and Pipe operations. |
13 | 13 |
|
14 | | -Part of the "Open" set of libraries. |
15 | | - </Description> |
16 | | - <PackageProjectUrl>https://github.com/electricessence/Open.ChannelExtensions</PackageProjectUrl> |
17 | | - <PackageLicenseUrl></PackageLicenseUrl> |
18 | | - <Copyright>https://github.com/electricessence/Open.ChannelExtensions/blob/master/LICENSE</Copyright> |
19 | | - <RepositoryType>git</RepositoryType> |
20 | | - <PackageTags>channels dotnet threading tasks extensions</PackageTags> |
21 | | - <GeneratePackageOnBuild>true</GeneratePackageOnBuild> |
22 | | - <Version>3.2.2</Version> |
23 | | - <PackageLicenseExpression>MIT</PackageLicenseExpression> |
24 | | - <PackageReleaseNotes></PackageReleaseNotes> |
25 | | - <RepositoryUrl>https://github.com/electricessence/Open.ChannelExtensions</RepositoryUrl> |
26 | | - </PropertyGroup> |
| 14 | + Part of the "Open" set of libraries. |
| 15 | + </Description> |
| 16 | + <PackageProjectUrl>https://github.com/electricessence/Open.ChannelExtensions</PackageProjectUrl> |
| 17 | + <PackageLicenseUrl></PackageLicenseUrl> |
| 18 | + <Copyright>https://github.com/electricessence/Open.ChannelExtensions/blob/master/LICENSE</Copyright> |
| 19 | + <RepositoryType>git</RepositoryType> |
| 20 | + <PackageTags>channels dotnet threading tasks extensions</PackageTags> |
| 21 | + <GeneratePackageOnBuild>true</GeneratePackageOnBuild> |
| 22 | + <Version>3.2.2</Version> |
| 23 | + <PackageLicenseExpression>MIT</PackageLicenseExpression> |
| 24 | + <PackageReleaseNotes></PackageReleaseNotes> |
| 25 | + <RepositoryUrl>https://github.com/electricessence/Open.ChannelExtensions</RepositoryUrl> |
| 26 | + <Nullable>enable</Nullable> |
| 27 | + </PropertyGroup> |
27 | 28 |
|
28 | 29 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'"> |
29 | 30 | <DocumentationFile>Documentation.xml</DocumentationFile> |
30 | 31 | </PropertyGroup> |
31 | 32 |
|
32 | 33 | <ItemGroup> |
33 | | - <PackageReference Include="System.Threading.Channels" Version="4.6.0" /> |
34 | | - </ItemGroup> |
| 34 | + <PackageReference Include="System.Threading.Channels" Version="4.6.0" /> |
| 35 | + </ItemGroup> |
35 | 36 |
|
36 | 37 | <ItemGroup> |
37 | 38 | <PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="2.9.7"> |
|
0 commit comments