Skip to content

Commit 7595081

Browse files
committed
Refactor ResourceIdentifier.cs
1 parent 578d843 commit 7595081

File tree

5 files changed

+5
-4
lines changed

5 files changed

+5
-4
lines changed

src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/Commands.Resources.Rest.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@
228228
<Compile Include="SdkModels\ResourceGroups\UpdatePSResourceGroupParameters.cs" />
229229
<Compile Include="SdkModels\ResourceProvider\PSResourceProvider.cs" />
230230
<Compile Include="SdkModels\ResourceProvider\PSResourceProviderResourceType.cs" />
231-
<Compile Include="SdkModels\Resources\ResourceIdentifier.cs" />
231+
<Compile Include="Components\ResourceIdentifier.cs" />
232232
<Compile Include="Utilities\FileUtility.cs" />
233233
<Compile Include="Utilities\HttpUtility.cs" />
234234
<Compile Include="Utilities\TemplateUtility.cs" />
Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,9 @@
1515
using System;
1616
using System.Collections.Generic;
1717
using System.Text;
18-
using AuthorizationResourceIdentity = Microsoft.Azure.ResourceIdentity;
1918
using ProjectResources = Microsoft.Azure.Commands.ResourceManager.Cmdlets.Properties.Resources;
20-
using ResourcesResourceIdentity = Microsoft.Azure.ResourceIdentity;
2119

22-
namespace Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels
20+
namespace Microsoft.Azure.Commands.ResourceManager.Cmdlets.Components
2321
{
2422
public class ResourceIdentifier
2523
{

src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/Implementation/ResourceGroups/GetAzureResourceGroupCmdlet.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
namespace Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation
1616
{
1717
using Microsoft.Azure.Commands.Common.Authentication;
18+
using Microsoft.Azure.Commands.ResourceManager.Cmdlets.Components;
1819
using Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels;
1920
using System.Collections.Generic;
2021
using System.IO;

src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/Implementation/ResourceGroups/RemoveAzureResourceGroupCmdlet.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
// limitations under the License.
1313
// ----------------------------------------------------------------------------------
1414

15+
using Microsoft.Azure.Commands.ResourceManager.Cmdlets.Components;
1516
using Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation;
1617
using Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels;
1718
using System.Management.Automation;

src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/Implementation/ResourceGroups/SetAzureResourceGroupCmdlet.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
// limitations under the License.
1313
// ----------------------------------------------------------------------------------
1414

15+
using Microsoft.Azure.Commands.ResourceManager.Cmdlets.Components;
1516
using Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels;
1617
using System.Collections;
1718
using System.Management.Automation;

0 commit comments

Comments
 (0)