Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Returns whether the system is running in single- or multi-processor mode.
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.Framework
Assembly: Microsoft.Build.Framework (in Microsoft.Build.Framework.dll)
Syntax
'Declaration
ReadOnly Property IsRunningMultipleNodes As Boolean
bool IsRunningMultipleNodes { get; }
property bool IsRunningMultipleNodes {
bool get ();
}
abstract IsRunningMultipleNodes : bool with get
function get IsRunningMultipleNodes () : boolean
Property Value
Type: System.Boolean
true if the system is running in multi-processor mode, false otherwise.
Remarks
The build engine is in single-processor mode (IsRunningMultipleNodes = false) when it is initialized with the number of CPUs equal to 1 and the build engine is not a child engine. The build engine is in multi-processor mode (IsRunningMultipleNodes = true) when it is initialized with a number of CPUs greater than 1, or when the build engine is a child engine.
.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.