Skip to content

Commit d8cf399

Browse files
committed
Merge pull request #7 from AsrOneSdk/sanjkuma-dev
Using local Hydra DLL instead of nuget temporarily.
2 parents 489de54 + 69bcdcb commit d8cf399

File tree

4 files changed

+7
-11
lines changed

4 files changed

+7
-11
lines changed

src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/Commands.RecoveryServices.Test.csproj

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,10 @@
3636
<Prefer32Bit>false</Prefer32Bit>
3737
</PropertyGroup>
3838
<ItemGroup>
39+
<Reference Include="Microsoft.Azure.RecoveryServices, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
40+
<SpecificVersion>False</SpecificVersion>
41+
<HintPath>..\Commands.RecoveryServices\lib\Microsoft.Azure.RecoveryServices.dll</HintPath>
42+
</Reference>
3943
<Reference Include="Microsoft.Azure.Utilities.HttpRecorder, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
4044
<SpecificVersion>False</SpecificVersion>
4145
<HintPath>..\..\..\packages\Hydra.HttpRecorder.1.0.5417.13285-prerelease\lib\net45\Microsoft.Azure.Utilities.HttpRecorder.dll</HintPath>
@@ -63,9 +67,6 @@
6367
<Reference Include="Microsoft.WindowsAzure.Common.NetFramework">
6468
<HintPath>..\..\..\packages\Microsoft.WindowsAzure.Common.1.4.0\lib\net45\Microsoft.WindowsAzure.Common.NetFramework.dll</HintPath>
6569
</Reference>
66-
<Reference Include="Microsoft.WindowsAzure.Management.SiteRecovery">
67-
<HintPath>..\..\..\packages\Microsoft.Azure.Management.RecoveryServices.0.1.0-preview\lib\net40\Microsoft.WindowsAzure.Management.SiteRecovery.dll</HintPath>
68-
</Reference>
6970
<Reference Include="Microsoft.WindowsAzure.Testing, Version=1.0.5417.13285, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
7071
<SpecificVersion>False</SpecificVersion>
7172
<HintPath>..\..\..\packages\Hydra.SpecTestSupport.1.0.5417.13285-prerelease\lib\net45\Microsoft.WindowsAzure.Testing.dll</HintPath>

src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Commands.RecoveryServices.csproj

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,9 @@
4747
<Prefer32Bit>false</Prefer32Bit>
4848
</PropertyGroup>
4949
<ItemGroup>
50-
<Reference Include="Microsoft.Azure.RecoveryServices">
51-
<HintPath>..\..\..\..\..\hydra-specs-pr\SiteRecovery\SiteRecovery.Tests\bin\Debug\Microsoft.Azure.RecoveryServices.dll</HintPath>
50+
<Reference Include="Microsoft.Azure.RecoveryServices, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
51+
<SpecificVersion>False</SpecificVersion>
52+
<HintPath>lib\Microsoft.Azure.RecoveryServices.dll</HintPath>
5253
</Reference>
5354
<Reference Include="Microsoft.Threading.Tasks, Version=1.0.12.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
5455
<SpecificVersion>False</SpecificVersion>

src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/lib/PSObjects.cs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,6 @@ public ASRProtectionContainer(ProtectionContainer pc)
220220
{
221221
this.ID = pc.ID;
222222
this.Name = pc.Name;
223-
////this.ConfigurationStatus = pc.ConfigurationStatus;
224223
this.Role = pc.Role;
225224
this.ServerId = pc.ServerId;
226225
this.FabricObjectId = pc.FabricObjectId;
@@ -247,11 +246,6 @@ public ASRProtectionContainer(ProtectionContainer pc)
247246
/// </summary>
248247
public string ServerId { get; set; }
249248

250-
/// <summary>
251-
/// Gets or sets configuration status.
252-
/// </summary>
253-
public string ConfigurationStatus { get; set; }
254-
255249
/// <summary>
256250
/// Gets or sets a role of the protection container.
257251
/// </summary>

0 commit comments

Comments
 (0)