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.Vagrant.
                            
	
		Summary
                This command creates and configures the default machine according to your Vagrantfile, and the specified settings
            
		- Assembly
- Cake.Vagrant .dll 
- Namespace
- Cake.Vagrant 
- Containing Type
- VagrantRunner
Syntax
public void Up(Action<VagrantUpSettings> configure)Examples
Vagrant.Up(settings =>
            settings.DestroyOnError()
            .InstallProvider()
            .WithProvisioners("chef", "shell")
            .EnableParallel()
            .UseProvider("hyperv"));Parameters
| Name | Type | Description | 
|---|---|---|
| configure | Action | Settings to use when starting your machine | 
Return Value
| Type | Description | 
|---|---|
| void | 
