Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

migrate to .NET 4.6.2 #86

Merged
merged 6 commits into from
Aug 7, 2022
Merged

Conversation

jingwood
Copy link
Owner

@jingwood jingwood commented Aug 2, 2022

  • Change to Visual Studio 2022 C++ SDK (v142 to v143)
  • Change to .NET 6.0 Change .NET 4.0 to .NET 4.6.2 (since .NET 4.0 seems no longer supported)

@jingwood jingwood mentioned this pull request Aug 2, 2022
<TargetFrameworks>net4.0;netcoreapp3.1</TargetFrameworks>
<TargetFrameworks>net6.0-windows</TargetFrameworks>
Copy link
Collaborator

@drewnoakes drewnoakes Aug 3, 2022

Choose a reason for hiding this comment

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

This would mean users of .NET Framework could no longer use this library.

I was recently trying to get this library working in a small personal VS extension I was writing (which is why I needed strong naming). VS runs on net472, so this change would mean I could no longer use updated versions of the library in VS.

If there's no need to use features from the newer runtime or framework then upgrading this here seems like creating a limitation that's not needed for consumers of the project.

@@ -1,25 +1,25 @@
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">

<PropertyGroup>
<TargetFrameworks>net4.7.2;netcoreapp3.1</TargetFrameworks>
<TargetFrameworks>net6.0-windows</TargetFrameworks>
Copy link
Collaborator

Choose a reason for hiding this comment

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

Adding net6.0-windows to the example project makes sense, as it validates that the library can in fact work in .NET 6. However I would keep net4.7.2 and netcoreapp3.1 as well, just for coverage.

<TargetFrameworks>net4.0;netstandard2.1</TargetFrameworks>
<TargetFrameworks>net6.0;netstandard2.0</TargetFrameworks>
Copy link
Collaborator

Choose a reason for hiding this comment

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

If lowering to netstandard2.0 is possible, we should do that in order to maximise the number of environments that can consume this library. Keeping net4.0 would also maximise that.

@jingwood
Copy link
Owner Author

jingwood commented Aug 7, 2022

@drewnoakes Thanks for your review! The settings have been fixed. Could you please check again?

Just one point that I'm not sure is upgrading .NET 4.0 to .NET 4.6.2 because .NET 4.0 seems no longer supported and cannot be compiled with VS2022.

@jingwood jingwood changed the title migrate to .NET 6 migrate to .NET 4.6.2 Aug 7, 2022
@drewnoakes
Copy link
Collaborator

Increasing the requirement to 4.6 is fine and shouldn't leave too many people behind. They can always use the old package if needed.

@jingwood jingwood merged commit b01e8ef into master Aug 7, 2022
@jingwood jingwood deleted the feature/migrateToVS2022AndDotNet6 branch August 7, 2022 15:52
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants