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

Update to latest 6.0 .Net Runtime/SDK #10229

Merged
merged 1 commit into from
Oct 6, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 6 additions & 6 deletions global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"sdk": {
"version": "6.0.400",
"rollForward": "feature"
}
}
{
"sdk": {
"version": "6.0.401",
"rollForward": "feature"
}
Comment on lines +2 to +5
Copy link
Member

Choose a reason for hiding this comment

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

The update script should be updated to fix the formatting, to decrease noise in the changes

Copy link
Contributor Author

Choose a reason for hiding this comment

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

See https://stackoverflow.com/questions/33145377/how-to-change-tab-width-when-converting-to-json-in-powershell. I didn't want to add another dependancy like Newtonsoft module and the hack with string manipulation feels too hacky. The json is valid and frankly managed by script. Why I didn't do that.

}
2 changes: 1 addition & 1 deletion scripts/RepoLayout.props
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<!-- Set version for runtimeconfig.json, used by DotnetRuntimeBootstrapper for minimal version to support
To be kept in sync with the .NET SDK version in global.json
-->
<RuntimeFrameworkVersion>6.0.8</RuntimeFrameworkVersion>
<RuntimeFrameworkVersion>6.0.9</RuntimeFrameworkVersion>
<SolutionTargetFramework>net6.0-windows</SolutionTargetFramework>
<Configuration Condition="'$(Configuration)' == ''">Debug</Configuration>
<Platform Condition="'$(Platform)' == ''">AnyCPU</Platform>
Expand Down