53 lines
1.4 KiB
C#
53 lines
1.4 KiB
C#
// Copyright (c) .NET Foundation and contributors. All rights reserved.
|
|
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
|
|
|
using System;
|
|
using Microsoft.DotNet.PlatformAbstractions;
|
|
|
|
namespace Microsoft.DotNet.Cli.Build.Framework
|
|
{
|
|
public static class CurrentArchitecture
|
|
{
|
|
public static BuildArchitecture Current
|
|
{
|
|
get
|
|
{
|
|
return DetermineCurrentArchitecture();
|
|
}
|
|
}
|
|
|
|
public static bool Isx86
|
|
{
|
|
get
|
|
{
|
|
var archName = RuntimeEnvironment.RuntimeArchitecture;
|
|
return string.Equals(archName, "x86", StringComparison.OrdinalIgnoreCase);
|
|
}
|
|
}
|
|
|
|
public static bool Isx64
|
|
{
|
|
get
|
|
{
|
|
var archName = RuntimeEnvironment.RuntimeArchitecture;
|
|
return string.Equals(archName, "x64", StringComparison.OrdinalIgnoreCase);
|
|
}
|
|
}
|
|
|
|
private static BuildArchitecture DetermineCurrentArchitecture()
|
|
{
|
|
if (Isx86)
|
|
{
|
|
return BuildArchitecture.x86;
|
|
}
|
|
else if (Isx64)
|
|
{
|
|
return BuildArchitecture.x64;
|
|
}
|
|
else
|
|
{
|
|
return default(BuildArchitecture);
|
|
}
|
|
}
|
|
}
|
|
}
|