-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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 Arcade 8 #8672
Update to Arcade 8 #8672
Conversation
It fires in some very funky places like Dispose methods where it's not _wrong_ but it would be _weird_.
Naive question - can the eng\common* changes associated with the arcade update be made as a maestro flow PR from arcade? (with all other fixes needed for it to go through to be added to that PR) At least those changes comes from arcade (are not msbuild specific) and hence do not need to be reviewed in detail - is that correct? |
I generated the big change in this PR with a But this is broken so don't review it at all yet :) |
/azp run |
Pull request contains merge conflicts. |
@ViktorHofer we are trying to update MSBuild TFM and Arcade version both to net8.0 and currently we are stuck at
Should we temporarily disable the package validation, produce a successfull build (targetting net8.0) and then point baseline to that successfull build? Or is there alternative suggestion how to satisfy baseline validation check with our current baseline (targetting net7.0)? FYI @JaynieBai, @GangWang01 |
This is telling you that you are dropping a TFM in your packages which is considered a breaking change. If that's intentional, you can suppress these errors by updating the suppression file via the following flag: Note that you could also NoWarn the error but that would disable the validation entirely for all TFM changes. |
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.
Looks good to go to me
It seems that only missing changes to satisfy the #8969 as well are updates to readmes:
- src/Framework/README.md
- src/Utilities/README.md
It's a minimal and nonfunctional change - please bundle it into this PR
35b7fa8
to
1aa2d03
Compare
After I pushed the commit that resolved review comment, the new run failed. So I reverted the commit back. The run still failed with the error below. I'm looking into it.
|
Looks like clash with #8856 |
…useless property setting
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 can't formally approve because I started the PR but this looks good to me, let's get it in on Monday @rokonec :)
* Make IDE0251 a suggestion It fires in some very funky places like Dispose methods where it's not _wrong_ but it would be _weird_. * Put expected and actual in the right places for some tlbimp tests * Explicit System.IO.Compression reference on framework * Suppress the error PKV006 for Net 7.0, since we're intentionally dropping it Co-authored-by: Jenny Bai <v-jennybai@microsoft.com> Co-authored-by: Gang Wang <v-gaw@microsoft.com>
Fixes #8969