Skip to content

Commit

Permalink
Merge pull request #106 from markcowl/rem-sm
Browse files Browse the repository at this point in the history
Removing ServiceManagemenet misspellings
  • Loading branch information
markcowl authored Dec 10, 2018
2 parents e0a55f3 + 5fc12c0 commit f852633
Show file tree
Hide file tree
Showing 28 changed files with 32 additions and 32 deletions.
2 changes: 1 addition & 1 deletion src/Common.Test/Common/AuthenticationFactoryTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
using Microsoft.Azure.Commands.Common.Authentication.Models;
using Microsoft.WindowsAzure.Commands.ScenarioTest;
using Xunit.Abstractions;
using Microsoft.WindowsAzure.ServiceManagemenet.Common.Models;
using Microsoft.WindowsAzure.ServiceManagement.Common.Models;
using Microsoft.Azure.Commands.Common.Authentication.Abstractions;

namespace Microsoft.WindowsAzure.Commands.Common.Test.Common
Expand Down
2 changes: 1 addition & 1 deletion src/Common.Test/Common/ConversionUtilitiesTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
using Microsoft.Azure.Commands.Common.Authentication;
using Microsoft.WindowsAzure.Commands.ScenarioTest;
using Xunit.Abstractions;
using Microsoft.WindowsAzure.ServiceManagemenet.Common.Models;
using Microsoft.WindowsAzure.ServiceManagement.Common.Models;

