Skip to content

Commit dd65f07

Browse files
committed
Update
1 parent f150c73 commit dd65f07

File tree

4 files changed

+10
-21
lines changed

4 files changed

+10
-21
lines changed

src/CLU/Microsoft.Azure.Commands.Compute/Common/ComputeClient.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public class ComputeClient
2828
public Action<string> ErrorLogger { get; set; }
2929

3030
public ComputeClient(IClientFactory clientFactory, AzureContext context)
31-
: this(clientFactory.CreateClient<ComputeManagementClient>(context, AzureEnvironment.Endpoint.ResourceManager))
31+
: this(clientFactory.CreateArmClient<ComputeManagementClient>(context, AzureEnvironment.Endpoint.ResourceManager))
3232
{
3333
}
3434

src/CLU/Microsoft.Azure.Commands.Compute/Content/azure.lx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
RtPackage: Microsoft.CLU
1+
RtPackage: Microsoft.CLU.Commands
22
RtEntry: Microsoft.CLU.CommandModel.CmdletCommandModel.Run
33
RtAssembly: Microsoft.CLU.dll
44
Modules: Microsoft.Azure.Commands.Compute
Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<Project ToolsVersion="14.0.24711" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2+
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<PropertyGroup>
4-
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">14.0.24711</VisualStudioVersion>
4+
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">14.0</VisualStudioVersion>
55
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
66
</PropertyGroup>
77
<Import Project="$(VSToolsPath)\DNX\Microsoft.DNX.Props" Condition="'$(VSToolsPath)' != ''" />
@@ -14,8 +14,5 @@
1414
<PropertyGroup>
1515
<SchemaVersion>2.0</SchemaVersion>
1616
</PropertyGroup>
17-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
18-
<ProduceOutputsOnBuild>True</ProduceOutputsOnBuild>
19-
</PropertyGroup>
2017
<Import Project="$(VSToolsPath)\DNX\Microsoft.DNX.targets" Condition="'$(VSToolsPath)' != ''" />
2118
</Project>

src/CLU/Microsoft.Azure.Commands.Compute/project.json

Lines changed: 6 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -17,24 +17,17 @@
1717
"dependencies": {
1818
"System.Linq": "4.0.1-beta-23516",
1919
"Microsoft.CLU": "1.0.0",
20-
"Commands.Common.Authentication": "",
2120
"Commands.Common": "",
21+
"Commands.Common.Authentication": "",
22+
"Commands.Common.Storage": "",
2223
"Commands.ResourceManager.Common": "",
23-
"Commands.ResourceManager.Cmdlets": "",
24-
"Microsoft.Azure.Graph.RBAC": "2.0.0-preview",
25-
"Microsoft.Azure.Management.Authorization": "2.0.1-preview",
26-
"Microsoft.Azure.Management.Resources": "3.1.1-preview",
2724
"Microsoft.Azure.Management.Compute": "11.0.0-prerelease",
2825
"Microsoft.Azure.Management.Network": "3.0.3-preview",
29-
"Microsoft.Azure.Management.Storage": "4.0.0-preview",
3026
"Microsoft.IdentityModel.Clients.ActiveDirectory": "3.6.210231457-alpha",
31-
"Microsoft.Rest.ClientRuntime": "1.4.1",
32-
"Microsoft.Rest.ClientRuntime.Azure": "2.1.0",
33-
"Microsoft.Rest.ClientRuntime.Azure.Authentication": "1.0.0-preview",
27+
"Microsoft.Rest.ClientRuntime": "1.5.0",
3428
"Newtonsoft.Json": "7.0.1",
3529
"System.Collections": "4.0.11-beta-23516",
3630
"System.Collections.Concurrent": "4.0.11-beta-23516",
37-
"System.Diagnostics.Tools": "4.0.1-beta-23516",
3831
"System.Diagnostics.TraceSource": "4.0.0-beta-23516",
3932
"System.Diagnostics.Tracing": "4.0.21-beta-23516",
4033
"System.IO": "4.0.11-beta-23516",
@@ -48,7 +41,6 @@
4841
"System.Runtime": "4.0.21-beta-23516",
4942
"System.Runtime.Extensions": "4.0.11-beta-23516",
5043
"System.Runtime.Serialization.Json": "4.0.1-beta-23516",
51-
"System.Runtime.Serialization.Primitives": "4.1.0-beta-23516",
5244
"System.Runtime.Serialization.Xml": "4.1.0-beta-23516",
5345
"System.Security.Cryptography.Algorithms": "4.0.0-beta-23516",
5446
"System.Security.Cryptography.X509Certificates": "4.0.0-beta-23516",
@@ -57,8 +49,8 @@
5749
"System.Threading": "4.0.11-beta-23516",
5850
"System.Threading.Tasks": "4.0.11-beta-23516",
5951
"System.Threading.Thread": "4.0.0-beta-23516",
60-
"System.Xml.ReaderWriter": "4.0.11-beta-23516",
61-
"System.Text.RegularExpressions": "4.0.11-beta-23516"
52+
"WindowsAzure.Storage": "6.1.1-preview",
53+
"Microsoft.Azure.Management.Storage": "4.0.0-preview"
6254
},
63-
"compilationOptions": { "emitEntryPoint": true }
55+
"compilationOptions": {"emitEntryPoint": true}
6456
}

0 commit comments

Comments
 (0)