Replies: 1 comment 1 reply
-
Does Visual Studio's "Batch Build" feature do what you want? You would check the set of configurations you wish to build. This UI is available via the Build menu. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Visual Studio has a combobox for every file, which can be used to switch between the different "contexts"(projects) that include that file
Captured in the above image is the combobox along with some sample values it can have. Currently, I know that new contexts can be as follows,
ProjectA
)<Compile Include"..." />
(ProjectB
)I wish to know if there's other ways to create such contexts, for example, having
ProjectA (x86)
andProjectA (x64)
compiled and checked side-by-side(likeProjectA (net7.0)
andProjectA (net8.0)
) without having to switch the Platform using the build configuration manager. I hope to know if there's way to extend it with any arbitrary MSBuild property, not justPlatform
Beta Was this translation helpful? Give feedback.
All reactions