Skip to content

Commit f231a6c

Browse files
committed
Merge pull request #435 from vivsriaus/release-0.9.2
Add help xml file for ARM cmdlets
2 parents 97faee3 + 81ef292 commit f231a6c

File tree

5 files changed

+5092
-4
lines changed

5 files changed

+5092
-4
lines changed

src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Commands.ResourceManager.Cmdlets.csproj

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,11 @@
152152
<Compile Include="RestClients\ResourceManagerRestRestClient.cs" />
153153
<Compile Include="Utilities\HttpUtility.cs" />
154154
</ItemGroup>
155-
<ItemGroup />
155+
<ItemGroup>
156+
<Content Include="Microsoft.Azure.Commands.ResourceManager.Cmdlets.dll-Help.xml">
157+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
158+
</Content>
159+
</ItemGroup>
156160
<ItemGroup>
157161
<None Include="MSSharedLibKey.snk" />
158162
<None Include="packages.config" />

src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/GetAzureResourceGroupDeploymentOperationCmdlet.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ namespace Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation
2323
using Newtonsoft.Json.Linq;
2424

2525
/// <summary>
26-
/// Gets the resource lock.
26+
/// Gets the deployment operation.
2727
/// </summary>
2828
[Cmdlet(VerbsCommon.Get, "AzureResourceGroupDeploymentOperation"), OutputType(typeof(PSObject))]
2929
public class GetAzureResourceGroupDeploymentOperationCmdlet : ResourceManagerCmdletBase

src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/InvokeAzureResourceActionCmdlet.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ namespace Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation
2222
using Newtonsoft.Json.Linq;
2323

2424
/// <summary>
25-
/// A cmdlet that creates a new azure resource.
25+
/// A cmdlet that invokes a resource action.
2626
/// </summary>
2727
[Cmdlet(VerbsLifecycle.Invoke, "AzureResourceAction", SupportsShouldProcess = true, DefaultParameterSetName = ResourceManipulationCmdletBase.ResourceIdParameterSet), OutputType(typeof(PSObject))]
2828
public sealed class InvokAzureResourceActionCmdlet : ResourceManipulationCmdletBase

src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/RemoveAzureResourceCmdlet.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ namespace Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation
1818
using Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Resources;
1919

2020
/// <summary>
21-
/// A cmdlet that creates a new azure resource.
21+
/// A cmdlet that removes an azure resource.
2222
/// </summary>
2323
[Cmdlet(VerbsCommon.Remove, "AzureResource", SupportsShouldProcess = true, DefaultParameterSetName = ResourceManipulationCmdletBase.ResourceIdParameterSet), OutputType(typeof(PSObject))]
2424
public class RemoveAzureResourceCmdlet : ResourceManipulationCmdletBase

0 commit comments

Comments
 (0)