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.
Показать файл Открыть проект Примеры использования класса

Открытые свойства

Свойство Тип Описание
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