Creates a reference to the project with the given URI.

Namespace: Sdl.ProjectAutomation.Core
Assembly: Sdl.ProjectAutomation.Core (in Sdl.ProjectAutomation.Core.dll) Version: 1.0.0.0 (1.2.3064.0)

Syntax

C#
public ProjectReference(
	Uri uri
)
Visual Basic
Public Sub New ( _
	uri As Uri _
)
Visual C++
public:
ProjectReference(
	Uri^ uri
)

Parameters

uri
Type: System..::..Uri
The Uri of the project. For file-based projects, this URI should be of the form
CopyC#
file://PROJECT_FILE_PATH
, where
CopyC#
PROJECT_FILE_PATH
is the absolute path of the project file (*.sdlproj).

See Also