Skip to content

Commit d9998a2

Browse files
author
dragonfly91
committed
Fixed build breaks
1 parent cd7ddff commit d9998a2

File tree

8 files changed

+75
-9
lines changed

8 files changed

+75
-9
lines changed

src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup.Helpers/Commands.RecoveryServices.Backup.Helpers.csproj

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,12 @@
3030
<WarningLevel>4</WarningLevel>
3131
</PropertyGroup>
3232
<ItemGroup>
33+
<Reference Include="Hyak.Common">
34+
<HintPath>..\..\..\packages\Hyak.Common.1.0.3\lib\portable-net403+win+wpa81\Hyak.Common.dll</HintPath>
35+
</Reference>
36+
<Reference Include="Microsoft.Azure.Common">
37+
<HintPath>..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll</HintPath>
38+
</Reference>
3339
<Reference Include="Microsoft.Azure.Management.RecoveryServicesBackupManagement">
3440
<HintPath>..\Commands.RecoveryServices.Backup.HydraAdapter\Resources\Microsoft.Azure.Management.RecoveryServicesBackupManagement.dll</HintPath>
3541
</Reference>

src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup.HydraAdapter/Commands.RecoveryServices.Backup.HydraAdapter.csproj

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,12 @@
7070
<ItemGroup>
7171
<Content Include="Resources\Microsoft.Azure.Management.RecoveryServicesBackupManagement.dll" />
7272
</ItemGroup>
73+
<ItemGroup>
74+
<ProjectReference Include="..\Commands.RecoveryServices.Backup.Models\Commands.RecoveryServices.Backup.Models.csproj">
75+
<Project>{30b92759-50b3-494e-b9f0-ec9a2ce9d57b}</Project>
76+
<Name>Commands.RecoveryServices.Backup.Models</Name>
77+
</ProjectReference>
78+
</ItemGroup>
7379
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
7480
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
7581
Other similar extension points exist, see Microsoft.Common.targets.

src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup.Providers/Commands.RecoveryServices.Backup.Providers.csproj

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,10 @@
5959
<Compile Include="Providers\IaasVmPsBackupProvider.cs" />
6060
</ItemGroup>
6161
<ItemGroup>
62+
<ProjectReference Include="..\..\Common\Commands.ResourceManager.Common\Commands.ResourceManager.Common.csproj">
63+
<Project>{3819d8a7-c62c-4c47-8ddd-0332d9ce1252}</Project>
64+
<Name>Commands.ResourceManager.Common</Name>
65+
</ProjectReference>
6266
<ProjectReference Include="..\Commands.RecoveryServices.Backup.Helpers\Commands.RecoveryServices.Backup.Helpers.csproj">
6367
<Project>{0e1d3f36-e6c8-4764-8c7d-6f9ee537490c}</Project>
6468
<Name>Commands.RecoveryServices.Backup.Helpers</Name>

src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup.Providers/Providers/AzureSqlPsBackupProvider.cs

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,5 +66,15 @@ public Management.RecoveryServices.Backup.Models.ProtectionPolicyResponse Modify
6666
{
6767
throw new NotImplementedException();
6868
}
69+
70+
public Management.RecoveryServices.Backup.Models.ProtectionPolicyResponse GetPolicy()
71+
{
72+
throw new NotImplementedException();
73+
}
74+
75+
public void DeletePolicy()
76+
{
77+
throw new NotImplementedException();
78+
}
6979
}
7080
}

