PathAliases.

RemoveFromPath(ICakeContext, DirectoryPath) Method

Summary

Removes a value from the path.
Assembly
Cake.Path.dll
Namespace
Cake.Path
Containing Type
PathAliases

Syntax

public static void RemoveFromPath(this ICakeContext context, DirectoryPath value)

Examples

Task("RemoveFromPath")
  .Does(() => 
  {
     RemoveFromPath("C:\\Python27\\");
  });

Attributes

Type Description
CakeMethodAliasAttribute

Parameters

Name Type Description
context ICakeContext The context.
value DirectoryPath Item to remove.

Return Value

Type Description
void