Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IPackModel

export
interface

IPackModel

Hierarchy

  • IPackModel

Index

Properties

Optional configuration

configuration: undefined | string

Configuration to use for building the project. Default for most projects is "Debug"

type

{string}

memberof

IPackModel

Optional echo

echo: undefined | true | false

Log the command to the console

type

{boolean}

memberof

IPackModel

Optional includeSource

includeSource: undefined | true | false

Include PDBs and source files. Source files go into the src folder in the resulting nuget package

type

{boolean}

memberof

IPackModel

Optional includeSymbols

includeSymbols: undefined | true | false

Include packages with symbols in addition to regular packages in output directory.

type

{boolean}

memberof

IPackModel

Optional msbuildArgs

msbuildArgs: string[]

Any extra options that should be passed to MSBuild. See dotnet msbuild -h for available options

type

{Array}

memberof

IPackModel

Optional noBuild

noBuild: undefined | true | false

Skip building the project prior to packing. By default, the project will be built.

type

{boolean}

memberof

IPackModel

Optional noDependencies

noDependencies: undefined | true | false

Set this flag to ignore project to project references and only restore the root project.

type

{boolean}

memberof

IPackModel

Optional noRestore

noRestore: undefined | true | false

Does not do an implicit restore when executing the command.

type

{boolean}

memberof

IPackModel

Optional output

output: undefined | string

Directory in which to place built packages.

type

{string}

memberof

IPackModel

Optional serviceable

serviceable: undefined | true | false

Set the serviceable flag in the package. For more information, please see https?://aka.ms/nupkgservicing

type

{boolean}

memberof

IPackModel

Optional verbosity

verbosity: undefined | string

sets the console verbosity. valid values?: 'quiet', 'minimal', 'normal', 'detailed', 'diagnostic'

type

{string}

memberof

IPackModel

Optional version

version: undefined | string

Sets the $(Version) property in msbuild

type

{string}

memberof

IPackModel

Optional versionSuffix

versionSuffix: undefined | string

Defines the value for the $(VersionSuffix) property in the project.

type

{string}

memberof

IPackModel

Generated using TypeDoc