Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordotnet-maestro <@dotnet-maestro>2019-06-13 16:15:57 +0300
committerMarek Safar <marek.safar@gmail.com>2019-06-13 18:32:22 +0300
commit8affbbe98dbbe85d78924d1c8b51a29692b0d8cf (patch)
tree1c3fdbc1110a07b1c82090dd7d42311cdbf19dcc /eng/common/tools.ps1
parent20d83c24d6fe412a6afe62652b671526ab7d12cf (diff)
Update dependencies from https://github.com/dotnet/arcade build 20190612.21
- Microsoft.DotNet.Arcade.Sdk - 1.0.0-beta.19312.21 - Microsoft.DotNet.Helix.Sdk - 2.0.0-beta.19312.21
Diffstat (limited to 'eng/common/tools.ps1')
-rw-r--r--eng/common/tools.ps15
1 files changed, 3 insertions, 2 deletions
diff --git a/eng/common/tools.ps1 b/eng/common/tools.ps1
index 1b9e2cd8849..9ea85c4f978 100644
--- a/eng/common/tools.ps1
+++ b/eng/common/tools.ps1
@@ -138,7 +138,8 @@ function Write-PipelineSetVariable {
if($ci) {
Write-LoggingCommand -Area 'task' -Event 'setvariable' -Data $Value -Properties @{
'variable' = $Name
- 'issecret' = $Secret
+ 'isSecret' = $Secret
+ 'isOutput' = 'true'
} -AsOutput:$AsOutput
}
}
@@ -377,7 +378,7 @@ function LocateVisualStudio([object]$vsRequirements = $null){
}
if (!$vsRequirements) { $vsRequirements = $GlobalJson.tools.vs }
- $args = @("-latest", "-prerelease", "-format", "json", "-requires", "Microsoft.Component.MSBuild")
+ $args = @("-latest", "-prerelease", "-format", "json", "-requires", "Microsoft.Component.MSBuild", "-products", "*")
if (Get-Member -InputObject $vsRequirements -Name "version") {
$args += "-version"