adamralph / bau

The C# task runner
MIT License
152 stars 17 forks source link

Bau.MSBuild: Specify a custom path to msbuild.exe #136

Open adamralph opened 10 years ago

adamralph commented 10 years ago
bau.MSBuild("build")
    .Do(exec =>
    {
        exec.Path = "C:\foo\msbuild.exe";
    });