-
Notifications
You must be signed in to change notification settings - Fork 4.8k
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 .vsconfig file #77189
Update .vsconfig file #77189
Conversation
Tagging subscribers to this area: @dotnet/area-meta Issue DetailsWhile setting up a new machine, I tried using the
I also sorted the lines in the file to make it easier to scan/review, but I did that as a separate commit for reviewing the changes (346eb14) vs. the sorting (2480483) in this PR. With this updated config file, I can cleanly build
|
It wasn't easy to see the real diff due to different ordering: - "Microsoft.Net.Component.4.5.2.TargetingPack",
- "Microsoft.NetCore.Component.Runtime.5.0",
+ "Component.CPython39.x64",
+ "Microsoft.Component.CodeAnalysis.SDK",
+ "Microsoft.NetCore.Component.Runtime.6.0",
+ "Microsoft.VisualStudio.Component.VC.CMake.Project", |
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!
Thanks. Sorry about the ordering. It'll help in the future, but it made this one frustrating. Good tip on posting a comment with the actual diff, @AntonLapounov. :) |
The failure was a timeout in a NativeAOT smoke test; unrelated.
|
While setting up a new machine, I tried using the
.vsconfig
file to configure Visual Studio 2022 Community, but I encountered a few problems:I also sorted the lines in the file to make it easier to scan/review, but I did that as a separate commit for reviewing the changes (346eb14) vs. the sorting (2480483) in this PR.
With this updated config file, I can cleanly build
clr+libs+libs.tests
with a fresh install of VS 2022 Community, importing these settings only.