API Proposal: Add PlatformID.Unknown value #38984
Labels
api-approved
API was approved in API review, it can be implemented
arch-wasm
WebAssembly architecture
area-System.Runtime
Milestone
Background and Motivation
With the addition of more platforms to dotnet/runtime the existing .NET Framework APIs are missing way to express them. Instead of duplicating logic between
System.Runtime.InteropServices.RuntimeInformation
API and old .NET Framework APIs we introduce generic undefined value for old APIs.Proposed API
namespace System { public enum PlatformID { MacOSX = 6, + Unknown = 7, }
The text was updated successfully, but these errors were encountered: