2017-03-03 05:04:03 +00:00
|
|
|
// 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.
|
|
|
|
|
2016-02-20 01:00:41 +00:00
|
|
|
namespace Microsoft.DotNet.Cli.Build.Framework
|
|
|
|
{
|
|
|
|
public enum BuildArchitecture
|
|
|
|
{
|
|
|
|
x86 = 1,
|
|
|
|
x64 = 2
|
|
|
|
}
|
2017-03-03 04:35:20 +00:00
|
|
|
}
|