|
47 | 47 | <Prefer32Bit>false</Prefer32Bit> |
48 | 48 | </PropertyGroup> |
49 | 49 | <ItemGroup> |
| 50 | + <Reference Include="Microsoft.Azure.RecoveryServices"> |
| 51 | + <HintPath>..\..\..\..\..\hydra-specs-pr\SiteRecovery\SiteRecovery.Tests\bin\Debug\Microsoft.Azure.RecoveryServices.dll</HintPath> |
| 52 | + </Reference> |
50 | 53 | <Reference Include="Microsoft.Threading.Tasks, Version=1.0.12.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"> |
51 | 54 | <SpecificVersion>False</SpecificVersion> |
52 | 55 | <HintPath>..\..\..\packages\Microsoft.Bcl.Async.1.0.168\lib\net40\Microsoft.Threading.Tasks.dll</HintPath> |
|
67 | 70 | <SpecificVersion>False</SpecificVersion> |
68 | 71 | <HintPath>..\..\..\packages\Microsoft.WindowsAzure.Common.1.4.0\lib\net45\Microsoft.WindowsAzure.Common.NetFramework.dll</HintPath> |
69 | 72 | </Reference> |
70 | | - <Reference Include="Microsoft.WindowsAzure.Management.SiteRecovery, Version=0.9.0.0, Culture=neutral, PublicKeyToken=c66ce9294aae1300, processorArchitecture=MSIL"> |
71 | | - <SpecificVersion>False</SpecificVersion> |
72 | | - <HintPath>..\..\..\packages\Microsoft.Azure.Management.RecoveryServices.0.2.2-preview\lib\net40\Microsoft.WindowsAzure.Management.SiteRecovery.dll</HintPath> |
73 | | - </Reference> |
74 | 73 | <Reference Include="Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL"> |
75 | 74 | <SpecificVersion>False</SpecificVersion> |
76 | 75 | <HintPath>..\..\..\packages\Newtonsoft.Json.6.0.4\lib\net45\Newtonsoft.Json.dll</HintPath> |
77 | 76 | </Reference> |
| 77 | + <Reference Include="Security.Cryptography, Version=1.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> |
| 78 | + <SpecificVersion>False</SpecificVersion> |
| 79 | + <HintPath>lib\Security.Cryptography.dll</HintPath> |
| 80 | + </Reference> |
78 | 81 | <Reference Include="System" /> |
79 | 82 | <Reference Include="System.Core" /> |
80 | 83 | <Reference Include="System.Management.Automation, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> |
|
103 | 106 | <ItemGroup> |
104 | 107 | <Compile Include="lib\PSStorageObjects.cs" /> |
105 | 108 | <Compile Include="lib\PSNetworkObjects.cs" /> |
| 109 | + <Compile Include="lib\CertUtils.cs" /> |
106 | 110 | <Compile Include="lib\PSContracts.cs" /> |
107 | 111 | <Compile Include="lib\PSObjects.cs" /> |
108 | 112 | <Compile Include="lib\PSParameterSets.cs" /> |
109 | 113 | <Compile Include="lib\PSRecoveryPlanObjects.cs" /> |
| 114 | + <Compile Include="lib\Utilities.cs" /> |
110 | 115 | <Compile Include="Properties\Resources.Designer.cs"> |
111 | 116 | <AutoGen>True</AutoGen> |
112 | 117 | <DesignTime>True</DesignTime> |
113 | 118 | <DependentUpon>Resources.resx</DependentUpon> |
114 | 119 | </Compile> |
| 120 | + <Compile Include="PSRecoveryServicesClient\PSRecoveryServicesCloudServiceClient.cs" /> |
115 | 121 | <Compile Include="PSRecoveryServicesClient\PSRecoveryServicesStorageClient.cs" /> |
116 | 122 | <Compile Include="PSRecoveryServicesClient\PSRecoveryServicesStorageMappingClient.cs" /> |
117 | 123 | <Compile Include="PSRecoveryServicesClient\PSRecoveryServicesNetworkMappingClient.cs" /> |
118 | 124 | <Compile Include="PSRecoveryServicesClient\PSRecoveryServicesNetworkClient.cs" /> |
| 125 | + <Compile Include="PSRecoveryServicesClient\PSRecoveryServicesVaultClient.cs" /> |
| 126 | + <Compile Include="PSRecoveryServicesClient\PSRecoveryServicesVaultExtendedInfoClient.cs" /> |
119 | 127 | <Compile Include="PSRecoveryServicesClient\PSRecoveryServicesVMGroupClient.cs" /> |
120 | 128 | <Compile Include="PSRecoveryServicesClient\PSRecoveryServicesPEClient.cs" /> |
121 | 129 | <Compile Include="PSRecoveryServicesClient\PSRecoveryServicesClient.cs"> |
|
128 | 136 | <Compile Include="PSRecoveryServicesClient\PSRecoveryServicesVMClient.cs" /> |
129 | 137 | <Compile Include="RecoveryServicesCmdletBase.cs" /> |
130 | 138 | <Compile Include="Properties\AssemblyInfo.cs" /> |
| 139 | + <Compile Include="Service\CreateAzureSiteRecoveryVault.cs" /> |
131 | 140 | <Compile Include="Service\GetAzureSiteRecoveryStorage.cs" /> |
132 | 141 | <Compile Include="Service\GetAzureSiteRecoveryStorageMapping.cs" /> |
| 142 | + <Compile Include="Service\GetAzureSiteRecoveryVaults.cs" /> |
133 | 143 | <Compile Include="Service\NewAzureSiteRecoveryStorageMapping.cs" /> |
134 | 144 | <Compile Include="Service\RemoveAzureSiteRecoveryStorageMapping.cs" /> |
135 | 145 | <Compile Include="Service\RemoveAzureSiteRecoveryNetworkMapping.cs" /> |
|
138 | 148 | <Compile Include="Service\GetAzureSiteRecoveryNetwork.cs" /> |
139 | 149 | <Compile Include="Service\CreateAzureSiteRecoveryRecoveryPlan.cs" /> |
140 | 150 | <Compile Include="Service\GetAzureSiteRecoveryRecoveryPlanFile.cs" /> |
| 151 | + <Compile Include="Service\GetAzureSiteRecoveryVaultCredential.cs" /> |
141 | 152 | <Compile Include="Service\RemoveAzureSiteRecoveryRecoveryPlan.cs" /> |
142 | 153 | <Compile Include="Service\GetAzureSiteRecoveryProtectionEntity.cs" /> |
143 | 154 | <Compile Include="Service\RestartAzureSiteRecoveryJob.cs" /> |
|
166 | 177 | </ProjectReference> |
167 | 178 | </ItemGroup> |
168 | 179 | <ItemGroup> |
| 180 | + <Content Include="lib\Microsoft.Azure.RecoveryServices.dll" /> |
| 181 | + <Content Include="lib\Security.Cryptography.dll"> |
| 182 | + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
| 183 | + </Content> |
169 | 184 | <Content Include="Microsoft.Azure.Commands.RecoveryServices.dll-help.xml"> |
170 | 185 | <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
171 | 186 | </Content> |
|
181 | 196 | <None Include="MSSharedLibKey.snk" /> |
182 | 197 | <None Include="packages.config" /> |
183 | 198 | </ItemGroup> |
| 199 | + <ItemGroup> |
| 200 | + <WCFMetadata Include="Service References\" /> |
| 201 | + </ItemGroup> |
184 | 202 | <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> |
185 | 203 | <Import Project="$(SolutionDir)\.nuget\NuGet.targets" Condition="Exists('$(SolutionDir)\.nuget\NuGet.targets')" /> |
186 | 204 | <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild"> |
|
0 commit comments