#1
|
|||
|
|||
Determining Project Outputs From Solution File
Is there an elegant (straightfoward) method in VBP, given a Visual Studio Solution (.sln) file, to determine what project outputs will be build?
The goal here is to be able to do a Perforce "Mark for Edit" on only the necessary binary output files prior to building the solution. |
#2
|
|||
|
|||
There currently isn't a way to retrieve a solution's target executable filenames as parsed by the Make VS* actions, but we'll consider exposing that information in the future. For now, you would need to manually parse the sln+constituent project files for that information.
As far as determining which targets will actually be built, there isn't really any way to tell beforehand. devenv/msbuild determine that when building. |
|
|