Loads an extension project from local or UNC path
            
 
    Namespace: 
   Hummingbird.TestFramework.ExtensionProject
    Assembly:
   Hummingbird.TestFramework (in Hummingbird.TestFramework.dll) Version: 1.2.0.0
Syntaxpublic static Task<Project> LoadFrom(
	string path
)
Public Shared Function LoadFrom ( 
	path As String
) As Task(Of Project)
public:
static Task<Project^>^ LoadFrom(
	String^ path
)
static member LoadFrom : 
        path : string -> Task<Project> 
Parameters
- path
 - Type: SystemString
The absolute path (local or UNC path) of the extension project. 
Return Value
Type: 
TaskProjectA 
Project object, represents an extension project loaded from the ginven path.
See Also