forked from BeyondDimension/SteamTools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathReleaseType.cs
More file actions
64 lines (55 loc) · 1.89 KB
/
ReleaseType.cs
File metadata and controls
64 lines (55 loc) · 1.89 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
//namespace System.Application
//{
// /// <summary>
// /// 发行版本类型
// /// <para>枚举常量命名参考:https://dotnet.microsoft.com/download/dotnet/5.0 </para>
// /// </summary>
// [Flags]
// [Obsolete]
// public enum ReleaseType
// {
// /// <summary>
// /// Windows 64 bit
// /// </summary>
// Windows_x64 = 4,
// /// <summary>
// /// Windows 32 bit
// /// </summary>
// Windows_x86 = 8,
// /// <summary>
// /// Windows平台下当用户不知道是否运行的64位系统时推荐使用此版本(不兼容<see cref="Windows_Arm64"/>),可通过后续更新到 <see cref="Windows_x64"/> 或 <see cref="Windows_x86"/>
// /// </summary>
// Windows_Any = Windows_x64 | Windows_x86,
// /// <summary>
// /// Windows ARM 64 bit
// /// <para>例如设备:Surface Pro X</para>
// /// </summary>
// Windows_Arm64 = 16,
// /// <summary>
// /// 使用 Intel 的 Mac 设备
// /// </summary>
// macOS_x64 = 32,
// /// <summary>
// /// 使用 Apple Silicon 的 Mac 设备
// /// </summary>
// macOS_Arm64 = 64,
// /// <summary>
// /// Linux 64 bit
// /// </summary>
// Linux_x64 = 128,
// /// <summary>
// /// Apple (iPhone / iPad / iPod touch)
// /// </summary>
// iOS = 256,
// /// <summary>
// /// Android arm64-v8a
// /// <para>例如高通骁龙808,810等2015年后发布的Soc</para>
// /// </summary>
// Android_Arm64 = 512,
// /// <summary>
// /// Android armeabi-v7a
// /// <para>安卓平台下当用户不知道是否运行的64位系统时推荐使用此版本,可通过后续更新到 <see cref="Android_Arm64"/></para>
// /// </summary>
// Android_Arm32 = 1024,
// }
//}