File: src\runtime\src\coreclr\tools\Common\TypeSystem\Common\TargetArchitecture.cs
Web Access
Project: src\runtime\src\coreclr\nativeaot\System.Private.TypeLoader\src\System.Private.TypeLoader.csproj (System.Private.TypeLoader)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.

namespace Internal.TypeSystem
{
    /// <summary>
    /// Specifies the target CPU architecture.
    /// </summary>
    public enum TargetArchitecture
    {
        Unknown,
        ARM,
        ARM64,
        X64,
        X86,
        Wasm32,
        LoongArch64,
        RiscV64,
    }
}