Share via


Project.HasToolsVersionAttribute Property

Gets whether the Project file has the ToolsVersion XML attribute.

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

Syntax

'Declaration
Public ReadOnly Property HasToolsVersionAttribute As Boolean
public bool HasToolsVersionAttribute { get; }
public:
property bool HasToolsVersionAttribute {
    bool get ();
}
member HasToolsVersionAttribute : bool with get
function get HasToolsVersionAttribute () : boolean

Property Value

Type: System.Boolean
true if the project has the ToolsVersion attribute; otherwise, false.

Remarks

An example ToolsVersion attribute is Project ToolsVersion="3.5". This attribute enables projects to target .NET Framework versions, currently 2.0, 3.0, and 3.5. For more information about ToolsVersion, see Building for Specific .NET Frameworks.

.NET Framework Security

See Also

Reference

Project Class

Microsoft.Build.BuildEngine Namespace