How to find the output of an assembly event in a TFS assembly

We have a solution with a large number of projects. One of these projects contains a Visual Studio pre-build event that automatically generates all the code files used in this project. This works well on our local machines.

However, building it using the TFS build, it fails with a very non-XY descriptor. Thus, the pre-build event fails, but so far I have not been able to find the result usually generated by this event (console output).

I tried debugging the TFS build service, but it didn’t give me anything, I increased the registration of the assembly to Diagnostics, but still nothing. The assembly log file is not created anywhere.

So this exit is available anywhere, and if so, where?

+6
source share
1 answer

In the View Resume view, in the construction results view, you should see a summary of the number of projects / solutions compiled with the expand / collapse triangle next to it. If you expand this node, you should see a View Log File link, which will open the MSBuild source log.

+1
source

Source: https://habr.com/ru/post/888407/


All Articles