Skip to content

pvcbuild/pvc-msbuild

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pvc-msbuild

PVC Plugin to execute MSBuild against solution files and project files. Multiple projects and/or solutions can be streamed into the plugin. They will be run in the order passed.

/// Execute a build with the default options:
///   buildTarget: "Build"
///   configuration: "Debug"
///   defineConstants: ""
///   enableParallelism: false
///   outputPath: @"bin\Debug"
///   targetFrameworkVersion: "v4.5"
///   toolsVersion: "12.0"
pvc.Source("SolutionFile.sln")
   .Pipe(new PvcMSBuild());

/// Execute a build of multiple solutions using
/// named parameters overriding default values
pvc.Source("SolutionFile.sln", "OtherSolutionFile.sln")
   .Pipe(new PvcMSBuild(
        buildTarget: "Clean;Build"
        enableParallelism: true
   ))

About

PVC Plugin to execute MSBuild

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages