зеркало из https://github.com/dotnet/aspnetcore.git
11 строки
425 B
Bash
Executable File
11 строки
425 B
Bash
Executable File
# We can't use already installed dotnet cli since we need to install additional shared runtimes.
|
|
# We could potentially try to find an existing installation that has all the required runtimes,
|
|
# but it's unlikely one will be available.
|
|
|
|
if [ "${DotNetBuild:-false}" = false ]; then
|
|
use_installed_dotnet_cli="false"
|
|
fi
|
|
|
|
# Working around issue https://github.com/dotnet/arcade/issues/2673
|
|
DisableNativeToolsetInstalls=true
|