Skip to content

Commit 0398421

Browse files
unknownunknown
authored andcommitted
Update compute library and fix it
1 parent 91927e1 commit 0398421

File tree

19 files changed

+68
-84
lines changed

19 files changed

+68
-84
lines changed

src/Common/Commands.Common.Storage/Commands.Common.Storage.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,7 @@
165165
</EmbeddedResource>
166166
</ItemGroup>
167167
<ItemGroup>
168+
<None Include="app.config" />
168169
<None Include="packages.config" />
169170
</ItemGroup>
170171
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />

src/ResourceManager/Compute/Commands.Compute.Test/Commands.Compute.Test.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,14 +46,14 @@
4646
<HintPath>..\..\..\packages\Hyak.Common.1.0.2\lib\portable-net403+win+wpa81\Hyak.Common.dll</HintPath>
4747
</Reference>
4848
<Reference Include="Microsoft.Azure.Common">
49-
<HintPath>..\..\..\packages\Microsoft.Azure.Common.2.0.4\lib\net45\Microsoft.Azure.Common.dll</HintPath>
49+
<HintPath>..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll</HintPath>
5050
</Reference>
5151
<Reference Include="Microsoft.Azure.Common.Authentication, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
5252
<SpecificVersion>False</SpecificVersion>
5353
<HintPath>..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.17-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll</HintPath>
5454
</Reference>
5555
<Reference Include="Microsoft.Azure.Common.NetFramework">
56-
<HintPath>..\..\..\packages\Microsoft.Azure.Common.2.0.4\lib\net45\Microsoft.Azure.Common.NetFramework.dll</HintPath>
56+
<HintPath>..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll</HintPath>
5757
</Reference>
5858
<Reference Include="Microsoft.Azure.Gallery">
5959
<HintPath>..\..\..\packages\Microsoft.Azure.Gallery.2.6.2-preview\lib\net40\Microsoft.Azure.Gallery.dll</HintPath>
@@ -66,7 +66,7 @@
6666
<HintPath>..\..\..\packages\Microsoft.Azure.Management.Authorization.0.17.0-preview\lib\net40\Microsoft.Azure.Management.Authorization.dll</HintPath>
6767
</Reference>
6868
<Reference Include="Microsoft.Azure.ResourceManager">
69-
<HintPath>..\..\..\packages\Microsoft.Azure.Management.Resources.2.14.1-preview\lib\net40\Microsoft.Azure.ResourceManager.dll</HintPath>
69+
<HintPath>..\..\..\packages\Microsoft.Azure.Management.Resources.2.18.0-preview\lib\net40\Microsoft.Azure.ResourceManager.dll</HintPath>
7070
</Reference>
7171
<Reference Include="Microsoft.Azure.Test.Framework">
7272
<HintPath>..\..\..\packages\Microsoft.Azure.Test.Framework.1.0.5562.19686-prerelease\lib\net45\Microsoft.Azure.Test.Framework.dll</HintPath>

src/ResourceManager/Compute/Commands.Compute.Test/packages.config

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
33
<package id="Hyak.Common" version="1.0.2" targetFramework="net45" />
4-
<package id="Microsoft.Azure.Common" version="2.0.4" targetFramework="net45" />
4+
<package id="Microsoft.Azure.Common" version="2.1.0" targetFramework="net45" />
55
<package id="Microsoft.Azure.Common.Authentication" version="1.0.17-preview" targetFramework="net45" />
66
<package id="Microsoft.Azure.Common.Dependencies" version="1.0.0" targetFramework="net45" />
77
<package id="Microsoft.Azure.Gallery" version="2.6.2-preview" targetFramework="net45" />
88
<package id="Microsoft.Azure.Graph.RBAC" version="1.6.0-preview" targetFramework="net45" />
99
<package id="Microsoft.Azure.Management.Authorization" version="0.17.0-preview" targetFramework="net45" />
10-
<package id="Microsoft.Azure.Management.Resources" version="2.14.1-preview" targetFramework="net45" />
10+
<package id="Microsoft.Azure.Management.Resources" version="2.18.0-preview" targetFramework="net45" />
1111
<package id="Microsoft.Azure.Test.Framework" version="1.0.5562.19686-prerelease" targetFramework="net45" />
1212
<package id="Microsoft.Azure.Test.HttpRecorder" version="1.0.5562.19686-prerelease" targetFramework="net45" />
1313
<package id="Microsoft.Bcl" version="1.1.9" targetFramework="net45" />

