Skip to content

Commit 37ead79

Browse files
authored
Merge pull request #8057 from cormacpayne/update-common
Update common code to 1.1.10, make changes for tenant directory removal
2 parents 8f0dcbd + b765448 commit 37ead79

File tree

15 files changed

+37
-70
lines changed

15 files changed

+37
-70
lines changed

src/ResourceManager/Profile/Commands.Profile.Test/AzureRMProfileTests.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -941,7 +941,6 @@ public void LoadingProfileWorks()
941941
var profile = new AzureRmProfile(path);
942942
Assert.Equal(5, profile.Environments.Count());
943943
Assert.Equal("3c0ff8a7-e8bb-40e8-ae66-271343379af6", profile.DefaultContext.Tenant.Id.ToString());
944-
Assert.Equal("contoso.com", profile.DefaultContext.Tenant.Directory);
945944
Assert.Equal("00000000-0000-0000-0000-000000000000", profile.DefaultContext.Subscription.Id.ToString());
946945
Assert.Equal("testCloud", profile.DefaultContext.Environment.Name);
947946
Assert.Equal("[email protected]", profile.DefaultContext.Account.Id);

src/ResourceManager/Profile/Commands.Profile.Test/CommonDataCmdletTests.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ public static AzureRmProfile CreateAzureRMProfile(string storageAccount)
4747
{
4848
var tenantId = Guid.NewGuid();
4949
var subscriptionId = Guid.NewGuid();
50-
var domain = "Contoso.com";
5150
var context = new PSAzureContext()
5251
{
5352
Account = new PSAzureRmAccount
@@ -66,7 +65,6 @@ public static AzureRmProfile CreateAzureRMProfile(string storageAccount)
6665
},
6766
Tenant = new PSAzureTenant
6867
{
69-
Directory = domain,
7068
Id = tenantId.ToString()
7169
}
7270
};
@@ -148,7 +146,7 @@ public void CanClearStorageAccountForSMProfile(string connectionString, string e
148146
Assert.True(string.IsNullOrEmpty(AzureSMProfileProvider.Instance.Profile.DefaultContext.GetCurrentStorageAccountName()));
149147
});
150148
}
151-
149+
152150
[Fact]
153151
[Trait(Category.AcceptanceType, Category.CheckIn)]
154152
public void CanClearStorageAccountForEmptyProfile()

src/ResourceManager/Profile/Commands.Profile.Test/LoginCmdletTests.cs

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,6 @@ public void LoginWithSubscriptionAndTenant()
104104
cmdlt.InvokeEndProcessing();
105105

106106
Assert.NotNull(AzureRmProfileProvider.Instance.Profile.DefaultContext);
107-
Assert.Equal("microsoft.com", AzureRmProfileProvider.Instance.Profile.DefaultContext.Tenant.Directory);
108107
}
109108

110109
[Fact]
@@ -140,7 +139,6 @@ public void LoginWithSubscriptionAndNoTenant()
140139
cmdlt.InvokeEndProcessing();
141140

142141
Assert.NotNull(AzureRmProfileProvider.Instance.Profile.DefaultContext);
143-
Assert.Equal("microsoft.com", AzureRmProfileProvider.Instance.Profile.DefaultContext.Tenant.Directory);
144142
}
145143

146144
[Fact]
@@ -158,7 +156,6 @@ public void LoginWithNoSubscriptionAndNoTenant()
158156
cmdlt.InvokeEndProcessing();
159157

160158
Assert.NotNull(AzureRmProfileProvider.Instance.Profile.DefaultContext);
161-
Assert.Equal("microsoft.com", AzureRmProfileProvider.Instance.Profile.DefaultContext.Tenant.Directory);
162159
}
163160

164161
[Fact]
@@ -177,7 +174,6 @@ public void LoginWithNoSubscriptionAndTenant()
177174
cmdlt.InvokeEndProcessing();
178175

179176
Assert.NotNull(AzureRmProfileProvider.Instance.Profile.DefaultContext);
180-
Assert.Equal("microsoft.com", AzureRmProfileProvider.Instance.Profile.DefaultContext.Tenant.Directory);
181177
}
182178

