Skip to content

Commit 2228b45

Browse files
Drop support for netcoreapp3.0 (#1228)
1 parent 4b56631 commit 2228b45

File tree

11 files changed

+3
-1528
lines changed

11 files changed

+3
-1528
lines changed

src/packageSourceGenerator/PackageSourceGenerator.proj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<PackagesTargetDirectory Condition="'$(PackageType)' == 'text'">$(RepoRoot)src\textOnlyPackages\src\</PackagesTargetDirectory>
1010
<!-- The following target frameworks aren't buildable with the current SDK and as they don't contribute to the set of
1111
source build target verticals, can be safely excluded. -->
12-
<ExcludeTargetFrameworks>monoandroid*;monotouch*;net20;net35;net4*;netcore50;netcoreapp2.*;portable*;uap*;win8;win81;wp8;wpa81;xamarin*</ExcludeTargetFrameworks>
12+
<ExcludeTargetFrameworks>monoandroid*;monotouch*;net20;net35;net4*;netcore50;netcoreapp2.*;netcoreapp3.0;portable*;uap*;win8;win81;wp8;wpa81;xamarin*</ExcludeTargetFrameworks>
1313
<!-- The following target frameworks should be excluded even though they are supported by the current SDK because there is no need to have them.
1414
Only exclude them when target frameworks to include aren't provided. -->
1515
<ExcludeTargetFrameworks Condition="'$(IncludeTargetFrameworks)' == ''">$(ExcludeTargetFrameworks);netcoreapp3.1;netstandard1*</ExcludeTargetFrameworks>

src/referencePackages/Directory.Build.targets

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@
5151
<!-- Keep in sync with available targeting packs under src/targetPacks/ILsrc. -->
5252
<ItemGroup>
5353
<KnownFrameworkReference Update="@(KnownFrameworkReference->WithMetadataValue('Identity', 'Microsoft.NETCore.App'))">
54-
<TargetingPackVersion Condition="'%(TargetFramework)' == 'netcoreapp3.0'">3.0.0</TargetingPackVersion>
5554
<TargetingPackVersion Condition="$([System.Text.RegularExpressions.Regex]::IsMatch('%(TargetFramework)', '^net\d+\.0$'))">$([System.Text.RegularExpressions.Regex]::Match('%(TargetFramework)', '\d+').Value).0.0</TargetingPackVersion>
5655
</KnownFrameworkReference>
5756

src/referencePackages/src/system.formats.asn1/5.0.0/System.Formats.Asn1.5.0.0.csproj

Lines changed: 0 additions & 15 deletions
This file was deleted.

src/referencePackages/src/system.formats.asn1/5.0.0/lib/netstandard2.0/System.Formats.Asn1.cs

Lines changed: 0 additions & 406 deletions
This file was deleted.

src/referencePackages/src/system.formats.asn1/5.0.0/system.formats.asn1.nuspec

Lines changed: 0 additions & 32 deletions
This file was deleted.
Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,9 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>netcoreapp3.0;netstandard2.0;netstandard2.1</TargetFrameworks>
4+
<TargetFrameworks>netstandard2.0;netstandard2.1</TargetFrameworks>
55
<PackageVersion>5.0.0</PackageVersion>
66
<AssemblyName>System.Security.Cryptography.Cng</AssemblyName>
77
</PropertyGroup>
88

9-
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp3.0'">
10-
<ProjectReference Include="../../system.formats.asn1/5.0.0/System.Formats.Asn1.5.0.0.csproj" />
11-
</ItemGroup>
12-
139
</Project>

0 commit comments

Comments
 (0)