Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…for-net into AutoRest

Conflicts:
	src/ResourceManagement/Compute/ComputeManagement/packages.config
	src/ResourceManagement/Network/NetworkManagement/packages.config
	src/ResourceManagement/Resource/ResourceManagement/packages.config
	src/ResourceManagement/Storage/StorageManagement/packages.config
  • Loading branch information
stankovski committed Jul 21, 2015
2 parents 7285a28 + f10e48f commit 2e45ac9
Show file tree
Hide file tree
Showing 69 changed files with 518 additions and 289 deletions.
35 changes: 25 additions & 10 deletions build.proj
Original file line number Diff line number Diff line change
Expand Up @@ -69,15 +69,16 @@
Exclude="$(LibrarySourceFolder)\HDInsight\**\*.sln;$(LibrarySourceFolder)\KeyVault\**\*.sln"
Condition=" '$(Scope)' == 'all' " />
<LibraryFxTargetList Include="$(FxTargetList)" />
<AutoRestLibraryFxTargetList Include="portable;net45" />
</ItemGroup>

<PropertyGroup>
<NuGetCommand>&quot;$(LibraryToolsFolder)\nuget.exe&quot;</NuGetCommand>
</PropertyGroup>

<UsingTask AssemblyFile="$(LibraryToolsFolder)\Microsoft.WindowsAzure.Build.Tasks.dll" TaskName="RegexReplacementTask" />
<UsingTask AssemblyFile="$(LibraryToolsFolder)\Microsoft.WindowsAzure.Build.Tasks.dll" TaskName="ValidateStrongNameSignatureTask" />

<UsingTask TaskName="ValidateStrongNameSignatureTask" AssemblyFile="$(LibraryToolsFolder)\Microsoft.WindowsAzure.Build.Tasks.dll" />
<UsingTask TaskName="FilterOutAutoRestLibraries" AssemblyFile="$(LibraryToolsFolder)\Microsoft.WindowsAzure.Build.Tasks.dll" />
<!--
CI build related
-->
Expand All @@ -91,27 +92,41 @@
<UsingTask Condition=" $(OnPremiseBuild) " TaskName="CorporateValidation" AssemblyFile="$(CIToolsPath)\Microsoft.WindowsAzure.Tools.Build.Tasks.OnPremise.dll" />
<Import Condition=" $(OnPremiseBuild) " Project="$(CIToolsPath)\Microsoft.WindowsAzure.Build.OnPremise.msbuild" />

<Target Name="Build" DependsOnTargets="RestoreNugetPackages">
<Target Name="PrepareForAutoRestLibraries">
<FilterOutAutoRestLibraries AllLibraries="@(LibrariesToBuild)" AutoRestMark="AutoRestProjects">
<Output TaskParameter="AutoRestLibraries" ItemName="AutoRestLibraries" />
<Output TaskParameter="NonAutoRestLibraries" ItemName="NonAutoRestLibraries" />
</FilterOutAutoRestLibraries>
</Target>

<Target Name="Build" DependsOnTargets="RestoreNugetPackages;BuildMsBuildTask;PrepareForAutoRestLibraries">
<PropertyGroup>
<_ExtraPropertyList>CodeSign=$(CodeSign)</_ExtraPropertyList>
</PropertyGroup>
<CallTarget Targets="BuildMsBuildTask" />
<CallTarget Targets="BuildServerPreparation" Condition=" '$(CodeSign)' == 'true' " />

<!--The solution contains configurations for each platform such as Net40-Debug, Net45-Release, etc
So when invoke msbuild, feed the right configuration name-->
<MSBuild Projects="@(LibrariesToBuild)"
<MSBuild Projects="@(NonAutoRestLibraries)"
Properties="Configuration=%(LibraryFxTargetList.Identity)-$(Configuration);Platform=Any CPU;$(_ExtraPropertyList)"
Targets="Build" />

<MSBuild Projects="@(AutoRestLibraries)"
Properties="Configuration=%(AutoRestLibraryFxTargetList.Identity)-$(Configuration);Platform=Any CPU;$(_ExtraPropertyList)"
Targets="Build" />