183179
[Fact]
@@ -196,7 +192,6 @@ public void LoginWithNoSubscriptionAndTenantDomain()
196192
cmdlt.InvokeEndProcessing();
197193

198194
Assert.NotNull(AzureRmProfileProvider.Instance.Profile.DefaultContext);
199-
Assert.Equal("microsoft.com", AzureRmProfileProvider.Instance.Profile.DefaultContext.Tenant.Directory);
200195
Assert.Equal("72f988bf-86f1-41af-91ab-2d7cd011db47", AzureRmProfileProvider.Instance.Profile.DefaultContext.Tenant.Id);
201196
}
202197

@@ -217,7 +212,6 @@ public void LoginWithSubscriptionname()
217212
cmdlt.InvokeEndProcessing();
218213

219214
Assert.NotNull(AzureRmProfileProvider.Instance.Profile.DefaultContext);
220-
Assert.Equal("microsoft.com", AzureRmProfileProvider.Instance.Profile.DefaultContext.Tenant.Directory);
221215
}
222216

223217
[Fact]
@@ -237,7 +231,6 @@ public void LoginWithRbacTenantOnly()
237231
cmdlt.InvokeEndProcessing();
238232

239233
Assert.NotNull(AzureRmProfileProvider.Instance.Profile.DefaultContext);
240-
Assert.Equal("AzureSDKTeam.onmicrosoft.com", AzureRmProfileProvider.Instance.Profile.DefaultContext.Tenant.Directory);
241234
Assert.Equal(cmdlt.Tenant, AzureRmProfileProvider.Instance.Profile.DefaultContext.Tenant.Id.ToString());
242235
Assert.Null(AzureRmProfileProvider.Instance.Profile.DefaultContext.Subscription);
243236
}

src/ResourceManager/Profile/Commands.Profile.Test/TenantCmdletTests.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@ public void GetTenantWithTenantParameter()
5858

5959
Assert.True(commandRuntimeMock.OutputPipeline.Count == 2);
6060
Assert.Equal("72f988bf-86f1-41af-91ab-2d7cd011db47", ((PSAzureTenant)commandRuntimeMock.OutputPipeline[1]).Id.ToString());
61-
Assert.Equal("microsoft.com", ((PSAzureTenant)commandRuntimeMock.OutputPipeline[1]).Directory);
6261
}
6362

6463
[Fact]
@@ -78,7 +77,6 @@ public void GetTenantWithDomainParameter()
7877

7978
Assert.True(commandRuntimeMock.OutputPipeline.Count == 3);
8079
Assert.Equal("72f988bf-86f1-41af-91ab-2d7cd011db47", ((PSAzureTenant)commandRuntimeMock.OutputPipeline[1]).Id.ToString());
81-
Assert.Equal("microsoft.com", ((PSAzureTenant)commandRuntimeMock.OutputPipeline[1]).Directory);
8280
}
8381

8482
[Fact]
@@ -97,7 +95,6 @@ public void GetTenantWithoutParameters()
9795

9896
Assert.True(commandRuntimeMock.OutputPipeline.Count == 3);
9997
Assert.Equal("72f988bf-86f1-41af-91ab-2d7cd011db47", ((PSAzureTenant)commandRuntimeMock.OutputPipeline[1]).Id.ToString());
100-
Assert.Equal("microsoft.com", ((PSAzureTenant)commandRuntimeMock.OutputPipeline[1]).Directory);
10198
}
10299

103100
private void Login(string subscriptionId, string tenantId)

src/ResourceManager/Profile/Commands.Profile.Test/TypeConversionTests.cs

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,6 @@ public void CanConvertNullAzureTenants()
423423
Assert.Null((PSAzureTenant)null);
424424
var tenant = (PSAzureTenant)(new AzureTenant());
425425
Assert.NotNull(tenant);
426-
Assert.Null(tenant.Directory);
427426
Assert.Equal(Guid.Empty, tenant.GetId());
428427
Assert.Null(tenant.ToString());
429428
}
@@ -440,7 +439,6 @@ public void CanConvertValidAzureTenants(string domain)
440439
Id = Guid.NewGuid().ToString(),
441440
};
442441
var tenant = (PSAzureTenant)oldTenant;
443-
Assert.Equal(oldTenant.Directory, tenant.Directory);
444442
Assert.Equal(oldTenant.Id.ToString(), tenant.Id);
445443
Assert.NotNull(tenant.ToString());
446444
Assert.Equal(oldTenant.Id, tenant.TenantId);
@@ -457,19 +455,15 @@ public void CanConvertNullPSAzureTenants()
457455
Assert.Equal(Guid.Empty, tenant.GetId());
458456
}
459457

460-
[Theory,
461-
InlineData(null),
462-
InlineData("contoso.org")]
458+
[Fact]
463459
[Trait(Category.AcceptanceType, Category.CheckIn)]
464-
public void CanConvertValidPSAzureTenants(string domain)
460+
public void CanConvertValidPSAzureTenants()
465461
{
466462
var oldTenant = new PSAzureTenant()
467463
{
468-
Directory = domain,
469464
Id = Guid.NewGuid().ToString()
470465
};
471466
var tenant = (AzureTenant)oldTenant;
472-
Assert.Equal(oldTenant.Directory, tenant.Directory);
473467
Assert.Equal(oldTenant.Id, tenant.Id.ToString());
474468
}
475469

