Skip to content

Commit

Permalink
Update dependencies from https://github.com/dotnet/arcade build 20200…
Browse files Browse the repository at this point in the history
…130.4 (dotnet#1246)

- Microsoft.DotNet.Arcade.Sdk - 5.0.0-beta.20080.4
  • Loading branch information
dotnet-maestro[bot] authored Jan 31, 2020
1 parent fddad75 commit a524f50
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
4 changes: 2 additions & 2 deletions eng/Version.Details.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
</Dependency>
</ProductDependencies>
<ToolsetDependencies>
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="5.0.0-beta.20079.8">
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="5.0.0-beta.20080.4">
<Uri>https://github.com/dotnet/arcade</Uri>
<Sha>8466781af43871ee0d4a1655acc008a305a62c0e</Sha>
<Sha>00402f1fdc2b59dbc4f0b1c143850cb72e69fc90</Sha>
</Dependency>
</ToolsetDependencies>
</Dependencies>
10 changes: 10 additions & 0 deletions eng/common/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,16 @@ function Build {
InitializeCustomToolset

if [[ ! -z "$projects" ]]; then
# Split project paths by semi-colon, find full-paths using readlink,
# finally and splice back as a semi-colon separated list
IFS=';' read -r -a projs <<< "$projects"
len=${#projs[@]}
for ((i=0; i<$len; i++));
do
projs[$i]=$(readlink -f "${projs[$i]}");
done
projects=$(IFS=\; ; echo "${projs[*]}")
echo Updated projects: $projects
properties="$properties /p:Projects=$projects"
fi

Expand Down
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
"dotnet": "3.0.101"
},
"msbuild-sdks": {
"Microsoft.DotNet.Arcade.Sdk": "5.0.0-beta.20079.8"
"Microsoft.DotNet.Arcade.Sdk": "5.0.0-beta.20080.4"
}
}

0 comments on commit a524f50

Please sign in to comment.