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.SqlServer.
Summary
Stops the LocalDB instance.
Syntax
public static void LocalDbStopInstance(this ICakeContext context, string instanceName)
Examples
#addin "nuget:?package=Cake.SqlServer"
Task("Stop-LocalDB")
.Does(() =>
{
LocalDbStopInstance("Cake-Test");
});
Attributes
Type |
Description |
CakeMethodAliasAttribute |
|
Parameters
Name |
Type |
Description |
context |
ICakeContext |
Cake context |
instanceName |
string |
Name of the instance to stop |
Return Value