Skip to content
Discussion options

You must be logged in to vote

Use MSBuild to find what it uses should be a good approach.

Right click VS project and select "Open in Terminal", the opened terminal will use MSBuild shipped with Visual Studio.

msbuild /pp:pp.xml

This will process the project file and import everything required. You can search for the xml to find what are imported.

msbuild /bl:bl.binlog

This will do a build, then log every step MSBuild does. Then you can use the Log Viewer to inspect it. The log should contain some details of everything invoked.

Replies: 2 comments 2 replies

Comment options

You must be logged in to vote
1 reply
@Takym
Comment options

Comment options

You must be logged in to vote
1 reply
@Takym
Comment options

Answer selected by Takym
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants