Class RunInfo
Possible values which can be saved in RunParams
Inheritance
object
RunInfo
Namespace: BuildSystem.Info
Assembly: BuildSystem.Info.dll
Syntax
public sealed class RunInfo : Enum
Fields
ForceBuild
Force build of projects, even there is no changes in them or any another requirements
Declaration
public const RunInfo ForceBuild = 6
Field Value
Type | Description |
---|---|
RunInfo |
IsDebugMode
Build system works in mode, so it will be easier to debug it. It may cause some strange behavior in logs, but it really helps in finding mistakes
Declaration
public const RunInfo IsDebugMode = 7
Field Value
Type | Description |
---|---|
RunInfo |
Local
Suffix in file with local properties
Declaration
public const RunInfo Local = 2
Field Value
Type | Description |
---|---|
RunInfo |
NoCheckRestoredFiles
Don't check that project dependencies build results were copied into parent project output folder. If parent project was compiled, then miss copying build results of dependency projects
Declaration
public const RunInfo NoCheckRestoredFiles = 4
Field Value
Type | Description |
---|---|
RunInfo |
NoRestore
Don't restore any dependencies
Declaration
public const RunInfo NoRestore = 3
Field Value
Type | Description |
---|---|
RunInfo |
ProjectMask
Mask for projects - main file of project (dproj/csproj/etc) should match it
Declaration
public const RunInfo ProjectMask = 1
Field Value
Type | Description |
---|---|
RunInfo |
Scope
Group of projects
Declaration
public const RunInfo Scope = 5
Field Value
Type | Description |
---|---|
RunInfo |
value__
Declaration
public int value__
Field Value
Type | Description |
---|---|
int |
Variant
Configuration to build - 'Debug' (default) or 'Release'
Declaration
public const RunInfo Variant = 0
Field Value
Type | Description |
---|---|
RunInfo |