Skip to content

Commit b373668

Browse files
authored
modified va ranges in sqlAzureDacpacdeploymentV1 (#21533)
1 parent 2ec2592 commit b373668

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Tasks/SqlAzureDacpacDeploymentV1/FindSqlPackagePath.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,7 @@ function Get-VisualStudio_15_0 {
441441
# may be something like 15.2.
442442
Write-Verbose "Getting latest Visual Studio 15 setup instance."
443443
$output = New-Object System.Text.StringBuilder
444-
Invoke-VstsTool -FileName "$PSScriptRoot\vswhere.exe" -Arguments "-version [15.0,18.0) -latest -format json" -RequireExitCodeZero 2>&1 |
444+
Invoke-VstsTool -FileName "$PSScriptRoot\vswhere.exe" -Arguments "-version [15.0,19.0) -latest -format json" -RequireExitCodeZero 2>&1 |
445445
ForEach-Object {
446446
if ($_ -is [System.Management.Automation.ErrorRecord]) {
447447
Write-Verbose "STDERR: $($_.Exception.Message)"
@@ -460,7 +460,7 @@ function Get-VisualStudio_15_0 {
460460
# the same scheme. It appears to follow the 15.<UPDATE_NUMBER>.* versioning scheme.
461461
Write-Verbose "Getting latest BuildTools 15 setup instance."
462462
$output = New-Object System.Text.StringBuilder
463-
Invoke-VstsTool -FileName "$PSScriptRoot\vswhere.exe" -Arguments "-version [15.0,18.0) -products Microsoft.VisualStudio.Product.BuildTools -latest -format json" -RequireExitCodeZero 2>&1 |
463+
Invoke-VstsTool -FileName "$PSScriptRoot\vswhere.exe" -Arguments "-version [15.0,19.0) -products Microsoft.VisualStudio.Product.BuildTools -latest -format json" -RequireExitCodeZero 2>&1 |
464464
ForEach-Object {
465465
if ($_ -is [System.Management.Automation.ErrorRecord]) {
466466
Write-Verbose "STDERR: $($_.Exception.Message)"

Tasks/SqlAzureDacpacDeploymentV1/task.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"author": "Microsoft Corporation",
1717
"version": {
1818
"Major": 1,
19-
"Minor": 263,
19+
"Minor": 267,
2020
"Patch": 0
2121
},
2222
"demands": [

Tasks/SqlAzureDacpacDeploymentV1/task.loc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"author": "Microsoft Corporation",
1717
"version": {
1818
"Major": 1,
19-
"Minor": 263,
19+
"Minor": 267,
2020
"Patch": 0
2121
},
2222
"demands": [

0 commit comments

Comments
 (0)