src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup.Test/Commands.RecoveryServices.Backup.Test.csproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,8 @@
6565
</ItemGroup>
6666
<ItemGroup>
6767
<Compile Include="Properties\AssemblyInfo.cs" />
68+
<None Include="ScenarioTests\AzureVm\ContainerTests.ps1" />
69+
<Compile Include="ScenarioTests\AzureVm\ContainerTests.cs" />
6870
<Compile Include="ScenarioTests\TestsBase.cs" />
6971
</ItemGroup>
7072
<ItemGroup>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
// ----------------------------------------------------------------------------------
2+
//
3+
// Copyright Microsoft Corporation
4+
// Licensed under the Apache License, Version 2.0 (the "License");
5+
// you may not use this file except in compliance with the License.
6+
// You may obtain a copy of the License at
7+
// http://www.apache.org/licenses/LICENSE-2.0
8+
// Unless required by applicable law or agreed to in writing, software
9+
// distributed under the License is distributed on an "AS IS" BASIS,
10+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11+
// See the License for the specific language governing permissions and
12+
// limitations under the License.
13+
// ----------------------------------------------------------------------------------
14+
15+
using System;
16+
using System.Collections.Generic;
17+
using System.Linq;
18+
using System.Text;
19+
using System.Threading.Tasks;
20+
21+
namespace Commands.RecoveryServices.Backup.Test.ScenarioTests.AzureVm
22+
{
23+
class ContainerTests
24+
{
25+
}
26+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# ----------------------------------------------------------------------------------
2+
#
3+
# Copyright Microsoft Corporation
4+
# Licensed under the Apache License, Version 2.0 (the "License");
5+
# you may not use this file except in compliance with the License.
6+
# You may obtain a copy of the License at
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
# Unless required by applicable law or agreed to in writing, software
9+
# distributed under the License is distributed on an "AS IS" BASIS,
10+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11+
# See the License for the specific language governing permissions and
12+
# limitations under the License.
13+
# ----------------------------------------------------------------------------------
14+

src/ResourceManager/RecoveryServices.Backup/RecoveryServices.Backup.sln

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio 2013
4-
VisualStudioVersion = 12.0.40629.0
5-
MinimumVisualStudioVersion = 10.0.40219.1
3+
# Visual Studio 2012
64
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.ResourceManager.Common", "..\Common\Commands.ResourceManager.Common\Commands.ResourceManager.Common.csproj", "{3819D8A7-C62C-4C47-8DDD-0332D9CE1252}"
75
EndProject
86
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Common", "..\..\Common\Commands.Common\Commands.Common.csproj", "{5EE72C53-1720-4309-B54B-5FB79703195F}"
@@ -23,7 +21,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tests", "Tests", "{54815A13
2321
EndProject
2422
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.RecoveryServices.Backup.Test", "Commands.RecoveryServices.Backup.Test\Commands.RecoveryServices.Backup.Test.csproj", "{65E15D74-1E24-4600-8671-D0B420524B17}"
2523
EndProject
26-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.RecoveryServices.Test", "..\RecoveryServices\Commands.RecoveryServices.Test\Commands.RecoveryServices.Test.csproj", "{6C7D3D81-37AB-445E-8081-78A1FEC0A773}"
24+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.ScenarioTests.ResourceManager.Common", "..\Common\Commands.ScenarioTests.ResourceManager.Common\Commands.ScenarioTests.ResourceManager.Common.csproj", "{3436A126-EDC9-4060-8952-9A1BE34CDD95}"
2725
EndProject
2826
Global
2927
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -67,16 +65,16 @@ Global
6765
{65E15D74-1E24-4600-8671-D0B420524B17}.Debug|Any CPU.Build.0 = Debug|Any CPU
6866
{65E15D74-1E24-4600-8671-D0B420524B17}.Release|Any CPU.ActiveCfg = Release|Any CPU
6967
{65E15D74-1E24-4600-8671-D0B420524B17}.Release|Any CPU.Build.0 = Release|Any CPU
70-
{6C7D3D81-37AB-445E-8081-78A1FEC0A773}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
71-
{6C7D3D81-37AB-445E-8081-78A1FEC0A773}.Debug|Any CPU.Build.0 = Debug|Any CPU
72-
{6C7D3D81-37AB-445E-8081-78A1FEC0A773}.Release|Any CPU.ActiveCfg = Release|Any CPU
73-
{6C7D3D81-37AB-445E-8081-78A1FEC0A773}.Release|Any CPU.Build.0 = Release|Any CPU
68+
{3436A126-EDC9-4060-8952-9A1BE34CDD95}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
69+
{3436A126-EDC9-4060-8952-9A1BE34CDD95}.Debug|Any CPU.Build.0 = Debug|Any CPU
70+
{3436A126-EDC9-4060-8952-9A1BE34CDD95}.Release|Any CPU.ActiveCfg = Release|Any CPU
71+
{3436A126-EDC9-4060-8952-9A1BE34CDD95}.Release|Any CPU.Build.0 = Release|Any CPU
7472
EndGlobalSection
7573
GlobalSection(SolutionProperties) = preSolution
7674
HideSolutionNode = FALSE
7775
EndGlobalSection
7876
GlobalSection(NestedProjects) = preSolution
7977
{65E15D74-1E24-4600-8671-D0B420524B17} = {54815A13-6BFB-406A-BEFC-44C31CABAFB4}
80-
{6C7D3D81-37AB-445E-8081-78A1FEC0A773} = {54815A13-6BFB-406A-BEFC-44C31CABAFB4}
78+
{3436A126-EDC9-4060-8952-9A1BE34CDD95} = {54815A13-6BFB-406A-BEFC-44C31CABAFB4}
8179
EndGlobalSection
8280
EndGlobal

0 commit comments

Comments
 (0)