Skip to content

Conversation

bgrainger
Copy link
Member

Fixes #636.

.NET Framework 4.6.1 support ended on 26 April 2022. Signed-off-by: Bradley Grainger <bgrainger@gmail.com>
Dropping netcoreapp3.1 and net461 allows us to use the latest version. Signed-off-by: Bradley Grainger <bgrainger@gmail.com>
Dropping net461 allows the latest version to be used. Signed-off-by: Bradley Grainger <bgrainger@gmail.com>
@bgrainger bgrainger added this to the 2.3 milestone Jan 1, 2023
@bgrainger bgrainger merged commit 9ae6f27 into master Jan 1, 2023
@bgrainger bgrainger deleted the remove-net461 branch January 1, 2023 21:00

<ItemGroup Condition=" '$(TargetFramework)' == 'net461' OR '$(TargetFramework)' == 'net471' OR '$(TargetFramework)' == 'netstandard2.0' OR '$(TargetFramework)' == 'netstandard2.1' ">
<PackageReference Include="System.Diagnostics.DiagnosticSource" Version="6.0.0" />
<ItemGroup Condition=" '$(TargetFramework)' == 'net462' OR '$(TargetFramework)' == 'net471' OR '$(TargetFramework)' == 'netstandard2.0' OR '$(TargetFramework)' == 'netstandard2.1' ">

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: it looks like you only want to bring this in for non .NETCoreApp. You can achieve that via the following condition:

'$(TargetFrameworkIdentifier)' != '.NETCoreApp'. That avoids the hardcoded tfms.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks!

2733cd2

bgrainger added a commit that referenced this pull request Jan 1, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

2 participants