-
Notifications
You must be signed in to change notification settings - Fork 85
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
Add support for net9.0 #573
Conversation
Directory.Packages.props
Outdated
<MicrosoftBuildPackageVersion Condition="'$(TargetFramework)' == 'net8.0'">17.7.2</MicrosoftBuildPackageVersion> | ||
<MicrosoftBuildPackageVersion>17.8.3</MicrosoftBuildPackageVersion> | ||
|
||
<!-- Please use caution adding a depenendcy to MSBuild packages. Use latest for testing and |
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: "depenendcy" => "dependency"
global.json
Outdated
@@ -1,7 +1,8 @@ | |||
{ | |||
"sdk": { | |||
"version": "8.0.400", | |||
"rollForward": "latestMinor" | |||
"version": "9.0", |
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.
I don't believe this value is valid
@@ -1,6 +1,6 @@ | |||
<Project Sdk="Microsoft.Build.NoTargets"> | |||
<PropertyGroup> | |||
<TargetFrameworks>net40;netstandard2.0</TargetFrameworks> | |||
<TargetFrameworks>net472;netstandard2.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.
If we target netstandard2.0
, we don't really need net472
@@ -1,6 +1,6 @@ | |||
<Project Sdk="Microsoft.Build.NoTargets"> | |||
<PropertyGroup> | |||
<TargetFrameworks>net40;netstandard2.0</TargetFrameworks> | |||
<TargetFrameworks>net472;netstandard2.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.
Same re netstandard2.0
@@ -1,6 +1,6 @@ | |||
<Project Sdk="Microsoft.Build.NoTargets"> | |||
<PropertyGroup> | |||
<TargetFrameworks>net40;netstandard2.0</TargetFrameworks> | |||
<TargetFrameworks>net472;netstandard2.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.
Same
No description provided.