src/ResourceManager/Compute/Commands.Compute/AvailabilitySets/NewAzureAvailabilitySetCommand.cs

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -51,13 +51,10 @@ public override void ExecuteCmdlet()
5151
{
5252
base.ExecuteCmdlet();
5353

54-
var avSetParams = new AvailabilitySetCreateOrUpdateParameters
54+
var avSetParams = new AvailabilitySet
5555
{
56-
AvailabilitySet = new AvailabilitySet
57-
{
58-
Name = this.Name,
59-
Location = this.Location
60-
}
56+
Name = this.Name,
57+
Location = this.Location
6158
};
6259

6360
var op = this.AvailabilitySetClient.CreateOrUpdate(

src/ResourceManager/Compute/Commands.Compute/Commands.Compute.csproj

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -52,14 +52,14 @@
5252
<HintPath>..\..\..\packages\Hyak.Common.1.0.2\lib\portable-net403+win+wpa81\Hyak.Common.dll</HintPath>
5353
</Reference>
5454
<Reference Include="Microsoft.Azure.Common">
55-
<HintPath>..\..\..\packages\Microsoft.Azure.Common.2.0.4\lib\net45\Microsoft.Azure.Common.dll</HintPath>
55+
<HintPath>..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll</HintPath>
5656
</Reference>
5757
<Reference Include="Microsoft.Azure.Common.Authentication, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
5858
<SpecificVersion>False</SpecificVersion>
5959
<HintPath>..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.17-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll</HintPath>
6060
</Reference>
6161
<Reference Include="Microsoft.Azure.Common.NetFramework">
62-
<HintPath>..\..\..\packages\Microsoft.Azure.Common.2.0.4\lib\net45\Microsoft.Azure.Common.NetFramework.dll</HintPath>
62+
<HintPath>..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll</HintPath>
6363
</Reference>
6464
<Reference Include="Microsoft.Azure.Gallery">
6565
<HintPath>..\..\..\packages\Microsoft.Azure.Gallery.2.6.2-preview\lib\net40\Microsoft.Azure.Gallery.dll</HintPath>
@@ -76,9 +76,8 @@
7676
<SpecificVersion>False</SpecificVersion>
7777
<HintPath>..\..\..\lib\Microsoft.Azure.Management.Compute.dll</HintPath>
7878
</Reference>
79-
<Reference Include="Microsoft.Azure.ResourceManager, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
80-
<SpecificVersion>False</SpecificVersion>
81-
<HintPath>..\..\..\packages\Microsoft.Azure.Management.Resources.2.14.1-preview\lib\net40\Microsoft.Azure.ResourceManager.dll</HintPath>
79+
<Reference Include="Microsoft.Azure.ResourceManager">
80+
<HintPath>..\..\..\packages\Microsoft.Azure.Management.Resources.2.18.0-preview\lib\net40\Microsoft.Azure.ResourceManager.dll</HintPath>
8281
</Reference>
8382
<Reference Include="Microsoft.IdentityModel.Clients.ActiveDirectory">
8483
<SpecificVersion>False</SpecificVersion>

src/ResourceManager/Compute/Commands.Compute/Extension/SetAzureVMExtensionCommand.cs

Lines changed: 9 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -131,22 +131,16 @@ public override void ExecuteCmdlet()
131131
this.ProtectedSettingString = new JsonSettingBuilder(this.ProtectedSettings).ToString();
132132
}
133133

134-
var parameters = new VirtualMachineExtensionCreateOrUpdateParameters
134+
var parameters = new VirtualMachineExtension
135135
{
136-
VirtualMachineExtension = new VirtualMachineExtension
137-
{
138-
Location = this.Location,
139-
Name = this.Name,
140-
Type = VirtualMachineExtensionType,
141-
VirtualMachineExtensionProperties = new VirtualMachineExtensionProperties
142-
{
143-
Publisher = this.Publisher,
144-
Type = this.Type,
145-
TypeHandlerVersion = this.TypeHandlerVersion,
146-
Settings = this.SettingString,
147-
ProtectedSettings = this.ProtectedSettingString
148-
}
149-
}
136+
Location = this.Location,
137+
Name = this.Name,
138+
Type = VirtualMachineExtensionType,
139+
Publisher = this.Publisher,
140+
ExtensionType = this.Type,
141+
TypeHandlerVersion = this.TypeHandlerVersion,
142+
Settings = this.SettingString,
143+
ProtectedSettings = this.ProtectedSettingString,
150144
};
151145

152146
var op = this.VirtualMachineExtensionClient.CreateOrUpdate(

src/ResourceManager/Compute/Commands.Compute/Models/PSAvailabilitySet.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,10 @@ public static PSAvailabilitySet ToPSAvailabilitySet(this AvailabilitySet avSet,
5959
Etag = null, // TODO: Update CRP library for this field
6060
Id = avSet.Id,
6161
Location = avSet.Location,
62-
Statuses = avSet.Properties.Statuses,
63-
PlatformFaultDomainCount = avSet.Properties == null ? null : avSet.Properties.PlatformFaultDomainCount,
64-
PlatformUpdateDomainCount = avSet.Properties == null ? null : avSet.Properties.PlatformUpdateDomainCount,
65-
VirtualMachines = avSet.Properties == null ? null : avSet.Properties.VirtualMachinesReferences
62+
Statuses = avSet.Statuses,
63+
PlatformFaultDomainCount = avSet.PlatformFaultDomainCount,
64+
PlatformUpdateDomainCount = avSet.PlatformUpdateDomainCount,
65+
VirtualMachines = avSet.VirtualMachinesReferences
6666
};
6767

6868
return result;

src/ResourceManager/Compute/Commands.Compute/Models/PSVirtualMachine.cs

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ public IList<string> NetworkInterfaces
122122
}
123123
}
124124

