Skip to content

Commit 9241d5c

Browse files
committed
Merge branch 'az-accounts' into dll-clients-rename
2 parents da96756 + 3fdd885 commit 9241d5c

File tree

5 files changed

+16
-16
lines changed

5 files changed

+16
-16
lines changed

src/Common/Properties/Resources.Designer.cs

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Common/Properties/Resources.resx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1473,8 +1473,8 @@ The file needs to be a PowerShell script (.ps1 or .psm1).</value>
14731473
The data is anonymous and does not include commandline argument values.
14741474
The data is collected by Microsoft.
14751475

1476-
Use the Disable-AzureRmDataCollection cmdlet to turn the feature Off. The cmdlet can be found in the AzureRM.Profile module. To disable data collection: PS &gt; Disable-AzureRmDataCollection.
1477-
Use the Enable-AzureRmDataCollection cmdlet to turn the feature On. The cmdlet can be found in the AzureRM.Profile module. To enable data collection: PS &gt; Enable-AzureRmDataCollection.</value>
1476+
Use the Disable-AzureRmDataCollection cmdlet to turn the feature Off. The cmdlet can be found in the AzureRM.Accounts module. To disable data collection: PS &gt; Disable-AzureRmDataCollection.
1477+
Use the Enable-AzureRmDataCollection cmdlet to turn the feature On. The cmdlet can be found in the AzureRM.Accounts module. To enable data collection: PS &gt; Enable-AzureRmDataCollection.</value>
14781478
</data>
14791479
<data name="DataCollectionActivity" xml:space="preserve">
14801480
<value>Microsoft Azure PowerShell Data Collection Confirmation</value>

src/ResourceManager/Properties/Resources.Designer.cs

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/ResourceManager/Properties/Resources.resx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,8 +140,8 @@
140140
The data is anonymous and does not include commandline argument values.
141141
The data is collected by Microsoft.
142142

143-
Use the Disable-AzureRmDataCollection cmdlet to turn the feature Off. The cmdlet can be found in the AzureRM.Profile module. To disable data collection: PS &gt; Disable-AzureRmDataCollection.
144-
Use the Enable-AzureRmDataCollection cmdlet to turn the feature On. The cmdlet can be found in the AzureRM.Profile module. To enable data collection: PS &gt; Enable-AzureRmDataCollection.</value>
143+
Use the Disable-AzureRmDataCollection cmdlet to turn the feature Off. The cmdlet can be found in the AzureRM.Accounts module. To disable data collection: PS &gt; Disable-AzureRmDataCollection.
144+
Use the Enable-AzureRmDataCollection cmdlet to turn the feature On. The cmdlet can be found in the AzureRM.Accounts module. To enable data collection: PS &gt; Enable-AzureRmDataCollection.</value>
145145
</data>
146146
<data name="DataCollectionSaveFileInformation" xml:space="preserve">
147147
<value>The setting profile has been saved to the following path '{0}'.</value>

src/ScenarioTest.ResourceManager/EnvironmentSetupHelper.cs

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -72,13 +72,13 @@ public class EnvironmentSetupHelper
7272
#endif
7373
public EnvironmentSetupHelper()
7474
{
75-
var module = GetModuleManifest(RmDirectory, "AzureRM.Profile");
75+
var module = GetModuleManifest(RmDirectory, "AzureRM.Accounts");
7676
if (string.IsNullOrWhiteSpace(module))
7777
{
78-
throw new InvalidOperationException("Could not find profile module");
78+
throw new InvalidOperationException("Could not find Accounts module");
7979
}
8080

81-
LogIfNotNull($"Profile Module path: {module}");
81+
LogIfNotNull($"Accounts Module path: {module}");
8282
RMProfileModule = module;
8383
module = GetModuleManifest(RmDirectory, "AzureRM.Resources");
8484
LogIfNotNull($"Resources Module path: {module}");
@@ -99,8 +99,8 @@ public EnvironmentSetupHelper()
9999
LogIfNotNull($"Network Module path: {module}");
100100
RMNetworkModule = module;
101101

102-
module = GetModuleManifest(StackRmDirectory, "AzureRM.Profile");
103-
LogIfNotNull($"Stack Profile Module path: {module}");
102+
module = GetModuleManifest(StackRmDirectory, "AzureRM.Accounts");
103+
LogIfNotNull($"Stack Accounts Module path: {module}");
104104
StackRMProfileModule = module;
105105
module = GetModuleManifest(StackRmDirectory, "AzureRM.Resources");
106106
LogIfNotNull($"Stack Resources Module path: {module}");
@@ -540,7 +540,7 @@ public void SetupModules(AzureModule mode, params string[] modules)
540540
if (mode == AzureModule.AzureProfile)
541541
{
542542
this.modules.Add(Path.Combine(PackageDirectory, @"ServiceManagement\Azure\Azure.psd1"));
543-
this.modules.Add(Path.Combine(PackageDirectory, @"ResourceManager\AzureResourceManager\AzureRM.Profile\AzureRM.Profile.psd1"));
543+
this.modules.Add(Path.Combine(PackageDirectory, @"ResourceManager\AzureResourceManager\AzureRM.Accounts\AzureRM.Accounts.psd1"));
544544
this.modules.Add(Path.Combine(PackageDirectory, @"ResourceManager\AzureResourceManager\AzureRM.Resources\AzureRM.Resources.psd1"));
545545
this.modules.Add(Path.Combine(PackageDirectory, @"ResourceManager\AzureResourceManager\AzureRM.Resources\AzureRM.Tags.psd1"));
546546
}
@@ -560,7 +560,7 @@ public void SetupModulesFromCommon(AzureModule mode, params string[] modules)
560560
if (mode == AzureModule.AzureProfile)
561561
{
562562
this.modules.Add(Path.Combine(PackageDirectoryFromCommon, @"ServiceManagement\Azure\Azure.psd1"));
563-
this.modules.Add(Path.Combine(PackageDirectoryFromCommon, @"ResourceManager\AzureResourceManager\AzureRM.Profile\AzureRM.Profile.psd1"));
563+
this.modules.Add(Path.Combine(PackageDirectoryFromCommon, @"ResourceManager\AzureResourceManager\AzureRM.Accounts\AzureRM.Accounts.psd1"));
564564
this.modules.Add(Path.Combine(PackageDirectoryFromCommon, @"ResourceManager\AzureResourceManager\AzureRM.Resources\AzureRM.Resources.psd1"));
565565
this.modules.Add(Path.Combine(PackageDirectoryFromCommon, @"ResourceManager\AzureResourceManager\AzureRM.Resources\AzureRM.Tags.psd1"));
566566
}
@@ -570,7 +570,7 @@ public void SetupModulesFromCommon(AzureModule mode, params string[] modules)
570570
}
571571
else if (mode == AzureModule.AzureResourceManager)
572572
{
573-
this.modules.Add(Path.Combine(PackageDirectoryFromCommon, @"ResourceManager\AzureResourceManager\AzureRM.Profile\AzureRM.Profile.psd1"));
573+
this.modules.Add(Path.Combine(PackageDirectoryFromCommon, @"ResourceManager\AzureResourceManager\AzureRM.Accounts\AzureRM.Accounts.psd1"));
574574
this.modules.Add(Path.Combine(PackageDirectoryFromCommon, @"ResourceManager\AzureResourceManager\AzureRM.Resources\AzureRM.Resources.psd1"));
575575
this.modules.Add(Path.Combine(PackageDirectoryFromCommon, @"ResourceManager\AzureResourceManager\AzureRM.Resources\AzureRM.Tags.psd1"));
576576
}

0 commit comments

Comments
 (0)