Let user select Global Properties#6
Open
chris1248 wants to merge 1 commit intomikefourie-zz:masterfrom
Open
Conversation
Problem The build explorer only showed the default configuration and platform This was a problem if you were trying to inspect build properties for a different configuration or platform than what was set as the default in the build project file. Analysis This is not a hard problem to solve. The msbuild API allows for setting arbitrary properties as global variables. Not only that, the msbuild API also has a nice property that gets all the possible configs and platforms that currently exist inside of an msbuild file. Solution Added two combo boxes to the main ribbon that display the current configuration and platform for the file. This is front and center to indicate to the user the importance fact that the properties are interpreted through the lense of the config and platform and that they can change them I also cleaned a few things up here.
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Problem
The build explorer only showed the default configuration and platform
This was a problem if you were trying to inspect build properties for a
different configuration or platform than what was set as the default
in the build project file.
Analysis
This is not a hard problem to solve. The msbuild API allows for setting
arbitrary properties as global variables. Not only that, the msbuild API also
has a nice property that gets all the possible configs and platforms that
currently exist inside of an msbuild file.
Solution
Added two combo boxes to the main ribbon that display the current
configuration and platform for the file. This is front and center to indicate
to the user the importance fact that the properties are interpreted through
the lense of the config and platform and that they can change them
I also cleaned a few things up here.