<CallTarget Targets="CodeSignBinaries" Condition=" '$(CodeSign)' == 'true' " />

</Target>

<Target Name="Clean" DependsOnTargets="RestoreNugetPackages">
<MSBuild Projects="@(LibrariesToBuild)"
<Target Name="Clean" DependsOnTargets="RestoreNugetPackages;BuildMsBuildTask;PrepareForAutoRestLibraries">
<MSBuild Projects="@(NonAutoRestLibraries)"
Properties="Configuration=%(LibraryFxTargetList.Identity)-$(Configuration);Platform=Any CPU"
Targets="Clean"/>
Targets="Clean" />

<MSBuild Projects="@(AutoRestLibraries)"
Properties="Configuration=%(AutoRestLibraryFxTargetList.Identity)-$(Configuration);Platform=Any CPU;$(_ExtraPropertyList)"
Targets="Clean" />
<RemoveDir Directories="$(BinariesFolder)" />
</Target>

Expand All @@ -122,7 +137,7 @@
<TestPartialName>$([System.IO.Path]::GetFileName($(Scope)))</TestPartialName>
</PropertyGroup>
<ItemGroup>
<!--TODO: improve inclue the logic to be more explicit -->
<!--TODO: improve the logic to be more explicit -->
<TestDlls Include=".\src\**\*.Tests\bin\net45-$(Configuration)\*.Tests.dll" Condition=" '$(Scope)' == 'All' " />
<TestDlls Include=".\src\$(Scope)\*.Tests\bin\net45-$(Configuration)\*$(TestPartialName)*.Tests.dll"
Condition=" '$(Scope)' != 'All' " />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<AutoRestProjects>true</AutoRestProjects>
<SDKTestProject>true</SDKTestProject>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<OutputType>Library</OutputType>
Expand Down Expand Up @@ -127,18 +128,22 @@
<ProjectReference Include="..\..\Resource\ResourceManagement\ResourceManagement.csproj">
<Project>{165ef660-235b-45af-83cb-0d32bef4c1a2}</Project>
<Name>ResourceManagement</Name>
<Properties>SkipValidatePackageReferences=true</Properties>
</ProjectReference>
<ProjectReference Include="..\..\Storage\StorageManagement\StorageManagement.csproj">
<Project>{a7f47b7f-319b-411f-bf33-f57899a430cb}</Project>
<Name>StorageManagement</Name>
<Properties>SkipValidatePackageReferences=true</Properties>
</ProjectReference>
<ProjectReference Include="..\ComputeManagement\ComputeManagement.csproj">
<Project>{4f41c7a2-7df6-4cc1-9f2d-66e8f05c2331}</Project>
<Name>ComputeManagement</Name>
<Properties>SkipValidatePackageReferences=true</Properties>
</ProjectReference>
<ProjectReference Include="..\..\Network\NetworkManagement\NetworkManagement.csproj">
<Project>{4500a2d3-c087-4fbc-bebd-e630cd728788}</Project>
<Name>NetworkManagement</Name>
<Properties>SkipValidatePackageReferences=true</Properties>
</ProjectReference>
</ItemGroup>
<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public class AvailabilitySetTests
const int UDTooLow = 0;
const int UDTooHi = 21;

[Fact]
[Fact(Skip = "TODO: AutoRest")]
public void TestOperations()
{
using (var context = UndoContext.Current)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ public void TestExtImgListVersionsNoFilter()
}
}

[Fact]
[Fact(Skip="TODO: AutoRest")]
public void TestExtImgListVersionsFilters()
{
using (var context = UndoContext.Current)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ VirtualMachineExtension GetTestVMExtension()
return vmExtension;
}

