Alias to assist with running SPCAF from Cake build scripts
#addin nuget:?package=Cake.SPCAF&version={Version}
This addin exposes the functionality of SPCAF to the Cake DSL by being a very thin wrapper around its command line interface; this means that you can use Cake.SPCAF in the same way as you would normally use SPCAF CLI.
#addin nuget:?package=Cake.SPCAF&version={Version}
var wspFile = File(@".\example\solution_example.wsp");
var outputFile = File(@".\example\outputfilename.html");
Task("SPCAF-Example-Fluent")
.Does(() =>
{
SPCAF(s => s
.WithXmlReport()
.WithHtmlReport()
.WithInput(wspFile)
.WithOutput(outputFile)
);
});
Jürgen Rosenthal-Buroh @JuergenRB
Cake.SPCAF follows the Contributor Covenant Code of Conduct.
We accept Pull Requests.
Small note: If editing the Readme, please conform to the standard-readme specification.