125-
public VirtualMachineSubResources Resources { get; set; }
125+
public VirtualMachineChildResources Resources { get; set; }
126126
public VirtualMachineInstanceView Status { get; set; }
127127

128128
public HardwareProfile HardwareProfile { get; set; }
@@ -153,22 +153,22 @@ public static PSVirtualMachine ToPSVirtualMachine(this VirtualMachine virtualMac
153153
ResourceGroupName = rgName,
154154
Name = virtualMachine == null ? null : virtualMachine.Name,
155155
Location = virtualMachine == null ? null : virtualMachine.Location,
156-
ProvisioningState = virtualMachine.VirtualMachineProperties.ProvisioningState,
156+
ProvisioningState = virtualMachine.ProvisioningState,
157157
Tags = virtualMachine.Tags,
158-
Resources = virtualMachine.VirtualMachineSubResources,
158+
Resources = virtualMachine.Resources,
159159
Status = null, // TODO: VM response does not return Status info yet
160160
};
161161

162-
var asetRef = virtualMachine.VirtualMachineProperties.AvailabilitySetReference;
162+
var asetRef = virtualMachine.AvailabilitySetReference;
163163
if (asetRef != null)
164164
{
165-
result.AvailabilitySetId = virtualMachine.VirtualMachineProperties.AvailabilitySetReference.ReferenceUri;
165+
result.AvailabilitySetId = virtualMachine.AvailabilitySetReference.ReferenceUri;
166166
}
167167

168-
result.OSProfile = virtualMachine.VirtualMachineProperties.OSProfile;
169-
result.HardwareProfile = virtualMachine.VirtualMachineProperties.HardwareProfile;
170-
result.StorageProfile = virtualMachine.VirtualMachineProperties.StorageProfile;
171-
result.NetworkProfile = virtualMachine.VirtualMachineProperties.NetworkProfile;
168+
result.OSProfile = virtualMachine.OSProfile;
169+
result.HardwareProfile = virtualMachine.HardwareProfile;
170+
result.StorageProfile = virtualMachine.StorageProfile;
171+
result.NetworkProfile = virtualMachine.NetworkProfile;
172172

173173
return result;
174174
}

src/ResourceManager/Compute/Commands.Compute/Models/PSVirtualMachineExtension.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -62,13 +62,13 @@ public static PSVirtualMachineExtension ToPSVirtualMachineExtension(this Virtual
6262
Name = ext.Name,
6363
Location = ext.Location,
6464
Etag = null, // TODO: Update CRP library for this field
65-
Publisher = ext.VirtualMachineExtensionProperties == null ? null : ext.VirtualMachineExtensionProperties.Publisher,
66-
Type = ext.VirtualMachineExtensionProperties == null ? null : ext.VirtualMachineExtensionProperties.Type,
67-
TypeHandlerVersion = ext.VirtualMachineExtensionProperties == null ? null : ext.VirtualMachineExtensionProperties.TypeHandlerVersion,
65+
Publisher = ext.Publisher,
66+
Type = ext.Type,
67+
TypeHandlerVersion = ext.TypeHandlerVersion,
6868
Id = ext.Id,
69-
Properties = ext.VirtualMachineExtensionProperties == null ? null : ext.VirtualMachineExtensionProperties.ProtectedSettings,
70-
ProvisioningState = ext.VirtualMachineExtensionProperties == null ? null : ext.VirtualMachineExtensionProperties.ProvisioningState,
71-
Statuses = ext.VirtualMachineExtensionProperties == null || ext.VirtualMachineExtensionProperties.InstanceView == null ? null : ext.VirtualMachineExtensionProperties.InstanceView.Statuses
69+
Properties = ext.ProtectedSettings,
70+
ProvisioningState = ext.ProvisioningState,
71+
Statuses = ext.InstanceView == null ? null : ext.InstanceView.Statuses
7272
};
7373

7474
return result;

src/ResourceManager/Compute/Commands.Compute/Models/PSVirtualMachineInstanceView.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public class PSVirtualMachineInstanceView
3434

3535
public string RemoteDesktopThumbprint { get; set; }
3636

37-
public VMAgentInstanceView VMAgent { get; set; }
37+
public VirtualMachineAgentInstanceView VMAgent { get; set; }
3838

3939
public IList<InstanceViewStatus> Statuses { get; set; }
4040
}
@@ -72,7 +72,7 @@ public static PSVirtualMachineInstanceView ToPSVirtualMachineInstanceView(
7272
return null;
7373
}
7474

75-
return response.VirtualMachineInstanceView.ToPSVirtualMachineInstanceView(resourceGroupName, vmName);
75+
return response.InstanceView.ToPSVirtualMachineInstanceView(resourceGroupName, vmName);
7676
}
7777
}
7878
}

