Skip to content
This repository has been archived by the owner on Jan 23, 2023. It is now read-only.

[master] Update dependencies from dotnet/arcade #24333

Merged
merged 32 commits into from
May 24, 2019
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
d6c6096
Update dependencies from https://github.com/dotnet/arcade build 20190…
May 1, 2019
426c8b4
Update dependencies from https://github.com/dotnet/arcade build 20190…
May 2, 2019
49ca362
Merge branch 'master' into darc-master-145055cf-390b-45fd-8ad8-3585b3…
jkotas May 2, 2019
8790e31
Update dependencies from https://github.com/dotnet/arcade build 20190…
May 3, 2019
b3f5c1c
Update dependencies from https://github.com/dotnet/arcade build 20190…
May 4, 2019
47169b5
Update dependencies from https://github.com/dotnet/arcade build 20190…
May 5, 2019
381cb13
Update dependencies from https://github.com/dotnet/arcade build 20190…
May 6, 2019
208500a
Merge branch 'master' into darc-master-145055cf-390b-45fd-8ad8-3585b3…
hoyosjs May 6, 2019
25c4ca3
Update dependencies from https://github.com/dotnet/arcade build 20190…
May 7, 2019
fe2fa80
Update Unix permissions
jkotas May 7, 2019
ae7b593
Set the versions same way as CoreFX repo
jkotas May 8, 2019
0b5dd6a
Update dependencies from https://github.com/dotnet/arcade build 20190…
May 8, 2019
8d0843d
Merge branch 'master' into darc-master-145055cf-390b-45fd-8ad8-3585b3…
jkotas May 9, 2019
e5d2d6b
Update dependencies from https://github.com/dotnet/arcade build 20190…
May 9, 2019
8eea62c
Update dependencies from https://github.com/dotnet/arcade build 20190…
May 10, 2019
ce85df6
Merge branch 'master' into darc-master-145055cf-390b-45fd-8ad8-3585b3…
hoyosjs May 22, 2019
92d2641
Reconcile package versions coming from Arcade
hoyosjs May 22, 2019
1902f59
Use SDK 2.2.300; has MSBuild fixes for XML parsing
hoyosjs May 22, 2019
c79b29d
Merge branch 'master' into darc-master-145055cf-390b-45fd-8ad8-3585b3…
jkotas May 23, 2019
02fd570
Fix the product branding version
jkotas May 23, 2019
96674d3
Update dependencies from https://github.com/dotnet/arcade build 20190…
May 23, 2019
8d09a5f
Delete .NET Framework reference assemblies reference
jkotas May 23, 2019
f84d673
Merge branch 'master' into darc-master-145055cf-390b-45fd-8ad8-3585b3…
jkotas May 23, 2019
7680bc0
Add explcit reference for Microsoft.NETCore.Platforms
jkotas May 23, 2019
3b16b92
Correct version
jkotas May 24, 2019
ef22a70
Add workaround to one more place
jkotas May 24, 2019
5650e58
Workaround for https://github.com/dotnet/arcade/issues/2673
jkotas May 24, 2019
729406a
Update dependencies from https://github.com/dotnet/arcade build 20190…
May 24, 2019
30e9fbb
Merge branch 'master' into darc-master-145055cf-390b-45fd-8ad8-3585b3…
jkotas May 24, 2019
2672f9f
Delete redundant line
jkotas May 24, 2019
6560389
Delete redundant subscription
jkotas May 24, 2019
809ed32
Apply the workaround again
jkotas May 24, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update dependencies from https://github.com/dotnet/arcade build 20190…
…509.9

- Microsoft.DotNet.Arcade.Sdk - 1.0.0-beta.19259.9
- Microsoft.DotNet.Helix.Sdk - 2.0.0-beta.19259.9
  • Loading branch information
