-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Add missing SDK dependency to global.json #38426
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
Conversation
| "Microsoft.DotNet.Arcade.Sdk": "9.0.0-beta.24080.3", | ||
| "Microsoft.DotNet.Helix.Sdk": "9.0.0-beta.24080.3" | ||
| "Microsoft.DotNet.Helix.Sdk": "9.0.0-beta.24080.3", | ||
| "Microsoft.Build.NoTargets": "3.7.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.
Where is the NoTargets msbuild sdk used in this repo? How did this work without this entry before?
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.
| <Project Sdk="Microsoft.Build.NoTargets/3.7.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.
Got it. Shouldn't this PR also remove that explicit version there?
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.
Good call - I was thinking of that as well - will do.
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.
Pushed the update to this PR with a fix for this.
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.
Thanks. Please do the same in the other PRs as well.
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.
Sure - will update razor PR soon: dotnet/razor#9886
b8a9939 to
26b3421
Compare
Contributes to: dotnet/source-build#3170
Backport of changes in dotnet/installer#18478
Description
Each .NET repo needs to specify all used SDKs in
global.jsonfile. This change adds the missing SDK.