|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 |
|
3 | 3 | <PropertyGroup> |
4 | | - <TargetFrameworks>net50;netstandard2.1;netstandard2.0;netstandard1.1</TargetFrameworks> |
5 | | - <GeneratePackageOnBuild>true</GeneratePackageOnBuild> |
6 | | - <Description>Quick helper library containing interfaces and classes to help you prepare for the C# 8 Async Streams feature.</Description> |
7 | | - <PackageProjectUrl>https://github.com/csrakowski/CSRakowski.AsyncStreamsPreparations</PackageProjectUrl> |
8 | | - <PackageLicenseFile>LICENSE</PackageLicenseFile> |
9 | | - <PackageReadmeFile>README.md</PackageReadmeFile> |
10 | | - <RepositoryUrl>https://github.com/csrakowski/CSRakowski.AsyncStreamsPreparations</RepositoryUrl> |
11 | | - <RepositoryType>Git</RepositoryType> |
12 | | - <PackageTags>C# 8, AsyncStreams, IAsyncEnumerable, IAsyncDisposable</PackageTags> |
13 | | - <SignAssembly>true</SignAssembly> |
14 | | - <AssemblyOriginatorKeyFile>CSRakowski.AsyncStreamsPreparations.snk</AssemblyOriginatorKeyFile> |
15 | | - <PackageReleaseNotes>* First attempt at enabling SourceLink.</PackageReleaseNotes> |
| 4 | + <TargetFrameworks>netstandard2.1;netstandard2.0;netstandard1.1</TargetFrameworks> |
| 5 | + <GeneratePackageOnBuild>true</GeneratePackageOnBuild> |
| 6 | + <Description>Quick helper library containing interfaces and classes to help you prepare for the C# 8 Async Streams feature.</Description> |
| 7 | + <PackageProjectUrl>https://github.com/csrakowski/CSRakowski.AsyncStreamsPreparations</PackageProjectUrl> |
| 8 | + <PackageLicenseFile>LICENSE</PackageLicenseFile> |
| 9 | + <PackageReadmeFile>README.md</PackageReadmeFile> |
| 10 | + <RepositoryUrl>https://github.com/csrakowski/CSRakowski.AsyncStreamsPreparations</RepositoryUrl> |
| 11 | + <RepositoryType>Git</RepositoryType> |
| 12 | + <PackageTags>C# 8, AsyncStreams, IAsyncEnumerable, IAsyncDisposable</PackageTags> |
| 13 | + <SignAssembly>true</SignAssembly> |
| 14 | + <AssemblyOriginatorKeyFile>CSRakowski.AsyncStreamsPreparations.snk</AssemblyOriginatorKeyFile> |
| 15 | + <PackageReleaseNotes>* Updated TargetFrameworks to remove old unsupported ones.</PackageReleaseNotes> |
16 | 16 | </PropertyGroup> |
17 | 17 |
|
18 | 18 | <PropertyGroup> |
19 | | - <DocumentationFile>bin\$(Configuration)\$(TargetFramework)\CSRakowski.AsyncStreamsPreparations.xml</DocumentationFile> |
| 19 | + <DocumentationFile>bin\$(Configuration)\$(TargetFramework)\CSRakowski.AsyncStreamsPreparations.xml</DocumentationFile> |
20 | 20 | </PropertyGroup> |
21 | 21 |
|
22 | 22 | <PropertyGroup Condition="'$(TargetFramework)' != 'netstandard1.1'"> |
23 | | - <DefineConstants>$(DefineConstants);HAS_ASYNCENUMERABLE</DefineConstants> |
| 23 | + <DefineConstants>$(DefineConstants);HAS_ASYNCENUMERABLE</DefineConstants> |
24 | 24 | </PropertyGroup> |
25 | 25 |
|
26 | | - <ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0' or '$(TargetFramework)' == 'netstandard1.1'"> |
27 | | - <PackageReference Include="System.Threading.Tasks.Extensions" Version="4.5.4" /> |
| 26 | + <ItemGroup Condition="'$(TargetFramework)' == 'netstandard1.1'"> |
| 27 | + <PackageReference Include="System.Threading.Tasks.Extensions" Version="4.5.4" /> |
28 | 28 | </ItemGroup> |
29 | | - |
| 29 | + |
30 | 30 | <ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'"> |
31 | | - <PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="5.0.0" /> |
| 31 | + <PackageReference Include="System.Threading.Tasks.Extensions" Version="[4.6,)" /> |
| 32 | + <PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="6.0.0" /> |
32 | 33 | </ItemGroup> |
33 | 34 |
|
34 | 35 | <ItemGroup> |
35 | | - <None Include="..\LICENSE" Pack="true" PackagePath="\"/> |
36 | | - <None Include="..\README.md" Pack="true" PackagePath="\"/> |
| 36 | + <None Include="..\LICENSE" Pack="true" PackagePath="\"/> |
| 37 | + <None Include="..\README.md" Pack="true" PackagePath="\"/> |
37 | 38 | </ItemGroup> |
38 | 39 |
|
39 | 40 | </Project> |
0 commit comments