Skip to content

Commit 6ac24a3

Browse files
authored
Merge pull request Azure#558 from Azure/dev
HPF PR: dev <- Azure:dev
2 parents fd4682e + 69b4196 commit 6ac24a3

File tree

41 files changed

+9885
-5981
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+9885
-5981
lines changed

AzurePowershell.Test.targets

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,19 @@
8888
<XUnitTests Include=".\src\ResourceManager\NotificationHubs\Commands.NotificationHubs.Test\bin\Debug\Microsoft.Azure.Commands.NotificationHubs.Test.dll"/>
8989
<XUnitTests Include=".\src\ResourceManager\Cdn\Commands.Cdn.Test\bin\Debug\Microsoft.Azure.Commands.Cdn.Test.ScenarioTests.dll"/>
9090
<XUnitTests Include=".\src\ResourceManager\CognitiveServices\CognitiveServices.Test\bin\Debug\Microsoft.Azure.Commands.Management.CognitiveServices.Test.dll"/>
91+
<XUnitTests Include=".\src\ResourceManager\Automation\Commands.Automation.Test\bin\Debug\Microsoft.Azure.Commands.ResourceManager.Automation.Test.dll"/>
92+
<!-- <XUnitTests Include=".\src\ResourceManager\AzureStackAdmin\Commands.AzureStackAdmin.Test\bin\Debug\Microsoft.AzureStack.Commands.Admin.Test.dll"/>
93+
<XUnitTests Include=".\src\ResourceManager\AzureStackStorage\Commands.AzureStackStorage.Tests\bin\Debug\Microsoft.AzureStack.Commands.StorageAdmin.Test.dll"/>
94+
<XUnitTests Include=".\src\ResourceManager\DataLakeAnalytics\Commands.DataLakeAnalytics.Test\bin\Debug\Microsoft.Azure.Commands.DataLakeAnalytics.Test.dll"/>
95+
<XUnitTests Include=".\src\ResourceManager\DataLakeStore\Commands.DataLakeStore.Test\bin\Debug\Microsoft.Azure.Commands.DataLake.Test.dll"/>
96+
<XUnitTests Include=".\src\ResourceManager\DevTestLabs\Commands.DevTestLabs.Test\bin\Debug\Microsoft.Azure.Commands.DevTestLabs.Test.dll"/>
97+
<XUnitTests Include=".\src\ResourceManager\HDInsight\Commands.HDInsight.Test\bin\Debug\Commands.HDInsight.Test.dll"/>
98+
<XUnitTests Include=".\src\ResourceManager\Insights\Commands.Insights.Test\bin\Debug\Microsoft.Azure.Commands.Insights.Test.dll"/>
99+
<XUnitTests Include=".\src\ResourceManager\RecoveryServices\Commands.RecoveryServices.Test\bin\Debug\Microsoft.Azure.Commands.RecoveryServicesArm.Test.dll"/>
100+
<XUnitTests Include=".\src\ResourceManager\RecoveryServices.Backup\Commands.RecoveryServices.Backup.Test\bin\Debug\Microsoft.Azure.Commands.RecoveryServices.Backup.Test.dll"/> -->
101+
<XUnitTests Include=".\src\ResourceManager\RedisCache\Commands.RedisCache.Test\bin\Debug\Microsoft.Azure.Commands.RedisCache.Test.dll"/>
102+
<!--<XUnitTests Include=".\src\ResourceManager\ServerManagement\Commands.ServerManagement.Test\bin\Debug\Microsoft.Azure.Commands.ServerManagement.Test.dll"/>
103+
<XUnitTests Include=".\src\ResourceManager\Storage\Commands.Management.Storage.Test\bin\Debug\Microsoft.Azure.Commands.Management.Storage.Test.dll"/>-->
91104
<XUnitTests Include=".\src\Common\Commands.Common.Authentication.Test\bin\Debug\Microsoft.Azure.Commands.Common.Authentication.Test.dll"/>
92105
<XUnitTests Include="@(AsmXUnitTests)"/>
93106
</ItemGroup>

