Bagikan melalui


ProjectFileConverter.ConvertInMemory Method (Engine, ProjectLoadSettings)

Note: This API is now obsolete.

This is the entry point method, which performs the project file format conversion. This method will simply create a new MSBuild Project object in memory, instead of trying to write it to disk.

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.Conversion
Assembly:  Microsoft.Build.Conversion.Core (in Microsoft.Build.Conversion.Core.dll)

Syntax

'Declaration
<ObsoleteAttribute("Use parameterless ConvertInMemory() method instead")> _
Public Function ConvertInMemory ( _
    engine As Engine, _
    projectLoadSettings As ProjectLoadSettings _
) As Project
[ObsoleteAttribute("Use parameterless ConvertInMemory() method instead")]
public Project ConvertInMemory(
    Engine engine,
    ProjectLoadSettings projectLoadSettings
)
[ObsoleteAttribute(L"Use parameterless ConvertInMemory() method instead")]
public:
Project^ ConvertInMemory(
    Engine^ engine, 
    ProjectLoadSettings projectLoadSettings
)
[<ObsoleteAttribute("Use parameterless ConvertInMemory() method instead")>]
member ConvertInMemory : 
        engine:Engine * 
        projectLoadSettings:ProjectLoadSettings -> Project
public function ConvertInMemory(
    engine : Engine, 
    projectLoadSettings : ProjectLoadSettings
) : Project

Parameters

Return Value

Type: Microsoft.Build.BuildEngine.Project
Returns the converted Project.

.NET Framework Security

See Also

Reference

ProjectFileConverter Class

ConvertInMemory Overload

Microsoft.Build.Conversion Namespace