Skip to content

Commit c57b6fc

Browse files
author
Christoph Bühler
committed
fix: use nuget v3
1 parent eac18ac commit c57b6fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build/Build.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ class Build : NukeBuild
7474
.Requires(
7575
() => !string.IsNullOrWhiteSpace(EnvironmentInfo.GetVariable<string>("NUGET_KEY", null)))
7676
.Executes(() => DotNetNuGetPush(s => s
77-
.SetSource("https://www.nuget.org/api/v2/package")
77+
.SetSource("https://api.nuget.org/v3/index.json")
7878
.SetApiKey(EnvironmentInfo.GetVariable<string>("NUGET_KEY", null))
7979
.CombineWith(Glob.Files(ArtifactsDirectory, "*.nupkg"), (ss, package) => ss
8080
.SetTargetPath(ArtifactsDirectory / package))));

0 commit comments

Comments
 (0)