msiを作成するための私のWiX Sharpプログラム:
static public void BuildMsi(string FolderPath)
{
string InstallationDirectoryPath = @"D:\Program";
var project = new Project("MyProduct",
new Dir(InstallationDirectoryPath,
new Files(System.IO.Path.Combine(FolderPath,"**"))));
Compiler.BuildMsi(project);
}
このコードで、解放したいフォルダー パスを渡すと、正常に動作する msi が作成されます。
私の質問は、複数のフォルダーパスを渡したいので、メイン関数は次のようになりますが、コードの途中で何を変更する必要があるかを理解できません
static public void BuildMsi(list<string> folderPath)