Interface IPush
Provides targets and configuration for pushing NuGet packages.
Inherited Members
INukeBuild.ExecutionPlan
INukeBuild.InvokedTargets
INukeBuild.SkippedTargets
INukeBuild.ScheduledTargets
INukeBuild.RunningTargets
INukeBuild.AbortedTargets
INukeBuild.FailedTargets
INukeBuild.SucceededTargets
INukeBuild.FinishedTargets
INukeBuild.IsSucceeding
INukeBuild.IsFailing
INukeBuild.IsFinished
INukeBuild.ExitCode
INukeBuild.RootDirectory
INukeBuild.TemporaryDirectory
INukeBuild.BuildAssemblyFile
INukeBuild.BuildAssemblyDirectory
INukeBuild.BuildProjectDirectory
INukeBuild.BuildProjectFile
INukeBuild.Verbosity
INukeBuild.Host
INukeBuild.Plan
INukeBuild.Help
INukeBuild.NoLogo
INukeBuild.IsLocalBuild
INukeBuild.IsServerBuild
INukeBuild.Continue
INukeBuild.Partition
Namespace: Hexagrams.Nuke.Components
Assembly: Hexagrams.Nuke.Components.dll
Syntax
public interface IPush : IPack, ICompile, IRestore, IClean, IHasSolution, IHasConfiguration, IHasArtifacts, IHasGitRepository, INukeBuild
Properties
| Edit this page View SourceNuGetApiKey
The NuGet API key.
Declaration
[Parameter(null)]
[Secret]
string NuGetApiKey { get; }
Property Value
| Type | Description |
|---|---|
| string |
NuGetSource
Specifies the NuGet server URL. Defaults to the public NuGet feed.
Declaration
[Parameter(null)]
string NuGetSource { get; }
Property Value
| Type | Description |
|---|---|
| string |
PackagePushSettings
Additional settings for controlling the behaviour packages pushed to NuGet.
Declaration
Configure<DotNetNuGetPushSettings> PackagePushSettings { get; }
Property Value
| Type | Description |
|---|---|
| Configure<DotNetNuGetPushSettings> |
Push
Publish NuGet packages using dotnet nuget push.
Declaration
Target Push { get; }
Property Value
| Type | Description |
|---|---|
| Target |
PushCompleteOnFailure
Whether or not to complete the push target, even if it fails. Defaults to true;
Declaration
bool PushCompleteOnFailure { get; }
Property Value
| Type | Description |
|---|---|
| bool |
PushDegreeOfParallelism
The degree of parallelism to use when pushing packages. Defaults to 5.
Declaration
int PushDegreeOfParallelism { get; }
Property Value
| Type | Description |
|---|---|
| int |
PushPackageFiles
The NuGet packages to push. Defaults to all files with the .nupkg extension under
PackagesDirectory
Declaration
IEnumerable<AbsolutePath> PushPackageFiles { get; }
Property Value
| Type | Description |
|---|---|
| IEnumerable<AbsolutePath> |
PushSettings
Additional settings for controlling the behaviour of the dotnet nuget push command.
Declaration
Configure<DotNetNuGetPushSettings> PushSettings { get; }
Property Value
| Type | Description |
|---|---|
| Configure<DotNetNuGetPushSettings> |
PushSettingsBase
Settings for controlling the behaviour of the dotnet nuget push command.
Declaration
Configure<DotNetNuGetPushSettings> PushSettingsBase { get; }
Property Value
| Type | Description |
|---|---|
| Configure<DotNetNuGetPushSettings> |