ProjectCollection.LoadProject Method (XmlReader, String)
Evaluates a project from the source code read from the given XML reader. The source code is evaluated with the global properties of this project collection and the given tools version.
MSBuild is now included in Visual Studio instead of the .NET Framework.You can use MSBuild 12.0 side-by-side with versions previously deployed with the .NET Framework.For more information, see What's New in MSBuild 12.0.
Namespace: Microsoft.Build.Evaluation
Assembly: Microsoft.Build (in Microsoft.Build.dll)
Syntax
'Declaration
Public Function LoadProject ( _
xmlReader As XmlReader, _
toolsVersion As String _
) As Project
public Project LoadProject(
XmlReader xmlReader,
string toolsVersion
)
public:
Project^ LoadProject(
XmlReader^ xmlReader,
String^ toolsVersion
)
member LoadProject :
xmlReader:XmlReader *
toolsVersion:string -> Project
public function LoadProject(
xmlReader : XmlReader,
toolsVersion : String
) : Project
Parameters
xmlReader
Type: System.Xml.XmlReaderXml reader to read project source code from.
toolsVersion
Type: System.StringThe tools version to use. May be null.
Return Value
Type: Microsoft.Build.Evaluation.Project
Returns the new project.
Remarks
The project is added to this project collection when either this project or the given project root is given the full path to a project file.
In the MSBuild versions that were delivered with .Net 4.5 and Visual Studio 12.0, you must call UnloadProject before the ProjectCollection goes out of scope.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see dd66cd4c-b087-415f-9c3e-94e3a1835f74.