namespace Microsoft.WindowsAzure.Commands.Common.Test
{
Expand Down
2 changes: 1 addition & 1 deletion src/Common.Test/Common/GeneralTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
using Microsoft.Azure.Commands.Common.Authentication;
using Microsoft.WindowsAzure.Commands.ScenarioTest;
using Xunit.Abstractions;
using Microsoft.WindowsAzure.ServiceManagemenet.Common.Models;
using Microsoft.WindowsAzure.ServiceManagement.Common.Models;
using Microsoft.Azure.Commands.Common.Authentication.Abstractions;

namespace Microsoft.WindowsAzure.Commands.Common.Test.Common
Expand Down
2 changes: 1 addition & 1 deletion src/Common.Test/Common/IdnUtilitiesTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

using Microsoft.WindowsAzure.Commands.ScenarioTest;
using Microsoft.WindowsAzure.Commands.Utilities.Common;
using Microsoft.WindowsAzure.ServiceManagemenet.Common.Models;
using Microsoft.WindowsAzure.ServiceManagement.Common.Models;
using Xunit;
using Xunit.Abstractions;

Expand Down
2 changes: 1 addition & 1 deletion src/Common.Test/Common/JsonUtilitiesTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
using Microsoft.Azure.Commands.Common.Authentication;
using Microsoft.WindowsAzure.Commands.ScenarioTest;
using Xunit.Abstractions;
using Microsoft.WindowsAzure.ServiceManagemenet.Common.Models;
using Microsoft.WindowsAzure.ServiceManagement.Common.Models;

namespace Microsoft.WindowsAzure.Commands.Common.Test.Common
{
Expand Down
2 changes: 1 addition & 1 deletion src/Common.Test/Common/PSCmdletTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
using Microsoft.Azure.Commands.Common.Authentication.Factories;
using System.Net.Http;
using Xunit.Abstractions;
using Microsoft.WindowsAzure.ServiceManagemenet.Common.Models;
using Microsoft.WindowsAzure.ServiceManagement.Common.Models;

namespace Microsoft.WindowsAzure.Commands.Common.Test.Common
{
Expand Down
4 changes: 2 additions & 2 deletions src/Common.Test/Common/ProfileClientTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@
using System.IO;
using System.Linq;
using System.Security.Cryptography.X509Certificates;
using Microsoft.Azure.ServiceManagemenet.Common;
using Microsoft.Azure.ServiceManagement.Common;
using Xunit;
using CSMSubscription = Microsoft.Azure.Subscriptions.Models.Subscription;
using RDFESubscription = Microsoft.WindowsAzure.Subscriptions.Models.SubscriptionListOperationResponse.Subscription;
using Microsoft.WindowsAzure.Commands.ScenarioTest;
using Xunit.Abstractions;
using Microsoft.WindowsAzure.ServiceManagemenet.Common.Models;
using Microsoft.WindowsAzure.ServiceManagement.Common.Models;
using Microsoft.Azure.Commands.Common.Authentication.Abstractions;
using Microsoft.WindowsAzure.Commands.Utilities.Common;
using Microsoft.WindowsAzure.Commands.Common;
Expand Down
2 changes: 1 addition & 1 deletion src/Common.Test/Common/ServicePrincipalStoreTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
using Microsoft.Azure.Commands.Common.Authentication;
using Microsoft.Azure.Commands.ResourceManager.Common;
using Microsoft.WindowsAzure.Commands.ScenarioTest;
using Microsoft.WindowsAzure.ServiceManagemenet.Common.Models;
using Microsoft.WindowsAzure.ServiceManagement.Common.Models;
using System;
using System.Runtime.InteropServices;
using System.Security;
Expand Down
2 changes: 1 addition & 1 deletion src/Common/AzurePSCmdlet.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
using Microsoft.Azure.Commands.Common.Authentication;
using Microsoft.Azure.Commands.Common.Authentication.Abstractions;
using Microsoft.WindowsAzure.Commands.Common.CustomAttributes;
using Microsoft.Azure.ServiceManagemenet.Common.Models;
using Microsoft.Azure.ServiceManagement.Common.Models;
using Microsoft.WindowsAzure.Commands.Common;
using Microsoft.WindowsAzure.Commands.Utilities.Common;
using System;
Expand Down
6 changes: 3 additions & 3 deletions src/Common/AzurePowerShell.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ public class AzurePowerShell

public const string AssemblyCopyright = "Copyright © Microsoft";

public const string AssemblyVersion = "6.9.0";
public const string AssemblyVersion = "1.0.0";

public const string AssemblyFileVersion = "6.9.0";
public const string AssemblyFileVersion = "1.0.0";

public const string ProfileFile = "AzureProfile.json";

Expand All @@ -40,7 +40,7 @@ public class AzurePowerShell

public static ProductInfoHeaderValue UserAgentValue = new ProductInfoHeaderValue(
"AzurePowershell",
string.Format("v{0}", AzurePowerShell.AssemblyVersion));
string.Format("Az{0}", AzurePowerShell.AssemblyVersion));

public static string ProfileDirectory = Path.Combine(
#if NETSTANDARD
Expand Down
2 changes: 1 addition & 1 deletion src/Common/RecordingTracingInterceptor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
using System.Collections.Generic;
using System.Net.Http;

namespace Microsoft.Azure.ServiceManagemenet.Common.Models
namespace Microsoft.Azure.ServiceManagement.Common.Models
{
public class RecordingTracingInterceptor : Hyak.Common.ICloudTracingInterceptor
{
Expand Down
2 changes: 1 addition & 1 deletion src/Dependencies.Netcore.targets
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<PackageReference Include="Microsoft.Rest.ClientRuntime.Azure" Version="3.3.18" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
<PackageReference Include="PowerShellStandard.Library" Version="5.1.0-preview-06" PrivateAssets="All" />
<PackageReference Include="PowerShellStandard.Library" Version="5.1.0" PrivateAssets="All" />
</ItemGroup>
<ItemGroup Condition="'$(IncludeHyak)' == 'true'">
<PackageReference Include="Microsoft.ApplicationInsights" Version="2.4.0" />
Expand Down
2 changes: 1 addition & 1 deletion src/ScenarioTest.ResourceManager/EnvironmentSetupHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
using Microsoft.Azure.Commands.Common.Authentication.Abstractions;
using Microsoft.Azure.Commands.Common.Authentication.Models;
using Microsoft.Azure.Commands.ScenarioTest;
using Microsoft.Azure.ServiceManagemenet.Common.Models;
using Microsoft.Azure.ServiceManagement.Common.Models;
using Microsoft.Azure.Test;
using Microsoft.Azure.Test.HttpRecorder;
using Microsoft.WindowsAzure.Commands.Common;
Expand Down
2 changes: 1 addition & 1 deletion src/ScenarioTest.ResourceManager/PowerShellExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
// limitations under the License.
// ----------------------------------------------------------------------------------

using Microsoft.Azure.ServiceManagemenet.Common.Models;
using Microsoft.Azure.ServiceManagement.Common.Models;
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
using System.Reflection;
using Xunit.Abstractions;

namespace Microsoft.Azure.ServiceManagemenet.Common.Models
namespace Microsoft.Azure.ServiceManagement.Common.Models
{
public class XunitTracingInterceptor : Hyak.Common.ICloudTracingInterceptor
{
Expand Down
4 changes: 2 additions & 2 deletions src/ScenarioTest/EnvironmentSetupHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@
using System.IO;
using System.Management.Automation;
using System.Security.Cryptography.X509Certificates;
using Microsoft.Azure.ServiceManagemenet.Common;
using Microsoft.Azure.ServiceManagement.Common;
using System.Text;
using Microsoft.WindowsAzure.ServiceManagemenet.Common.Models;
using Microsoft.WindowsAzure.ServiceManagement.Common.Models;
using System.Net.Http;
using System.Threading;
using Microsoft.Azure.Commands.Common.Authentication.Abstractions;
Expand Down
2 changes: 1 addition & 1 deletion src/ScenarioTest/Mocks/MockClientFactory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
using Microsoft.Azure.Commands.Common.Authentication;
using Microsoft.Azure;
using System.IO;
using Microsoft.Azure.ServiceManagemenet.Common;
using Microsoft.Azure.ServiceManagement.Common;
using Microsoft.Azure.Commands.Common.Authentication.Abstractions;
using Microsoft.WindowsAzure.Commands.Utilities.Common;
#if NETSTANDARD
Expand Down
2 changes: 1 addition & 1 deletion src/ScenarioTest/PowerShellExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
// limitations under the License.
// ----------------------------------------------------------------------------------

using Microsoft.WindowsAzure.ServiceManagemenet.Common.Models;
using Microsoft.WindowsAzure.ServiceManagement.Common.Models;
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
Expand Down
2 changes: 1 addition & 1 deletion src/ScenarioTest/XunitTracingInterceptor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
using System.IO;
using System.Reflection;

namespace Microsoft.WindowsAzure.ServiceManagemenet.Common.Models
namespace Microsoft.WindowsAzure.ServiceManagement.Common.Models
{
public class XunitTracingInterceptor : Hyak.Common.ICloudTracingInterceptor
{
Expand Down
2 changes: 1 addition & 1 deletion src/ServiceManagement/AzureSMCmdlet.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
using Microsoft.Azure.Commands.Common.Authentication;
using Microsoft.Azure.Commands.Common.Authentication.Abstractions;
using Microsoft.Azure.Commands.Common.Authentication.Models;
using Microsoft.Azure.ServiceManagemenet.Common.Models;
using Microsoft.Azure.ServiceManagement.Common.Models;
using Microsoft.WindowsAzure.Commands.Common;
using Microsoft.WindowsAzure.Commands.Common.Properties;
using Newtonsoft.Json;
Expand Down
2 changes: 1 addition & 1 deletion src/ServiceManagement/PSAzureAccount.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
using Microsoft.Azure.Commands.Common.Authentication.Abstractions;
using System.Collections.Generic;

namespace Microsoft.Azure.ServiceManagemenet.Common.Models
namespace Microsoft.Azure.ServiceManagement.Common.Models
{
public class PSAzureAccount
{
Expand Down
2 changes: 1 addition & 1 deletion src/ServiceManagement/ProfileClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
using System.Security;
using System.Security.Cryptography.X509Certificates;

namespace Microsoft.Azure.ServiceManagemenet.Common
namespace Microsoft.Azure.ServiceManagement.Common
{
/// <summary>
/// Convenience client for azure profile and subscriptions.
Expand Down
2 changes: 1 addition & 1 deletion src/ServiceManagement/ProfileClientExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
// ----------------------------------------------------------------------------------

using Microsoft.Azure.Commands.Common.Authentication.Abstractions;
using Microsoft.Azure.ServiceManagemenet.Common.Models;
using Microsoft.Azure.ServiceManagement.Common.Models;
using System;
using System.Collections.Generic;

Expand Down
2 changes: 1 addition & 1 deletion src/ServiceManagement/PublishSettingsImporter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
using System.Security.Cryptography.X509Certificates;
using System.Xml.Serialization;

namespace Microsoft.Azure.ServiceManagemenet.Common
namespace Microsoft.Azure.ServiceManagement.Common
{
/// <summary>
/// Class that handles loading publishsettings files
Expand Down
2 changes: 1 addition & 1 deletion src/ServiceManagement/RPRegistrationAction.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
using System.Linq;
using System.Net;

namespace Microsoft.Azure.ServiceManagemenet.Common.Models
namespace Microsoft.Azure.ServiceManagement.Common.Models
{
public class RPRegistrationAction : IClientAction
{
Expand Down
2 changes: 1 addition & 1 deletion src/ServiceManagement/RequiredResourceLookup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

using System.Collections.Generic;

namespace Microsoft.Azure.ServiceManagemenet.Common
namespace Microsoft.Azure.ServiceManagement.Common
{
/// <summary>
/// This class handles mapping management client types
Expand Down
2 changes: 1 addition & 1 deletion src/ServiceManagement/SubscriptionCmdletBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
// limitations under the License.
// ----------------------------------------------------------------------------------

using Microsoft.Azure.ServiceManagemenet.Common;
using Microsoft.Azure.ServiceManagement.Common;
using Microsoft.WindowsAzure.Commands.Utilities.Common;

namespace Microsoft.WindowsAzure.Commands.Utilities.Profile
Expand Down
2 changes: 1 addition & 1 deletion src/TestFx/TestManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
using Microsoft.Azure.Commands.Common.Authentication.Abstractions;
using Microsoft.Azure.Commands.Common.Authentication.Models;
using Microsoft.Azure.Commands.ResourceManager.Common;
using Microsoft.Azure.ServiceManagemenet.Common.Models;
using Microsoft.Azure.ServiceManagement.Common.Models;
using Microsoft.Azure.Test.HttpRecorder;
using Microsoft.Rest.ClientRuntime.Azure.TestFramework;
using Microsoft.WindowsAzure.Commands.ScenarioTest;
Expand Down

0 comments on commit f852633

Please sign in to comment.