We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b37cf9 commit 94cd1aaCopy full SHA for 94cd1aa
src/app/Fake.DotNet.Cli/DotNet.fs
@@ -136,7 +136,7 @@ module DotNet =
136
/// Get .NET Core SDK download uri
137
/// </summary>
138
let private getGenericDotNetCliInstallerUrl branch installerName =
139
- sprintf "https://raw.githubusercontent.com/dotnet/cli/%s/scripts/obtain/%s" branch installerName
+ sprintf "https://raw.githubusercontent.com/dotnet/install-scripts/%s/src/%s" branch installerName
140
141
let private getPowershellDotNetCliInstallerUrl branch =
142
getGenericDotNetCliInstallerUrl branch "dotnet-install.ps1"
@@ -188,7 +188,7 @@ module DotNet =
188
/// Parameter default values.
189
static member Default =
190
{ AlwaysDownload = false
191
- Branch = "master"
+ Branch = "main"
192
CustomDownloadDir = None }
193
194
/// <summary>
0 commit comments