C# Class CodeCake.AddPathAttribute

Inheritance: System.Attribute
Mostrar archivo Open project: SimpleGitVersion/CodeCake

Public Methods

Method Description
AddPathAttribute ( string path, bool isDynamicPath = true ) : System

Initializes a new AddPathAttribute with a path that can be a pattern with * and ?. Examples: [AddPath( "%LOCALAPPDATA%/NuGet" )] or [AddPath( "packages/**/tools/**" )].

Method Details

AddPathAttribute() public method

Initializes a new AddPathAttribute with a path that can be a pattern with * and ?. Examples: [AddPath( "%LOCALAPPDATA%/NuGet" )] or [AddPath( "packages/**/tools/**" )].
public AddPathAttribute ( string path, bool isDynamicPath = true ) : System
path string /// The path that will be expansed in PATH environement variable. /// It it relative to the Solution directory. ///
isDynamicPath bool False to take only pre-existing folders on the file system.
return System