-
Notifications
You must be signed in to change notification settings - Fork 129
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
.NET 8 RC2 #400
.NET 8 RC2 #400
Conversation
In order to fix the tests that do not pass when running on .NET 8,
I had to read that sentence a few times to really grasp it! |
sample/Sample/Sample.csproj
Outdated
@@ -1,7 +1,7 @@ | |||
<Project Sdk="Microsoft.NET.Sdk"> | |||
|
|||
<PropertyGroup> | |||
<TargetFrameworks>net6.0;net7.0;net462</TargetFrameworks> | |||
<TargetFrameworks>net6.0;net7.0;net462;net8.0</TargetFrameworks> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: net462;net6.0;net7.0;net8.0
would be easier to the eyes than net6.0;net7.0;net462;net8.0
@@ -2,7 +2,7 @@ | |||
|
|||
<PropertyGroup> | |||
<TargetFrameworks Condition=" '$(OS)' == 'Windows_NT'">net48</TargetFrameworks> | |||
<TargetFrameworks>$(TargetFrameworks);net7.0;net6.0</TargetFrameworks> | |||
<TargetFrameworks>$(TargetFrameworks);net7.0;net6.0;net8.0</TargetFrameworks> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: The order of the target frameworks is also a bit unsettling here.
Thanks for checking this one out @0xced, I'll take a look and fix it up 👍 |
Working my way through these in preparation for RTM in a couple of weeks.
I tried to keep this one as additive/nondestructive as possible, given all the quirks this project has to deal with across the supported TFMs :-)