Is there any way to change the VM Size of an Azure Cloud Service without having to rebuild the package?
The vmsize parameter is defined
vmsize
You can use Azure Powershell:
C:\PS>Get-AzureVM -ServiceName "MySvc1" -Name "MyVM3" | Set-AzureVMSize "Basic_A2" | Update-AzureVM