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 4294c51 commit 12a3055Copy full SHA for 12a3055
build/publish.cake
@@ -132,15 +132,16 @@ Task("Publish-NuGet-Internal")
132
133
Information("Adding NuGet source with user/pass...");
134
NuGetAddSource("GitHub", source, nugetSourceSettings);
135
+ Information("Adding NuGet source with user/pass after");
136
137
foreach(var package in parameters.Packages.Nuget)
138
{
139
if (FileExists(package.PackagePath))
140
- NuGetPush(package.PackagePath, new NuGetPushSettings
141
- {
142
- Source = source
143
- });
+ // NuGetPush(package.PackagePath, new NuGetPushSettings
+ // {
+ // Source = source
144
+ // });
145
}
146
147
0 commit comments