How to call a static class method from msbuild and save its results in a list?
EDIT: Alright, let me explain a little further. I am using a file builder using sandcastle to create documentation for my application. One of the requirements is that you must specify the documentation sources as follows:
<DocumentationSources>
<DocumentationSource sourceFile="$(MSBuildProjectDirectory)\..\src\myApp\bin\Debug\myApp.exe" xmlns="" />
<DocumentationSource sourceFile="$(MSBuildProjectDirectory)\..\src\myApp\bin\Debug\myApp.xml" xmlns="" />
</DocumentationSources>
The Builder Builder file for Sandcastle comes with the utils assembly, which has a way to get all the dll and xml files from the specified directory. I want to call a method from this assembly and save its result as a list <DocumentationSource>. This is a static method that returnsCollection<string>
source
share