Skip to content

Commit c2fbd66

Browse files
committed
Fix Format Problem
1 parent 237f267 commit c2fbd66

File tree

9 files changed

+10
-5
lines changed

9 files changed

+10
-5
lines changed

src/CLU/Microsoft.Azure.Commands.Compute/AvailabilitySets/RemoveAzureAvailabilitySetCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
namespace Microsoft.Azure.Commands.Compute
2121
{
2222
[Cmdlet(VerbsCommon.Remove, ProfileNouns.AvailabilitySet)]
23-
[OutputType(typeof(PSOperation))]
23+
[OutputType(typeof(void))]
2424
public class RemoveAzureAvailabilitySetCommand : AvailabilitySetBaseCmdlet
2525
{
2626
[Parameter(

src/CLU/Microsoft.Azure.Commands.Compute/Extension/CustomScript/RemoveAzureVMCustomScriptExtensionCommand.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ namespace Microsoft.Azure.Commands.Compute
2121
[Cmdlet(
2222
VerbsCommon.Remove,
2323
ProfileNouns.VirtualMachineCustomScriptExtension)]
24+
[OutputType(typeof(void))]
2425
public class RemoveAzureVMCustomScriptExtensionCommand : VirtualMachineExtensionBaseCmdlet
2526
{
2627
[Parameter(

src/CLU/Microsoft.Azure.Commands.Compute/Extension/CustomScript/SetAzureVMCustomScriptExtensionCommand.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ namespace Microsoft.Azure.Commands.Compute
3434
VerbsCommon.Set,
3535
ProfileNouns.VirtualMachineCustomScriptExtension,
3636
DefaultParameterSetName = SetCustomScriptExtensionByContainerBlobsParamSetName)]
37+
[OutputType(typeof(void))]
3738
public class SetAzureVMCustomScriptExtensionCommand : VirtualMachineExtensionBaseCmdlet
3839
{
3940
protected const string SetCustomScriptExtensionByContainerBlobsParamSetName = "SetCustomScriptExtensionByContainerAndFileNames";

src/CLU/Microsoft.Azure.Commands.Compute/Extension/VMAccess/RemoveAzureVMAccessExtension.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ namespace Microsoft.Azure.Commands.Compute
2121
[Cmdlet(
2222
VerbsCommon.Remove,
2323
ProfileNouns.VirtualMachineAccessExtension)]
24+
[OutputType(typeof(void))]
2425
public class RemoveAzureVMAccessExtensionCommand : VirtualMachineExtensionBaseCmdlet
2526
{
2627
[Parameter(

src/CLU/Microsoft.Azure.Commands.Compute/Extension/VMAccess/SetAzureVMAccessExtension.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ namespace Microsoft.Azure.Commands.Compute
2525
[Cmdlet(
2626
VerbsCommon.Set,
2727
ProfileNouns.VirtualMachineAccessExtension)]
28+
[OutputType(typeof(void))]
2829
public class SetAzureVMAccessExtensionCommand : VirtualMachineExtensionBaseCmdlet
2930
{
3031
private const string userNameKey = "UserName";

src/CLU/Microsoft.Azure.Commands.Compute/VirtualMachine/Action/SetAzureVMCommand.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
namespace Microsoft.Azure.Commands.Compute
2020
{
2121
[Cmdlet(VerbsCommon.Set, ProfileNouns.VirtualMachine, DefaultParameterSetName = ResourceGroupNameParameterSet)]
22+
[OutputType(typeof(void))]
2223
public class SetAzureVMCommand : VirtualMachineActionBaseCmdlet
2324
{
2425
[Parameter(

src/CLU/Microsoft.Azure.Commands.Compute/VirtualMachine/Action/StartAzureVMCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
namespace Microsoft.Azure.Commands.Compute
2222
{
2323
[Cmdlet(VerbsLifecycle.Start, ProfileNouns.VirtualMachine, DefaultParameterSetName = ResourceGroupNameParameterSet)]
24-
[OutputType(typeof(PSComputeLongRunningOperation))]
24+
[OutputType(typeof(void))]
2525
public class StartAzureVMCommand : VirtualMachineActionBaseCmdlet
2626
{
2727
[Parameter(

src/CLU/Microsoft.Azure.Commands.Compute/VirtualMachine/Action/StopAzureVMCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
namespace Microsoft.Azure.Commands.Compute
2424
{
2525
[Cmdlet(VerbsLifecycle.Stop, ProfileNouns.VirtualMachine, DefaultParameterSetName = ResourceGroupNameParameterSet)]
26-
[OutputType(typeof(PSComputeLongRunningOperation))]
26+
[OutputType(typeof(void))]
2727
public class StopAzureVMCommand : VirtualMachineActionBaseCmdlet
2828
{
2929
[Parameter(

src/ResourceManager/Compute/Commands.Compute/Microsoft.Azure.Commands.Compute.format.ps1xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@
101101
</ListEntries>
102102
</ListControl>
103103
</View>
104-
<!--<View>
104+
<View>
105105
<Name>Microsoft.Azure.Commands.Compute.Models.PSOperation</Name>
106106
<ViewSelectedBy>
107107
<TypeName>Microsoft.Azure.Commands.Compute.Models.PSOperation</TypeName>
@@ -122,7 +122,7 @@
122122
</ListEntry>
123123
</ListEntries>
124124
</ListControl>
125-
</View>-->
125+
</View>
126126
<View>
127127
<Name>Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImageBase</Name>
128128
<ViewSelectedBy>

0 commit comments

Comments
 (0)