We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bcb17be commit 3b5e1f4Copy full SHA for 3b5e1f4
1 file changed
build/Build.Publish.Nuget.cs
@@ -15,13 +15,13 @@ partial class Build
15
.Requires(() => NugetPrivateApiKey)
16
.Executes(() =>
17
{
18
- foreach (var package in PrivateArtifactsDirectory.GlobFiles("*.nupkg"))
19
- {
20
- DotNetNuGetPush(settings => settings
21
- .SetTargetPath(package)
22
- .SetSource(NugetPrivateSource)
23
- .SetApiKey(NugetPrivateApiKey));
24
- }
+ // foreach (var package in PrivateArtifactsDirectory.GlobFiles("*.nupkg"))
+ // {
+ // DotNetNuGetPush(settings => settings
+ // .SetTargetPath(package)
+ // .SetSource(NugetPrivateSource)
+ // .SetApiKey(NugetPrivateApiKey));
+ // }
25
26
foreach (var package in PublicArtifactsDirectory.GlobFiles("*.nupkg"))
27
0 commit comments