We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eac18ac commit c57b6fcCopy full SHA for c57b6fc
build/Build.cs
@@ -74,7 +74,7 @@ class Build : NukeBuild
74
.Requires(
75
() => !string.IsNullOrWhiteSpace(EnvironmentInfo.GetVariable<string>("NUGET_KEY", null)))
76
.Executes(() => DotNetNuGetPush(s => s
77
- .SetSource("https://www.nuget.org/api/v2/package")
+ .SetSource("https://api.nuget.org/v3/index.json")
78
.SetApiKey(EnvironmentInfo.GetVariable<string>("NUGET_KEY", null))
79
.CombineWith(Glob.Files(ArtifactsDirectory, "*.nupkg"), (ss, package) => ss
80
.SetTargetPath(ArtifactsDirectory / package))));
0 commit comments