-
Notifications
You must be signed in to change notification settings - Fork 65
Update samples #530
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 samples #530
Conversation
This change does the following: - Create a .slnLaunch file to easily launch the samples (including the multi-app samples) - Update YARP to 2.1.0 - Clean up registrations to recommended patterns - Convert samples to use MSBuild.SDK.SystemWeb
@joperezr can I get a review of this? |
@@ -18,6 +18,7 @@ | |||
} | |||
}, | |||
"msbuild-sdks": { | |||
"MSBuild.SDK.SystemWeb": "4.0.88", |
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.
How will this get updated when new versions are available? Do we care at all?
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.
Not sure - probably manually until dependabot can handle global.json
|
||
<PropertyGroup> | ||
<NoWarn> | ||
$(NoWarn); |
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: typically you would instead create an .editorconfig or .ruleset where you define which warnings should trigger.
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 agree, but with this it was quick and dirty to remove warnings and I'll follow up with a proper fix to the code patterns
This change does the following: