Skip to content

Commit 7c6eb54

Browse files
committed
Merge pull request Azure#84 from DeepakRajendranMsft/AddDnsNamePublicIP
Add dns name public ip
2 parents 74b2c87 + 4696d82 commit 7c6eb54

File tree

47 files changed

+1104
-72
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+1104
-72
lines changed

src/Common/Commands.Common.Test/Commands.Common.Test.csproj

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -106,9 +106,8 @@
106106
<Reference Include="Microsoft.WindowsAzure.Management">
107107
<HintPath>..\..\packages\Microsoft.WindowsAzure.Management.4.1.1\lib\net40\Microsoft.WindowsAzure.Management.dll</HintPath>
108108
</Reference>
109-
<Reference Include="Microsoft.WindowsAzure.Management.Compute, Version=9.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
110-
<SpecificVersion>False</SpecificVersion>
111-
<HintPath>..\..\packages\Microsoft.WindowsAzure.Management.Compute.9.2.1\lib\net40\Microsoft.WindowsAzure.Management.Compute.dll</HintPath>
109+
<Reference Include="Microsoft.WindowsAzure.Management.Compute">
110+
<HintPath>..\..\packages\Microsoft.WindowsAzure.Management.Compute.11.2.1\lib\net40\Microsoft.WindowsAzure.Management.Compute.dll</HintPath>
112111
</Reference>
113112
<Reference Include="Microsoft.WindowsAzure.Management.Storage">
114113
<HintPath>..\..\packages\Microsoft.WindowsAzure.Management.Storage.5.1.1\lib\net40\Microsoft.WindowsAzure.Management.Storage.dll</HintPath>

src/Common/Commands.Common.Test/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<package id="Microsoft.Net.Http" version="2.2.28" targetFramework="net45" />
1717
<package id="Microsoft.WindowsAzure.ConfigurationManager" version="2.0.3" targetFramework="net45" />
1818
<package id="Microsoft.WindowsAzure.Management" version="4.1.1" targetFramework="net45" />
19-
<package id="Microsoft.WindowsAzure.Management.Compute" version="9.2.1" targetFramework="net45" />
19+
<package id="Microsoft.WindowsAzure.Management.Compute" version="11.2.1" targetFramework="net45" />
2020
<package id="Microsoft.WindowsAzure.Management.Storage" version="5.1.1" targetFramework="net45" />
2121
<package id="Moq" version="4.2.1402.2112" targetFramework="net45" />
2222
<package id="Newtonsoft.Json" version="6.0.4" targetFramework="net45" />

src/Common/Commands.Common/ServiceManagementTypes.cs

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -912,6 +912,8 @@ public class AssignPublicIP
912912
[DataMember(Name = "IdleTimeoutInMinutes", EmitDefaultValue = false, Order = 2)]
913913
public int? IdleTimeoutInMinutes { get; set; }
914914

915+
[DataMember(Name = "DomainNameLabel", EmitDefaultValue = false, Order = 3)]
916+
public string DomainNameLabel { get; set; }
915917
}
916918

917919
[CollectionDataContract(Name = "NetworkInterfaces", ItemName = "NetworkInterface", Namespace = Constants.ServiceManagementNS)]
@@ -3075,9 +3077,32 @@ public class PublicIP : IExtensibleDataObject
30753077
[DataMember(EmitDefaultValue = false, Order = 2)]
30763078
public string Address { get; set; }
30773079

3080+
[DataMember(EmitDefaultValue = false, Order = 3)]
3081+
public int? IdleTimeoutInMinutes { get; set; }
3082+
3083+
[DataMember(EmitDefaultValue = false, Order = 4)]
3084+
public string DomainNameLabel { get; set; }
3085+
3086+
[DataMember(EmitDefaultValue = false, Order = 5)]
3087+
public FqdnsList Fqdns { get; set; }
3088+
30783089
public ExtensionDataObject ExtensionData { get; set; }
30793090
}
30803091

3092+
[CollectionDataContract(Name = "Fqdns", ItemName = "Fqdn", Namespace = Constants.ServiceManagementNS)]
3093+
public class FqdnsList : List<string>
3094+
{
3095+
public FqdnsList()
3096+
{
3097+
3098+
}
3099+
3100+
public FqdnsList(IEnumerable<string> fqdns)
3101+
: base(fqdns)
3102+
{
3103+
3104+
}
3105+
}
30813106

30823107
[CollectionDataContract(Name = "LoadBalancers", ItemName = "LoadBalancer", Namespace = Constants.ServiceManagementNS)]
30833108
public class LoadBalancerList : List<LoadBalancer>

src/Common/Commands.ScenarioTest/Commands.ScenarioTest.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,8 @@
103103
<HintPath>..\..\packages\Microsoft.WindowsAzure.Management.4.1.1\lib\net40\Microsoft.WindowsAzure.Management.dll</HintPath>
104104
</Reference>
105105
<Reference Include="Microsoft.WindowsAzure.Management.Compute">
106-
<HintPath>..\..\packages\Microsoft.WindowsAzure.Management.Compute.9.2.1\lib\net40\Microsoft.WindowsAzure.Management.Compute.dll</HintPath>
106+
<HintPath>..\..\packages\Microsoft.WindowsAzure.Management.Compute.11.2.1\lib\net40\Microsoft.WindowsAzure.Management.Compute.dll</HintPath>
107+
<Private>True</Private>
107108
</Reference>
108109
<Reference Include="Microsoft.WindowsAzure.Management.Storage">
109110
<HintPath>..\..\packages\Microsoft.WindowsAzure.Management.Storage.5.1.1\lib\net40\Microsoft.WindowsAzure.Management.Storage.dll</HintPath>

src/Common/Commands.ScenarioTest/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<package id="Microsoft.Net.Http" version="2.2.28" targetFramework="net45" />
1818
<package id="Microsoft.WindowsAzure.ConfigurationManager" version="2.0.3" targetFramework="net45" />
1919
<package id="Microsoft.WindowsAzure.Management" version="4.1.1" targetFramework="net45" />
20-
<package id="Microsoft.WindowsAzure.Management.Compute" version="9.2.1" targetFramework="net45" />
20+
<package id="Microsoft.WindowsAzure.Management.Compute" version="11.2.1" targetFramework="net45" />
2121
<package id="Microsoft.WindowsAzure.Management.Storage" version="5.1.1" targetFramework="net45" />
2222
<package id="Microsoft.WindowsAzure.Management.WebSites" version="4.4.2-prerelease" targetFramework="net45" />
2323
<package id="Newtonsoft.Json" version="6.0.4" targetFramework="net45" />

src/ResourceManager/Websites/Commands.Websites.Test/Commands.Websites.Test.csproj

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,9 @@
132132
<None Include="SessionRecords\Microsoft.Azure.Commands.WebApp.Test.ScenarioTests.WebAppTests\TestCreatesNewSimpleWebApp.json">
133133
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
134134
</None>
135+
<None Include="SessionRecords\Microsoft.Azure.Commands.WebApp.Test.ScenarioTests.WebAppTests\TestSetNewAppServicePlan.json">
136+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
137+
</None>
135138
</ItemGroup>
136139
<ItemGroup>
137140
<ProjectReference Include="..\..\..\Common\Commands.Common.Test\Commands.Common.Test.csproj">

src/ResourceManager/Websites/Commands.Websites.Test/ScenarioTests/Common.ps1

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ Gets a website name for testing.
1818
#>
1919
function Get-WebsiteName
2020
{
21-
# need to remove hardcoding
2221
return getAssetName
2322
}
2423

@@ -28,7 +27,6 @@ Gets a website name for testing.
2827
#>
2928
function Get-WebHostPlanName
3029
{
31-
# need to remove hardcoding
3230
return getAssetName
3331
}
3432

src/ResourceManager/Websites/Commands.Websites.Test/ScenarioTests/WebAppTests.cs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,12 @@ public void TestCreatesNewAppServicePlan()
3333
{
3434
WebsitesController.NewInstance.RunPsTest("Test-CreatesNewAppServicePlan");
3535
}
36+
37+
[Fact]
38+
[Trait(Category.AcceptanceType, Category.CheckIn)]
39+
public void TestSetNewAppServicePlan()
40+
{
41+
WebsitesController.NewInstance.RunPsTest("Test-SetNewAppServicePlan");
42+
}
3643
}
3744
}

src/ResourceManager/Websites/Commands.Websites.Test/ScenarioTests/WebAppTests.ps1

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,4 +78,47 @@ function Test-CreatesNewAppServicePlan
7878
Remove-AzureAppServicePlan -ResourceGroupName $rgname -Name $whpName -Force
7979
Remove-AzureResourceGroup -Name $rgname -Force
8080
}
81+
}
82+
83+
<#
84+
.SYNOPSIS
85+
Tests creating a new Web Hosting Plan.
86+
#>
87+
function Test-SetNewAppServicePlan
88+
{
89+
# Setup
90+
$rgname = Get-ResourceGroupName
91+
$whpName = Get-WebHostPlanName
92+
$location = Get-Location
93+
94+
try
95+
{
96+
#Setup
97+
New-AzureResourceGroup -Name $rgname -Location $location
98+
# Test
99+
$actual = New-AzureAppServicePlan -ResourceGroupName $rgname -Name $whpName -Location $location
100+
$result = Get-AzureAppServicePlan -ResourceGroupName $rgname -Name $whpName
101+
# Assert
102+
Assert-AreEqual $whpName $result.WebHostingPlan.Name
103+
Assert-AreEqual 1 $result.WebHostingPlan.Properties.NumberOfWorkers
104+
Assert-AreEqual "Standard" $result.WebHostingPlan.Properties.Sku
105+
Assert-AreEqual "Small" $result.WebHostingPlan.Properties.WorkerSize
106+
107+
# Test setting the created service plan
108+
$newresult = Set-AzureAppServicePlan -ResourceGroupName $rgname -Name $whpName -Location $location -Sku Premium -NumberofWorkers 12 -WorkerSize Medium
109+
# due to a bug Set and New are not returning the appropriate object so need to get.
110+
$newresult = Get-AzureAppServicePlan -ResourceGroupName $rgname -Name $whpName
111+
112+
# Assert
113+
Assert-AreEqual $whpName $result.WebHostingPlan.Name
114+
Assert-AreEqual 12 $newresult.WebHostingPlan.Properties.NumberOfWorkers
115+
Assert-AreEqual "Premium" $newresult.WebHostingPlan.Properties.Sku
116+
Assert-AreEqual "Medium" $newresult.WebHostingPlan.Properties.WorkerSize
117+
}
118+
finally
119+
{
120+
# Cleanup
121+
Remove-AzureAppServicePlan -ResourceGroupName $rgname -Name $whpName -Force
122+
Remove-AzureResourceGroup -Name $rgname -Force
123+
}
81124
}

src/ResourceManager/Websites/Commands.Websites.Test/SessionRecords/Microsoft.Azure.Commands.WebApp.Test.ScenarioTests.WebAppTests/TestSetNewAppServicePlan.json

Lines changed: 862 additions & 0 deletions
Large diffs are not rendered by default.

src/ResourceManager/Websites/Commands.Websites/Cmdlets/AppServicePlan/GetAzureAppServicePlan.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,12 +56,12 @@ public override void ExecuteCmdlet()
5656

5757
private void GetByWebHostingPlan()
5858
{
59-
WriteObject(WebsitesClient.GetWebHostingPlan(ResourceGroupName, Name));
59+
WriteObject(WebsitesClient.GetAppServicePlan(ResourceGroupName, Name));
6060
}
6161

6262
private void GetByResourceGroup()
6363
{
64-
WriteObject(WebsitesClient.ListWebHostingPlan(ResourceGroupName));
64+
WriteObject(WebsitesClient.ListAppServicePlan(ResourceGroupName));
6565
}
6666
}
6767
}

src/ResourceManager/Websites/Commands.Websites/Cmdlets/AppServicePlan/NewAzureAppServicePlan.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ public override void ExecuteCmdlet()
116116
}
117117
}
118118

119-
WriteObject(WebsitesClient.CreateWebHostingPlan(ResourceGroupName, Name, Location, adminSiteName, NumberofWorkers, skuInput, workerSizeInput));
119+
WriteObject(WebsitesClient.CreateAppServicePlan(ResourceGroupName, Name, Location, adminSiteName, NumberofWorkers, skuInput, workerSizeInput));
120120

121121
}
122122

src/ResourceManager/Websites/Commands.Websites/Cmdlets/AppServicePlan/RemoveAppServicePlan.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,10 @@ public override void ExecuteCmdlet()
4848
{
4949
ConfirmAction(
5050
Force.IsPresent,
51-
string.Format(Microsoft.Azure.Commands.WebApp.Properties.Resources.RemovingWebHostPlan, Name),
52-
Microsoft.Azure.Commands.WebApp.Properties.Resources.RemovingWebHostPlan,
51+
string.Format(Microsoft.Azure.Commands.WebApp.Properties.Resources.RemovingAppServicePlan, Name),
52+
Microsoft.Azure.Commands.WebApp.Properties.Resources.RemovingAppServicePlan,
5353
Name,
54-
() => WebsitesClient.RemoveWebHostingPlan(ResourceGroupName, Name));
54+
() => WebsitesClient.RemoveAppServicePlan(ResourceGroupName, Name));
5555
}
5656
}
5757
}

src/ResourceManager/Websites/Commands.Websites/Cmdlets/AppServicePlan/SetAzureAppServicePlan.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ public override void ExecuteCmdlet()
115115
}
116116
}
117117

118-
WriteObject(WebsitesClient.CreateWebHostingPlan(ResourceGroupName, Name, Location, adminSiteName, NumberofWorkers, skuInput, workerSizeInput));
118+
WriteObject(WebsitesClient.CreateAppServicePlan(ResourceGroupName, Name, Location, adminSiteName, NumberofWorkers, skuInput, workerSizeInput));
119119

120120
}
121121

src/ResourceManager/Websites/Commands.Websites/Properties/Resources.Designer.cs

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

src/ResourceManager/Websites/Commands.Websites/Properties/Resources.resx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -117,16 +117,16 @@
117117
<resheader name="writer">
118118
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
119119
</resheader>
120-
<data name="RemovingWebHostPlan" xml:space="preserve">
121-
<value>Are you sure you want to remove web hosting plan '{0}'</value>
120+
<data name="RemovingAppServicePlan" xml:space="preserve">
121+
<value>Are you sure you want to remove app service plan '{0}'</value>
122122
</data>
123123
<data name="RemoveWebsiteMessage" xml:space="preserve">
124-
<value>Removing website</value>
124+
<value>Removing web app</value>
125125
</data>
126126
<data name="RemoveWebsiteWarning" xml:space="preserve">
127-
<value>Are you sure you want to remove the website "{0}"</value>
127+
<value>Are you sure you want to remove the web app "{0}"</value>
128128
</data>
129129
<data name="RemovingWebsite" xml:space="preserve">
130-
<value>Are you sure you want to remove website '{0}'</value>
130+
<value>Are you sure you want to remove web app '{0}'</value>
131131
</data>
132132
</root>

src/ResourceManager/Websites/Commands.Websites/Utilities/WebsitesClient.cs

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ public WebSiteGetHistoricalUsageMetricsResponse GetWebAppUsageMetrics(string res
125125
return usageMetrics;
126126
}
127127

128-
public WebHostingPlanCreateOrUpdateResponse CreateWebHostingPlan(string resourceGroupName, string whpName, string location, string adminSiteName, int numberOfWorkers, SkuOptions sku, WorkerSizeOptions workerSize)
128+
public WebHostingPlanCreateOrUpdateResponse CreateAppServicePlan(string resourceGroupName, string whpName, string location, string adminSiteName, int numberOfWorkers, SkuOptions sku, WorkerSizeOptions workerSize)
129129
{
130130
WebHostingPlanProperties webHostingPlanProperties = new WebHostingPlanProperties();
131131
webHostingPlanProperties.Sku = sku;
@@ -143,24 +143,21 @@ public WebHostingPlanCreateOrUpdateResponse CreateWebHostingPlan(string resource
143143
return createdWHP;
144144
}
145145

146-
public AzureOperationResponse RemoveWebHostingPlan(string resourceGroupName, string whpName)
146+
public AzureOperationResponse RemoveAppServicePlan(string resourceGroupName, string whpName)
147147
{
148148
var response = WrappedWebsitesClient.WebHostingPlans.Delete(resourceGroupName, whpName);
149-
//proper return type need to be discussed
150149
return response;
151150
}
152151

153-
public WebHostingPlanGetResponse GetWebHostingPlan(string resourceGroupName, string whpName)
152+
public WebHostingPlanGetResponse GetAppServicePlan(string resourceGroupName, string whpName)
154153
{
155154
var response = WrappedWebsitesClient.WebHostingPlans.Get(resourceGroupName, whpName);
156-
//proper return type need to be discussed
157155
return response;
158156
}
159157

160-
public WebHostingPlanListResponse ListWebHostingPlan(string resourceGroupName)
158+
public WebHostingPlanListResponse ListAppServicePlan(string resourceGroupName)
161159
{
162160
var response = WrappedWebsitesClient.WebHostingPlans.List(resourceGroupName);
163-
//proper return type need to be discussed
164161
return response;
165162
}
166163

src/ServiceManagement/Compute/Commands.ServiceManagement.Extensions.Test/Commands.ServiceManagement.Extensions.Test.csproj

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,9 @@
7979
<Reference Include="Microsoft.WindowsAzure.Management">
8080
<HintPath>..\..\..\packages\Microsoft.WindowsAzure.Management.4.1.1\lib\net40\Microsoft.WindowsAzure.Management.dll</HintPath>
8181
</Reference>
82-
<Reference Include="Microsoft.WindowsAzure.Management.Compute">
83-
<HintPath>..\..\..\packages\Microsoft.WindowsAzure.Management.Compute.9.2.1\lib\net40\Microsoft.WindowsAzure.Management.Compute.dll</HintPath>
82+
<Reference Include="Microsoft.WindowsAzure.Management.Compute, Version=11.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
83+
<SpecificVersion>False</SpecificVersion>
84+
<HintPath>..\..\..\packages\Microsoft.WindowsAzure.Management.Compute.11.2.1\lib\net40\Microsoft.WindowsAzure.Management.Compute.dll</HintPath>
8485
</Reference>
8586
<Reference Include="Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
8687
<SpecificVersion>False</SpecificVersion>

src/ServiceManagement/Compute/Commands.ServiceManagement.Extensions.Test/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<package id="Microsoft.IdentityModel.Clients.ActiveDirectory" version="2.14.201151115" targetFramework="net45" />
1212
<package id="Microsoft.Net.Http" version="2.2.28" targetFramework="net45" />
1313
<package id="Microsoft.WindowsAzure.Management" version="4.1.1" targetFramework="net45" />
14-
<package id="Microsoft.WindowsAzure.Management.Compute" version="9.2.1" targetFramework="net45" />
14+
<package id="Microsoft.WindowsAzure.Management.Compute" version="11.2.1" targetFramework="net45" />
1515
<package id="Newtonsoft.Json" version="6.0.4" targetFramework="net45" />
1616
<package id="xunit.runner.visualstudio" version="2.0.0" targetFramework="net45" />
1717
</packages>

src/ServiceManagement/Compute/Commands.ServiceManagement.PlatformImageRepository/Commands.ServiceManagement.PlatformImageRepository.csproj

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,8 +111,9 @@
111111
<Reference Include="Microsoft.WindowsAzure.Management">
112112
<HintPath>..\..\..\packages\Microsoft.WindowsAzure.Management.4.1.1\lib\net40\Microsoft.WindowsAzure.Management.dll</HintPath>
113113
</Reference>
114-
<Reference Include="Microsoft.WindowsAzure.Management.Compute">
115-
<HintPath>..\..\..\packages\Microsoft.WindowsAzure.Management.Compute.9.2.1\lib\net40\Microsoft.WindowsAzure.Management.Compute.dll</HintPath>
114+
<Reference Include="Microsoft.WindowsAzure.Management.Compute, Version=11.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
115+
<SpecificVersion>False</SpecificVersion>
116+
<HintPath>..\..\..\packages\Microsoft.WindowsAzure.Management.Compute.11.2.1\lib\net40\Microsoft.WindowsAzure.Management.Compute.dll</HintPath>
116117
</Reference>
117118
<Reference Include="Microsoft.WindowsAzure.Management.Storage">
118119
<HintPath>..\..\..\packages\Microsoft.WindowsAzure.Management.Storage.5.1.1\lib\net40\Microsoft.WindowsAzure.Management.Storage.dll</HintPath>

src/ServiceManagement/Compute/Commands.ServiceManagement.PlatformImageRepository/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<package id="Microsoft.Net.Http" version="2.2.28" targetFramework="net45" />
1717
<package id="Microsoft.WindowsAzure.ConfigurationManager" version="2.0.3" targetFramework="net45" />
1818
<package id="Microsoft.WindowsAzure.Management" version="4.1.1" targetFramework="net45" />
19-
<package id="Microsoft.WindowsAzure.Management.Compute" version="9.2.1" targetFramework="net45" />
19+
<package id="Microsoft.WindowsAzure.Management.Compute" version="11.2.1" targetFramework="net45" />
2020
<package id="Microsoft.WindowsAzure.Management.Storage" version="5.1.1" targetFramework="net45" />
2121
<package id="Newtonsoft.Json" version="6.0.4" targetFramework="net45" />
2222
<package id="System.Spatial" version="5.6.0" targetFramework="net45" />

src/ServiceManagement/Compute/Commands.ServiceManagement.Preview/Commands.ServiceManagement.Preview.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@
112112
<HintPath>..\..\..\packages\Microsoft.WindowsAzure.Management.4.1.1\lib\net40\Microsoft.WindowsAzure.Management.dll</HintPath>
113113
</Reference>
114114
<Reference Include="Microsoft.WindowsAzure.Management.Compute">
115-
<HintPath>..\..\..\packages\Microsoft.WindowsAzure.Management.Compute.9.2.1\lib\net40\Microsoft.WindowsAzure.Management.Compute.dll</HintPath>
115+
<HintPath>..\..\..\packages\Microsoft.WindowsAzure.Management.Compute.11.2.1\lib\net40\Microsoft.WindowsAzure.Management.Compute.dll</HintPath>
116116
</Reference>
117117
<Reference Include="Microsoft.WindowsAzure.Management.Network, Version=6.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
118118
<SpecificVersion>False</SpecificVersion>

src/ServiceManagement/Compute/Commands.ServiceManagement.Preview/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<package id="Microsoft.Net.Http" version="2.2.28" targetFramework="net45" />
1717
<package id="Microsoft.WindowsAzure.ConfigurationManager" version="2.0.3" targetFramework="net45" />
1818
<package id="Microsoft.WindowsAzure.Management" version="4.1.1" targetFramework="net45" />
19-
<package id="Microsoft.WindowsAzure.Management.Compute" version="9.2.1" targetFramework="net45" />
19+
<package id="Microsoft.WindowsAzure.Management.Compute" version="11.2.1" targetFramework="net45" />
2020
<package id="Microsoft.WindowsAzure.Management.Network" version="6.1.2" targetFramework="net45" />
2121
<package id="Microsoft.WindowsAzure.Management.Storage" version="5.1.1" targetFramework="net45" />
2222
<package id="Newtonsoft.Json" version="6.0.4" targetFramework="net45" />

0 commit comments

Comments
 (0)