diff --git a/src/.vs/DesktopMagic/DesignTimeBuild/.dtbcache.v2 b/src/.vs/DesktopMagic/DesignTimeBuild/.dtbcache.v2 index 208025c..4e0bc84 100644 Binary files a/src/.vs/DesktopMagic/DesignTimeBuild/.dtbcache.v2 and b/src/.vs/DesktopMagic/DesignTimeBuild/.dtbcache.v2 differ diff --git a/src/.vs/DesktopMagic/v16/.suo b/src/.vs/DesktopMagic/v16/.suo index ccbb172..844fb34 100644 Binary files a/src/.vs/DesktopMagic/v16/.suo and b/src/.vs/DesktopMagic/v16/.suo differ diff --git a/src/DesktopMagic.Installer/DesktopMagic.exe b/src/DesktopMagic.Installer/DesktopMagic.exe index c82eb63..f639885 100644 Binary files a/src/DesktopMagic.Installer/DesktopMagic.exe and b/src/DesktopMagic.Installer/DesktopMagic.exe differ diff --git a/src/DesktopMagic.Installer/obj/DesktopMagic.Installer.csproj.nuget.dgspec.json b/src/DesktopMagic.Installer/obj/DesktopMagic.Installer.csproj.nuget.dgspec.json index eca518a..2861873 100644 --- a/src/DesktopMagic.Installer/obj/DesktopMagic.Installer.csproj.nuget.dgspec.json +++ b/src/DesktopMagic.Installer/obj/DesktopMagic.Installer.csproj.nuget.dgspec.json @@ -59,7 +59,7 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.301\\RuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.302\\RuntimeIdentifierGraph.json" } } } diff --git a/src/DesktopMagic.Installer/obj/project.assets.json b/src/DesktopMagic.Installer/obj/project.assets.json index 91234bb..f0f6944 100644 --- a/src/DesktopMagic.Installer/obj/project.assets.json +++ b/src/DesktopMagic.Installer/obj/project.assets.json @@ -66,7 +66,7 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.301\\RuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.302\\RuntimeIdentifierGraph.json" } } } diff --git a/src/DesktopMagic.Installer/obj/project.nuget.cache b/src/DesktopMagic.Installer/obj/project.nuget.cache index 9d86fcf..9e6c42b 100644 --- a/src/DesktopMagic.Installer/obj/project.nuget.cache +++ b/src/DesktopMagic.Installer/obj/project.nuget.cache @@ -1,6 +1,6 @@ { "version": 2, - "dgSpecHash": "gac8ytMdiziRj0n03oKHBjI2i+esY4gRNcse9GMWAWZFp/kt+79afhl6kQLf3O25+MS7+3vzHpsEr9daSlmiQg==", + "dgSpecHash": "pzJALaGGl8e8m4dP8Gr/jJsgxR1ADMjV2GDRL0S+QHqQKwR9buCwy9mVAIOgn+XOaSNGf4dwzdTyE55qy4QPAw==", "success": true, "projectFilePath": "C:\\Users\\David\\Programmieren\\DesktopMagic\\src\\DesktopMagic.Installer\\DesktopMagic.Installer.csproj", "expectedPackageFiles": [], diff --git a/src/DesktopMagic/MainWindow.xaml.cs b/src/DesktopMagic/MainWindow.xaml.cs index c136a03..7822632 100644 --- a/src/DesktopMagic/MainWindow.xaml.cs +++ b/src/DesktopMagic/MainWindow.xaml.cs @@ -592,6 +592,8 @@ namespace DesktopMagic private void Option_ValueChanged() { + //Plugin settings save currenty disabled. Not sure if I want to add it back in the future. + /* string pluginName = ((Tuple)optionsComboBox.SelectedItem).Item1.ToString(); if (PluginsSettings.ContainsKey(pluginName)) @@ -599,6 +601,7 @@ namespace DesktopMagic string jsonSettings = JsonSerializer.Serialize(PluginsSettings[pluginName]); File.WriteAllText($"{applicationDataPath}\\Plugins\\{pluginName}\\{pluginName}.save", jsonSettings); } + */ } #endregion options diff --git a/src/DesktopMagic/bin/Debug/net5.0-windows/DesktopMagic.dll b/src/DesktopMagic/bin/Debug/net5.0-windows/DesktopMagic.dll index b9fb928..e365fce 100644 Binary files a/src/DesktopMagic/bin/Debug/net5.0-windows/DesktopMagic.dll and b/src/DesktopMagic/bin/Debug/net5.0-windows/DesktopMagic.dll differ diff --git a/src/DesktopMagic/bin/Debug/net5.0-windows/DesktopMagic.exe b/src/DesktopMagic/bin/Debug/net5.0-windows/DesktopMagic.exe index 599708a..6d3db28 100644 Binary files a/src/DesktopMagic/bin/Debug/net5.0-windows/DesktopMagic.exe and b/src/DesktopMagic/bin/Debug/net5.0-windows/DesktopMagic.exe differ diff --git a/src/DesktopMagic/bin/Debug/net5.0-windows/DesktopMagic.pdb b/src/DesktopMagic/bin/Debug/net5.0-windows/DesktopMagic.pdb index 22fec52..6c59bdb 100644 Binary files a/src/DesktopMagic/bin/Debug/net5.0-windows/DesktopMagic.pdb and b/src/DesktopMagic/bin/Debug/net5.0-windows/DesktopMagic.pdb differ diff --git a/src/DesktopMagic/bin/Debug/net5.0-windows/ref/DesktopMagic.dll b/src/DesktopMagic/bin/Debug/net5.0-windows/ref/DesktopMagic.dll index 8086553..da3b518 100644 Binary files a/src/DesktopMagic/bin/Debug/net5.0-windows/ref/DesktopMagic.dll and b/src/DesktopMagic/bin/Debug/net5.0-windows/ref/DesktopMagic.dll differ diff --git a/src/DesktopMagic/obj/Debug/net5.0-windows/DesktopMagic.dll b/src/DesktopMagic/obj/Debug/net5.0-windows/DesktopMagic.dll index b9fb928..e365fce 100644 Binary files a/src/DesktopMagic/obj/Debug/net5.0-windows/DesktopMagic.dll and b/src/DesktopMagic/obj/Debug/net5.0-windows/DesktopMagic.dll differ diff --git a/src/DesktopMagic/obj/Debug/net5.0-windows/DesktopMagic.pdb b/src/DesktopMagic/obj/Debug/net5.0-windows/DesktopMagic.pdb index 22fec52..6c59bdb 100644 Binary files a/src/DesktopMagic/obj/Debug/net5.0-windows/DesktopMagic.pdb and b/src/DesktopMagic/obj/Debug/net5.0-windows/DesktopMagic.pdb differ diff --git a/src/DesktopMagic/obj/Debug/net5.0-windows/DesktopMagic_MarkupCompile.i.cache b/src/DesktopMagic/obj/Debug/net5.0-windows/DesktopMagic_MarkupCompile.i.cache index aad124f..55632ed 100644 --- a/src/DesktopMagic/obj/Debug/net5.0-windows/DesktopMagic_MarkupCompile.i.cache +++ b/src/DesktopMagic/obj/Debug/net5.0-windows/DesktopMagic_MarkupCompile.i.cache @@ -16,5 +16,5 @@ C:\Users\David\Programmieren\DesktopMagic\src\DesktopMagic\App.xaml 226605658444 CalendarWindow.xaml;CpuUsageWindow.xaml;DateWindow.xaml;InputDialog.xaml;MainWindow.xaml;MusicVisualizerWindow.xaml;Plugin\PluginWindow.xaml;Resources\StringResources.de.xaml;Resources\StringResources.en.xaml;TimeWindow.xaml; -True +False diff --git a/src/DesktopMagic/obj/Debug/net5.0-windows/InputDialog.g.cs b/src/DesktopMagic/obj/Debug/net5.0-windows/InputDialog.g.cs index 59e385b..5d6eae7 100644 --- a/src/DesktopMagic/obj/Debug/net5.0-windows/InputDialog.g.cs +++ b/src/DesktopMagic/obj/Debug/net5.0-windows/InputDialog.g.cs @@ -80,7 +80,7 @@ namespace DesktopMagic { /// InitializeComponent /// [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "5.0.6.0")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "5.0.8.0")] public void InitializeComponent() { if (_contentLoaded) { return; @@ -96,7 +96,7 @@ namespace DesktopMagic { } [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "5.0.6.0")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "5.0.8.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/src/DesktopMagic/obj/Debug/net5.0-windows/InputDialog.g.i.cs b/src/DesktopMagic/obj/Debug/net5.0-windows/InputDialog.g.i.cs index 56f8122..5d6eae7 100644 --- a/src/DesktopMagic/obj/Debug/net5.0-windows/InputDialog.g.i.cs +++ b/src/DesktopMagic/obj/Debug/net5.0-windows/InputDialog.g.i.cs @@ -80,13 +80,13 @@ namespace DesktopMagic { /// InitializeComponent /// [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "5.0.6.0")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "5.0.8.0")] public void InitializeComponent() { if (_contentLoaded) { return; } _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/DesktopMagic;V1.0.0.0;component/inputdialog.xaml", System.UriKind.Relative); + System.Uri resourceLocater = new System.Uri("/DesktopMagic;component/inputdialog.xaml", System.UriKind.Relative); #line 1 "..\..\..\InputDialog.xaml" System.Windows.Application.LoadComponent(this, resourceLocater); @@ -96,7 +96,7 @@ namespace DesktopMagic { } [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "5.0.6.0")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "5.0.8.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/src/DesktopMagic/obj/Debug/net5.0-windows/apphost.exe b/src/DesktopMagic/obj/Debug/net5.0-windows/apphost.exe index 599708a..6d3db28 100644 Binary files a/src/DesktopMagic/obj/Debug/net5.0-windows/apphost.exe and b/src/DesktopMagic/obj/Debug/net5.0-windows/apphost.exe differ diff --git a/src/DesktopMagic/obj/Debug/net5.0-windows/ref/DesktopMagic.dll b/src/DesktopMagic/obj/Debug/net5.0-windows/ref/DesktopMagic.dll index 8086553..da3b518 100644 Binary files a/src/DesktopMagic/obj/Debug/net5.0-windows/ref/DesktopMagic.dll and b/src/DesktopMagic/obj/Debug/net5.0-windows/ref/DesktopMagic.dll differ diff --git a/src/DesktopMagic/obj/DesktopMagic.csproj.nuget.dgspec.json b/src/DesktopMagic/obj/DesktopMagic.csproj.nuget.dgspec.json index 7cac550..c97c2e9 100644 --- a/src/DesktopMagic/obj/DesktopMagic.csproj.nuget.dgspec.json +++ b/src/DesktopMagic/obj/DesktopMagic.csproj.nuget.dgspec.json @@ -65,7 +65,7 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.301\\RuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.302\\RuntimeIdentifierGraph.json" } } }, @@ -161,7 +161,7 @@ "privateAssets": "none" } }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.301\\RuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.302\\RuntimeIdentifierGraph.json" } } } diff --git a/src/DesktopMagic/obj/Release/net5.0-windows/App.g.i.cs b/src/DesktopMagic/obj/Release/net5.0-windows/App.g.i.cs index 8ede292..fd5b878 100644 --- a/src/DesktopMagic/obj/Release/net5.0-windows/App.g.i.cs +++ b/src/DesktopMagic/obj/Release/net5.0-windows/App.g.i.cs @@ -62,7 +62,7 @@ namespace DesktopMagic { #line default #line hidden - System.Uri resourceLocater = new System.Uri("/DesktopMagic;component/app.xaml", System.UriKind.Relative); + System.Uri resourceLocater = new System.Uri("/DesktopMagic;V1.0.0.0;component/app.xaml", System.UriKind.Relative); #line 1 "..\..\..\App.xaml" System.Windows.Application.LoadComponent(this, resourceLocater); diff --git a/src/DesktopMagic/obj/Release/net5.0-windows/CalendarWindow.g.i.cs b/src/DesktopMagic/obj/Release/net5.0-windows/CalendarWindow.g.i.cs index 0ca7078..310883d 100644 --- a/src/DesktopMagic/obj/Release/net5.0-windows/CalendarWindow.g.i.cs +++ b/src/DesktopMagic/obj/Release/net5.0-windows/CalendarWindow.g.i.cs @@ -85,7 +85,7 @@ namespace DesktopMagic { return; } _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/DesktopMagic;component/calendarwindow.xaml", System.UriKind.Relative); + System.Uri resourceLocater = new System.Uri("/DesktopMagic;V1.0.0.0;component/calendarwindow.xaml", System.UriKind.Relative); #line 1 "..\..\..\CalendarWindow.xaml" System.Windows.Application.LoadComponent(this, resourceLocater); diff --git a/src/DesktopMagic/obj/Release/net5.0-windows/CpuUsageWindow.g.i.cs b/src/DesktopMagic/obj/Release/net5.0-windows/CpuUsageWindow.g.i.cs index 9c3f7a3..7c8b9c0 100644 --- a/src/DesktopMagic/obj/Release/net5.0-windows/CpuUsageWindow.g.i.cs +++ b/src/DesktopMagic/obj/Release/net5.0-windows/CpuUsageWindow.g.i.cs @@ -85,7 +85,7 @@ namespace DesktopMagic { return; } _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/DesktopMagic;component/cpuusagewindow.xaml", System.UriKind.Relative); + System.Uri resourceLocater = new System.Uri("/DesktopMagic;V1.0.0.0;component/cpuusagewindow.xaml", System.UriKind.Relative); #line 1 "..\..\..\CpuUsageWindow.xaml" System.Windows.Application.LoadComponent(this, resourceLocater); diff --git a/src/DesktopMagic/obj/Release/net5.0-windows/DateWindow.g.i.cs b/src/DesktopMagic/obj/Release/net5.0-windows/DateWindow.g.i.cs index e3b4015..61a4a44 100644 --- a/src/DesktopMagic/obj/Release/net5.0-windows/DateWindow.g.i.cs +++ b/src/DesktopMagic/obj/Release/net5.0-windows/DateWindow.g.i.cs @@ -85,7 +85,7 @@ namespace DesktopMagic { return; } _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/DesktopMagic;component/datewindow.xaml", System.UriKind.Relative); + System.Uri resourceLocater = new System.Uri("/DesktopMagic;V1.0.0.0;component/datewindow.xaml", System.UriKind.Relative); #line 1 "..\..\..\DateWindow.xaml" System.Windows.Application.LoadComponent(this, resourceLocater); diff --git a/src/DesktopMagic/obj/Release/net5.0-windows/InputDialog.g.i.cs b/src/DesktopMagic/obj/Release/net5.0-windows/InputDialog.g.i.cs index 59e385b..56f8122 100644 --- a/src/DesktopMagic/obj/Release/net5.0-windows/InputDialog.g.i.cs +++ b/src/DesktopMagic/obj/Release/net5.0-windows/InputDialog.g.i.cs @@ -86,7 +86,7 @@ namespace DesktopMagic { return; } _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/DesktopMagic;component/inputdialog.xaml", System.UriKind.Relative); + System.Uri resourceLocater = new System.Uri("/DesktopMagic;V1.0.0.0;component/inputdialog.xaml", System.UriKind.Relative); #line 1 "..\..\..\InputDialog.xaml" System.Windows.Application.LoadComponent(this, resourceLocater); diff --git a/src/DesktopMagic/obj/Release/net5.0-windows/MainWindow.g.i.cs b/src/DesktopMagic/obj/Release/net5.0-windows/MainWindow.g.i.cs index 2847ef5..3c4121d 100644 --- a/src/DesktopMagic/obj/Release/net5.0-windows/MainWindow.g.i.cs +++ b/src/DesktopMagic/obj/Release/net5.0-windows/MainWindow.g.i.cs @@ -288,7 +288,7 @@ namespace DesktopMagic { return; } _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/DesktopMagic;component/mainwindow.xaml", System.UriKind.Relative); + System.Uri resourceLocater = new System.Uri("/DesktopMagic;V1.0.0.0;component/mainwindow.xaml", System.UriKind.Relative); #line 1 "..\..\..\MainWindow.xaml" System.Windows.Application.LoadComponent(this, resourceLocater); diff --git a/src/DesktopMagic/obj/Release/net5.0-windows/MusicVisualizerWindow.g.i.cs b/src/DesktopMagic/obj/Release/net5.0-windows/MusicVisualizerWindow.g.i.cs index e1680aa..0bd4e8e 100644 --- a/src/DesktopMagic/obj/Release/net5.0-windows/MusicVisualizerWindow.g.i.cs +++ b/src/DesktopMagic/obj/Release/net5.0-windows/MusicVisualizerWindow.g.i.cs @@ -93,7 +93,7 @@ namespace DesktopMagic { return; } _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/DesktopMagic;component/musicvisualizerwindow.xaml", System.UriKind.Relative); + System.Uri resourceLocater = new System.Uri("/DesktopMagic;V1.0.0.0;component/musicvisualizerwindow.xaml", System.UriKind.Relative); #line 1 "..\..\..\MusicVisualizerWindow.xaml" System.Windows.Application.LoadComponent(this, resourceLocater); diff --git a/src/DesktopMagic/obj/Release/net5.0-windows/TimeWindow.g.i.cs b/src/DesktopMagic/obj/Release/net5.0-windows/TimeWindow.g.i.cs index 6abe00b..28ffa14 100644 --- a/src/DesktopMagic/obj/Release/net5.0-windows/TimeWindow.g.i.cs +++ b/src/DesktopMagic/obj/Release/net5.0-windows/TimeWindow.g.i.cs @@ -85,7 +85,7 @@ namespace DesktopMagic { return; } _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/DesktopMagic;component/timewindow.xaml", System.UriKind.Relative); + System.Uri resourceLocater = new System.Uri("/DesktopMagic;V1.0.0.0;component/timewindow.xaml", System.UriKind.Relative); #line 1 "..\..\..\TimeWindow.xaml" System.Windows.Application.LoadComponent(this, resourceLocater); diff --git a/src/DesktopMagic/obj/project.assets.json b/src/DesktopMagic/obj/project.assets.json index 04d66cb..ac50c1f 100644 --- a/src/DesktopMagic/obj/project.assets.json +++ b/src/DesktopMagic/obj/project.assets.json @@ -1151,7 +1151,7 @@ "privateAssets": "none" } }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.301\\RuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.302\\RuntimeIdentifierGraph.json" } } }, diff --git a/src/DesktopMagic/obj/project.nuget.cache b/src/DesktopMagic/obj/project.nuget.cache index 8077eb3..b6a3207 100644 --- a/src/DesktopMagic/obj/project.nuget.cache +++ b/src/DesktopMagic/obj/project.nuget.cache @@ -1,6 +1,6 @@ { "version": 2, - "dgSpecHash": "eglOm5hQkLPcbQslPEHPEhcA3sB/Rx127kpEvCEGGE7DQ5ehT+cxxG+3zmA9fZsPrdn/XW0EE5qoXpPs+dxO8A==", + "dgSpecHash": "AppB3RDtsVWhtdg74ZpvO/m8vPTXtxgFmiIVBIYihRM5eu9dBoA/u3jeoQWm1RpmxKk+HISCQ9UCF9XzLzaZ1g==", "success": true, "projectFilePath": "C:\\Users\\David\\Programmieren\\DesktopMagic\\src\\DesktopMagic\\DesktopMagic.csproj", "expectedPackageFiles": [ diff --git a/src/DesktopMagicPlugin.Test/bin/Debug/net5.0/DesktopMagicPlugin.Test.dll b/src/DesktopMagicPlugin.Test/bin/Debug/net5.0/DesktopMagicPlugin.Test.dll index 4e16ae1..9a66a0c 100644 Binary files a/src/DesktopMagicPlugin.Test/bin/Debug/net5.0/DesktopMagicPlugin.Test.dll and b/src/DesktopMagicPlugin.Test/bin/Debug/net5.0/DesktopMagicPlugin.Test.dll differ diff --git a/src/DesktopMagicPlugin.Test/bin/Debug/net5.0/DesktopMagicPlugin.Test.pdb b/src/DesktopMagicPlugin.Test/bin/Debug/net5.0/DesktopMagicPlugin.Test.pdb index 01ce4c2..76f2954 100644 Binary files a/src/DesktopMagicPlugin.Test/bin/Debug/net5.0/DesktopMagicPlugin.Test.pdb and b/src/DesktopMagicPlugin.Test/bin/Debug/net5.0/DesktopMagicPlugin.Test.pdb differ diff --git a/src/DesktopMagicPlugin.Test/bin/Debug/net5.0/DesktopMagicPluginAPI.dll b/src/DesktopMagicPlugin.Test/bin/Debug/net5.0/DesktopMagicPluginAPI.dll index 07156f6..445ef2e 100644 Binary files a/src/DesktopMagicPlugin.Test/bin/Debug/net5.0/DesktopMagicPluginAPI.dll and b/src/DesktopMagicPlugin.Test/bin/Debug/net5.0/DesktopMagicPluginAPI.dll differ diff --git a/src/DesktopMagicPlugin.Test/bin/Debug/net5.0/DesktopMagicPluginAPI.pdb b/src/DesktopMagicPlugin.Test/bin/Debug/net5.0/DesktopMagicPluginAPI.pdb index 4908d7e..75f833b 100644 Binary files a/src/DesktopMagicPlugin.Test/bin/Debug/net5.0/DesktopMagicPluginAPI.pdb and b/src/DesktopMagicPlugin.Test/bin/Debug/net5.0/DesktopMagicPluginAPI.pdb differ diff --git a/src/DesktopMagicPlugin.Test/obj/Debug/net5.0/DesktopMagicPlugin.Test.dll b/src/DesktopMagicPlugin.Test/obj/Debug/net5.0/DesktopMagicPlugin.Test.dll index 4e16ae1..9a66a0c 100644 Binary files a/src/DesktopMagicPlugin.Test/obj/Debug/net5.0/DesktopMagicPlugin.Test.dll and b/src/DesktopMagicPlugin.Test/obj/Debug/net5.0/DesktopMagicPlugin.Test.dll differ diff --git a/src/DesktopMagicPlugin.Test/obj/Debug/net5.0/DesktopMagicPlugin.Test.pdb b/src/DesktopMagicPlugin.Test/obj/Debug/net5.0/DesktopMagicPlugin.Test.pdb index 01ce4c2..76f2954 100644 Binary files a/src/DesktopMagicPlugin.Test/obj/Debug/net5.0/DesktopMagicPlugin.Test.pdb and b/src/DesktopMagicPlugin.Test/obj/Debug/net5.0/DesktopMagicPlugin.Test.pdb differ diff --git a/src/DesktopMagicPlugin.Test/obj/DesktopMagicPlugin.Test.csproj.nuget.dgspec.json b/src/DesktopMagicPlugin.Test/obj/DesktopMagicPlugin.Test.csproj.nuget.dgspec.json index fd1b3b5..158b63e 100644 --- a/src/DesktopMagicPlugin.Test/obj/DesktopMagicPlugin.Test.csproj.nuget.dgspec.json +++ b/src/DesktopMagicPlugin.Test/obj/DesktopMagicPlugin.Test.csproj.nuget.dgspec.json @@ -69,7 +69,7 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.301\\RuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.302\\RuntimeIdentifierGraph.json" } } }, @@ -134,7 +134,7 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.301\\RuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.302\\RuntimeIdentifierGraph.json" } } } diff --git a/src/DesktopMagicPlugin.Test/obj/project.assets.json b/src/DesktopMagicPlugin.Test/obj/project.assets.json index cbbb17b..0f72770 100644 --- a/src/DesktopMagicPlugin.Test/obj/project.assets.json +++ b/src/DesktopMagicPlugin.Test/obj/project.assets.json @@ -236,7 +236,7 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.301\\RuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.302\\RuntimeIdentifierGraph.json" } } } diff --git a/src/DesktopMagicPlugin.Test/obj/project.nuget.cache b/src/DesktopMagicPlugin.Test/obj/project.nuget.cache index ab6fd0a..37c7c6f 100644 --- a/src/DesktopMagicPlugin.Test/obj/project.nuget.cache +++ b/src/DesktopMagicPlugin.Test/obj/project.nuget.cache @@ -1,6 +1,6 @@ { "version": 2, - "dgSpecHash": "bKNVRlJTkB1Q+qxz0L+/WVz3V7NPh6sYzdnDCosqJqTOuhzldTVhcpE7nvRH5DKOS1NAr66gqn7IiXnRcoxYkw==", + "dgSpecHash": "khqkHlUYqdLTXlso/R3vWb2o1g4VmaQq7VjZa6ZN5uASVmCSBuS1fNqBzEv8fVAVhWaqPhY16zQUCJQaQrOL0Q==", "success": true, "projectFilePath": "C:\\Users\\David\\Programmieren\\DesktopMagic\\src\\DesktopMagicPlugin.Test\\DesktopMagicPlugin.Test.csproj", "expectedPackageFiles": [ diff --git a/src/DesktopMagicPluginAPI/Inputs/ElementAttribute.cs b/src/DesktopMagicPluginAPI/Inputs/ElementAttribute.cs index b02fb4d..68648de 100644 --- a/src/DesktopMagicPluginAPI/Inputs/ElementAttribute.cs +++ b/src/DesktopMagicPluginAPI/Inputs/ElementAttribute.cs @@ -14,5 +14,14 @@ namespace DesktopMagicPluginAPI.Inputs Name = name; OrderIndex = orderIndex; } + + public ElementAttribute(int orderIndex = 0) + { + OrderIndex = orderIndex; + } + + public ElementAttribute() + { + } } } \ No newline at end of file diff --git a/src/DesktopMagicPluginAPI/bin/Debug/net5.0/DesktopMagicPluginAPI.dll b/src/DesktopMagicPluginAPI/bin/Debug/net5.0/DesktopMagicPluginAPI.dll index 07156f6..445ef2e 100644 Binary files a/src/DesktopMagicPluginAPI/bin/Debug/net5.0/DesktopMagicPluginAPI.dll and b/src/DesktopMagicPluginAPI/bin/Debug/net5.0/DesktopMagicPluginAPI.dll differ diff --git a/src/DesktopMagicPluginAPI/bin/Debug/net5.0/DesktopMagicPluginAPI.pdb b/src/DesktopMagicPluginAPI/bin/Debug/net5.0/DesktopMagicPluginAPI.pdb index 4908d7e..75f833b 100644 Binary files a/src/DesktopMagicPluginAPI/bin/Debug/net5.0/DesktopMagicPluginAPI.pdb and b/src/DesktopMagicPluginAPI/bin/Debug/net5.0/DesktopMagicPluginAPI.pdb differ diff --git a/src/DesktopMagicPluginAPI/bin/Debug/net5.0/ref/DesktopMagicPluginAPI.dll b/src/DesktopMagicPluginAPI/bin/Debug/net5.0/ref/DesktopMagicPluginAPI.dll index 69957ea..4f41ceb 100644 Binary files a/src/DesktopMagicPluginAPI/bin/Debug/net5.0/ref/DesktopMagicPluginAPI.dll and b/src/DesktopMagicPluginAPI/bin/Debug/net5.0/ref/DesktopMagicPluginAPI.dll differ diff --git a/src/DesktopMagicPluginAPI/obj/Debug/net5.0/DesktopMagicPluginAPI.dll b/src/DesktopMagicPluginAPI/obj/Debug/net5.0/DesktopMagicPluginAPI.dll index 07156f6..445ef2e 100644 Binary files a/src/DesktopMagicPluginAPI/obj/Debug/net5.0/DesktopMagicPluginAPI.dll and b/src/DesktopMagicPluginAPI/obj/Debug/net5.0/DesktopMagicPluginAPI.dll differ diff --git a/src/DesktopMagicPluginAPI/obj/Debug/net5.0/DesktopMagicPluginAPI.pdb b/src/DesktopMagicPluginAPI/obj/Debug/net5.0/DesktopMagicPluginAPI.pdb index 4908d7e..75f833b 100644 Binary files a/src/DesktopMagicPluginAPI/obj/Debug/net5.0/DesktopMagicPluginAPI.pdb and b/src/DesktopMagicPluginAPI/obj/Debug/net5.0/DesktopMagicPluginAPI.pdb differ diff --git a/src/DesktopMagicPluginAPI/obj/Debug/net5.0/ref/DesktopMagicPluginAPI.dll b/src/DesktopMagicPluginAPI/obj/Debug/net5.0/ref/DesktopMagicPluginAPI.dll index 69957ea..4f41ceb 100644 Binary files a/src/DesktopMagicPluginAPI/obj/Debug/net5.0/ref/DesktopMagicPluginAPI.dll and b/src/DesktopMagicPluginAPI/obj/Debug/net5.0/ref/DesktopMagicPluginAPI.dll differ diff --git a/src/DesktopMagicPluginAPI/obj/DesktopMagicPluginAPI.csproj.nuget.dgspec.json b/src/DesktopMagicPluginAPI/obj/DesktopMagicPluginAPI.csproj.nuget.dgspec.json index e5e8079..9172ff7 100644 --- a/src/DesktopMagicPluginAPI/obj/DesktopMagicPluginAPI.csproj.nuget.dgspec.json +++ b/src/DesktopMagicPluginAPI/obj/DesktopMagicPluginAPI.csproj.nuget.dgspec.json @@ -65,7 +65,7 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.301\\RuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.302\\RuntimeIdentifierGraph.json" } } } diff --git a/src/DesktopMagicPluginAPI/obj/project.assets.json b/src/DesktopMagicPluginAPI/obj/project.assets.json index b8859ee..0300c2e 100644 --- a/src/DesktopMagicPluginAPI/obj/project.assets.json +++ b/src/DesktopMagicPluginAPI/obj/project.assets.json @@ -213,7 +213,7 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.301\\RuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.302\\RuntimeIdentifierGraph.json" } } } diff --git a/src/DesktopMagicPluginAPI/obj/project.nuget.cache b/src/DesktopMagicPluginAPI/obj/project.nuget.cache index 11a69cc..9da8031 100644 --- a/src/DesktopMagicPluginAPI/obj/project.nuget.cache +++ b/src/DesktopMagicPluginAPI/obj/project.nuget.cache @@ -1,6 +1,6 @@ { "version": 2, - "dgSpecHash": "+b7ffutxpVrmCwRmkCKJuA+T1JzbuNT4idwJ6fOh9Wv5DD7Tt6uplsP6zk0Qo5C6IDEHWyhaEa0PPr34upBxbQ==", + "dgSpecHash": "TFv9VaIlVM7dJlroayvqki0onWR6tqfcSvlcX48JtcAgxtEPtdStmcE1Z2n6c2FLEwd5vOPjzRiUPYC+hlGU9A==", "success": true, "projectFilePath": "C:\\Users\\David\\Programmieren\\DesktopMagic\\src\\DesktopMagicPluginAPI\\DesktopMagicPluginAPI.csproj", "expectedPackageFiles": [