折叠全部 展开全部
Win-10.0.22621.0 Quicker-1.44.13.0 动作ID:32e3bd82-843d-47b3-bffd-af542bba2932 来源动作: v0
Log文件路径:C:\Users\Administrator\AppData\Local\Temp\quicker_闹钟待完善_072310-481_log.html 定位文件 复制文件 上传并复制网址
开始执行动作:闹钟待完善 2025-06-27 19:23:10
7动作初始化
70运行C#代码
[in]失败后停止【值/表达式】False
[in]运行模式【值/表达式】normal_roslyn
[in]脚本内容【值/表达式】using System;\r\n
using System.Threading;\r\n
using System.Windows.Forms;\r\n
\r\n
public class AlarmScript\r\n
{\r\n
public static void Main()\r\n
{\r\n
int hour = 9; // 默认小时\r\n
int minute = 0; // 默认分钟\r\n
\r\n
try\r\n
{\r\n
// 使用 VariableService 获取 Quicker 变量值\r\n
object varHour = Quicker.Public.VariableService.Instance.GetVariableValue("Hour");\r\n
object varMinute = Quicker.Public.VariableService.Instance.GetVariableValue("Minute");\r\n
\r\n
if (varHour == null || varMinute == null)\r\n
throw new Exception("输入为空");\r\n
\r\n
hour = Convert.ToInt32(varHour);\r\n
minute = Convert.ToInt32(varMinute);\r\n
}\r\n
catch\r\n
{\r\n
MessageBox.Show("请确保 Hour 和 Minute 是有效的数字", "⏰ 输入错误", MessageBoxButtons.OK, MessageBoxIcon.Error);\r\n
return;\r\n
}\r\n
\r\n
// 构造目标时间\r\n
DateTime alarmTime = new DateTime(DateTime.Now.Year, DateTime.Now.Month, DateTime.Now.Day, hour, minute, 0);\r\n
\r\n
// 如果时间已过,则设为明天\r\n
if (alarmTime < DateTime.Now)\r\n
{\r\n
alarmTime = alarmTime.AddDays(1);\r\n
}\r\n
\r\n
MessageBox.Show($"闹钟已设定,将在 {alarmTime:HH:mm:ss} 提醒", "⏰ 闹钟设定成功", MessageBoxButtons.OK, MessageBoxIcon.Information);\r\n
\r\n
// 每秒检测一次是否到达时间\r\n
while (true)\r\n
{\r\n
if (DateTime.Now >= alarmTime)\r\n
{\r\n
// 弹出提醒\r\n
MessageBox.Show("⏰ 闹钟响了!你设定的时间到了!", "⏰ 闹钟提醒", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);\r\n
Console.Beep(800, 1000); // 系统蜂鸣声\r\n
break;\r\n
}\r\n
\r\n
Thread.Sleep(1000); // 每秒检查一次\r\n
}\r\n
}\r\n
}\r\n
[in]执行线程【值/表达式】auto
线程类型:Ui
[in]引用DLL库【值/表达式】
异常:编译失败, Compilation, (36,30): error CS0234: The type or namespace name 'VariableService' does not exist in the namespace 'Quicker.Public' (are you missing an assembly reference?)
(37,32): error CS0234: The type or namespace name 'VariableService' does not exist in the namespace 'Quicker.Public' (are you missing an assembly reference?)
代码: 1. using System;
2. using System.Text;
3. using System.Reflection;
4. using System.IO;
5. using System.Net;
6. using System.Net.Http;
7. using System.Collections;
8. using System.Collections.Generic;
9. using System.Collections.Concurrent;
10. using System.Text.RegularExpressions;
11. using System.Threading.Tasks;
12. using System.Linq;
13. using System.Threading;
14. using System.Windows.Forms;
15.
16. namespace __ScriptExecution {
17.
18. public class __2x0fjc5b
19. {
20.
21.
22. // using System;
23. // using System.Threading;
24. // using System.Windows.Forms;
25.
26. public class AlarmScript
27. {
28. public static void Main()
29. {
30. int hour = 9; // 默认小时
31. int minute = 0; // 默认分钟
32.
33. try
34. {
35. // 使用 VariableService 获取 Quicker 变量值
36. object varHour = Quicker.Public.VariableService.Instance.GetVariableValue("Hour");
37. object varMinute = Quicker.Public.VariableService.Instance.GetVariableValue("Minute");
38.
39. if (varHour == null || varMinute == null)
40. throw new Exception("输入为空");
41.
42. hour = Convert.ToInt32(varHour);
43. minute = Convert.ToInt32(varMinute);
44. }
45. catch
46. {
47. MessageBox.Show("请确保 Hour 和 Minute 是有效的数字", "⏰ 输入错误", MessageBoxButtons.OK, MessageBoxIcon.Error);
48. return;
49. }
50.
51. // 构造目标时间
52. DateTime alarmTime = new DateTime(DateTime.Now.Year, DateTime.Now.Month, DateTime.Now.Day, hour, minute, 0);
53.
54. // 如果时间已过,则设为明天
55. if (alarmTime < DateTime.Now)
56. {
57. alarmTime = alarmTime.AddDays(1);
58. }
59.
60. MessageBox.Show($"闹钟已设定,将在 {alarmTime:HH:mm:ss} 提醒", "⏰ 闹钟设定成功", MessageBoxButtons.OK, MessageBoxIcon.Information);
61.
62. // 每秒检测一次是否到达时间
63. while (true)
64. {
65. if (DateTime.Now >= alarmTime)
66. {
67. // 弹出提醒
68. MessageBox.Show("⏰ 闹钟响了!你设定的时间到了!", "⏰ 闹钟提醒", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
69. Console.Beep(800, 1000); // 系统蜂鸣声
70. break;
71. }
72.
73. Thread.Sleep(1000); // 每秒检查一次
74. }
75. }
76. }
77.
78.
79.
80. }
81. }
当前引用:C:\Program Files\Quicker\CommunityToolkit.Mvvm.dll
C:\Program Files\Quicker\CSScriptLibrary.dll
C:\Program Files\Quicker\Dapper.StrongName.dll
C:\Program Files\Quicker\DotNetProjects.SVGImage.dll
C:\Program Files\Quicker\DotNetProjects.Wpf.Extended.Toolkit.dll
C:\Program Files\Quicker\FlaUI.Core.dll
C:\Program Files\Quicker\FontAwesomeIconsWpf.dll
C:\Program Files\Quicker\GongSolutions.WPF.DragDrop.dll
C:\Program Files\Quicker\HandyControl.dll
C:\Program Files\Quicker\HL.dll
C:\Program Files\Quicker\ICSharpCode.AvalonEdit.dll
C:\Program Files\Quicker\log4net.dll
C:\Program Files\Quicker\MdXaml.dll
C:\Program Files\Quicker\Microsoft.Bcl.AsyncInterfaces.dll
C:\Program Files\Quicker\Microsoft.CodeAnalysis.CSharp.dll
C:\Program Files\Quicker\Microsoft.CodeAnalysis.dll
C:\Program Files\Quicker\Microsoft.Web.WebView2.Core.dll
C:\Program Files\Quicker\Microsoft.WindowsAPICodePack.dll
C:\Program Files\Quicker\Microsoft.WindowsAPICodePack.Shell.dll
C:\Program Files\Quicker\NamedPipeWrapper.dll
C:\Program Files\Quicker\NAudio.dll
C:\Program Files\Quicker\Newtonsoft.Json.dll
C:\Program Files\Quicker\Ninject.dll
C:\Program Files\Quicker\NPOI.dll
C:\Program Files\Quicker\PInvoke.User32.dll
C:\Program Files\Quicker\PInvoke.Windows.Core.dll
C:\Program Files\Quicker\Quicker.3rd.dll
C:\Program Files\Quicker\Quicker.Common.dll
C:\Program Files\Quicker\Quicker.exe
C:\Program Files\Quicker\Quicker.Public.dll
C:\Program Files\Quicker\System.Buffers.dll
C:\Program Files\Quicker\System.Collections.Immutable.dll
C:\Program Files\Quicker\System.Data.SQLite.dll
C:\Program Files\Quicker\System.Memory.dll
C:\Program Files\Quicker\System.Net.Http.Formatting.dll
C:\Program Files\Quicker\System.Numerics.Vectors.dll
C:\Program Files\Quicker\System.Reflection.Metadata.dll
C:\Program Files\Quicker\System.Runtime.CompilerServices.Unsafe.dll
C:\Program Files\Quicker\System.Threading.Tasks.Extensions.dll
C:\Program Files\Quicker\ToastNotifications.dll
C:\Program Files\Quicker\ToastNotifications.Messages.dll
C:\Program Files\Quicker\WindowsInput.dll
C:\Program Files\Quicker\Z.Expressions.Eval.dll
C:\Windows\Microsoft.Net\assembly\GAC_64\PresentationCore\v4.0_4.0.0.0__31bf3856ad364e35\PresentationCore.dll
C:\Windows\Microsoft.Net\assembly\GAC_64\System.Data\v4.0_4.0.0.0__b77a5c561934e089\System.Data.dll
C:\Windows\Microsoft.Net\assembly\GAC_64\System.EnterpriseServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.EnterpriseServices.dll
C:\Windows\Microsoft.Net\assembly\GAC_64\System.Transactions\v4.0_4.0.0.0__b77a5c561934e089\System.Transactions.dll
C:\Windows\Microsoft.Net\assembly\GAC_64\System.Web\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.dll
C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Accessibility\v4.0_4.0.0.0__b03f5f7f11d50a3a\Accessibility.dll
C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.CSharp\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.CSharp.dll
C:\Windows\Microsoft.Net\assembly\GAC_MSIL\mscorlib.resources\v4.0_4.0.0.0_zh-Hans_b77a5c561934e089\mscorlib.resources.dll
C:\Windows\Microsoft.Net\assembly\GAC_MSIL\netstandard\v4.0_2.0.0.0__cc7b13ffcd2ddd51\netstandard.dll
C:\Windows\Microsoft.Net\assembly\GAC_MSIL\PresentationCore.resources\v4.0_4.0.0.0_zh-Hans_31bf3856ad364e35\PresentationCore.resources.dll
C:\Windows\Microsoft.Net\assembly\GAC_MSIL\PresentationFramework.Aero2\v4.0_4.0.0.0__31bf3856ad364e35\PresentationFramework.Aero2.dll
C:\Windows\Microsoft.Net\assembly\GAC_MSIL\PresentationFramework.resources\v4.0_4.0.0.0_zh-Hans_31bf3856ad364e35\PresentationFramework.resources.dll
C:\Windows\Microsoft.Net\assembly\GAC_MSIL\PresentationFramework\v4.0_4.0.0.0__31bf3856ad364e35\PresentationFramework.dll
C:\Windows\Microsoft.Net\assembly\GAC_MSIL\PresentationFramework-SystemData\v4.0_4.0.0.0__b77a5c561934e089\PresentationFramework-SystemData.dll
C:\Windows\Microsoft.Net\assembly\GAC_MSIL\PresentationFramework-SystemXml\v4.0_4.0.0.0__b77a5c561934e089\PresentationFramework-SystemXml.dll
C:\Windows\Microsoft.Net\assembly\GAC_MSIL\PresentationFramework-SystemXmlLinq\v4.0_4.0.0.0__b77a5c561934e089\PresentationFramework-SystemXmlLinq.dll
C:\Windows\Microsoft.Net\assembly\GAC_MSIL\SMDiagnostics\v4.0_4.0.0.0__b77a5c561934e089\SMDiagnostics.dll
C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Configuration\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.dll
C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Core\v4.0_4.0.0.0__b77a5c561934e089\System.Core.dll
C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Drawing\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.dll
C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Globalization\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Globalization.dll
C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Net.Http\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Net.Http.dll
C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Numerics\v4.0_4.0.0.0__b77a5c561934e089\System.Numerics.dll
C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Caching\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Runtime.Caching.dll
C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.InteropServices.RuntimeInformation\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Runtime.InteropServices.RuntimeInformation.dll
C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.InteropServices.WindowsRuntime\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Runtime.InteropServices.WindowsRuntime.dll
C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.Serialization.dll
C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.WindowsRuntime\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.WindowsRuntime.dll
C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Runtime.dll
C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Security.Cryptography.Algorithms\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Security.Cryptography.Algorithms.dll
C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ValueTuple\v4.0_4.0.0.0__cc7b13ffcd2ddd51\System.ValueTuple.dll
C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Windows.Controls.Ribbon\v4.0_4.0.0.0__b77a5c561934e089\System.Windows.Controls.Ribbon.dll
C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Windows.Forms\v4.0_4.0.0.0__b77a5c561934e089\System.Windows.Forms.dll
C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xaml\v4.0_4.0.0.0__b77a5c561934e089\System.Xaml.dll
C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml.Linq\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.Linq.dll
C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.dll
C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System\v4.0_4.0.0.0__b77a5c561934e089\System.dll
C:\Windows\Microsoft.Net\assembly\GAC_MSIL\UIAutomationProvider\v4.0_4.0.0.0__31bf3856ad364e35\UIAutomationProvider.dll
C:\Windows\Microsoft.Net\assembly\GAC_MSIL\UIAutomationTypes.resources\v4.0_4.0.0.0_zh-Hans_31bf3856ad364e35\UIAutomationTypes.resources.dll
C:\Windows\Microsoft.Net\assembly\GAC_MSIL\UIAutomationTypes\v4.0_4.0.0.0__31bf3856ad364e35\UIAutomationTypes.dll
C:\Windows\Microsoft.Net\assembly\GAC_MSIL\WindowsBase\v4.0_4.0.0.0__31bf3856ad364e35\WindowsBase.dll
C:\Windows\Microsoft.Net\assembly\GAC_MSIL\WindowsFormsIntegration\v4.0_4.0.0.0__31bf3856ad364e35\WindowsFormsIntegration.dll
C:\Windows\Microsoft.NET\Framework64\v4.0.30319\Microsoft.CSharp.dll
C:\Windows\Microsoft.NET\Framework64\v4.0.30319\mscorlib.dll
C:\Windows\Microsoft.NET\Framework64\v4.0.30319\System.Core.dll
C:\Windows\Microsoft.NET\Framework64\v4.0.30319\System.dll
C:\Windows\Microsoft.NET\Framework64\v4.0.30319\System.Net.Http.dll
C:\Windows\system32\WinMetadata\Windows.ApplicationModel.winmd
C:\Windows\system32\WinMetadata\Windows.Data.winmd
C:\Windows\system32\WinMetadata\Windows.Devices.winmd
C:\Windows\system32\WinMetadata\Windows.Foundation.winmd
C:\Windows\system32\WinMetadata\Windows.Graphics.winmd
C:\Windows\system32\WinMetadata\Windows.Management.winmd
C:\Windows\system32\WinMetadata\Windows.Media.winmd
C:\Windows\system32\WinMetadata\Windows.Storage.winmd
C:\Windows\system32\WinMetadata\Windows.UI.winmd
在 rTc1KTvzg91oKUEE8r7.TjNcIivIvOgHbN6UMi2.EsrWRQiFgnX(String , String , String )
在 rTc1KTvzg91oKUEE8r7.TjNcIivIvOgHbN6UMi2.dWDWRgENtHN(String , String , ActionExecuteContext )
在 Quicker.Domain.Actions.X.BuiltinRunners.Other.RunCsScriptStep.r52t34kc9u4(ActionStep , ActionExecuteContext , XAction , String , ThreadType )
在 Quicker.Domain.Actions.X.BuiltinRunners.Other.RunCsScriptStep.<>c__DisplayClass62_0.s39AhW2xkks()
在 Quicker.Domain.Actions.X.XActionHelper.ExecuteCommonAction(ActionExecuteContext context, ActionStep step, XAction action, Func`1 actionFunc, Action successAction, Action failAction, StepInParamDef stopIfErrorParam, StepOutParamDef isSuccessOutputParam)
步骤(sys:csscript)执行失败,原因:编译失败, Compilation, (36,30): error CS0234: The type or namespace name 'VariableService' does not exist in the namespace 'Quicker.Public' (are you missing an assembly reference?)
(37,32): error CS0234: The type or namespace name 'VariableService' does not exist in the namespace 'Quicker.Public' (are you missing an assembly reference?)
代码: 1. using System;
2. using System.Text;
3. using System.Reflection;
4. using System.IO;
5. using System.Net;
6. using System.Net.Http;
7. using System.Collections;
8. using System.Collections.Generic;
9. using System.Collections.Concurrent;
10. using System.Text.RegularExpressions;
11. using System.Threading.Tasks;
12. using System.Linq;
13. using System.Threading;
14. using System.Windows.Forms;
15.
16. namespace __ScriptExecution {
17.
18. public class __2x0fjc5b
19. {
20.
21.
22. // using System;
23. // using System.Threading;
24. // using System.Windows.Forms;
25.
26. public class AlarmScript
27. {
28. public static void Main()
29. {
30. int hour = 9; // 默认小时
31. int minute = 0; // 默认分钟
32.
33. try
34. {
35. // 使用 VariableService 获取 Quicker 变量值
36. object varHour = Quicker.Public.VariableService.Instance.GetVariableValue("Hour");
37. object varMinute = Quicker.Public.VariableService.Instance.GetVariableValue("Minute");
38.
39. if (varHour == null || varMinute == null)
40. throw new Exception("输入为空");
41.
42. hour = Convert.ToInt32(varHour);
43. minute = Convert.ToInt32(varMinute);
44. }
45. catch
46. {
47. MessageBox.Show("请确保 Hour 和 Minute 是有效的数字", "⏰ 输入错误", MessageBoxButtons.OK, MessageBoxIcon.Error);
48. return;
49. }
50.
51. // 构造目标时间
52. DateTime alarmTime = new DateTime(DateTime.Now.Year, DateTime.Now.Month, DateTime.Now.Day, hour, minute, 0);
53.
54. // 如果时间已过,则设为明天
55. if (alarmTime < DateTime.Now)
56. {
57. alarmTime = alarmTime.AddDays(1);
58. }
59.
60. MessageBox.Show($"闹钟已设定,将在 {alarmTime:HH:mm:ss} 提醒", "⏰ 闹钟设定成功", MessageBoxButtons.OK, MessageBoxIcon.Information);
61.
62. // 每秒检测一次是否到达时间
63. while (true)
64. {
65. if (DateTime.Now >= alarmTime)
66. {
67. // 弹出提醒
68. MessageBox.Show("⏰ 闹钟响了!你设定的时间到了!", "⏰ 闹钟提醒", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
69. Console.Beep(800, 1000); // 系统蜂鸣声
70. break;
71. }
72.
73. Thread.Sleep(1000); // 每秒检查一次
74. }
75. }
76. }
77.
78.
79.
80. }
81. }
当前引用:C:\Program Files\Quicker\CommunityToolkit.Mvvm.dll
C:\Program Files\Quicker\CSScriptLibrary.dll
C:\Program Files\Quicker\Dapper.StrongName.dll
C:\Program Files\Quicker\DotNetProjects.SVGImage.dll
C:\Program Files\Quicker\DotNetProjects.Wpf.Extended.Toolkit.dll
C:\Program Files\Quicker\FlaUI.Core.dll
C:\Program Files\Quicker\FontAwesomeIconsWpf.dll
C:\Program Files\Quicker\GongSolutions.WPF.DragDrop.dll
C:\Program Files\Quicker\HandyControl.dll
C:\Program Files\Quicker\HL.dll
C:\Program Files\Quicker\ICSharpCode.AvalonEdit.dll
C:\Program Files\Quicker\log4net.dll
C:\Program Files\Quicker\MdXaml.dll
C:\Program Files\Quicker\Microsoft.Bcl.AsyncInterfaces.dll
C:\Program Files\Quicker\Microsoft.CodeAnalysis.CSharp.dll
C:\Program Files\Quicker\Microsoft.CodeAnalysis.dll
C:\Program Files\Quicker\Microsoft.Web.WebView2.Core.dll
C:\Program Files\Quicker\Microsoft.WindowsAPICodePack.dll
C:\Program Files\Quicker\Microsoft.WindowsAPICodePack.Shell.dll
C:\Program Files\Quicker\NamedPipeWrapper.dll
C:\Program Files\Quicker\NAudio.dll
C:\Program Files\Quicker\Newtonsoft.Json.dll
C:\Program Files\Quicker\Ninject.dll
C:\Program Files\Quicker\NPOI.dll
C:\Program Files\Quicker\PInvoke.User32.dll
C:\Program Files\Quicker\PInvoke.Windows.Core.dll
C:\Program Files\Quicker\Quicker.3rd.dll
C:\Program Files\Quicker\Quicker.Common.dll
C:\Program Files\Quicker\Quicker.exe
C:\Program Files\Quicker\Quicker.Public.dll
C:\Program Files\Quicker\System.Buffers.dll
C:\Program Files\Quicker\System.Collections.Immutable.dll
C:\Program Files\Quicker\System.Data.SQLite.dll
C:\Program Files\Quicker\System.Memory.dll
C:\Program Files\Quicker\System.Net.Http.Formatting.dll
C:\Program Files\Quicker\System.Numerics.Vectors.dll
C:\Program Files\Quicker\System.Reflection.Metadata.dll
C:\Program Files\Quicker\System.Runtime.CompilerServices.Unsafe.dll
C:\Program Files\Quicker\System.Threading.Tasks.Extensions.dll
C:\Program Files\Quicker\ToastNotifications.dll
C:\Program Files\Quicker\ToastNotifications.Messages.dll
C:\Program Files\Quicker\WindowsInput.dll
C:\Program Files\Quicker\Z.Expressions.Eval.dll
C:\Windows\Microsoft.Net\assembly\GAC_64\PresentationCore\v4.0_4.0.0.0__31bf3856ad364e35\PresentationCore.dll
C:\Windows\Microsoft.Net\assembly\GAC_64\System.Data\v4.0_4.0.0.0__b77a5c561934e089\System.Data.dll
C:\Windows\Microsoft.Net\assembly\GAC_64\System.EnterpriseServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.EnterpriseServices.dll
C:\Windows\Microsoft.Net\assembly\GAC_64\System.Transactions\v4.0_4.0.0.0__b77a5c561934e089\System.Transactions.dll
C:\Windows\Microsoft.Net\assembly\GAC_64\System.Web\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.dll
C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Accessibility\v4.0_4.0.0.0__b03f5f7f11d50a3a\Accessibility.dll
C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.CSharp\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.CSharp.dll
C:\Windows\Microsoft.Net\assembly\GAC_MSIL\mscorlib.resources\v4.0_4.0.0.0_zh-Hans_b77a5c561934e089\mscorlib.resources.dll
C:\Windows\Microsoft.Net\assembly\GAC_MSIL\netstandard\v4.0_2.0.0.0__cc7b13ffcd2ddd51\netstandard.dll
C:\Windows\Microsoft.Net\assembly\GAC_MSIL\PresentationCore.resources\v4.0_4.0.0.0_zh-Hans_31bf3856ad364e35\PresentationCore.resources.dll
C:\Windows\Microsoft.Net\assembly\GAC_MSIL\PresentationFramework.Aero2\v4.0_4.0.0.0__31bf3856ad364e35\PresentationFramework.Aero2.dll
C:\Windows\Microsoft.Net\assembly\GAC_MSIL\PresentationFramework.resources\v4.0_4.0.0.0_zh-Hans_31bf3856ad364e35\PresentationFramework.resources.dll
C:\Windows\Microsoft.Net\assembly\GAC_MSIL\PresentationFramework\v4.0_4.0.0.0__31bf3856ad364e35\PresentationFramework.dll
C:\Windows\Microsoft.Net\assembly\GAC_MSIL\PresentationFramework-SystemData\v4.0_4.0.0.0__b77a5c561934e089\PresentationFramework-SystemData.dll
C:\Windows\Microsoft.Net\assembly\GAC_MSIL\PresentationFramework-SystemXml\v4.0_4.0.0.0__b77a5c561934e089\PresentationFramework-SystemXml.dll
C:\Windows\Microsoft.Net\assembly\GAC_MSIL\PresentationFramework-SystemXmlLinq\v4.0_4.0.0.0__b77a5c561934e089\PresentationFramework-SystemXmlLinq.dll
C:\Windows\Microsoft.Net\assembly\GAC_MSIL\SMDiagnostics\v4.0_4.0.0.0__b77a5c561934e089\SMDiagnostics.dll
C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Configuration\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.dll
C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Core\v4.0_4.0.0.0__b77a5c561934e089\System.Core.dll
C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Drawing\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.dll
C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Globalization\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Globalization.dll
C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Net.Http\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Net.Http.dll
C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Numerics\v4.0_4.0.0.0__b77a5c561934e089\System.Numerics.dll
C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Caching\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Runtime.Caching.dll
C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.InteropServices.RuntimeInformation\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Runtime.InteropServices.RuntimeInformation.dll
C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.InteropServices.WindowsRuntime\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Runtime.InteropServices.WindowsRuntime.dll
C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.Serialization.dll
C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.WindowsRuntime\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.WindowsRuntime.dll
C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Runtime.dll
C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Security.Cryptography.Algorithms\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Security.Cryptography.Algorithms.dll
C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ValueTuple\v4.0_4.0.0.0__cc7b13ffcd2ddd51\System.ValueTuple.dll
C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Windows.Controls.Ribbon\v4.0_4.0.0.0__b77a5c561934e089\System.Windows.Controls.Ribbon.dll
C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Windows.Forms\v4.0_4.0.0.0__b77a5c561934e089\System.Windows.Forms.dll
C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xaml\v4.0_4.0.0.0__b77a5c561934e089\System.Xaml.dll
C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml.Linq\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.Linq.dll
C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.dll
C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System\v4.0_4.0.0.0__b77a5c561934e089\System.dll
C:\Windows\Microsoft.Net\assembly\GAC_MSIL\UIAutomationProvider\v4.0_4.0.0.0__31bf3856ad364e35\UIAutomationProvider.dll
C:\Windows\Microsoft.Net\assembly\GAC_MSIL\UIAutomationTypes.resources\v4.0_4.0.0.0_zh-Hans_31bf3856ad364e35\UIAutomationTypes.resources.dll
C:\Windows\Microsoft.Net\assembly\GAC_MSIL\UIAutomationTypes\v4.0_4.0.0.0__31bf3856ad364e35\UIAutomationTypes.dll
C:\Windows\Microsoft.Net\assembly\GAC_MSIL\WindowsBase\v4.0_4.0.0.0__31bf3856ad364e35\WindowsBase.dll
C:\Windows\Microsoft.Net\assembly\GAC_MSIL\WindowsFormsIntegration\v4.0_4.0.0.0__31bf3856ad364e35\WindowsFormsIntegration.dll
C:\Windows\Microsoft.NET\Framework64\v4.0.30319\Microsoft.CSharp.dll
C:\Windows\Microsoft.NET\Framework64\v4.0.30319\mscorlib.dll
C:\Windows\Microsoft.NET\Framework64\v4.0.30319\System.Core.dll
C:\Windows\Microsoft.NET\Framework64\v4.0.30319\System.dll
C:\Windows\Microsoft.NET\Framework64\v4.0.30319\System.Net.Http.dll
C:\Windows\system32\WinMetadata\Windows.ApplicationModel.winmd
C:\Windows\system32\WinMetadata\Windows.Data.winmd
C:\Windows\system32\WinMetadata\Windows.Devices.winmd
C:\Windows\system32\WinMetadata\Windows.Foundation.winmd
C:\Windows\system32\WinMetadata\Windows.Graphics.winmd
C:\Windows\system32\WinMetadata\Windows.Management.winmd
C:\Windows\system32\WinMetadata\Windows.Media.winmd
C:\Windows\system32\WinMetadata\Windows.Storage.winmd
C:\Windows\system32\WinMetadata\Windows.UI.winmd
耗时:165ms
动作结束。耗时:181.6606ms