Update dependencies from https://github.com/dotnet/arcade build 20200924.4 (#8738)

[release/5.0.1xx] Update dependencies from dotnet/arcade
This commit is contained in:
dotnet-maestro[bot] 2020-09-28 16:12:55 +00:00 committed by GitHub
parent 6391ec157b
commit 4d44907633
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
11 changed files with 207 additions and 23 deletions

View file

@ -312,12 +312,14 @@ function InitializeBuildTool {
_InitializeBuildToolFramework="netcoreapp2.1"
}
# Set RestoreNoCache as a workaround for https://github.com/NuGet/Home/issues/3116
function GetNuGetPackageCachePath {
if [[ -z ${NUGET_PACKAGES:-} ]]; then
if [[ "$use_global_nuget_cache" == true ]]; then
export NUGET_PACKAGES="$HOME/.nuget/packages"
else
export NUGET_PACKAGES="$repo_root/.packages"
export RESTORENOCACHE=true
fi
fi