C# 클래스 CodeCake.EnvironmentAddedPath

Captures a path that must be added to the PATH environment variable. When IsDynamicPattern is true, the path is expansed and/or gobbled dynamically instead of beeing resolved at the very beginning of the build script execution.
파일 보기 프로젝트 열기: SimpleGitVersion/CodeCake 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
IsDynamicPattern bool
Path string

공개 메소드들

메소드 설명
EnvironmentAddedPath ( string path, bool isDynamic ) : System

Initializes a new EnvironmentAddedPath.

메소드 상세

EnvironmentAddedPath() 공개 메소드

Initializes a new EnvironmentAddedPath.
public EnvironmentAddedPath ( string path, bool isDynamic ) : System
path string Path or pattern with * and ? wildcards.
isDynamic bool True if the pattern must be expansed/gobbled dynamically.
리턴 System

프로퍼티 상세

IsDynamicPattern 공개적으로 프로퍼티

Whether the path is a dynamic one: it must be challenged each time it is needed instead of being expansed/globbed at the start of the build script (folders and files must pre-exist on the file system).
public bool IsDynamicPattern
리턴 bool

Path 공개적으로 프로퍼티

The path (may contain * and ? wildcards).
public string Path
리턴 string