Skip to content

Commit e268100

Browse files
committed
Updated TargetFrameworks to remove old unsupported ones
1 parent e6adaec commit e268100

4 files changed

Lines changed: 8 additions & 15 deletions

File tree

CSRakowski.AsyncStreamsPreparations.Tests/CSRakowski.AsyncStreamsPreparations.Tests.csproj

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net48;net472;net452;net50;net60;netcoreapp3.1</TargetFrameworks>
4+
<TargetFrameworks>net48;net472;net60</TargetFrameworks>
55

66
<IsPackable>false</IsPackable>
77
<IsTestProject>true</IsTestProject>
@@ -20,14 +20,7 @@
2020
</ItemGroup>
2121

2222
<ItemGroup Condition="'$(TargetFramework)' == 'net472' or '$(TargetFramework)' == 'net48'">
23-
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="5.0.0" />
24-
</ItemGroup>
25-
26-
<ItemGroup Condition="'$(TargetFramework)' == 'net452' or '$(TargetFramework)' == 'netcoreapp3.1' or '$(TargetFramework)' == 'net50'">
27-
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
28-
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
29-
<PrivateAssets>all</PrivateAssets>
30-
</PackageReference>
23+
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="6.0.0" />
3124
</ItemGroup>
3225

3326
<ItemGroup Condition="'$(TargetFramework)' == 'net472' or '$(TargetFramework)' == 'net48' or '$(TargetFramework)' == 'net60'">

CSRakowski.AsyncStreamsPreparations/CSRakowski.AsyncStreamsPreparations.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net50;netstandard2.1;netstandard2.0;netstandard1.1</TargetFrameworks>
4+
<TargetFrameworks>netstandard2.1;netstandard2.0;netstandard1.1</TargetFrameworks>
55
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
66
<Description>Quick helper library containing interfaces and classes to help you prepare for the C# 8 Async Streams feature.</Description>
77
<PackageProjectUrl>https://github.com/csrakowski/CSRakowski.AsyncStreamsPreparations</PackageProjectUrl>
@@ -12,7 +12,7 @@
1212
<PackageTags>C# 8, AsyncStreams, IAsyncEnumerable, IAsyncDisposable</PackageTags>
1313
<SignAssembly>true</SignAssembly>
1414
<AssemblyOriginatorKeyFile>CSRakowski.AsyncStreamsPreparations.snk</AssemblyOriginatorKeyFile>
15-
<PackageReleaseNotes>* First attempt at enabling SourceLink.</PackageReleaseNotes>
15+
<PackageReleaseNotes>* Updated TargetFrameworks to remove old unsupported ones.</PackageReleaseNotes>
1616
</PropertyGroup>
1717

1818
<PropertyGroup>
@@ -28,7 +28,7 @@
2828
</ItemGroup>
2929

3030
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
31-
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="5.0.0" />
31+
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="6.0.0" />
3232
</ItemGroup>
3333

3434
<ItemGroup>

Directory.Build.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<Project>
22
<PropertyGroup>
33
<Authors>Christiaan Rakowski</Authors>
4-
<Copyright>Christiaan Rakowski - 2018-2023</Copyright>
5-
<Version>1.5.2</Version>
4+
<Copyright>Christiaan Rakowski - 2018-2024</Copyright>
5+
<Version>1.6.0</Version>
66
<LangVersion>latest</LangVersion>
77
</PropertyGroup>
88

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2018-2023 Christiaan Rakowski
3+
Copyright (c) 2018-2024 Christiaan Rakowski
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

0 commit comments

Comments
 (0)