- Namespace
- Buildalyzer
.Environment - Interfaces
-
- IComparable
- IFormattable
- IConvertible
- Base Types
-
- object
- ValueType
- Enum
graph TD
Base0["Enum"]-->Type
Base1["ValueType"]-->Base0
Base2["object"]-->Base1
Interface0["IComparable"]-.->Type
Interface1["IFormattable"]-.->Type
Interface2["IConvertible"]-.->Type
Type["EnvironmentPreference"]
class Type type-node
Syntax
public enum EnvironmentPreference
Fields
Name | Constant Value | Summary |
---|---|---|
Core | 0 |
This will prefer the .NET Core SDK if it's available and will
use the .NET Framework build tools if the project type is known
not to support the .NET Core SDK or the .NET Core SDK can't be found.
static
|
Framework | 1 |
This will prefer the .NET Framework build tools if they're available and will
use the .NET Code SDK if the project type is known
not to support the .NET Framework build tools or the .NET Framework build tools can't be found.
static
|