@@ -574,7 +568,6 @@ public void CanConvertValidAzureContexts(string account, string subscriptionName
574568
Assert.Equal(oldContext.Account.Type.ToString(), context.Account.Type);
575569
Assert.Equal(oldContext.Account.Id, context.Account.Id);
576570
Assert.NotNull(context.Tenant);
577-
Assert.Equal(oldContext.Tenant.Directory, context.Tenant.Directory);
578571
Assert.Equal(oldContext.Tenant.Id.ToString(), context.Tenant.Id);
579572
Assert.NotNull(context.Subscription);
580573
Assert.Equal(oldContext.Subscription.Name, context.Subscription.Name);
@@ -638,7 +631,6 @@ public void CanConvertValidPSAzureContexts(string account, string subscription,
638631
},
639632
Tenant = new PSAzureTenant
640633
{
641-
Directory = domain,
642634
Id = tenantId.ToString()
643635
}
644636
};
@@ -648,7 +640,6 @@ public void CanConvertValidPSAzureContexts(string account, string subscription,
648640
Assert.Equal(oldContext.Account.Type, context.Account.Type.ToString());
649641
Assert.Equal(oldContext.Account.Id, context.Account.Id);
650642
Assert.NotNull(context.Tenant);
651-
Assert.Equal(oldContext.Tenant.Directory, context.Tenant.Directory);
652643
Assert.Equal(oldContext.Tenant.Id, context.Tenant.Id.ToString());
653644
Assert.NotNull(context.Subscription);
654645
Assert.Equal(oldContext.Subscription.Name, context.Subscription.Name);

src/ResourceManager/Profile/Commands.Profile/Context/SetAzureRMContext.cs

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -95,24 +95,22 @@ public override void ExecuteCmdlet()
9595
}
9696
else if (TenantOnlyParameters())
9797
{
98-
var tenantId = Tenant ?? TenantObject?.Directory;
99-
if (string.IsNullOrWhiteSpace(tenantId))
98+
if (string.IsNullOrWhiteSpace(Tenant))
10099
{
101100
throw new ArgumentException("You must supply a valid tenant object with a valid Id or a valid tenant id string. Please check the input tenant value and try again.");
102101
}
103-
if (DefaultContext != null && ShouldProcess(string.Format(Resources.ChangingContextTenant, tenantId),
102+
if (DefaultContext != null && ShouldProcess(string.Format(Resources.ChangingContextTenant, Tenant),
104103
Resources.TenantChangeWarning, string.Empty))
105104
{
106105
SetContextWithOverwritePrompt((profile, client, name) =>
107106
{
108-
client.SetCurrentContext(null, tenantId, name);
107+
client.SetCurrentContext(null, Tenant, name);
109108
CompleteContextProcessing(profile);
110109
});
111110
}
112111
}
113112
else
114113
{
115-
var tenantId = Tenant ?? TenantObject?.Directory;
116114
var subscriptionId = Subscription ?? SubscriptionObject?.Id ?? SubscriptionObject?.Name;
117115
if (DefaultContext != null && !string.IsNullOrWhiteSpace(subscriptionId))
118116
{
@@ -121,7 +119,7 @@ public override void ExecuteCmdlet()
121119
{
122120
SetContextWithOverwritePrompt((profile, client, name) =>
123121
{
124-
client.SetCurrentContext(subscriptionId, tenantId, name);
122+
client.SetCurrentContext(subscriptionId, Tenant, name);
125123
CompleteContextProcessing(profile);
126124
});
127125
}

src/ResourceManager/Profile/Commands.Profile/Models/RMProfileClient.cs

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -603,7 +603,6 @@ private bool TryGetTenantSubscription(IAccessToken accessToken,
603603

604604
tenant = new AzureTenant();
605605
tenant.Id = accessToken.TenantId;
606-
tenant.Directory = accessToken.GetDomain();
607606
return true;
608607
}
609608

@@ -613,14 +612,6 @@ private bool TryGetTenantSubscription(IAccessToken accessToken,
613612
{
614613
tenant = new AzureTenant();
615614
tenant.Id = accessToken.TenantId;
616-
if (accessToken.UserId != null)
617-
{
618-
var domain = accessToken.UserId.Split(new[] { '@' }, StringSplitOptions.RemoveEmptyEntries);
619-
if (domain.Length == 2)
620-
{
621-
tenant.Directory = domain[1];
622-
}
623-
}
624615
return true;
625616
}
626617

tools/Common.Netcore.Dependencies.Test.targets

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<PrivateAssets Condition="'$(HideReferenceDependencies)' == 'true'">All</PrivateAssets>
2020
</PackageReference>
2121
<PackageReference Include="xunit" Version="2.4.0" />
22-
<PackageReference Include="Microsoft.Azure.PowerShell.ScenarioTest.ResourceManager" Version="1.0.233-preview" >
22+
<PackageReference Include="Microsoft.Azure.PowerShell.ScenarioTest.ResourceManager" Version="1.1.10-preview" >
2323
<PrivateAssets Condition="'$(HideReferenceDependencies)' == 'true'">All</PrivateAssets>
2424
</PackageReference>
2525
</ItemGroup>
@@ -55,7 +55,7 @@
5555
</ItemGroup>
5656

5757
<PropertyGroup>
58-
<ScenarioTestToolsPath>$(NugetPackageRoot)microsoft.azure.powershell.scenariotest.resourcemanager\1.0.233-preview\tools\</ScenarioTestToolsPath>
58+
<ScenarioTestToolsPath>$(NugetPackageRoot)microsoft.azure.powershell.scenariotest.resourcemanager\1.1.10-preview\tools\</ScenarioTestToolsPath>
5959
</PropertyGroup>
6060

6161
<ItemGroup>

tools/Common.Netcore.Dependencies.targets

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -7,49 +7,49 @@
77
<PackageReference Include="Microsoft.Rest.ClientRuntime.Azure" Version="3.3.18">
88
<PrivateAssets Condition="'$(HideReferenceDependencies)' == 'true'">All</PrivateAssets>
99
</PackageReference>
10-
<PackageReference Include="Microsoft.Azure.PowerShell.Clients.Aks" Version="1.0.233-preview">
10+
<PackageReference Include="Microsoft.Azure.PowerShell.Clients.Aks" Version="1.1.10-preview">
1111
<PrivateAssets Condition="'$(HideReferenceDependencies)' == 'true'">All</PrivateAssets>
1212
</PackageReference>
13-
<PackageReference Include="Microsoft.Azure.PowerShell.Authentication" Version="1.0.233-preview">
13+
<PackageReference Include="Microsoft.Azure.PowerShell.Authentication" Version="1.1.10-preview">
1414
<PrivateAssets Condition="'$(HideReferenceDependencies)' == 'true'">All</PrivateAssets>
1515
</PackageReference>
16-
<PackageReference Include="Microsoft.Azure.PowerShell.Authentication.Abstractions" Version="1.0.233-preview">
16+
<PackageReference Include="Microsoft.Azure.PowerShell.Authentication.Abstractions" Version="1.1.10-preview">
1717
<PrivateAssets Condition="'$(HideReferenceDependencies)' == 'true'">All</PrivateAssets>
1818
</PackageReference>
19-
<PackageReference Include="Microsoft.Azure.PowerShell.Authentication.ResourceManager" Version="1.0.233-preview">
19+
<PackageReference Include="Microsoft.Azure.PowerShell.Authentication.ResourceManager" Version="1.1.10-preview">
2020
<PrivateAssets Condition="'$(HideReferenceDependencies)' == 'true'">All</PrivateAssets>
2121
</PackageReference>
22-
<PackageReference Include="Microsoft.Azure.PowerShell.Clients.Authorization" Version="1.0.233-preview">
22+
<PackageReference Include="Microsoft.Azure.PowerShell.Clients.Authorization" Version="1.1.10-preview">
2323
<PrivateAssets Condition="'$(HideReferenceDependencies)' == 'true'">All</PrivateAssets>
2424
</PackageReference>
25-
<PackageReference Include="Microsoft.Azure.PowerShell.Common" Version="1.0.233-preview">
25+
<PackageReference Include="Microsoft.Azure.PowerShell.Common" Version="1.1.10-preview">
2626
<PrivateAssets Condition="'$(HideReferenceDependencies)' == 'true'">All</PrivateAssets>
2727
</PackageReference>
28-
<PackageReference Include="Microsoft.Azure.PowerShell.Clients.Compute" Version="1.0.233-preview">
28+
<PackageReference Include="Microsoft.Azure.PowerShell.Clients.Compute" Version="1.1.10-preview">
2929
<PrivateAssets Condition="'$(HideReferenceDependencies)' == 'true'">All</PrivateAssets>
3030
</PackageReference>
31-
<PackageReference Include="Microsoft.Azure.PowerShell.Clients.Graph.Rbac" Version="1.0.233-preview">
31+
<PackageReference Include="Microsoft.Azure.PowerShell.Clients.Graph.Rbac" Version="1.1.10-preview">
3232
<PrivateAssets Condition="'$(HideReferenceDependencies)' == 'true'">All</PrivateAssets>
3333
</PackageReference>
34-
<PackageReference Include="Microsoft.Azure.PowerShell.Clients.KeyVault" Version="1.0.233-preview">
34+
<PackageReference Include="Microsoft.Azure.PowerShell.Clients.KeyVault" Version="1.1.10-preview">
3535
<PrivateAssets Condition="'$(HideReferenceDependencies)' == 'true'">All</PrivateAssets>
3636
</PackageReference>
37-
<PackageReference Include="Microsoft.Azure.PowerShell.Clients.Network" Version="1.0.233-preview">
37+
<PackageReference Include="Microsoft.Azure.PowerShell.Clients.Network" Version="1.1.10-preview">
3838
<PrivateAssets Condition="'$(HideReferenceDependencies)' == 'true'">All</PrivateAssets>
3939
</PackageReference>
40-
<PackageReference Include="Microsoft.Azure.PowerShell.Clients.ResourceManager" Version="1.0.233-preview">
40+
<PackageReference Include="Microsoft.Azure.PowerShell.Clients.ResourceManager" Version="1.1.10-preview">
4141
<PrivateAssets Condition="'$(HideReferenceDependencies)' == 'true'">All</PrivateAssets>
4242
</PackageReference>
43-
<PackageReference Include="Microsoft.Azure.PowerShell.Storage" Version="1.0.233-preview">
43+
<PackageReference Include="Microsoft.Azure.PowerShell.Storage" Version="1.1.10-preview">
4444
<PrivateAssets Condition="'$(HideReferenceDependencies)' == 'true'">All</PrivateAssets>
4545
</PackageReference>
46-
<PackageReference Include="Microsoft.Azure.PowerShell.Clients.Storage.Management" Version="1.0.233-preview">
46+
<PackageReference Include="Microsoft.Azure.PowerShell.Clients.Storage.Management" Version="1.1.10-preview">
4747
<PrivateAssets Condition="'$(HideReferenceDependencies)' == 'true'">All</PrivateAssets>
4848
</PackageReference>
49-
<PackageReference Include="Microsoft.Azure.PowerShell.Strategies" Version="1.0.233-preview">
49+
<PackageReference Include="Microsoft.Azure.PowerShell.Strategies" Version="1.1.10-preview">
5050
<PrivateAssets Condition="'$(HideReferenceDependencies)' == 'true'">All</PrivateAssets>
5151
</PackageReference>
52-
<PackageReference Include="Microsoft.Azure.PowerShell.Clients.Websites" Version="1.0.233-preview">
52+
<PackageReference Include="Microsoft.Azure.PowerShell.Clients.Websites" Version="1.1.10-preview">
5353
<PrivateAssets Condition="'$(HideReferenceDependencies)' == 'true'">All</PrivateAssets>
5454
</PackageReference>
5555
</ItemGroup>
@@ -66,7 +66,7 @@
6666
<PackageReference Include="PowerShellStandard.Library" Version="5.1.0-preview-06" PrivateAssets="All" />
6767
</ItemGroup>
6868
<PropertyGroup>
69-
<StorageToolsPath>$(NugetPackageRoot)microsoft.azure.powershell.storage\1.0.233-preview\tools\</StorageToolsPath>
69+
<StorageToolsPath>$(NugetPackageRoot)microsoft.azure.powershell.storage\1.1.10-preview\tools\</StorageToolsPath>
7070
</PropertyGroup>
7171
<ItemGroup Condition="'$(OmitJsonPackage)' != 'true'">
7272
<PackageReference Include="Newtonsoft.Json" Version="10.0.3">

tools/RepoTasks/RepoTasks.CmdletsForTest/RepoTasks.CmdletsForTest.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
<HintPath>..\..\..\src\packages\Microsoft.ApplicationInsights.1.2.0\lib\net45\Microsoft.ApplicationInsights.dll</HintPath>
3838
</Reference>
3939
<Reference Include="Microsoft.Azure.Commands.Common.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
40-
<HintPath>..\..\..\src\packages\Microsoft.Azure.PowerShell.Authentication.Abstractions.1.0.233-preview\lib\net452\Microsoft.Azure.Commands.Common.Authentication.Abstractions.dll</HintPath>
40+
<HintPath>..\..\..\src\packages\Microsoft.Azure.PowerShell.Authentication.Abstractions.1.1.10-preview\lib\net452\Microsoft.Azure.Commands.Common.Authentication.Abstractions.dll</HintPath>
4141
</Reference>
4242
<Reference Include="Microsoft.Azure.Common, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
4343
<HintPath>..\..\..\src\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll</HintPath>
@@ -58,7 +58,7 @@
5858
<HintPath>..\..\..\src\packages\Microsoft.Bcl.Async.1.0.168\lib\net40\Microsoft.Threading.Tasks.Extensions.Desktop.dll</HintPath>
5959
</Reference>
6060
<Reference Include="Microsoft.WindowsAzure.Commands.Common, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
61-
<HintPath>..\..\..\src\packages\Microsoft.Azure.PowerShell.Common.1.0.233-preview\lib\net452\Microsoft.WindowsAzure.Commands.Common.dll</HintPath>
61+
<HintPath>..\..\..\src\packages\Microsoft.Azure.PowerShell.Common.1.1.10-preview\lib\net452\Microsoft.WindowsAzure.Commands.Common.dll</HintPath>
6262
</Reference>
6363
<Reference Include="Microsoft.WindowsAzure.Management, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
6464
<HintPath>..\..\..\src\packages\Microsoft.WindowsAzure.Management.4.1.1\lib\net40\Microsoft.WindowsAzure.Management.dll</HintPath>

0 commit comments

Comments
 (0)