[Fact]
[Fact(Skip = "TODO: AutoRest")]
public void TestVMExtensionOperations()
{
using (var context = UndoContext.Current)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ namespace Compute.Tests
{
public class ListVMTests: VMTestBase
{
[Fact]
[Fact(Skip = "TODO: AutoRest")]
public void TestListVMInSubscription()
{
using (var context = UndoContext.Current)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ private void ValidateWinRMCustomDataAndUnattendContent(string winRMCertificateUr

// See recording instructions in HyakSpec\ReadMe.txt. The key vault URLs produced by the script are plugged
// into SecretVaultHelper, below.
[Fact]
[Fact(Skip = "TODO: AutoRest")]
public void TestVMWithWindowsOSProfile()
{
using (var context = UndoContext.Current)
Expand Down Expand Up @@ -215,7 +215,7 @@ public void TestVMWithWindowsOSProfile()
}
}

[Fact]
[Fact(Skip = "TODO: AutoRest")]
public void TestVMWithLinuxOSProfile()
{
using (var context = UndoContext.Current)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ namespace Compute.Tests
/// </summary>
public class UsageTests : VMTestBase
{
[Fact]
[Fact(Skip = "TODO: AutoRest")]
public void TestListUsages()
{
using (UndoContext context = UndoContext.Current)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ namespace Compute.Tests
{
public class VMDataDiskTests : VMTestBase
{
[Fact]
[Fact(Skip = "TODO: AutoRest")]
public void TestVMDataDiskScenario()
{
using (var context = UndoContext.Current)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public void TestVMImageListNoFilter()
}
}

[Fact]
[Fact(Skip = "TODO: AutoRest")]
public void TestVMImageListFilters()
{
using (var context = UndoContext.Current)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public VirtualMachineImage GetMarketplaceImage()
return m_CrpClient.VirtualMachineImages.Get(m_location, vmmPublisherName, vmmOfferName, vmmSku, imageRef.Version);
}

[Fact]
[Fact(Skip = "TODO: AutoRest")]
public void TestVMMarketplace()
{
using (var context = UndoContext.Current)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ namespace Compute.Tests
{
public class VMNetworkInterfaceTests : VMTestBase
{
[Fact]
[Fact(Skip = "TODO: AutoRest")]
public void TestNicVirtualMachineReference()
{
using (var context = UndoContext.Current)
Expand Down Expand Up @@ -90,7 +90,7 @@ public void TestNicVirtualMachineReference()
}
}

[Fact]
[Fact(Skip = "TODO: AutoRest")]
public void TestMultiNicVirtualMachineReference()
{
using (var context = UndoContext.Current)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public class VMOperationalTests : VMTestBase
/// Capture VM
/// Delete RG
/// </summary>
[Fact]
[Fact(Skip = "TODO: AutoRest")]
public void TestVMOperations()
{
using (var context = UndoContext.Current)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public class VMScenarioTests : VMTestBase
/// Delete VM
/// Delete RG
/// </summary>
[Fact]
[Fact(Skip = "TODO: AutoRest")]
[Trait("Name", "TestVMScenarioOperations")]
public void TestVMScenarioOperations()
{
Expand Down
26 changes: 0 additions & 26 deletions src/ResourceManagement/Compute/Compute.sln
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,12 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ResourceManagement", "..\Re
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Net40-Debug|Any CPU = Net40-Debug|Any CPU
Net40-Release|Any CPU = Net40-Release|Any CPU
Net45-Debug|Any CPU = Net45-Debug|Any CPU
Net45-Release|Any CPU = Net45-Release|Any CPU
Portable-Debug|Any CPU = Portable-Debug|Any CPU
Portable-Release|Any CPU = Portable-Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{4F41C7A2-7DF6-4CC1-9F2D-66E8F05C2331}.Net40-Debug|Any CPU.ActiveCfg = Net40-Debug|Any CPU
{4F41C7A2-7DF6-4CC1-9F2D-66E8F05C2331}.Net40-Debug|Any CPU.Build.0 = Net40-Debug|Any CPU
{4F41C7A2-7DF6-4CC1-9F2D-66E8F05C2331}.Net40-Release|Any CPU.ActiveCfg = Net40-Release|Any CPU
{4F41C7A2-7DF6-4CC1-9F2D-66E8F05C2331}.Net40-Release|Any CPU.Build.0 = Net40-Release|Any CPU
{4F41C7A2-7DF6-4CC1-9F2D-66E8F05C2331}.Net45-Debug|Any CPU.ActiveCfg = Net45-Debug|Any CPU
{4F41C7A2-7DF6-4CC1-9F2D-66E8F05C2331}.Net45-Debug|Any CPU.Build.0 = Net45-Debug|Any CPU
{4F41C7A2-7DF6-4CC1-9F2D-66E8F05C2331}.Net45-Release|Any CPU.ActiveCfg = Net45-Release|Any CPU
Expand All @@ -35,50 +29,30 @@ Global
{4F41C7A2-7DF6-4CC1-9F2D-66E8F05C2331}.Portable-Debug|Any CPU.Build.0 = Portable-Debug|Any CPU
{4F41C7A2-7DF6-4CC1-9F2D-66E8F05C2331}.Portable-Release|Any CPU.ActiveCfg = Portable-Release|Any CPU
{4F41C7A2-7DF6-4CC1-9F2D-66E8F05C2331}.Portable-Release|Any CPU.Build.0 = Portable-Release|Any CPU
{3C768CCE-36A0-433E-8280-31979756CC07}.Net40-Debug|Any CPU.ActiveCfg = Net40-Debug|Any CPU
{3C768CCE-36A0-433E-8280-31979756CC07}.Net40-Release|Any CPU.ActiveCfg = Net40-Release|Any CPU
{3C768CCE-36A0-433E-8280-31979756CC07}.Net45-Debug|Any CPU.ActiveCfg = Net45-Debug|Any CPU
{3C768CCE-36A0-433E-8280-31979756CC07}.Net45-Debug|Any CPU.Build.0 = Net45-Debug|Any CPU
{3C768CCE-36A0-433E-8280-31979756CC07}.Net45-Release|Any CPU.ActiveCfg = Net45-Release|Any CPU
{3C768CCE-36A0-433E-8280-31979756CC07}.Net45-Release|Any CPU.Build.0 = Net45-Release|Any CPU
{3C768CCE-36A0-433E-8280-31979756CC07}.Portable-Debug|Any CPU.ActiveCfg = Portable-Debug|Any CPU
{3C768CCE-36A0-433E-8280-31979756CC07}.Portable-Release|Any CPU.ActiveCfg = Portable-Release|Any CPU
{4500A2D3-C087-4FBC-BEBD-E630CD728788}.Net40-Debug|Any CPU.ActiveCfg = Net40-Debug|Any CPU
{4500A2D3-C087-4FBC-BEBD-E630CD728788}.Net40-Debug|Any CPU.Build.0 = Net40-Debug|Any CPU
{4500A2D3-C087-4FBC-BEBD-E630CD728788}.Net40-Release|Any CPU.ActiveCfg = Net40-Release|Any CPU
{4500A2D3-C087-4FBC-BEBD-E630CD728788}.Net40-Release|Any CPU.Build.0 = Net40-Release|Any CPU
{4500A2D3-C087-4FBC-BEBD-E630CD728788}.Net45-Debug|Any CPU.ActiveCfg = Net45-Debug|Any CPU
{4500A2D3-C087-4FBC-BEBD-E630CD728788}.Net45-Debug|Any CPU.Build.0 = Net45-Debug|Any CPU
{4500A2D3-C087-4FBC-BEBD-E630CD728788}.Net45-Release|Any CPU.ActiveCfg = Net45-Release|Any CPU
{4500A2D3-C087-4FBC-BEBD-E630CD728788}.Net45-Release|Any CPU.Build.0 = Net45-Release|Any CPU
{4500A2D3-C087-4FBC-BEBD-E630CD728788}.Portable-Debug|Any CPU.ActiveCfg = Portable-Debug|Any CPU
{4500A2D3-C087-4FBC-BEBD-E630CD728788}.Portable-Debug|Any CPU.Build.0 = Portable-Debug|Any CPU
{4500A2D3-C087-4FBC-BEBD-E630CD728788}.Portable-Release|Any CPU.ActiveCfg = Portable-Release|Any CPU
{4500A2D3-C087-4FBC-BEBD-E630CD728788}.Portable-Release|Any CPU.Build.0 = Portable-Release|Any CPU
{A7F47B7F-319B-411F-BF33-F57899A430CB}.Net40-Debug|Any CPU.ActiveCfg = Net40-Debug|Any CPU
{A7F47B7F-319B-411F-BF33-F57899A430CB}.Net40-Debug|Any CPU.Build.0 = Net40-Debug|Any CPU
{A7F47B7F-319B-411F-BF33-F57899A430CB}.Net40-Release|Any CPU.ActiveCfg = Net40-Release|Any CPU
{A7F47B7F-319B-411F-BF33-F57899A430CB}.Net40-Release|Any CPU.Build.0 = Net40-Release|Any CPU
{A7F47B7F-319B-411F-BF33-F57899A430CB}.Net45-Debug|Any CPU.ActiveCfg = Net45-Debug|Any CPU
{A7F47B7F-319B-411F-BF33-F57899A430CB}.Net45-Debug|Any CPU.Build.0 = Net45-Debug|Any CPU
{A7F47B7F-319B-411F-BF33-F57899A430CB}.Net45-Release|Any CPU.ActiveCfg = Net45-Release|Any CPU
{A7F47B7F-319B-411F-BF33-F57899A430CB}.Net45-Release|Any CPU.Build.0 = Net45-Release|Any CPU
{A7F47B7F-319B-411F-BF33-F57899A430CB}.Portable-Debug|Any CPU.ActiveCfg = Portable-Debug|Any CPU
{A7F47B7F-319B-411F-BF33-F57899A430CB}.Portable-Debug|Any CPU.Build.0 = Portable-Debug|Any CPU
{A7F47B7F-319B-411F-BF33-F57899A430CB}.Portable-Release|Any CPU.ActiveCfg = Portable-Release|Any CPU
{A7F47B7F-319B-411F-BF33-F57899A430CB}.Portable-Release|Any CPU.Build.0 = Portable-Release|Any CPU
{165EF660-235B-45AF-83CB-0D32BEF4C1A2}.Net40-Debug|Any CPU.ActiveCfg = Net40-Debug|Any CPU
{165EF660-235B-45AF-83CB-0D32BEF4C1A2}.Net40-Debug|Any CPU.Build.0 = Net40-Debug|Any CPU
{165EF660-235B-45AF-83CB-0D32BEF4C1A2}.Net40-Release|Any CPU.ActiveCfg = Net40-Release|Any CPU
{165EF660-235B-45AF-83CB-0D32BEF4C1A2}.Net40-Release|Any CPU.Build.0 = Net40-Release|Any CPU
{165EF660-235B-45AF-83CB-0D32BEF4C1A2}.Net45-Debug|Any CPU.ActiveCfg = Net45-Debug|Any CPU
{165EF660-235B-45AF-83CB-0D32BEF4C1A2}.Net45-Debug|Any CPU.Build.0 = Net45-Debug|Any CPU
{165EF660-235B-45AF-83CB-0D32BEF4C1A2}.Net45-Release|Any CPU.ActiveCfg = Net45-Release|Any CPU
{165EF660-235B-45AF-83CB-0D32BEF4C1A2}.Net45-Release|Any CPU.Build.0 = Net45-Release|Any CPU
{165EF660-235B-45AF-83CB-0D32BEF4C1A2}.Portable-Debug|Any CPU.ActiveCfg = Portable-Debug|Any CPU
{165EF660-235B-45AF-83CB-0D32BEF4C1A2}.Portable-Debug|Any CPU.Build.0 = Portable-Debug|Any CPU
{165EF660-235B-45AF-83CB-0D32BEF4C1A2}.Portable-Release|Any CPU.ActiveCfg = Portable-Release|Any CPU
{165EF660-235B-45AF-83CB-0D32BEF4C1A2}.Portable-Release|Any CPU.Build.0 = Portable-Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<AutoRestProjects>true</AutoRestProjects>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{4F41C7A2-7DF6-4CC1-9F2D-66E8F05C2331}</ProjectGuid>
<OutputType>Library</OutputType>
Expand All @@ -20,7 +21,9 @@
</ItemGroup>
<ItemGroup>
<None Include="Microsoft.Azure.Management.Compute.nuget.proj" />
<None Include="Microsoft.Azure.Management.Compute.nuspec" />
<None Include="Microsoft.Azure.Management.Compute.nuspec">
<SubType>Designer</SubType>
</None>
<None Include="packages.config">
<SubType>Designer</SubType>
</None>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,24 +19,24 @@ Note: This client library is for Virtual Machines under Azure Resource Manager.<
<copyright>Copyright © Microsoft Corporation</copyright>
<tags>Microsoft Azure resource management virtual machine compute REST HTTP client core common azureofficial windowsazureofficial</tags>
<references>
<group targetFramework="portable-net45+sl50+wp80+win">
<group targetFramework="portable-net403+win8+wpa81">
<reference file="Microsoft.Azure.Management.Compute.dll" />
</group>
<group targetFramework="net40">
<group targetFramework="net45">
<reference file="Microsoft.Azure.Management.Compute.dll" />
</group>
</references>
<dependencies>
<dependency id="Microsoft.Azure.Common" version="[2.1.0,3.0)" />
<dependency id="Microsoft.Rest.ClientRuntime.Azure" version="[1.0.12,2.0)" />
</dependencies>
</metadata>
<files>
<file src="ResourceManagement\Compute\ComputeManagement\**\*.cs" target="src" />
<file src="..\binaries\portable\Microsoft.Azure.Management.Compute.dll" target="lib\portable-net45+sl50+wp80+win" />
<file src="..\binaries\portable\Microsoft.Azure.Management.Compute.pdb" target="lib\portable-net45+sl50+wp80+win" />
<file src="..\binaries\portable\Microsoft.Azure.Management.Compute.xml" target="lib\portable-net45+sl50+wp80+win" />
<file src="..\binaries\net40\Microsoft.Azure.Management.Compute.dll" target="lib\net40" />
<file src="..\binaries\net40\Microsoft.Azure.Management.Compute.pdb" target="lib\net40" />
<file src="..\binaries\net40\Microsoft.Azure.Management.Compute.xml" target="lib\net40" />
<file src="..\binaries\portable\Microsoft.Azure.Management.Compute.dll" target="lib\portable-net403+win8+wpa81" />
<file src="..\binaries\portable\Microsoft.Azure.Management.Compute.pdb" target="lib\portable-net403+win8+wpa81" />
<file src="..\binaries\portable\Microsoft.Azure.Management.Compute.xml" target="lib\portable-net403+win8+wpa81" />
<file src="..\binaries\net45\Microsoft.Azure.Management.Compute.dll" target="lib\net45" />
<file src="..\binaries\net45\Microsoft.Azure.Management.Compute.pdb" target="lib\net45" />
<file src="..\binaries\net45\Microsoft.Azure.Management.Compute.xml" target="lib\net45" />
</files>
</package>
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,9 @@
<packages>
<package id="Microsoft.Rest.ClientRuntime" version="1.0.3" targetFramework="net45" />
<package id="Microsoft.Rest.ClientRuntime.Azure" version="1.0.12" targetFramework="net45" />
<package id="Microsoft.Bcl" version="1.1.9" targetFramework="net45" />
<package id="Microsoft.Bcl.Async" version="1.0.168" targetFramework="net45" />
<package id="Microsoft.Bcl.Build" version="1.0.14" targetFramework="net45" />
<package id="Microsoft.Net.Http" version="2.2.22" targetFramework="net45" />
<package id="Newtonsoft.Json" version="6.0.4" targetFramework="net45" />
</packages>
Loading

0 comments on commit 2e45ac9

Please sign in to comment.