ProjectLoadSettings Enumeration

Flags for controlling the project load.

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.

This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.

Namespace:  Microsoft.Build.Evaluation
Assembly:  Microsoft.Build (in Microsoft.Build.dll)

Syntax

'Declaration
<FlagsAttribute> _
Public Enumeration ProjectLoadSettings
[FlagsAttribute]
public enum ProjectLoadSettings
[FlagsAttribute]
public enum class ProjectLoadSettings
[<FlagsAttribute>]
type ProjectLoadSettings
public enum ProjectLoadSettings

Members

Member name Description
Default Normal load. This is the default.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.
IgnoreMissingImports Ignore nonexistent targets files when evaluating the project.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.
RecordDuplicateButNotCircularImports Indicates that imports including duplicate, but not circular, imports on the ImportsIncludingDuplicates property should be recordedMSBuild 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.
RejectCircularImports Indicates that an exception will be thrown if any circular imports are detectedMSBuild 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.

Remarks

This is a "flags" enum, allowing future settings to be added in an additive, non breaking fashion.

See Also

Reference

Microsoft.Build.Evaluation Namespace