Skip to content

Commit 211ba0d

Browse files
author
Hovsep
committed
Merge pull request Azure#1036 from hovsepm/dev
[#104636870] Fixed *-AzureDataCollection cmdlets name to *-AzureRmDataCollection
2 parents 657c1b8 + ea26d37 commit 211ba0d

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

src/ResourceManager/Profile/AzureRM.Profile.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
@{
1010

1111
# Version number of this module.
12-
ModuleVersion = '0.9.10'
12+
ModuleVersion = '0.9.11'
1313

1414
# ID used to uniquely identify this module
1515
GUID = '342714fc-4009-4863-8afb-a9067e3db04b'

src/ResourceManager/Profile/Commands.Profile/Commands.Profile.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,8 +132,8 @@
132132
<Reference Include="System.Xml.Linq" />
133133
</ItemGroup>
134134
<ItemGroup>
135-
<Compile Include="DataCollection\DisableAzureDataCollection.cs" />
136-
<Compile Include="DataCollection\EnableAzureDataCollection.cs" />
135+
<Compile Include="DataCollection\DisableAzureRMDataCollection.cs" />
136+
<Compile Include="DataCollection\EnableAzureRMDataCollection.cs" />
137137
<Compile Include="Environment\RemoveAzureRMEnvironment.cs" />
138138
<Compile Include="Environment\GetAzureRMEnvironment.cs" />
139139
<Compile Include="Environment\SetAzureRMEnvironment.cs" />

src/ResourceManager/Profile/Commands.Profile/DataCollection/DisableAzureDataCollection.cs renamed to src/ResourceManager/Profile/Commands.Profile/DataCollection/DisableAzureRMDataCollection.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919

2020
namespace Microsoft.Azure.Commands.Profile
2121
{
22-
[Cmdlet(VerbsLifecycle.Disable, "AzureDataCollection")]
23-
public class DisableAzureDataCollectionCommand : EnableAzureDataCollectionCommand
22+
[Cmdlet(VerbsLifecycle.Disable, "AzureRmDataCollection")]
23+
public class DisableAzureRmDataCollectionCommand : EnableAzureRmDataCollectionCommand
2424
{
2525
protected override void ProcessRecord()
2626
{

src/ResourceManager/Profile/Commands.Profile/DataCollection/EnableAzureDataCollection.cs renamed to src/ResourceManager/Profile/Commands.Profile/DataCollection/EnableAzureRMDataCollection.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919

2020
namespace Microsoft.Azure.Commands.Profile
2121
{
22-
[Cmdlet(VerbsLifecycle.Enable, "AzureDataCollection")]
23-
public class EnableAzureDataCollectionCommand : AzureRMCmdlet
22+
[Cmdlet(VerbsLifecycle.Enable, "AzureRmDataCollection")]
23+
public class EnableAzureRmDataCollectionCommand : AzureRMCmdlet
2424
{
2525
protected override void ProcessRecord()
2626
{

0 commit comments

Comments
 (0)