src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Action/StopAzureVMCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public override void ExecuteCmdlet()
4343
if (this.Force.IsPresent
4444
|| this.ShouldContinue(Resources.VirtualMachineStoppingConfirmation, Resources.VirtualMachineStoppingCaption))
4545
{
46-
Action<Func<string, string, LongRunningOperationResponse>> call = f =>
46+
Action<Func<string, string, ComputeLongRunningOperationResponse>> call = f =>
4747
{
4848
var op = f(this.ResourceGroupName, this.Name);
4949
WriteObject(op);

src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/SetAzureVMOSDiskCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ public override void ExecuteCmdlet()
9393
{
9494
Caching = this.Caching,
9595
Name = this.Name,
96-
OperatingSystemType = this.Windows.IsPresent ? OperatingSystemType.Windows : this.Linux.IsPresent ? OperatingSystemType.Linux : null,
96+
OperatingSystemType = this.Windows.IsPresent ? OperatingSystemTypes.Windows : this.Linux.IsPresent ? OperatingSystemTypes.Linux : null,
9797
VirtualHardDisk = new VirtualHardDisk
9898
{
9999
Uri = this.VhdUri

src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Operation/NewAzureVMCommand.cs

Lines changed: 9 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -64,27 +64,20 @@ public override void ExecuteCmdlet()
6464
{
6565
base.ExecuteCmdlet();
6666

67-
VirtualMachineProperties vmProps = new VirtualMachineProperties
67+
var parameters = new VirtualMachine
6868
{
6969
HardwareProfile = this.VM.HardwareProfile,
7070
StorageProfile = this.VM.StorageProfile,
7171
NetworkProfile = this.VM.NetworkProfile,
7272
OSProfile = this.VM.OSProfile,
73-
AvailabilitySetReference = string.IsNullOrEmpty(this.VM.AvailabilitySetId) ? null
74-
: new AvailabilitySetReference
75-
{
76-
ReferenceUri = this.VM.AvailabilitySetId
77-
}
78-
};
79-
80-
var parameters = new VirtualMachineCreateOrUpdateParameters
81-
{
82-
VirtualMachine = new VirtualMachine
83-
{
84-
VirtualMachineProperties = vmProps,
85-
Location = !string.IsNullOrEmpty(this.Location) ? this.Location : this.VM.Location,
86-
Name = !string.IsNullOrEmpty(this.Name) ? this.Name : this.VM.Name
87-
}
73+
AvailabilitySetReference = string.IsNullOrEmpty(this.VM.AvailabilitySetId)
74+
? null
75+
: new AvailabilitySetReference
76+
{
77+
ReferenceUri = this.VM.AvailabilitySetId
78+
},
79+
Location = !string.IsNullOrEmpty(this.Location) ? this.Location : this.VM.Location,
80+
Name = !string.IsNullOrEmpty(this.Name) ? this.Name : this.VM.Name
8881
};
8982

9083
var op = this.VirtualMachineClient.CreateOrUpdate(this.ResourceGroupName, parameters);

src/ResourceManager/Compute/Commands.Compute/packages.config

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
33
<package id="Hyak.Common" version="1.0.2" targetFramework="net45" />
4-
<package id="Microsoft.Azure.Common" version="2.0.4" targetFramework="net45" />
4+
<package id="Microsoft.Azure.Common" version="2.1.0" targetFramework="net45" />
55
<package id="Microsoft.Azure.Common.Authentication" version="1.0.17-preview" targetFramework="net45" />
66
<package id="Microsoft.Azure.Common.Dependencies" version="1.0.0" targetFramework="net45" />
77
<package id="Microsoft.Azure.Gallery" version="2.6.2-preview" targetFramework="net45" />
88
<package id="Microsoft.Azure.Graph.RBAC" version="1.6.0-preview" targetFramework="net45" />
99
<package id="Microsoft.Azure.Management.Authorization" version="0.17.0-preview" targetFramework="net45" />
10-
<package id="Microsoft.Azure.Management.Resources" version="2.14.1-preview" targetFramework="net45" />
10+
<package id="Microsoft.Azure.Management.Resources" version="2.18.0-preview" targetFramework="net45" />
1111
<package id="Microsoft.Bcl" version="1.1.9" targetFramework="net45" />
1212
<package id="Microsoft.Bcl.Async" version="1.0.168" targetFramework="net45" />
1313
<package id="Microsoft.Bcl.Build" version="1.0.14" targetFramework="net45" />

src/ResourceManager/Network/Commands.NetworkResourceProvider.Test/Commands.NetworkResourceProvider.Test.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,15 +47,15 @@
4747
</Reference>
4848
<Reference Include="Microsoft.Azure.Common, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
4949
<SpecificVersion>False</SpecificVersion>
50-
<HintPath>..\..\..\packages\Microsoft.Azure.Common.2.0.4\lib\net45\Microsoft.Azure.Common.dll</HintPath>
50+
<HintPath>..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll</HintPath>
5151
</Reference>
5252
<Reference Include="Microsoft.Azure.Common.Authentication, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
5353
<SpecificVersion>False</SpecificVersion>
5454
<HintPath>..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.15-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll</HintPath>
5555
</Reference>
56-
<Reference Include="Microsoft.Azure.Common.NetFramework, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
56+
<Reference Include="Microsoft.Azure.Common.NetFramework, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
5757
<SpecificVersion>False</SpecificVersion>
58-
<HintPath>..\..\..\packages\Microsoft.Azure.Common.2.0.4\lib\net45\Microsoft.Azure.Common.NetFramework.dll</HintPath>
58+
<HintPath>..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll</HintPath>
5959
</Reference>
6060
<Reference Include="Microsoft.Azure.Gallery, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
6161
<SpecificVersion>False</SpecificVersion>
@@ -70,7 +70,7 @@
7070
</Reference>
7171
<Reference Include="Microsoft.Azure.ResourceManager, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
7272
<SpecificVersion>False</SpecificVersion>
73-
<HintPath>..\..\..\packages\Microsoft.Azure.Management.Resources.2.14.1-preview\lib\net40\Microsoft.Azure.ResourceManager.dll</HintPath>
73+
<HintPath>..\..\..\packages\Microsoft.Azure.Management.Resources.2.18.0-preview\lib\net40\Microsoft.Azure.ResourceManager.dll</HintPath>
7474
</Reference>
7575
<Reference Include="Microsoft.Azure.Test.Framework">
7676
<HintPath>..\..\..\packages\Microsoft.Azure.Test.Framework.1.0.5513.27084-prerelease\lib\net45\Microsoft.Azure.Test.Framework.dll</HintPath>

0 commit comments

Comments
 (0)