I have a Visual Studio C# solution with 3 different projects in it. In each of the projects I’ve commented all the code using xml-comments. If I want the comments build into xml, I have to specify a output file for each project. Is it possible to build all xml comments into one file?
Share
you can use a post build event with the copy command using the following syntax:
I would put this in the post build event for the main project that depends on everything else in the solution.