// 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, } }