Skip to content

Commit 03b6c72

Browse files
committed
Added nuget feed
1 parent dec2a73 commit 03b6c72

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

build.cake

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,11 @@ Task("Publish-Package")
142142

143143
foreach (var nupkg in GetFiles(nugetRoot.Path.FullPath + "/*.nupkg"))
144144
{
145-
NuGetPush(nupkg, new NuGetPushSettings { ApiKey = apiKey });
145+
NuGetPush(nupkg, new NuGetPushSettings
146+
{
147+
Source = "https://nuget.org/api/v2/package",
148+
ApiKey = apiKey
149+
});
146150
}
147151
});
148152

0 commit comments

Comments
 (0)