ChangeLog.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
##2016.07.04 version 1.6.0
2+
* Azure SQL DB Backup/Restore
3+
* Cmdlets for LTR (Long Term Retention) backup feature
4+
* Get-AzureRmSqlServerBackupLongTermRetentionVault
5+
* Get-AzureRmSqlDatabaseBackupLongTermRetentionPolicy
6+
* Set-AzureRmSqlServerBackupLongTermRetentionVault
7+
* Set-AzureRmSqlDatabaseBackupLongTermRetentionPolicy
8+
* Restore-AzureRmSqlDatabase now supports point-in-time restore of a deleted database
9+
* Restore-AzureRmSqlDatabase now supports restoring from a Long Term Retention backup
10+
111
##2016.06.01 version 1.5.0
212
* Azure Resource Manager
313
- (Get/Set/New/Remove)-AzureRmResourceGroup cmdlets will now use the new autorest generated ARM assembly
@@ -279,7 +289,7 @@
279289
- New-AzureStorageShareSASToken
280290
- New-AzureStorageQueueSASToken
281291
- New-AzureStorageTableSASToken
282-
* Azure SQL DB Backup/restore
292+
* Azure SQL DB Backup/Restore
283293
* Get-AzureRmSqlDatabaseGeoBackup
284294
* Get-AzureRmSqlDeletedDatabaseBackup
285295
* Restore-AzureRmSqlDatabase

src/ResourceManager/Automation/Commands.Automation/Common/AutomationClient.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -867,7 +867,7 @@ public CredentialInfo CreateCredential(string resourceGroupName, string automati
867867

868868
if (createdCredential == null || createdCredential.StatusCode != HttpStatusCode.Created)
869869
{
870-
new AzureAutomationOperationException(string.Format(Resources.AutomationOperationFailed, "Create",
870+
throw new AzureAutomationOperationException(string.Format(Resources.AutomationOperationFailed, "Create",
871871
"credential", name, automationAccountName));
872872
}
873873
return new CredentialInfo(resourceGroupName, automationAccountName, createdCredential.Credential);
@@ -891,7 +891,7 @@ public CredentialInfo UpdateCredential(string resourceGroupName, string automati
891891

892892
if (credential == null || credential.StatusCode != HttpStatusCode.OK)
893893
{
894-
new AzureAutomationOperationException(string.Format(Resources.AutomationOperationFailed, "Update",
894+
throw new AzureAutomationOperationException(string.Format(Resources.AutomationOperationFailed, "Update",
895895
"credential", name, automationAccountName));
896896
}
897897

src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Jobs/GetAzureRMBackupJob.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,6 @@ public override void ExecuteCmdlet()
9090
throw new Exception(Resources.AzureBackupJobArguementException);
9191
}
9292
WriteDebug(Resources.SettingStartTime);
93-
From = new DateTime();
9493
From = AzureBackupJobHelper.MinimumAllowedDate;
9594
}
9695

@@ -112,7 +111,6 @@ public override void ExecuteCmdlet()
112111
else
113112
{
114113
WriteDebug(Resources.SettingEndTime);
115-
To = new DateTime();
116114
To = AzureBackupJobHelper.MinimumAllowedDate;
117115
}
118116
}

src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Jobs/WaitAzureRMBackupJob.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,6 @@ public override void ExecuteCmdlet()
9696
{
9797
if (!TimeOut.HasValue)
9898
{
99-
TimeOut = new long();
10099
TimeOut = Int64.MaxValue;
101100
}
102101

src/ResourceManager/AzureBatch/Commands.Batch.Test/Tasks/GetBatchTaskCommandTests.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -172,9 +172,7 @@ public void ListBatchTasksODataTest()
172172
};
173173

174174
RequestInterceptor requestInterceptor = BatchTestHelpers.CreateFakeServiceResponseInterceptor(responseToUse: response, requestAction: extractTaskListAction);
175-
cmdlet.AdditionalBehaviors = new List<BatchClientBehavior>() { requestInterceptor };
176-
177-
cmdlet.AdditionalBehaviors = new List<BatchClientBehavior>() { requestInterceptor };
175+
cmdlet.AdditionalBehaviors = new List<BatchClientBehavior> { requestInterceptor };
178176

179177
cmdlet.ExecuteCmdlet();
180178

src/ResourceManager/Insights/Commands.Insights/OutputClasses/CustomPrinter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ private static void Print(object obj, string name, string currentIndent, StringB
7979

8080
ICollection objAsCollection = obj as ICollection;
8181

82-
propName.Replace(':', ' ');
82+
propName = propName.Replace(':', ' ');
8383
if (!string.IsNullOrWhiteSpace(propName))
8484
{
8585
sb.AppendLine(propName);

src/ResourceManager/Network/Commands.Network/ApplicationGateway/NewAzureApplicationGatewayCommand.cs

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -162,61 +162,51 @@ private PSApplicationGateway CreateApplicationGateway()
162162

163163
if (this.GatewayIPConfigurations != null)
164164
{
165-
applicationGateway.GatewayIPConfigurations = new List<PSApplicationGatewayIPConfiguration>();
166165
applicationGateway.GatewayIPConfigurations = this.GatewayIPConfigurations;
167166
}
168167

169168
if (this.SslCertificates != null)
170169
{
171-
applicationGateway.SslCertificates = new List<PSApplicationGatewaySslCertificate>();
172170
applicationGateway.SslCertificates = this.SslCertificates;
173171
}
174172

175173
if (this.FrontendIPConfigurations != null)
176174
{
177-
applicationGateway.FrontendIPConfigurations = new List<PSApplicationGatewayFrontendIPConfiguration>();
178175
applicationGateway.FrontendIPConfigurations = this.FrontendIPConfigurations;
179176
}
180177

181178
if (this.FrontendPorts != null)
182179
{
183-
applicationGateway.FrontendPorts = new List<PSApplicationGatewayFrontendPort>();
184180
applicationGateway.FrontendPorts = this.FrontendPorts;
185181
}
186182

187183
if (this.Probes != null)
188184
{
189-
applicationGateway.Probes = new List<PSApplicationGatewayProbe>();
190185
applicationGateway.Probes = this.Probes;
191186
}
192187

193188
if (this.BackendAddressPools != null)
194189
{
195-
applicationGateway.BackendAddressPools = new List<PSApplicationGatewayBackendAddressPool>();
196190
applicationGateway.BackendAddressPools = this.BackendAddressPools;
197191
}
198192

199193
if (this.BackendHttpSettingsCollection != null)
200194
{
201-
applicationGateway.BackendHttpSettingsCollection = new List<PSApplicationGatewayBackendHttpSettings>();
202195
applicationGateway.BackendHttpSettingsCollection = this.BackendHttpSettingsCollection;
203196
}
204197

205198
if (this.HttpListeners != null)
206199
{
207-
applicationGateway.HttpListeners = new List<PSApplicationGatewayHttpListener>();
208200
applicationGateway.HttpListeners = this.HttpListeners;
209201
}
210202

211203
if (this.UrlPathMaps != null)
212204
{
213-
applicationGateway.UrlPathMaps = new List<PSApplicationGatewayUrlPathMap>();
214205
applicationGateway.UrlPathMaps = this.UrlPathMaps;
215206
}
216207

217208
if (this.RequestRoutingRules != null)
218209
{
219-
applicationGateway.RequestRoutingRules = new List<PSApplicationGatewayRequestRoutingRule>();
220210
applicationGateway.RequestRoutingRules = this.RequestRoutingRules;
221211
}
222212

src/ResourceManager/Network/Commands.Network/ExpressRouteCircuit/NewAzureExpressRouteCircuitCommand.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,9 +161,7 @@ private PSExpressRouteCircuit CreateExpressRouteCircuit()
161161
circuit.ServiceProviderProperties.BandwidthInMbps = this.BandwidthInMbps;
162162
}
163163

164-
circuit.Peerings = new List<PSPeering>();
165164
circuit.Peerings = this.Peering;
166-
circuit.Authorizations = new List<PSExpressRouteCircuitAuthorization>();
167165
circuit.Authorizations = this.Authorization;
168166
circuit.AllowClassicOperations = this.AllowClassicOperations;
169167

src/ResourceManager/Network/Commands.Network/LoadBalancer/NewAzureLoadBalancerCommand.cs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -130,37 +130,31 @@ private PSLoadBalancer CreateLoadBalancer()
130130

131131
if (this.FrontendIpConfiguration != null)
132132
{
133-
loadBalancer.FrontendIpConfigurations = new List<PSFrontendIPConfiguration>();
134133
loadBalancer.FrontendIpConfigurations = this.FrontendIpConfiguration;
135134
}
136135

137136
if (this.BackendAddressPool != null)
138137
{
139-
loadBalancer.BackendAddressPools = new List<PSBackendAddressPool>();
140138
loadBalancer.BackendAddressPools = this.BackendAddressPool;
141139
}
142140

143141
if (this.Probe != null)
144142
{
145-
loadBalancer.Probes = new List<PSProbe>();
146143
loadBalancer.Probes = this.Probe;
147144
}
148145

149146
if (this.InboundNatRule != null)
150147
{
151-
loadBalancer.InboundNatRules = new List<PSInboundNatRule>();
152148
loadBalancer.InboundNatRules = this.InboundNatRule;
153149
}
154150

155151
if (this.LoadBalancingRule != null)
156152
{
157-
loadBalancer.LoadBalancingRules = new List<PSLoadBalancingRule>();
158153
loadBalancer.LoadBalancingRules = this.LoadBalancingRule;
159154
}
160155

161156
if (this.InboundNatPool != null)
162157
{
163-
loadBalancer.InboundNatPools = new List<PSInboundNatPool>();
164158
loadBalancer.InboundNatPools = this.InboundNatPool;
165159
}
166160

src/ResourceManager/Network/Commands.Network/VirtualNetwork/NewAzureVirtualNetworkCommand.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,6 @@ private PSVirtualNetwork CreateVirtualNetwork()
118118
vnet.DhcpOptions.DnsServers = this.DnsServer;
119119
}
120120

121-
vnet.Subnets = new List<PSSubnet>();
122121
vnet.Subnets = this.Subnet;
123122

124123
// Map to the sdk object

src/ResourceManager/Network/Commands.Network/VirtualNetworkGateway/NewAzureVirtualNetworkGatewayCommand.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,6 @@ private PSVirtualNetworkGateway CreateVirtualNetworkGateway()
176176

177177
if (this.IpConfigurations != null)
178178
{
179-
vnetGateway.IpConfigurations = new List<PSVirtualNetworkGatewayIpConfiguration>();
180179
vnetGateway.IpConfigurations = this.IpConfigurations;
181180
}
182181

src/ResourceManager/OperationalInsights/Commands.OperationalInsights/Models/PSSearchListSavedSearchResponse.cs

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -26,19 +26,17 @@ public PSSearchListSavedSearchResponse()
2626

2727
public PSSearchListSavedSearchResponse(SearchListSavedSearchResponse searchResponse)
2828
{
29-
if (searchResponse != null)
29+
if (searchResponse == null)
3030
{
31-
if (searchResponse == null)
32-
{
33-
throw new ArgumentNullException("saved search response");
34-
}
35-
SearchMetadata m = searchResponse.Metadata;
36-
this.Metadata = new PSSearchMetadata(searchResponse.Metadata);
37-
this.Value = new List<PSSavedSearchValue>();
38-
foreach (SavedSearchValue v in searchResponse.Value)
39-
{
40-
this.Value.Add(new PSSavedSearchValue(v));
41-
}
31+
throw new ArgumentNullException("saved search response");
32+
}
33+
34+
SearchMetadata m = searchResponse.Metadata;
35+
this.Metadata = new PSSearchMetadata(searchResponse.Metadata);
36+
this.Value = new List<PSSavedSearchValue>();
37+
foreach (SavedSearchValue v in searchResponse.Value)
38+
{
39+
this.Value.Add(new PSSavedSearchValue(v));
4240
}
4341
}
4442

src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/SdkClient/ResourceManagerSdkClient.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -351,13 +351,11 @@ private List<DeploymentOperation> GetNewOperations(List<DeploymentOperation> old
351351
Enum.TryParse<HttpStatusCode>(operation.Properties.StatusCode, out statusCode);
352352
if (!statusCode.IsClientFailureRequest())
353353
{
354-
List<DeploymentOperation> newNestedOperations = new List<DeploymentOperation>();
355-
356354
var result = ResourceManagementClient.DeploymentOperations.List(
357355
resourceGroupName: ResourceIdUtility.GetResourceGroupName(operation.Properties.TargetResource.Id),
358356
deploymentName: operation.Properties.TargetResource.ResourceName);
359357

360-
newNestedOperations = GetNewOperations(operations, result);
358+
List<DeploymentOperation> newNestedOperations = GetNewOperations(operations, result);
361359

362360
foreach (DeploymentOperation op in newNestedOperations)
363361
{

src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/Utilities/TemplateUtility.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ public static class TemplateUtility
3939
/// <returns>The template parameters</returns>
4040
public static RuntimeDefinedParameterDictionary GetTemplateParametersFromFile(string templateFilePath, Hashtable templateParameterObject, string templateParameterFilePath, string[] staticParameters)
4141
{
42-
RuntimeDefinedParameterDictionary dynamicParameters = new RuntimeDefinedParameterDictionary();
4342
string templateContent = null;
4443

4544
if (templateFilePath != null)
@@ -54,7 +53,7 @@ public static RuntimeDefinedParameterDictionary GetTemplateParametersFromFile(st
5453
}
5554
}
5655

57-
dynamicParameters = ParseTemplateAndExtractParameters(templateContent, templateParameterObject, templateParameterFilePath, staticParameters);
56+
RuntimeDefinedParameterDictionary dynamicParameters = ParseTemplateAndExtractParameters(templateContent, templateParameterObject, templateParameterFilePath, staticParameters);
5857

5958
return dynamicParameters;
6059
}

src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/StartAzureSiteRecoveryTestFailoverJob.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ private void StartPETestFailover()
236236
}
237237
else
238238
{
239-
new ArgumentException(Properties.Resources.UnsupportedDirectionForTFO);// Throw Unsupported Direction Exception
239+
throw new ArgumentException(Properties.Resources.UnsupportedDirectionForTFO);// Throw Unsupported Direction Exception
240240
}
241241
}
242242

@@ -290,7 +290,7 @@ private void StartRpTestFailover()
290290
}
291291
else
292292
{
293-
new ArgumentException(Properties.Resources.UnsupportedDirectionForTFO);// Throw Unsupported Direction Exception
293+
throw new ArgumentException(Properties.Resources.UnsupportedDirectionForTFO);// Throw Unsupported Direction Exception
294294
}
295295
}
296296
}