dotnet-maestro committed May 10, 2019
commit 8eea62cc6c2f7a9e8ce604b3a1d88523a9e50b2b
8 changes: 4 additions & 4 deletions eng/Version.Details.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
<ProductDependencies>
</ProductDependencies>
<ToolsetDependencies>
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="1.0.0-beta.19258.5">
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="1.0.0-beta.19259.9">
<Uri>https://github.com/dotnet/arcade</Uri>
<Sha>9005cee9510d23535c09bd9b6be7c426e526c067</Sha>
<Sha>155080ecb738e189db75f8f2461ebad75d955aa7</Sha>
</Dependency>
<Dependency Name="Microsoft.DotNet.Helix.Sdk" Version="2.0.0-beta.19258.5">
<Dependency Name="Microsoft.DotNet.Helix.Sdk" Version="2.0.0-beta.19259.9">
<Uri>https://github.com/dotnet/arcade</Uri>
<Sha>9005cee9510d23535c09bd9b6be7c426e526c067</Sha>
<Sha>155080ecb738e189db75f8f2461ebad75d955aa7</Sha>
</Dependency>
<!-- This dependency should be added, but it causes the github PR legs to not launch. -->
<!-- Dependency Name="microsoft.dotnet.build.tasks.feed" Version="2.2.0-beta.19229.8">
Expand Down
10 changes: 5 additions & 5 deletions eng/common/tools.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ function InitializeBuildTool() {
ExitWithExitCode 1
}

$buildTool = @{ Path = Join-Path $dotnetRoot "dotnet.exe"; Command = "msbuild" }
$buildTool = @{ Path = Join-Path $dotnetRoot "dotnet.exe"; Command = "msbuild"; Tool = "dotnet"; Framework = "netcoreapp2.1" }
} elseif ($msbuildEngine -eq "vs") {
try {
$msbuildPath = InitializeVisualStudioMSBuild -install:$restore
Expand All @@ -367,7 +367,7 @@ function InitializeBuildTool() {
ExitWithExitCode 1
}

$buildTool = @{ Path = $msbuildPath; Command = "" }
$buildTool = @{ Path = $msbuildPath; Command = ""; Tool = "vs"; Framework = "net472" }
} else {
Write-Host "Unexpected value of -msbuildEngine: '$msbuildEngine'." -ForegroundColor Red
ExitWithExitCode 1
Expand Down Expand Up @@ -478,11 +478,11 @@ function Stop-Processes() {
# Terminates the script if the build fails.
#
function MSBuild() {
if ($pipelinesLog -and $msbuildEngine) {
if ($pipelinesLog) {
$buildTool = InitializeBuildTool
$toolsetBuildProject = InitializeToolset
$tf = if ($msbuildEngine -eq "dotnet") { "netcoreapp2.1" } else { "net472" }
$path = Split-Path -parent $toolsetBuildProject
$path = Join-Path $path "$tf\Microsoft.DotNet.Arcade.Sdk.dll"
$path = Join-Path $path (Join-Path $buildTool.Framework "Microsoft.DotNet.Arcade.Sdk.dll")
$args += "/logger:$path"
}

Expand Down
4 changes: 2 additions & 2 deletions eng/common/tools.sh
Original file line number Diff line number Diff line change
Expand Up @@ -165,11 +165,11 @@ function InstallDotNet {
local install_script=$_GetDotNetInstallScript

local archArg=''
if [[ "$#" -ge "3" ]]; then
if [[ -n "${3:-}" ]]; then
archArg="--architecture $3"
fi
local runtimeArg=''
if [[ "$#" -ge "4" ]]; then
if [[ -n "${4:-}" ]]; then
runtimeArg="--runtime $4"
fi

Expand Down
4 changes: 2 additions & 2 deletions global.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
"python": "2.7.15"
},
"msbuild-sdks": {
"Microsoft.DotNet.Arcade.Sdk": "1.0.0-beta.19258.5",
"Microsoft.DotNet.Helix.Sdk": "2.0.0-beta.19258.5",
"Microsoft.DotNet.Arcade.Sdk": "1.0.0-beta.19259.9",
"Microsoft.DotNet.Helix.Sdk": "2.0.0-beta.19259.9",
"Microsoft.Build.NoTargets": "1.0.53",
"Microsoft.Build.Traversal": "2.0.2"
}
Expand Down