From 542812eb741fff36103f13aeb42b5c191343c40f Mon Sep 17 00:00:00 2001 From: Hydrogen Date: Mon, 23 Jun 2025 14:33:58 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=9D=E6=AD=A5=E6=B7=BB=E5=8A=A0=E9=87=8D?= =?UTF-8?q?=E5=90=AF=E8=AE=A1=E6=95=B0=E5=99=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 1. 防止异常重启死循环 2. 为未来可能的新功能做准备 --- Ink Canvas/App.xaml.cs | 22 +++++++ Ink Canvas/Helpers/StartupCount.cs | 52 +++++++++++++++ Ink Canvas/obj/Debug/net472/App.g.cs | 16 ++--- Ink Canvas/obj/Debug/net472/App.g.i.cs | 16 ++--- .../net472/GeneratedInternalTypeHelper.g.cs | 62 +----------------- .../net472/GeneratedInternalTypeHelper.g.i.cs | 10 +-- ....GeneratedMSBuildEditorConfig.editorconfig | 2 +- .../net472/InkCanvasForClass.assets.cache | Bin 8107 -> 7801 bytes ...vasForClass.csproj.AssemblyReference.cache | Bin 34904 -> 34991 bytes ...vasForClass.csproj.CoreCompileInputs.cache | 2 +- ...CanvasForClass.csproj.FileListAbsolute.txt | 1 - ...nvasForClass.csproj.GenerateResource.cache | Bin 128 -> 128 bytes ...sForClass.csproj.ResolveComReference.cache | Bin 798 -> 410 bytes .../InkCanvasForClass_MarkupCompile.cache | 10 +-- .../InkCanvasForClass_MarkupCompile.lref | 20 +++--- Ink Canvas/obj/Debug/net472/MainWindow.g.cs | 14 ++-- Ink Canvas/obj/Debug/net472/MainWindow.g.i.cs | 14 ++-- .../net472/Windows/CountdownTimerWindow.g.cs | 14 ++-- .../Windows/CountdownTimerWindow.g.i.cs | 14 ++-- .../Debug/net472/Windows/CycleProcessBar.g.cs | 12 ++-- .../net472/Windows/CycleProcessBar.g.i.cs | 12 ++-- .../net472/Windows/HasNewUpdateWindow.g.cs | 14 ++-- .../net472/Windows/HasNewUpdateWindow.g.i.cs | 14 ++-- .../net472/Windows/NamesInputWindow.g.cs | 12 ++-- .../net472/Windows/NamesInputWindow.g.i.cs | 12 ++-- .../net472/Windows/OperatingGuideWindow.g.cs | 12 ++-- .../Windows/OperatingGuideWindow.g.i.cs | 12 ++-- .../obj/Debug/net472/Windows/RandWindow.g.cs | 12 ++-- .../Debug/net472/Windows/RandWindow.g.i.cs | 12 ++-- .../Windows/YesOrNoNotificationWindow.g.cs | 12 ++-- .../Windows/YesOrNoNotificationWindow.g.i.cs | 12 ++-- ...InkCanvasForClass.csproj.nuget.dgspec.json | 24 +++---- .../InkCanvasForClass.csproj.nuget.g.props | 5 +- Ink Canvas/obj/project.assets.json | 23 +++---- Ink Canvas/obj/project.nuget.cache | 28 ++++---- 35 files changed, 248 insertions(+), 249 deletions(-) create mode 100644 Ink Canvas/Helpers/StartupCount.cs diff --git a/Ink Canvas/App.xaml.cs b/Ink Canvas/App.xaml.cs index 3ce93473..23328060 100644 --- a/Ink Canvas/App.xaml.cs +++ b/Ink Canvas/App.xaml.cs @@ -56,6 +56,13 @@ namespace Ink_Canvas // 修改:仅当非用户主动退出时才触发自动重启 if (CrashAction == CrashActionType.SilentRestart && !IsAppExitByUser) { + StartupCount.Increment(); + if (StartupCount.GetCount() >= 5) + { + MessageBox.Show("检测到程序已连续重启5次,已停止自动重启。请联系开发者或检查系统环境。", "重启次数过多", MessageBoxButton.OK, MessageBoxImage.Error); + StartupCount.Reset(); + Environment.Exit(1); + } try { string exePath = System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName; @@ -255,6 +262,13 @@ namespace Ink_Canvas LogHelper.NewLog("检测到主线程无响应,自动重启。"); if (CrashAction == CrashActionType.SilentRestart) { + StartupCount.Increment(); + if (StartupCount.GetCount() >= 5) + { + MessageBox.Show("检测到程序已连续重启5次,已停止自动重启。请联系开发者或检查系统环境。", "重启次数过多", MessageBoxButton.OK, MessageBoxImage.Error); + StartupCount.Reset(); + Environment.Exit(1); + } try { string exePath = Process.GetCurrentProcess().MainModule.FileName; @@ -307,6 +321,13 @@ namespace Ink_Canvas Thread.Sleep(2000); } // 主进程异常退出,自动重启 + StartupCount.Increment(); + if (StartupCount.GetCount() >= 5) + { + MessageBox.Show("检测到程序已连续重启5次,已停止自动重启。请联系开发者或检查系统环境。", "重启次数过多", MessageBoxButton.OK, MessageBoxImage.Error); + StartupCount.Reset(); + Environment.Exit(1); + } string exePath = Process.GetCurrentProcess().MainModule.FileName; Process.Start(exePath); } @@ -323,6 +344,7 @@ namespace Ink_Canvas if (IsAppExitByUser) { // 写入退出信号文件,通知看门狗正常退出 + StartupCount.Reset(); File.WriteAllText(watchdogExitSignalFile, "exit"); if (watchdogProcess != null && !watchdogProcess.HasExited) { diff --git a/Ink Canvas/Helpers/StartupCount.cs b/Ink Canvas/Helpers/StartupCount.cs new file mode 100644 index 00000000..ce80f3a0 --- /dev/null +++ b/Ink Canvas/Helpers/StartupCount.cs @@ -0,0 +1,52 @@ + using System; +using System.IO; + +namespace Ink_Canvas.Helpers +{ + public static class StartupCount + { + private static readonly string CountFilePath = Path.Combine(App.RootPath, "startup-count"); + private static readonly object fileLock = new object(); + + public static int GetCount() + { + try + { + if (File.Exists(CountFilePath)) + { + var text = File.ReadAllText(CountFilePath).Trim(); + if (int.TryParse(text, out int count)) + return count; + } + } + catch { } + return 0; + } + + public static void Increment() + { + lock (fileLock) + { + int count = GetCount() + 1; + try + { + File.WriteAllText(CountFilePath, count.ToString()); + } + catch { } + } + } + + public static void Reset() + { + lock (fileLock) + { + try + { + if (File.Exists(CountFilePath)) + File.Delete(CountFilePath); + } + catch { } + } + } + } +} diff --git a/Ink Canvas/obj/Debug/net472/App.g.cs b/Ink Canvas/obj/Debug/net472/App.g.cs index b425ca86..ee2dbb33 100644 --- a/Ink Canvas/obj/Debug/net472/App.g.cs +++ b/Ink Canvas/obj/Debug/net472/App.g.cs @@ -1,11 +1,11 @@ #pragma checksum "..\..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "2F83C72861203F56E137DC704561E979347ABF79" //------------------------------------------------------------------------------ // -// 此代码由工具生成。 -// 运行时版本:4.0.30319.42000 +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 // -// 对此文件的更改可能会导致不正确的行为,并且如果 -// 重新生成代码,这些更改将会丢失。 +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. // //------------------------------------------------------------------------------ @@ -65,7 +65,7 @@ namespace Ink_Canvas { /// InitializeComponent /// [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.6.0")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.0.0")] public void InitializeComponent() { if (_contentLoaded) { return; @@ -87,7 +87,7 @@ namespace Ink_Canvas { } [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.6.0")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.0.0")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")] @@ -162,7 +162,7 @@ namespace Ink_Canvas { } [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.6.0")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.0.0")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")] @@ -190,7 +190,7 @@ namespace Ink_Canvas { /// [System.STAThreadAttribute()] [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.6.0")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.0.0")] public static void Main() { Ink_Canvas.App app = new Ink_Canvas.App(); app.InitializeComponent(); diff --git a/Ink Canvas/obj/Debug/net472/App.g.i.cs b/Ink Canvas/obj/Debug/net472/App.g.i.cs index b425ca86..ee2dbb33 100644 --- a/Ink Canvas/obj/Debug/net472/App.g.i.cs +++ b/Ink Canvas/obj/Debug/net472/App.g.i.cs @@ -1,11 +1,11 @@ #pragma checksum "..\..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "2F83C72861203F56E137DC704561E979347ABF79" //------------------------------------------------------------------------------ // -// 此代码由工具生成。 -// 运行时版本:4.0.30319.42000 +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 // -// 对此文件的更改可能会导致不正确的行为,并且如果 -// 重新生成代码,这些更改将会丢失。 +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. // //------------------------------------------------------------------------------ @@ -65,7 +65,7 @@ namespace Ink_Canvas { /// InitializeComponent /// [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.6.0")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.0.0")] public void InitializeComponent() { if (_contentLoaded) { return; @@ -87,7 +87,7 @@ namespace Ink_Canvas { } [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.6.0")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.0.0")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")] @@ -162,7 +162,7 @@ namespace Ink_Canvas { } [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.6.0")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.0.0")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")] @@ -190,7 +190,7 @@ namespace Ink_Canvas { /// [System.STAThreadAttribute()] [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.6.0")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.0.0")] public static void Main() { Ink_Canvas.App app = new Ink_Canvas.App(); app.InitializeComponent(); diff --git a/Ink Canvas/obj/Debug/net472/GeneratedInternalTypeHelper.g.cs b/Ink Canvas/obj/Debug/net472/GeneratedInternalTypeHelper.g.cs index bd1f4c33..c65238fb 100644 --- a/Ink Canvas/obj/Debug/net472/GeneratedInternalTypeHelper.g.cs +++ b/Ink Canvas/obj/Debug/net472/GeneratedInternalTypeHelper.g.cs @@ -1,62 +1,2 @@ -//------------------------------------------------------------------------------ -// -// 此代码由工具生成。 -// 运行时版本:4.0.30319.42000 -// -// 对此文件的更改可能会导致不正确的行为,并且如果 -// 重新生成代码,这些更改将会丢失。 -// -//------------------------------------------------------------------------------ - -namespace XamlGeneratedNamespace { - - - /// - /// GeneratedInternalTypeHelper - /// - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.6.0")] - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] - public sealed class GeneratedInternalTypeHelper : System.Windows.Markup.InternalTypeHelper { - - /// - /// CreateInstance - /// - protected override object CreateInstance(System.Type type, System.Globalization.CultureInfo culture) { - return System.Activator.CreateInstance(type, ((System.Reflection.BindingFlags.Public | System.Reflection.BindingFlags.NonPublic) - | (System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.CreateInstance)), null, null, culture); - } - - /// - /// GetPropertyValue - /// - protected override object GetPropertyValue(System.Reflection.PropertyInfo propertyInfo, object target, System.Globalization.CultureInfo culture) { - return propertyInfo.GetValue(target, System.Reflection.BindingFlags.Default, null, null, culture); - } - - /// - /// SetPropertyValue - /// - protected override void SetPropertyValue(System.Reflection.PropertyInfo propertyInfo, object target, object value, System.Globalization.CultureInfo culture) { - propertyInfo.SetValue(target, value, System.Reflection.BindingFlags.Default, null, null, culture); - } - - /// - /// CreateDelegate - /// - protected override System.Delegate CreateDelegate(System.Type delegateType, object target, string handler) { - return ((System.Delegate)(target.GetType().InvokeMember("_CreateDelegate", (System.Reflection.BindingFlags.InvokeMethod - | (System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance)), null, target, new object[] { - delegateType, - handler}, null))); - } - - /// - /// AddEventHandler - /// - protected override void AddEventHandler(System.Reflection.EventInfo eventInfo, object target, System.Delegate handler) { - eventInfo.AddEventHandler(target, handler); - } - } -} + diff --git a/Ink Canvas/obj/Debug/net472/GeneratedInternalTypeHelper.g.i.cs b/Ink Canvas/obj/Debug/net472/GeneratedInternalTypeHelper.g.i.cs index bd1f4c33..8133cc15 100644 --- a/Ink Canvas/obj/Debug/net472/GeneratedInternalTypeHelper.g.i.cs +++ b/Ink Canvas/obj/Debug/net472/GeneratedInternalTypeHelper.g.i.cs @@ -1,10 +1,10 @@ //------------------------------------------------------------------------------ // -// 此代码由工具生成。 -// 运行时版本:4.0.30319.42000 +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 // -// 对此文件的更改可能会导致不正确的行为,并且如果 -// 重新生成代码,这些更改将会丢失。 +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. // //------------------------------------------------------------------------------ @@ -15,7 +15,7 @@ namespace XamlGeneratedNamespace { /// GeneratedInternalTypeHelper /// [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.6.0")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.0.0")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] public sealed class GeneratedInternalTypeHelper : System.Windows.Markup.InternalTypeHelper { diff --git a/Ink Canvas/obj/Debug/net472/InkCanvasForClass.GeneratedMSBuildEditorConfig.editorconfig b/Ink Canvas/obj/Debug/net472/InkCanvasForClass.GeneratedMSBuildEditorConfig.editorconfig index 2ed04ef5..5fc8f8b8 100644 --- a/Ink Canvas/obj/Debug/net472/InkCanvasForClass.GeneratedMSBuildEditorConfig.editorconfig +++ b/Ink Canvas/obj/Debug/net472/InkCanvasForClass.GeneratedMSBuildEditorConfig.editorconfig @@ -1,6 +1,6 @@ is_global = true build_property.RootNamespace = Ink_Canvas -build_property.ProjectDir = E:\ICC CE\ICC CE main\ICC-CE\Ink Canvas\ +build_property.ProjectDir = D:\Hydrogen\Documents\GitHub\ICC-CE\Ink Canvas\ build_property.EnableComHosting = build_property.EnableGeneratedComInterfaceComImportInterop = build_property.CsWinRTUseWindowsUIXamlProjections = false diff --git a/Ink Canvas/obj/Debug/net472/InkCanvasForClass.assets.cache b/Ink Canvas/obj/Debug/net472/InkCanvasForClass.assets.cache index f250a1e22f7960b8e6556fc6336607b3e7a5ebb6..4c6bfda49f92e047d59a70d7f6596e16c3e12ad3 100644 GIT binary patch delta 1354 zcmZ2&|I@}Rz}wxChk=3Ncky+_#ms?qozaV5)oif+|HgK)(yqtl7Q216tT8F>*t1C- zs0a%9fpoO9RZM7cYEf~FM`cP;etK%&ME^9Q3=Gl9vV0+v6&U4(;xMHauv<*-V>A@X z!X_0qS%*npC=r{K@8tDBsVHnxZj-f{<%L`^r4pF~ghH_ii%-7K>?z#Fh$-j5GEpcH zo3Pa63|Ya+!mNfuVVKerWYs5Iipfo0z$zo;hABOt!)P)qo4k-8rqq89tI4H6sQ^r= z)ojs1k(k1=>^ay2FBez96>^AUcaDbo>v@u;>gDCfw0M6`NVN~qJUoLn!S0HX z$^Qk+aVJsH$u$xjlg*g~CT|jy!R26UA#+>~z6O-SkzBKc&9Ns}lgV#{O>ie!-O1G= zCODF9>0}#G6Z}b6bn77P7%649>wq7MN1N+$&^^Dg2*9 RNyr3Kcr}~yW-Yl!MgX_Z-OK<0 delta 1655 zcmexqv)bN2z}wxChk=1%_q7){q%ZV)Ej+re!O85>>m;+LKke_*e2P}_-8yN|{Bw^4 zP!SaH1L*{3tC-N@)S}`T$CTX6yv*W~qQsK?qRD@G+$T2u_@@|uPndQa3aL6xU7N7i9NOp1& zvy6BYPBjS<-HbRSZwr@B?qHD-55pm^Eu%g8A&a4SG!FUud`^?oSmnjNamX)}k(j)m z)lxhdr@Yc+88&nAP#p59Y|-LzIOMd%H7EaOb0!c0oRgQai{ps^-^nr@;so3;HMtz9 z2EQL9Hs9iS#9Yq=OmOPh9UP;VSDKz$5>t?voSm4SS{wsPqqeSAF#$#S=|zdT3T~M> zKvCb!$dcNm7d+$YcEH^<|)kjZ8O<^(dI=;Sj3CItMzGdWw( z1W)|8;LUu!LgoZAUm(tm7a&}LFXOGmo9PaUc;X3Ir^#`m=6DnBe$hYz308V?yqF2j zjJH&*7+1#ItR?=MS=<$SBA=Ygt1s?^LvEv>j<^X9IY?2)E*^!tn^_T_2C-zAsY2Pot<@^UG+WlvK5>Y^U4y7^;0s7 zOY}V*o%4%QCo6_)Zq8(sW0G|sWc%dp%={c764gNK?{ZAO&m=opk5SZ((StHa_~a+1 zq!xjkF*%d5Z}S$G>5Q`W1e~J5cF!KM({L23%vrrtSw*R3PlbJ%|CI_@3*-;;o$vF8!I}0D0WB!M(lPbb#$K?7Di^)1E ze3Rwl*e2J8ac))&mtqx4#Ac`ON zgrh;WZ`Mf>WD#=3v@s;3NXi$dZJVEFTxXelw;9QX%eh^X%UckpZ?4IUWfpE@#5DS2 z;RWeFM%-pUESkzB6o^fq)a2!*DN>O*wN8FmB(>S4>=L6;7^ZgJik`{bWk?RZQNhF_ zV*Cz|P0k{Q<1c zgk5R!D?ULay~!M9j^YW8ZwIK z<21x#vRAC=wPPwq|;LY3Go znIFq6(anh6!pYKQQj-@KZBv-cNWj{X;;BrN=U1Rv3)EjX*|rkh&dp_S7{#M;Sh=yH zXL7R_x|Z-tCKhpT99pt#OXP#`J8*JBgT!XRy2Xs*!8i;#R^K2Wjo*;X2@Nlp#Y1rz j5Y^H=`F|d|!@su(F;4CY!3dbPiIYu2(G?$Sd&vj@<#1X$HO;5DUJslc)l22SeZR^ANAylePgQ2(t{r8x^nJ2z`nj@c;k- delta 223 zcmbQmJdcf;jnQKwvm>X4LP&moPBECn2jg%sFfcI6PcCE>kt{Ar$pqe^_@PY2s= zUv6_S$~#-dglFcZm#pT5r`MG-e$rT`HoQ+Uj fEi(J=#I8&>hQBXA=PsN0GmqnWp2O -// 此代码由工具生成。 -// 运行时版本:4.0.30319.42000 +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 // -// 对此文件的更改可能会导致不正确的行为,并且如果 -// 重新生成代码,这些更改将会丢失。 +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. // //------------------------------------------------------------------------------ @@ -4128,7 +4128,7 @@ namespace Ink_Canvas { /// InitializeComponent /// [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.6.0")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.0.0")] public void InitializeComponent() { if (_contentLoaded) { return; @@ -4144,7 +4144,7 @@ namespace Ink_Canvas { } [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.6.0")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.0.0")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")] @@ -9567,7 +9567,7 @@ namespace Ink_Canvas { } [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.6.0")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.0.0")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")] diff --git a/Ink Canvas/obj/Debug/net472/MainWindow.g.i.cs b/Ink Canvas/obj/Debug/net472/MainWindow.g.i.cs index 045cc8fe..71359afb 100644 --- a/Ink Canvas/obj/Debug/net472/MainWindow.g.i.cs +++ b/Ink Canvas/obj/Debug/net472/MainWindow.g.i.cs @@ -1,11 +1,11 @@ #pragma checksum "..\..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "54BD03BD233A37650ADB8A3ABAE7A4EE1F2260EE" //------------------------------------------------------------------------------ // -// 此代码由工具生成。 -// 运行时版本:4.0.30319.42000 +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 // -// 对此文件的更改可能会导致不正确的行为,并且如果 -// 重新生成代码,这些更改将会丢失。 +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. // //------------------------------------------------------------------------------ @@ -4128,7 +4128,7 @@ namespace Ink_Canvas { /// InitializeComponent /// [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.6.0")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.0.0")] public void InitializeComponent() { if (_contentLoaded) { return; @@ -4144,7 +4144,7 @@ namespace Ink_Canvas { } [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.6.0")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.0.0")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")] @@ -9567,7 +9567,7 @@ namespace Ink_Canvas { } [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.6.0")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.0.0")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")] diff --git a/Ink Canvas/obj/Debug/net472/Windows/CountdownTimerWindow.g.cs b/Ink Canvas/obj/Debug/net472/Windows/CountdownTimerWindow.g.cs index cf041fe8..f747d94a 100644 --- a/Ink Canvas/obj/Debug/net472/Windows/CountdownTimerWindow.g.cs +++ b/Ink Canvas/obj/Debug/net472/Windows/CountdownTimerWindow.g.cs @@ -1,11 +1,11 @@ #pragma checksum "..\..\..\..\Windows\CountdownTimerWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "85F57BA392C75B7B6E1F2FA532105D03A2028A0E" //------------------------------------------------------------------------------ // -// 此代码由工具生成。 -// 运行时版本:4.0.30319.42000 +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 // -// 对此文件的更改可能会导致不正确的行为,并且如果 -// 重新生成代码,这些更改将会丢失。 +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. // //------------------------------------------------------------------------------ @@ -249,7 +249,7 @@ namespace Ink_Canvas { /// InitializeComponent /// [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.6.0")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.0.0")] public void InitializeComponent() { if (_contentLoaded) { return; @@ -265,14 +265,14 @@ namespace Ink_Canvas { } [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.6.0")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.0.0")] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] internal System.Delegate _CreateDelegate(System.Type delegateType, string handler) { return System.Delegate.CreateDelegate(delegateType, this, handler); } [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.6.0")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.0.0")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")] diff --git a/Ink Canvas/obj/Debug/net472/Windows/CountdownTimerWindow.g.i.cs b/Ink Canvas/obj/Debug/net472/Windows/CountdownTimerWindow.g.i.cs index cf041fe8..f747d94a 100644 --- a/Ink Canvas/obj/Debug/net472/Windows/CountdownTimerWindow.g.i.cs +++ b/Ink Canvas/obj/Debug/net472/Windows/CountdownTimerWindow.g.i.cs @@ -1,11 +1,11 @@ #pragma checksum "..\..\..\..\Windows\CountdownTimerWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "85F57BA392C75B7B6E1F2FA532105D03A2028A0E" //------------------------------------------------------------------------------ // -// 此代码由工具生成。 -// 运行时版本:4.0.30319.42000 +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 // -// 对此文件的更改可能会导致不正确的行为,并且如果 -// 重新生成代码,这些更改将会丢失。 +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. // //------------------------------------------------------------------------------ @@ -249,7 +249,7 @@ namespace Ink_Canvas { /// InitializeComponent /// [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.6.0")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.0.0")] public void InitializeComponent() { if (_contentLoaded) { return; @@ -265,14 +265,14 @@ namespace Ink_Canvas { } [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.6.0")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.0.0")] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] internal System.Delegate _CreateDelegate(System.Type delegateType, string handler) { return System.Delegate.CreateDelegate(delegateType, this, handler); } [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.6.0")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.0.0")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")] diff --git a/Ink Canvas/obj/Debug/net472/Windows/CycleProcessBar.g.cs b/Ink Canvas/obj/Debug/net472/Windows/CycleProcessBar.g.cs index ca469262..b133ec6f 100644 --- a/Ink Canvas/obj/Debug/net472/Windows/CycleProcessBar.g.cs +++ b/Ink Canvas/obj/Debug/net472/Windows/CycleProcessBar.g.cs @@ -1,11 +1,11 @@ #pragma checksum "..\..\..\..\Windows\CycleProcessBar.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "D130C26D74445B5E09CDAA42FEF4734A6D257250" //------------------------------------------------------------------------------ // -// 此代码由工具生成。 -// 运行时版本:4.0.30319.42000 +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 // -// 对此文件的更改可能会导致不正确的行为,并且如果 -// 重新生成代码,这些更改将会丢失。 +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. // //------------------------------------------------------------------------------ @@ -65,7 +65,7 @@ namespace Ink_Canvas.ProcessBars { /// InitializeComponent /// [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.6.0")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.0.0")] public void InitializeComponent() { if (_contentLoaded) { return; @@ -81,7 +81,7 @@ namespace Ink_Canvas.ProcessBars { } [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.6.0")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.0.0")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")] diff --git a/Ink Canvas/obj/Debug/net472/Windows/CycleProcessBar.g.i.cs b/Ink Canvas/obj/Debug/net472/Windows/CycleProcessBar.g.i.cs index ca469262..b133ec6f 100644 --- a/Ink Canvas/obj/Debug/net472/Windows/CycleProcessBar.g.i.cs +++ b/Ink Canvas/obj/Debug/net472/Windows/CycleProcessBar.g.i.cs @@ -1,11 +1,11 @@ #pragma checksum "..\..\..\..\Windows\CycleProcessBar.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "D130C26D74445B5E09CDAA42FEF4734A6D257250" //------------------------------------------------------------------------------ // -// 此代码由工具生成。 -// 运行时版本:4.0.30319.42000 +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 // -// 对此文件的更改可能会导致不正确的行为,并且如果 -// 重新生成代码,这些更改将会丢失。 +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. // //------------------------------------------------------------------------------ @@ -65,7 +65,7 @@ namespace Ink_Canvas.ProcessBars { /// InitializeComponent /// [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.6.0")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.0.0")] public void InitializeComponent() { if (_contentLoaded) { return; @@ -81,7 +81,7 @@ namespace Ink_Canvas.ProcessBars { } [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.6.0")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.0.0")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")] diff --git a/Ink Canvas/obj/Debug/net472/Windows/HasNewUpdateWindow.g.cs b/Ink Canvas/obj/Debug/net472/Windows/HasNewUpdateWindow.g.cs index f2a0f384..1a6ac652 100644 --- a/Ink Canvas/obj/Debug/net472/Windows/HasNewUpdateWindow.g.cs +++ b/Ink Canvas/obj/Debug/net472/Windows/HasNewUpdateWindow.g.cs @@ -1,11 +1,11 @@ -#pragma checksum "..\..\..\..\Windows\HasNewUpdateWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "53772E3067D35407A4B75166FFCE460ECF45D1E7" +#pragma checksum "..\..\..\..\Windows\HasNewUpdateWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "BD554D3723A8AEB6CE63C633F668F089BA177816" //------------------------------------------------------------------------------ // -// 此代码由工具生成。 -// 运行时版本:4.0.30319.42000 +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 // -// 对此文件的更改可能会导致不正确的行为,并且如果 -// 重新生成代码,这些更改将会丢失。 +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. // //------------------------------------------------------------------------------ @@ -129,7 +129,7 @@ namespace Ink_Canvas { /// InitializeComponent /// [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.6.0")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.0.0")] public void InitializeComponent() { if (_contentLoaded) { return; @@ -145,7 +145,7 @@ namespace Ink_Canvas { } [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.6.0")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.0.0")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")] diff --git a/Ink Canvas/obj/Debug/net472/Windows/HasNewUpdateWindow.g.i.cs b/Ink Canvas/obj/Debug/net472/Windows/HasNewUpdateWindow.g.i.cs index f2a0f384..1a6ac652 100644 --- a/Ink Canvas/obj/Debug/net472/Windows/HasNewUpdateWindow.g.i.cs +++ b/Ink Canvas/obj/Debug/net472/Windows/HasNewUpdateWindow.g.i.cs @@ -1,11 +1,11 @@ -#pragma checksum "..\..\..\..\Windows\HasNewUpdateWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "53772E3067D35407A4B75166FFCE460ECF45D1E7" +#pragma checksum "..\..\..\..\Windows\HasNewUpdateWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "BD554D3723A8AEB6CE63C633F668F089BA177816" //------------------------------------------------------------------------------ // -// 此代码由工具生成。 -// 运行时版本:4.0.30319.42000 +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 // -// 对此文件的更改可能会导致不正确的行为,并且如果 -// 重新生成代码,这些更改将会丢失。 +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. // //------------------------------------------------------------------------------ @@ -129,7 +129,7 @@ namespace Ink_Canvas { /// InitializeComponent /// [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.6.0")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.0.0")] public void InitializeComponent() { if (_contentLoaded) { return; @@ -145,7 +145,7 @@ namespace Ink_Canvas { } [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.6.0")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.0.0")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")] diff --git a/Ink Canvas/obj/Debug/net472/Windows/NamesInputWindow.g.cs b/Ink Canvas/obj/Debug/net472/Windows/NamesInputWindow.g.cs index 4743f707..c6df72fd 100644 --- a/Ink Canvas/obj/Debug/net472/Windows/NamesInputWindow.g.cs +++ b/Ink Canvas/obj/Debug/net472/Windows/NamesInputWindow.g.cs @@ -1,11 +1,11 @@ #pragma checksum "..\..\..\..\Windows\NamesInputWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "9FEEA82AF23EB1521F5089E2975D1B2389373FF8" //------------------------------------------------------------------------------ // -// 此代码由工具生成。 -// 运行时版本:4.0.30319.42000 +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 // -// 对此文件的更改可能会导致不正确的行为,并且如果 -// 重新生成代码,这些更改将会丢失。 +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. // //------------------------------------------------------------------------------ @@ -72,7 +72,7 @@ namespace Ink_Canvas { /// InitializeComponent /// [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.6.0")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.0.0")] public void InitializeComponent() { if (_contentLoaded) { return; @@ -88,7 +88,7 @@ namespace Ink_Canvas { } [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.6.0")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.0.0")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")] diff --git a/Ink Canvas/obj/Debug/net472/Windows/NamesInputWindow.g.i.cs b/Ink Canvas/obj/Debug/net472/Windows/NamesInputWindow.g.i.cs index 4743f707..c6df72fd 100644 --- a/Ink Canvas/obj/Debug/net472/Windows/NamesInputWindow.g.i.cs +++ b/Ink Canvas/obj/Debug/net472/Windows/NamesInputWindow.g.i.cs @@ -1,11 +1,11 @@ #pragma checksum "..\..\..\..\Windows\NamesInputWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "9FEEA82AF23EB1521F5089E2975D1B2389373FF8" //------------------------------------------------------------------------------ // -// 此代码由工具生成。 -// 运行时版本:4.0.30319.42000 +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 // -// 对此文件的更改可能会导致不正确的行为,并且如果 -// 重新生成代码,这些更改将会丢失。 +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. // //------------------------------------------------------------------------------ @@ -72,7 +72,7 @@ namespace Ink_Canvas { /// InitializeComponent /// [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.6.0")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.0.0")] public void InitializeComponent() { if (_contentLoaded) { return; @@ -88,7 +88,7 @@ namespace Ink_Canvas { } [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.6.0")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.0.0")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")] diff --git a/Ink Canvas/obj/Debug/net472/Windows/OperatingGuideWindow.g.cs b/Ink Canvas/obj/Debug/net472/Windows/OperatingGuideWindow.g.cs index bd610946..295e989f 100644 --- a/Ink Canvas/obj/Debug/net472/Windows/OperatingGuideWindow.g.cs +++ b/Ink Canvas/obj/Debug/net472/Windows/OperatingGuideWindow.g.cs @@ -1,11 +1,11 @@ #pragma checksum "..\..\..\..\Windows\OperatingGuideWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "66D9A0A5E55C9B504151A1C0723C930C97D705DA" //------------------------------------------------------------------------------ // -// 此代码由工具生成。 -// 运行时版本:4.0.30319.42000 +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 // -// 对此文件的更改可能会导致不正确的行为,并且如果 -// 重新生成代码,这些更改将会丢失。 +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. // //------------------------------------------------------------------------------ @@ -88,7 +88,7 @@ namespace Ink_Canvas { /// InitializeComponent /// [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.6.0")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.0.0")] public void InitializeComponent() { if (_contentLoaded) { return; @@ -104,7 +104,7 @@ namespace Ink_Canvas { } [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.6.0")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.0.0")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")] diff --git a/Ink Canvas/obj/Debug/net472/Windows/OperatingGuideWindow.g.i.cs b/Ink Canvas/obj/Debug/net472/Windows/OperatingGuideWindow.g.i.cs index bd610946..295e989f 100644 --- a/Ink Canvas/obj/Debug/net472/Windows/OperatingGuideWindow.g.i.cs +++ b/Ink Canvas/obj/Debug/net472/Windows/OperatingGuideWindow.g.i.cs @@ -1,11 +1,11 @@ #pragma checksum "..\..\..\..\Windows\OperatingGuideWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "66D9A0A5E55C9B504151A1C0723C930C97D705DA" //------------------------------------------------------------------------------ // -// 此代码由工具生成。 -// 运行时版本:4.0.30319.42000 +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 // -// 对此文件的更改可能会导致不正确的行为,并且如果 -// 重新生成代码,这些更改将会丢失。 +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. // //------------------------------------------------------------------------------ @@ -88,7 +88,7 @@ namespace Ink_Canvas { /// InitializeComponent /// [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.6.0")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.0.0")] public void InitializeComponent() { if (_contentLoaded) { return; @@ -104,7 +104,7 @@ namespace Ink_Canvas { } [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.6.0")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.0.0")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")] diff --git a/Ink Canvas/obj/Debug/net472/Windows/RandWindow.g.cs b/Ink Canvas/obj/Debug/net472/Windows/RandWindow.g.cs index 1549dbc5..bffc1ac7 100644 --- a/Ink Canvas/obj/Debug/net472/Windows/RandWindow.g.cs +++ b/Ink Canvas/obj/Debug/net472/Windows/RandWindow.g.cs @@ -1,11 +1,11 @@ #pragma checksum "..\..\..\..\Windows\RandWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "4254CE0F9A30960C1D574123EA132E6F47F23758" //------------------------------------------------------------------------------ // -// 此代码由工具生成。 -// 运行时版本:4.0.30319.42000 +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 // -// 对此文件的更改可能会导致不正确的行为,并且如果 -// 重新生成代码,这些更改将会丢失。 +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. // //------------------------------------------------------------------------------ @@ -192,7 +192,7 @@ namespace Ink_Canvas { /// InitializeComponent /// [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.6.0")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.0.0")] public void InitializeComponent() { if (_contentLoaded) { return; @@ -208,7 +208,7 @@ namespace Ink_Canvas { } [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.6.0")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.0.0")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")] diff --git a/Ink Canvas/obj/Debug/net472/Windows/RandWindow.g.i.cs b/Ink Canvas/obj/Debug/net472/Windows/RandWindow.g.i.cs index 1549dbc5..bffc1ac7 100644 --- a/Ink Canvas/obj/Debug/net472/Windows/RandWindow.g.i.cs +++ b/Ink Canvas/obj/Debug/net472/Windows/RandWindow.g.i.cs @@ -1,11 +1,11 @@ #pragma checksum "..\..\..\..\Windows\RandWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "4254CE0F9A30960C1D574123EA132E6F47F23758" //------------------------------------------------------------------------------ // -// 此代码由工具生成。 -// 运行时版本:4.0.30319.42000 +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 // -// 对此文件的更改可能会导致不正确的行为,并且如果 -// 重新生成代码,这些更改将会丢失。 +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. // //------------------------------------------------------------------------------ @@ -192,7 +192,7 @@ namespace Ink_Canvas { /// InitializeComponent /// [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.6.0")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.0.0")] public void InitializeComponent() { if (_contentLoaded) { return; @@ -208,7 +208,7 @@ namespace Ink_Canvas { } [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.6.0")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.0.0")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")] diff --git a/Ink Canvas/obj/Debug/net472/Windows/YesOrNoNotificationWindow.g.cs b/Ink Canvas/obj/Debug/net472/Windows/YesOrNoNotificationWindow.g.cs index 23ed7d61..dc0b76ba 100644 --- a/Ink Canvas/obj/Debug/net472/Windows/YesOrNoNotificationWindow.g.cs +++ b/Ink Canvas/obj/Debug/net472/Windows/YesOrNoNotificationWindow.g.cs @@ -1,11 +1,11 @@ #pragma checksum "..\..\..\..\Windows\YesOrNoNotificationWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "40DC779A3AC6B5F7F1D1CDBB7E7D7EEFD90FE7BB" //------------------------------------------------------------------------------ // -// 此代码由工具生成。 -// 运行时版本:4.0.30319.42000 +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 // -// 对此文件的更改可能会导致不正确的行为,并且如果 -// 重新生成代码,这些更改将会丢失。 +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. // //------------------------------------------------------------------------------ @@ -72,7 +72,7 @@ namespace Ink_Canvas { /// InitializeComponent /// [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.6.0")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.0.0")] public void InitializeComponent() { if (_contentLoaded) { return; @@ -88,7 +88,7 @@ namespace Ink_Canvas { } [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.6.0")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.0.0")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")] diff --git a/Ink Canvas/obj/Debug/net472/Windows/YesOrNoNotificationWindow.g.i.cs b/Ink Canvas/obj/Debug/net472/Windows/YesOrNoNotificationWindow.g.i.cs index 23ed7d61..dc0b76ba 100644 --- a/Ink Canvas/obj/Debug/net472/Windows/YesOrNoNotificationWindow.g.i.cs +++ b/Ink Canvas/obj/Debug/net472/Windows/YesOrNoNotificationWindow.g.i.cs @@ -1,11 +1,11 @@ #pragma checksum "..\..\..\..\Windows\YesOrNoNotificationWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "40DC779A3AC6B5F7F1D1CDBB7E7D7EEFD90FE7BB" //------------------------------------------------------------------------------ // -// 此代码由工具生成。 -// 运行时版本:4.0.30319.42000 +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 // -// 对此文件的更改可能会导致不正确的行为,并且如果 -// 重新生成代码,这些更改将会丢失。 +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. // //------------------------------------------------------------------------------ @@ -72,7 +72,7 @@ namespace Ink_Canvas { /// InitializeComponent /// [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.6.0")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.0.0")] public void InitializeComponent() { if (_contentLoaded) { return; @@ -88,7 +88,7 @@ namespace Ink_Canvas { } [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.6.0")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.0.0")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")] diff --git a/Ink Canvas/obj/InkCanvasForClass.csproj.nuget.dgspec.json b/Ink Canvas/obj/InkCanvasForClass.csproj.nuget.dgspec.json index 17231927..3777f89d 100644 --- a/Ink Canvas/obj/InkCanvasForClass.csproj.nuget.dgspec.json +++ b/Ink Canvas/obj/InkCanvasForClass.csproj.nuget.dgspec.json @@ -1,31 +1,25 @@ { "format": 1, "restore": { - "E:\\ICC CE\\ICC CE main\\ICC-CE\\Ink Canvas\\InkCanvasForClass.csproj": {} + "D:\\Hydrogen\\Documents\\GitHub\\ICC-CE\\Ink Canvas\\InkCanvasForClass.csproj": {} }, "projects": { - "E:\\ICC CE\\ICC CE main\\ICC-CE\\Ink Canvas\\InkCanvasForClass.csproj": { + "D:\\Hydrogen\\Documents\\GitHub\\ICC-CE\\Ink Canvas\\InkCanvasForClass.csproj": { "version": "5.0.4", "restore": { - "projectUniqueName": "E:\\ICC CE\\ICC CE main\\ICC-CE\\Ink Canvas\\InkCanvasForClass.csproj", + "projectUniqueName": "D:\\Hydrogen\\Documents\\GitHub\\ICC-CE\\Ink Canvas\\InkCanvasForClass.csproj", "projectName": "InkCanvasForClass", - "projectPath": "E:\\ICC CE\\ICC CE main\\ICC-CE\\Ink Canvas\\InkCanvasForClass.csproj", - "packagesPath": "C:\\Users\\Administrator\\.nuget\\packages\\", - "outputPath": "E:\\ICC CE\\ICC CE main\\ICC-CE\\Ink Canvas\\obj\\", + "projectPath": "D:\\Hydrogen\\Documents\\GitHub\\ICC-CE\\Ink Canvas\\InkCanvasForClass.csproj", + "packagesPath": "C:\\Users\\Hydrogen\\.nuget\\packages\\", + "outputPath": "D:\\Hydrogen\\Documents\\GitHub\\ICC-CE\\Ink Canvas\\obj\\", "projectStyle": "PackageReference", - "fallbackFolders": [ - "E:\\Program Files\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], "configFilePaths": [ - "C:\\Users\\Administrator\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + "D:\\Hydrogen\\AppData\\Roaming\\NuGet\\NuGet.Config" ], "originalTargetFrameworks": [ "net472" ], "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { @@ -44,7 +38,7 @@ "auditLevel": "low", "auditMode": "direct" }, - "SdkAnalysisLevel": "9.0.300" + "SdkAnalysisLevel": "9.0.100" }, "frameworks": { "net472": { @@ -83,7 +77,7 @@ "version": "[0.9.27, )" } }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.301\\RuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Users\\Hydrogen\\.dotnet\\sdk\\9.0.100\\RuntimeIdentifierGraph.json" } }, "runtimes": { diff --git a/Ink Canvas/obj/InkCanvasForClass.csproj.nuget.g.props b/Ink Canvas/obj/InkCanvasForClass.csproj.nuget.g.props index 5edcea5e..50f49c5e 100644 --- a/Ink Canvas/obj/InkCanvasForClass.csproj.nuget.g.props +++ b/Ink Canvas/obj/InkCanvasForClass.csproj.nuget.g.props @@ -5,12 +5,11 @@ NuGet $(MSBuildThisFileDirectory)project.assets.json $(UserProfile)\.nuget\packages\ - C:\Users\Administrator\.nuget\packages\;E:\Program Files\Microsoft Visual Studio\Shared\NuGetPackages + C:\Users\Hydrogen\.nuget\packages\ PackageReference 6.14.0 - - + \ No newline at end of file diff --git a/Ink Canvas/obj/project.assets.json b/Ink Canvas/obj/project.assets.json index bc402104..59edb19a 100644 --- a/Ink Canvas/obj/project.assets.json +++ b/Ink Canvas/obj/project.assets.json @@ -1119,31 +1119,24 @@ ] }, "packageFolders": { - "C:\\Users\\Administrator\\.nuget\\packages\\": {}, - "E:\\Program Files\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} + "C:\\Users\\Hydrogen\\.nuget\\packages\\": {} }, "project": { "version": "5.0.4", "restore": { - "projectUniqueName": "E:\\ICC CE\\ICC CE main\\ICC-CE\\Ink Canvas\\InkCanvasForClass.csproj", + "projectUniqueName": "D:\\Hydrogen\\Documents\\GitHub\\ICC-CE\\Ink Canvas\\InkCanvasForClass.csproj", "projectName": "InkCanvasForClass", - "projectPath": "E:\\ICC CE\\ICC CE main\\ICC-CE\\Ink Canvas\\InkCanvasForClass.csproj", - "packagesPath": "C:\\Users\\Administrator\\.nuget\\packages\\", - "outputPath": "E:\\ICC CE\\ICC CE main\\ICC-CE\\Ink Canvas\\obj\\", + "projectPath": "D:\\Hydrogen\\Documents\\GitHub\\ICC-CE\\Ink Canvas\\InkCanvasForClass.csproj", + "packagesPath": "C:\\Users\\Hydrogen\\.nuget\\packages\\", + "outputPath": "D:\\Hydrogen\\Documents\\GitHub\\ICC-CE\\Ink Canvas\\obj\\", "projectStyle": "PackageReference", - "fallbackFolders": [ - "E:\\Program Files\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], "configFilePaths": [ - "C:\\Users\\Administrator\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + "D:\\Hydrogen\\AppData\\Roaming\\NuGet\\NuGet.Config" ], "originalTargetFrameworks": [ "net472" ], "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { @@ -1162,7 +1155,7 @@ "auditLevel": "low", "auditMode": "direct" }, - "SdkAnalysisLevel": "9.0.300" + "SdkAnalysisLevel": "9.0.100" }, "frameworks": { "net472": { @@ -1201,7 +1194,7 @@ "version": "[0.9.27, )" } }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.301\\RuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Users\\Hydrogen\\.dotnet\\sdk\\9.0.100\\RuntimeIdentifierGraph.json" } }, "runtimes": { diff --git a/Ink Canvas/obj/project.nuget.cache b/Ink Canvas/obj/project.nuget.cache index 57cfaedb..04caab9a 100644 --- a/Ink Canvas/obj/project.nuget.cache +++ b/Ink Canvas/obj/project.nuget.cache @@ -1,21 +1,21 @@ { "version": 2, - "dgSpecHash": "aYvBApY9Dj0=", + "dgSpecHash": "fbDnia5W9CY=", "success": true, - "projectFilePath": "E:\\ICC CE\\ICC CE main\\ICC-CE\\Ink Canvas\\InkCanvasForClass.csproj", + "projectFilePath": "D:\\Hydrogen\\Documents\\GitHub\\ICC-CE\\Ink Canvas\\InkCanvasForClass.csproj", "expectedPackageFiles": [ - "C:\\Users\\Administrator\\.nuget\\packages\\avalonedit\\6.3.0.90\\avalonedit.6.3.0.90.nupkg.sha512", - "C:\\Users\\Administrator\\.nuget\\packages\\hardcodet.notifyicon.wpf\\1.1.0\\hardcodet.notifyicon.wpf.1.1.0.nupkg.sha512", - "C:\\Users\\Administrator\\.nuget\\packages\\inkore.ui.wpf.modern\\0.9.27\\inkore.ui.wpf.modern.0.9.27.nupkg.sha512", - "C:\\Users\\Administrator\\.nuget\\packages\\mdxaml\\1.27.0\\mdxaml.1.27.0.nupkg.sha512", - "C:\\Users\\Administrator\\.nuget\\packages\\mdxaml.plugins\\1.27.0\\mdxaml.plugins.1.27.0.nupkg.sha512", - "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.office.interop.powerpoint\\15.0.4420.1018\\microsoft.office.interop.powerpoint.15.0.4420.1018.nupkg.sha512", - "C:\\Users\\Administrator\\.nuget\\packages\\microsoftofficecore\\15.0.0\\microsoftofficecore.15.0.0.nupkg.sha512", - "C:\\Users\\Administrator\\.nuget\\packages\\newtonsoft.json\\13.0.3\\newtonsoft.json.13.0.3.nupkg.sha512", - "C:\\Users\\Administrator\\.nuget\\packages\\nhotkey\\3.0.0\\nhotkey.3.0.0.nupkg.sha512", - "C:\\Users\\Administrator\\.nuget\\packages\\nhotkey.wpf\\3.0.0\\nhotkey.wpf.3.0.0.nupkg.sha512", - "C:\\Users\\Administrator\\.nuget\\packages\\osversionext\\3.0.0\\osversionext.3.0.0.nupkg.sha512", - "C:\\Users\\Administrator\\.nuget\\packages\\system.valuetuple\\4.5.0\\system.valuetuple.4.5.0.nupkg.sha512" + "C:\\Users\\Hydrogen\\.nuget\\packages\\avalonedit\\6.3.0.90\\avalonedit.6.3.0.90.nupkg.sha512", + "C:\\Users\\Hydrogen\\.nuget\\packages\\hardcodet.notifyicon.wpf\\1.1.0\\hardcodet.notifyicon.wpf.1.1.0.nupkg.sha512", + "C:\\Users\\Hydrogen\\.nuget\\packages\\inkore.ui.wpf.modern\\0.9.27\\inkore.ui.wpf.modern.0.9.27.nupkg.sha512", + "C:\\Users\\Hydrogen\\.nuget\\packages\\mdxaml\\1.27.0\\mdxaml.1.27.0.nupkg.sha512", + "C:\\Users\\Hydrogen\\.nuget\\packages\\mdxaml.plugins\\1.27.0\\mdxaml.plugins.1.27.0.nupkg.sha512", + "C:\\Users\\Hydrogen\\.nuget\\packages\\microsoft.office.interop.powerpoint\\15.0.4420.1018\\microsoft.office.interop.powerpoint.15.0.4420.1018.nupkg.sha512", + "C:\\Users\\Hydrogen\\.nuget\\packages\\microsoftofficecore\\15.0.0\\microsoftofficecore.15.0.0.nupkg.sha512", + "C:\\Users\\Hydrogen\\.nuget\\packages\\newtonsoft.json\\13.0.3\\newtonsoft.json.13.0.3.nupkg.sha512", + "C:\\Users\\Hydrogen\\.nuget\\packages\\nhotkey\\3.0.0\\nhotkey.3.0.0.nupkg.sha512", + "C:\\Users\\Hydrogen\\.nuget\\packages\\nhotkey.wpf\\3.0.0\\nhotkey.wpf.3.0.0.nupkg.sha512", + "C:\\Users\\Hydrogen\\.nuget\\packages\\osversionext\\3.0.0\\osversionext.3.0.0.nupkg.sha512", + "C:\\Users\\Hydrogen\\.nuget\\packages\\system.valuetuple\\4.5.0\\system.valuetuple.4.5.0.nupkg.sha512" ], "logs": [] } \ No newline at end of file