This content is part of a third party extension that is not supported by the Cake project.
For more information about this extension see
Cake.Squirrel .
Summary
Runs SyncReleases using the specified settings.
Syntax
public static void SyncReleases ( this ICakeContext context, SyncReleasesSettings settings)
Examples
#tool "Squirrel.Windows"
#addin Cake.Squirrel
Task("SyncReleases" )
.Does(() => {
var settings = new SyncReleasesSettings {
ReleaseDirectory = "pathToDirectory"
Url = new Uri("https://someurl.com" );
Token = "myToken"
};
SyncReleases(settings);
});
Attributes
Type
Description
CakeMethodAliasAttribute
Parameters
Return Value