-
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
Add .vsconfig file #3575
Closed
Closed
Add .vsconfig file #3575
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
{ | ||
"version": "1.0", | ||
"components": [ | ||
"Microsoft.VisualStudio.Component.CoreEditor", | ||
"Microsoft.VisualStudio.Workload.CoreEditor", | ||
"Microsoft.NetCore.Component.Runtime.5.0", | ||
"Microsoft.NetCore.Component.Runtime.3.1", | ||
"Microsoft.NetCore.Component.SDK", | ||
"Microsoft.VisualStudio.Component.NuGet", | ||
"Microsoft.Net.Component.4.6.1.TargetingPack", | ||
"Microsoft.Net.Component.4.6.2.TargetingPack", | ||
"Microsoft.VisualStudio.Component.Roslyn.Compiler", | ||
"Microsoft.VisualStudio.Component.Roslyn.LanguageServices", | ||
"Microsoft.Net.Component.4.7.2.TargetingPack", | ||
"Microsoft.VisualStudio.Component.SQL.CLR", | ||
"Microsoft.Net.Component.4.5.TargetingPack", | ||
"Microsoft.VisualStudio.Component.IntelliCode", | ||
"Microsoft.Net.Core.Component.SDK.2.1", | ||
"Microsoft.VisualStudio.Component.DiagnosticTools", | ||
"Microsoft.VisualStudio.Component.AppInsights.Tools", | ||
"Microsoft.VisualStudio.Component.Windows10SDK.18362", | ||
"Microsoft.ComponentGroup.Blend", | ||
"Microsoft.VisualStudio.ComponentGroup.MSIX.Packaging", | ||
"Microsoft.Component.NetFX.Native", | ||
"Microsoft.VisualStudio.ComponentGroup.UWP.NetCoreAndStandard", | ||
"Microsoft.VisualStudio.ComponentGroup.UWP.Xamarin", | ||
"Microsoft.VisualStudio.ComponentGroup.UWP.Support", | ||
"Microsoft.VisualStudio.Component.Windows10SDK.19041", | ||
"Microsoft.VisualStudio.Workload.Universal" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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 think we need both of these runtimes, eh? @Sergio0694 @azchohfi
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.
Was playing around with trying to install and uninstall particular components...

The UWP Workload seems to require both those components.
ref
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 was also playing around with creating a solution filter for the .NET Standard projects only, to make life easier for contributors that might only want to contribute to them (for instance, people that are on a Mac or on Linux). Would it make sense to do both things in this PR since it is about a closely related matter? Also about this, should we offer two separate
.vsconfig
files, one of which only targeting the cross platform .NET Standard toolset and without any Windows specific SDK needed? I think just the .NET SDK might be enough for them 🤔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.
If we want to expand this pr it could also provide some value to connect this file into our CI system.
If we make it so that the build server only uses the VS comments from this file it could help in many ways.