src/ResourceManager/Sql/Commands.Sql.Test/Commands.Sql.Test.csproj

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
</Reference>
7272
<Reference Include="Microsoft.Azure.Management.Sql">
7373
<SpecificVersion>False</SpecificVersion>
74-
<HintPath>..\..\..\packages\Microsoft.Azure.Management.Sql.0.46.0-prerelease\lib\net40\Microsoft.Azure.Management.Sql.dll</HintPath>
74+
<HintPath>..\..\..\packages\Microsoft.Azure.Management.Sql.0.47.0-prerelease\lib\net40\Microsoft.Azure.Management.Sql.dll</HintPath>
7575
</Reference>
7676
<Reference Include="Microsoft.Azure.Management.Storage">
7777
<HintPath>..\..\..\packages\Microsoft.Azure.Management.Storage.2.4.0-preview\lib\net40\Microsoft.Azure.Management.Storage.dll</HintPath>
@@ -231,7 +231,7 @@
231231
<None Include="ScenarioTests\ElasticPoolCrudTests.ps1">
232232
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
233233
</None>
234-
<None Include="ScenarioTests\ImportExportTests.ps1">
234+
<None Include="ScenarioTests\ImportExportTests.ps1">
235235
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
236236
</None>
237237
<Compile Include="ScenarioTests\LocationCapabilitiesTests.cs" />
@@ -248,8 +248,8 @@
248248
<Compile Include="ScenarioTests\SqlTestsBase.cs" />
249249
<Compile Include="ScenarioTests\TransparentDataEncryptionCrudTests.cs" />
250250
<Compile Include="ScenarioTests\IndexRecommendationTests.cs" />
251-
<Compile Include="ScenarioTests\ImportExportTests.cs" />
252-
<Compile Include="UnitTests\AzureSqlDatabaseImportExportTests.cs" />
251+
<Compile Include="ScenarioTests\ImportExportTests.cs" />
252+
<Compile Include="UnitTests\AzureSqlDatabaseImportExportTests.cs" />
253253
<Compile Include="UnitTests\AzureSqlCmdletBaseAttributeTests.cs" />
254254
<Compile Include="UnitTests\AzureSqlDatabaseActivationAttributeTest.cs" />
255255
<Compile Include="UnitTests\AzureSqlDatabaseAttributeTests.cs" />
@@ -431,6 +431,15 @@
431431
<None Include="SessionRecords\Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseBackupTests\TestRestorePointInTimeBackup.json">
432432
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
433433
</None>
434+
<None Include="SessionRecords\Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseBackupTests\TestRestoreLongTermRetentionBackup.json">
435+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
436+
</None>
437+
<None Include="SessionRecords\Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseBackupTests\TestServerBackupLongTermRetentionVault.json">
438+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
439+
</None>
440+
<None Include="SessionRecords\Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseBackupTests\TestDatabaseBackupLongTermRetentionPolicy.json">
441+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
442+
</None>
434443
<None Include="SessionRecords\Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests\TestDatabaseCreate.json">
435444
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
436445
</None>
@@ -608,7 +617,7 @@
608617
<None Include="Templates\sql-ddm-test-env-setup.json">
609618
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
610619
</None>
611-
<None Include="SessionRecords\Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ImportExportTests\TestExportDatabase.json">
620+
<None Include="SessionRecords\Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ImportExportTests\TestExportDatabase.json">
612621
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
613622
</None>
614623
<None Include="SessionRecords\Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ImportExportTests\TestImportDatabase.json">

0 commit comments

Comments
 (0)