commit fc7d93fdeb50b6749326c8e9a862d62936cae48c
Author: Leon <83773882+UnlegitDqrk@users.noreply.github.com>
Date: Tue Jun 7 21:30:32 2022 +0200
Add files via upload
diff --git a/App.xaml b/App.xaml
new file mode 100644
index 0000000..4ffa71f
--- /dev/null
+++ b/App.xaml
@@ -0,0 +1,9 @@
+
+
+
+
+
diff --git a/App.xaml.cs b/App.xaml.cs
new file mode 100644
index 0000000..ba43675
--- /dev/null
+++ b/App.xaml.cs
@@ -0,0 +1,17 @@
+using System;
+using System.Collections.Generic;
+using System.Configuration;
+using System.Data;
+using System.Linq;
+using System.Threading.Tasks;
+using System.Windows;
+
+namespace CustomBlueScreen
+{
+ ///
+ /// Interaction logic for App.xaml
+ ///
+ public partial class App : Application
+ {
+ }
+}
diff --git a/AssemblyInfo.cs b/AssemblyInfo.cs
new file mode 100644
index 0000000..74087a1
--- /dev/null
+++ b/AssemblyInfo.cs
@@ -0,0 +1,10 @@
+using System.Windows;
+
+[assembly: ThemeInfo(
+ ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located
+ //(used if a resource is not found in the page,
+ // or application resource dictionaries)
+ ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located
+ //(used if a resource is not found in the page,
+ // app, or any theme specific resource dictionaries)
+)]
diff --git a/CustomBlueScreen.csproj b/CustomBlueScreen.csproj
new file mode 100644
index 0000000..5d3e08d
--- /dev/null
+++ b/CustomBlueScreen.csproj
@@ -0,0 +1,26 @@
+
+
+
+ WinExe
+ netcoreapp3.1
+ true
+ UnlegitDqrk
+
+ UnlegitDqrk
+ false
+ true
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/CustomBlueScreen.csproj.user b/CustomBlueScreen.csproj.user
new file mode 100644
index 0000000..06ea4fd
--- /dev/null
+++ b/CustomBlueScreen.csproj.user
@@ -0,0 +1,14 @@
+
+
+
+
+
+ Designer
+
+
+
+
+ Designer
+
+
+
\ No newline at end of file
diff --git a/CustomBlueScreen.sln b/CustomBlueScreen.sln
new file mode 100644
index 0000000..9a1f073
--- /dev/null
+++ b/CustomBlueScreen.sln
@@ -0,0 +1,25 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio Version 16
+VisualStudioVersion = 16.0.31624.102
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CustomBlueScreen", "CustomBlueScreen.csproj", "{73E21E0D-849F-4E6C-BCD8-C9893668E2B5}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Any CPU = Debug|Any CPU
+ Release|Any CPU = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {73E21E0D-849F-4E6C-BCD8-C9893668E2B5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {73E21E0D-849F-4E6C-BCD8-C9893668E2B5}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {73E21E0D-849F-4E6C-BCD8-C9893668E2B5}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {73E21E0D-849F-4E6C-BCD8-C9893668E2B5}.Release|Any CPU.Build.0 = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+ GlobalSection(ExtensibilityGlobals) = postSolution
+ SolutionGuid = {A3B6EF4F-5980-404B-A5B4-4F28CB12F0B1}
+ EndGlobalSection
+EndGlobal
diff --git a/MainWindow.xaml b/MainWindow.xaml
new file mode 100644
index 0000000..9d4f9d7
--- /dev/null
+++ b/MainWindow.xaml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
diff --git a/MainWindow.xaml.cs b/MainWindow.xaml.cs
new file mode 100644
index 0000000..003e9d2
--- /dev/null
+++ b/MainWindow.xaml.cs
@@ -0,0 +1,98 @@
+using Microsoft.VisualBasic;
+using Microsoft.Win32;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Runtime.InteropServices;
+using System.Text;
+using System.Threading;
+using System.Threading.Tasks;
+using System.Windows;
+using System.Windows.Controls;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Input;
+using System.Windows.Media;
+using System.Windows.Media.Imaging;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+
+namespace CustomBlueScreen
+{
+ ///
+ /// Interaction logic for MainWindow.xaml
+ ///
+ public partial class MainWindow : Window
+ {
+
+ private struct KBDLLHOOKSTRUCT
+ {
+ public int vkCode;
+ int scanCode;
+ public int flags;
+ int time;
+ int dwExtraInfo;
+ }
+
+ private delegate int LowLevelKeyboardProcDelegate(int nCode, int wParam, ref KBDLLHOOKSTRUCT lParam);
+
+ [DllImport("user32.dll")]
+ private static extern IntPtr SetWindowsHookEx(int idHook, LowLevelKeyboardProcDelegate lpfn, IntPtr hMod, int dwThreadId);
+
+ [DllImport("user32.dll")]
+ private static extern bool UnhookWindowsHookEx(IntPtr hHook);
+
+ [DllImport("user32.dll")]
+ private static extern int CallNextHookEx(int hHook, int nCode, int wParam, ref KBDLLHOOKSTRUCT lParam);
+
+ [DllImport("kernel32.dll")]
+ private static extern IntPtr GetModuleHandle(IntPtr path);
+
+ private IntPtr hHook;
+ LowLevelKeyboardProcDelegate hookProc; // prevent gc
+ const int WH_KEYBOARD_LL = 13;
+
+ public MainWindow()
+ {
+ InitializeComponent();
+
+ IntPtr hModule = GetModuleHandle(IntPtr.Zero);
+ hookProc = new LowLevelKeyboardProcDelegate(LowLevelKeyboardProc);
+ hHook = SetWindowsHookEx(WH_KEYBOARD_LL, hookProc, hModule, 0);
+ if (hHook == IntPtr.Zero)
+ {
+ MessageBox.Show("Failed to set hook, error = " + Marshal.GetLastWin32Error());
+ }
+ }
+
+ private static int LowLevelKeyboardProc(int nCode, int wParam, ref KBDLLHOOKSTRUCT lParam)
+ {
+ if (nCode >= 0)
+ switch (wParam)
+ {
+ case 256: // WM_KEYDOWN
+ case 257: // WM_KEYUP
+ case 260: // WM_SYSKEYDOWN
+ case 261: // M_SYSKEYUP
+ if (
+ (lParam.vkCode == 0x09 || lParam.flags == 32) || // Alt+Tab
+ (lParam.vkCode == 0x1b || lParam.flags == 32) || // Alt+Esc
+ (lParam.vkCode == 0x73 || lParam.flags == 32) || // Alt+F4
+ (lParam.vkCode == 0x1b || lParam.flags == 0) || // Ctrl+Esc
+ (lParam.vkCode == 0x5b || lParam.flags == 1) || // Left Windows Key
+ (lParam.vkCode == 0x5c || lParam.flags == 1)) // Right Windows Key
+ {
+ return 1; //Do not handle key events
+ }
+ break;
+ }
+ return CallNextHookEx(0, nCode, wParam, ref lParam);
+ }
+
+
+ private void Window_Closed(object sender, EventArgs e)
+ {
+ UnhookWindowsHookEx(hHook); // release keyboard hook
+ }
+ }
+}
diff --git a/bin/Debug/CustomBlueScreen.zip b/bin/Debug/CustomBlueScreen.zip
new file mode 100644
index 0000000..a69f2ca
Binary files /dev/null and b/bin/Debug/CustomBlueScreen.zip differ
diff --git a/bin/Debug/netcoreapp3.1/CustomBlueScreen.deps.json b/bin/Debug/netcoreapp3.1/CustomBlueScreen.deps.json
new file mode 100644
index 0000000..ae3800e
--- /dev/null
+++ b/bin/Debug/netcoreapp3.1/CustomBlueScreen.deps.json
@@ -0,0 +1,23 @@
+{
+ "runtimeTarget": {
+ "name": ".NETCoreApp,Version=v3.1",
+ "signature": ""
+ },
+ "compilationOptions": {},
+ "targets": {
+ ".NETCoreApp,Version=v3.1": {
+ "CustomBlueScreen/1.0.0": {
+ "runtime": {
+ "CustomBlueScreen.dll": {}
+ }
+ }
+ }
+ },
+ "libraries": {
+ "CustomBlueScreen/1.0.0": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ }
+ }
+}
\ No newline at end of file
diff --git a/bin/Debug/netcoreapp3.1/CustomBlueScreen.dll b/bin/Debug/netcoreapp3.1/CustomBlueScreen.dll
new file mode 100644
index 0000000..7f1f7ef
Binary files /dev/null and b/bin/Debug/netcoreapp3.1/CustomBlueScreen.dll differ
diff --git a/bin/Debug/netcoreapp3.1/CustomBlueScreen.exe b/bin/Debug/netcoreapp3.1/CustomBlueScreen.exe
new file mode 100644
index 0000000..f5c9009
Binary files /dev/null and b/bin/Debug/netcoreapp3.1/CustomBlueScreen.exe differ
diff --git a/bin/Debug/netcoreapp3.1/CustomBlueScreen.pdb b/bin/Debug/netcoreapp3.1/CustomBlueScreen.pdb
new file mode 100644
index 0000000..5e84d44
Binary files /dev/null and b/bin/Debug/netcoreapp3.1/CustomBlueScreen.pdb differ
diff --git a/bin/Debug/netcoreapp3.1/CustomBlueScreen.runtimeconfig.dev.json b/bin/Debug/netcoreapp3.1/CustomBlueScreen.runtimeconfig.dev.json
new file mode 100644
index 0000000..42b3edd
--- /dev/null
+++ b/bin/Debug/netcoreapp3.1/CustomBlueScreen.runtimeconfig.dev.json
@@ -0,0 +1,9 @@
+{
+ "runtimeOptions": {
+ "additionalProbingPaths": [
+ "C:\\Users\\finna\\.dotnet\\store\\|arch|\\|tfm|",
+ "C:\\Users\\finna\\.nuget\\packages",
+ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
+ ]
+ }
+}
\ No newline at end of file
diff --git a/bin/Debug/netcoreapp3.1/CustomBlueScreen.runtimeconfig.json b/bin/Debug/netcoreapp3.1/CustomBlueScreen.runtimeconfig.json
new file mode 100644
index 0000000..9b3a644
--- /dev/null
+++ b/bin/Debug/netcoreapp3.1/CustomBlueScreen.runtimeconfig.json
@@ -0,0 +1,9 @@
+{
+ "runtimeOptions": {
+ "tfm": "netcoreapp3.1",
+ "framework": {
+ "name": "Microsoft.WindowsDesktop.App",
+ "version": "3.1.0"
+ }
+ }
+}
\ No newline at end of file
diff --git a/bin/Release/netcoreapp3.1/CustomBlueScreen.deps.json b/bin/Release/netcoreapp3.1/CustomBlueScreen.deps.json
new file mode 100644
index 0000000..ae3800e
--- /dev/null
+++ b/bin/Release/netcoreapp3.1/CustomBlueScreen.deps.json
@@ -0,0 +1,23 @@
+{
+ "runtimeTarget": {
+ "name": ".NETCoreApp,Version=v3.1",
+ "signature": ""
+ },
+ "compilationOptions": {},
+ "targets": {
+ ".NETCoreApp,Version=v3.1": {
+ "CustomBlueScreen/1.0.0": {
+ "runtime": {
+ "CustomBlueScreen.dll": {}
+ }
+ }
+ }
+ },
+ "libraries": {
+ "CustomBlueScreen/1.0.0": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ }
+ }
+}
\ No newline at end of file
diff --git a/bin/Release/netcoreapp3.1/CustomBlueScreen.dll b/bin/Release/netcoreapp3.1/CustomBlueScreen.dll
new file mode 100644
index 0000000..18a2618
Binary files /dev/null and b/bin/Release/netcoreapp3.1/CustomBlueScreen.dll differ
diff --git a/bin/Release/netcoreapp3.1/CustomBlueScreen.exe b/bin/Release/netcoreapp3.1/CustomBlueScreen.exe
new file mode 100644
index 0000000..f1b9a92
Binary files /dev/null and b/bin/Release/netcoreapp3.1/CustomBlueScreen.exe differ
diff --git a/bin/Release/netcoreapp3.1/CustomBlueScreen.pdb b/bin/Release/netcoreapp3.1/CustomBlueScreen.pdb
new file mode 100644
index 0000000..6cab6f7
Binary files /dev/null and b/bin/Release/netcoreapp3.1/CustomBlueScreen.pdb differ
diff --git a/bin/Release/netcoreapp3.1/CustomBlueScreen.runtimeconfig.dev.json b/bin/Release/netcoreapp3.1/CustomBlueScreen.runtimeconfig.dev.json
new file mode 100644
index 0000000..42b3edd
--- /dev/null
+++ b/bin/Release/netcoreapp3.1/CustomBlueScreen.runtimeconfig.dev.json
@@ -0,0 +1,9 @@
+{
+ "runtimeOptions": {
+ "additionalProbingPaths": [
+ "C:\\Users\\finna\\.dotnet\\store\\|arch|\\|tfm|",
+ "C:\\Users\\finna\\.nuget\\packages",
+ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
+ ]
+ }
+}
\ No newline at end of file
diff --git a/bin/Release/netcoreapp3.1/CustomBlueScreen.runtimeconfig.json b/bin/Release/netcoreapp3.1/CustomBlueScreen.runtimeconfig.json
new file mode 100644
index 0000000..9b3a644
--- /dev/null
+++ b/bin/Release/netcoreapp3.1/CustomBlueScreen.runtimeconfig.json
@@ -0,0 +1,9 @@
+{
+ "runtimeOptions": {
+ "tfm": "netcoreapp3.1",
+ "framework": {
+ "name": "Microsoft.WindowsDesktop.App",
+ "version": "3.1.0"
+ }
+ }
+}
\ No newline at end of file
diff --git a/obj/CustomBlueScreen.csproj.nuget.dgspec.json b/obj/CustomBlueScreen.csproj.nuget.dgspec.json
new file mode 100644
index 0000000..79d2374
--- /dev/null
+++ b/obj/CustomBlueScreen.csproj.nuget.dgspec.json
@@ -0,0 +1,69 @@
+{
+ "format": 1,
+ "restore": {
+ "C:\\Users\\finna\\Desktop\\Workspaces\\VisualStudio\\CustomBlueScreen\\CustomBlueScreen.csproj": {}
+ },
+ "projects": {
+ "C:\\Users\\finna\\Desktop\\Workspaces\\VisualStudio\\CustomBlueScreen\\CustomBlueScreen.csproj": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "C:\\Users\\finna\\Desktop\\Workspaces\\VisualStudio\\CustomBlueScreen\\CustomBlueScreen.csproj",
+ "projectName": "CustomBlueScreen",
+ "projectPath": "C:\\Users\\finna\\Desktop\\Workspaces\\VisualStudio\\CustomBlueScreen\\CustomBlueScreen.csproj",
+ "packagesPath": "C:\\Users\\finna\\.nuget\\packages\\",
+ "outputPath": "C:\\Users\\finna\\Desktop\\Workspaces\\VisualStudio\\CustomBlueScreen\\obj\\",
+ "projectStyle": "PackageReference",
+ "fallbackFolders": [
+ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
+ ],
+ "configFilePaths": [
+ "C:\\Users\\finna\\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"
+ ],
+ "originalTargetFrameworks": [
+ "netcoreapp3.1"
+ ],
+ "sources": {
+ "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "netcoreapp3.1": {
+ "targetAlias": "netcoreapp3.1",
+ "projectReferences": {}
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ }
+ },
+ "frameworks": {
+ "netcoreapp3.1": {
+ "targetAlias": "netcoreapp3.1",
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "frameworkReferences": {
+ "Microsoft.NETCore.App": {
+ "privateAssets": "all"
+ },
+ "Microsoft.WindowsDesktop.App.WPF": {
+ "privateAssets": "none"
+ }
+ },
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.402\\RuntimeIdentifierGraph.json"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/obj/CustomBlueScreen.csproj.nuget.g.props b/obj/CustomBlueScreen.csproj.nuget.g.props
new file mode 100644
index 0000000..d3056eb
--- /dev/null
+++ b/obj/CustomBlueScreen.csproj.nuget.g.props
@@ -0,0 +1,19 @@
+
+
+
+ True
+ NuGet
+ $(MSBuildThisFileDirectory)project.assets.json
+ $(UserProfile)\.nuget\packages\
+ C:\Users\finna\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages
+ PackageReference
+ 5.11.0
+
+
+
+
+
+
+ $(MSBuildAllProjects);$(MSBuildThisFileFullPath)
+
+
\ No newline at end of file
diff --git a/obj/CustomBlueScreen.csproj.nuget.g.targets b/obj/CustomBlueScreen.csproj.nuget.g.targets
new file mode 100644
index 0000000..d212750
--- /dev/null
+++ b/obj/CustomBlueScreen.csproj.nuget.g.targets
@@ -0,0 +1,6 @@
+
+
+
+ $(MSBuildAllProjects);$(MSBuildThisFileFullPath)
+
+
\ No newline at end of file
diff --git a/obj/Debug/netcoreapp3.1/App.g.cs b/obj/Debug/netcoreapp3.1/App.g.cs
new file mode 100644
index 0000000..102e9e4
--- /dev/null
+++ b/obj/Debug/netcoreapp3.1/App.g.cs
@@ -0,0 +1,71 @@
+#pragma checksum "..\..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "E96CCC84425F54A654654F7E2E148DBE8F3C261E"
+//------------------------------------------------------------------------------
+//
+// Dieser Code wurde von einem Tool generiert.
+// Laufzeitversion:4.0.30319.42000
+//
+// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
+// der Code erneut generiert wird.
+//
+//------------------------------------------------------------------------------
+
+using CustomBlueScreen;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Controls.Ribbon;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace CustomBlueScreen {
+
+
+ ///
+ /// App
+ ///
+ public partial class App : System.Windows.Application {
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "5.0.11.0")]
+ public void InitializeComponent() {
+
+ #line 5 "..\..\..\App.xaml"
+ this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative);
+
+ #line default
+ #line hidden
+ }
+
+ ///
+ /// Application Entry Point.
+ ///
+ [System.STAThreadAttribute()]
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "5.0.11.0")]
+ public static void Main() {
+ CustomBlueScreen.App app = new CustomBlueScreen.App();
+ app.InitializeComponent();
+ app.Run();
+ }
+ }
+}
+
diff --git a/obj/Debug/netcoreapp3.1/App.g.i.cs b/obj/Debug/netcoreapp3.1/App.g.i.cs
new file mode 100644
index 0000000..102e9e4
--- /dev/null
+++ b/obj/Debug/netcoreapp3.1/App.g.i.cs
@@ -0,0 +1,71 @@
+#pragma checksum "..\..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "E96CCC84425F54A654654F7E2E148DBE8F3C261E"
+//------------------------------------------------------------------------------
+//
+// Dieser Code wurde von einem Tool generiert.
+// Laufzeitversion:4.0.30319.42000
+//
+// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
+// der Code erneut generiert wird.
+//
+//------------------------------------------------------------------------------
+
+using CustomBlueScreen;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Controls.Ribbon;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace CustomBlueScreen {
+
+
+ ///
+ /// App
+ ///
+ public partial class App : System.Windows.Application {
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "5.0.11.0")]
+ public void InitializeComponent() {
+
+ #line 5 "..\..\..\App.xaml"
+ this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative);
+
+ #line default
+ #line hidden
+ }
+
+ ///
+ /// Application Entry Point.
+ ///
+ [System.STAThreadAttribute()]
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "5.0.11.0")]
+ public static void Main() {
+ CustomBlueScreen.App app = new CustomBlueScreen.App();
+ app.InitializeComponent();
+ app.Run();
+ }
+ }
+}
+
diff --git a/obj/Debug/netcoreapp3.1/CustomBlueScreen.AssemblyInfo.cs b/obj/Debug/netcoreapp3.1/CustomBlueScreen.AssemblyInfo.cs
new file mode 100644
index 0000000..76cee4f
--- /dev/null
+++ b/obj/Debug/netcoreapp3.1/CustomBlueScreen.AssemblyInfo.cs
@@ -0,0 +1,24 @@
+//------------------------------------------------------------------------------
+//
+// Dieser Code wurde von einem Tool generiert.
+// Laufzeitversion:4.0.30319.42000
+//
+// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
+// der Code erneut generiert wird.
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Reflection;
+
+[assembly: System.Reflection.AssemblyCompanyAttribute("UnlegitDqrk")]
+[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
+[assembly: System.Reflection.AssemblyCopyrightAttribute("UnlegitDqrk")]
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
+[assembly: System.Reflection.AssemblyProductAttribute("CustomBlueScreen")]
+[assembly: System.Reflection.AssemblyTitleAttribute("CustomBlueScreen")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
+
+// Von der MSBuild WriteCodeFragment-Klasse generiert.
+
diff --git a/obj/Debug/netcoreapp3.1/CustomBlueScreen.AssemblyInfoInputs.cache b/obj/Debug/netcoreapp3.1/CustomBlueScreen.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..92cb8c7
--- /dev/null
+++ b/obj/Debug/netcoreapp3.1/CustomBlueScreen.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+a33f2f7bdd60a37d006c7bd5442ab657ff399c2b
diff --git a/obj/Debug/netcoreapp3.1/CustomBlueScreen.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/netcoreapp3.1/CustomBlueScreen.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..8f5fc7d
--- /dev/null
+++ b/obj/Debug/netcoreapp3.1/CustomBlueScreen.GeneratedMSBuildEditorConfig.editorconfig
@@ -0,0 +1,3 @@
+is_global = true
+build_property.RootNamespace = CustomBlueScreen
+build_property.ProjectDir = C:\Users\finna\Desktop\Workspaces\VisualStudio\CustomBlueScreen\
diff --git a/obj/Debug/netcoreapp3.1/CustomBlueScreen.assets.cache b/obj/Debug/netcoreapp3.1/CustomBlueScreen.assets.cache
new file mode 100644
index 0000000..07573e1
Binary files /dev/null and b/obj/Debug/netcoreapp3.1/CustomBlueScreen.assets.cache differ
diff --git a/obj/Debug/netcoreapp3.1/CustomBlueScreen.csproj.AssemblyReference.cache b/obj/Debug/netcoreapp3.1/CustomBlueScreen.csproj.AssemblyReference.cache
new file mode 100644
index 0000000..4300561
Binary files /dev/null and b/obj/Debug/netcoreapp3.1/CustomBlueScreen.csproj.AssemblyReference.cache differ
diff --git a/obj/Debug/netcoreapp3.1/CustomBlueScreen.csproj.CoreCompileInputs.cache b/obj/Debug/netcoreapp3.1/CustomBlueScreen.csproj.CoreCompileInputs.cache
new file mode 100644
index 0000000..5e96983
--- /dev/null
+++ b/obj/Debug/netcoreapp3.1/CustomBlueScreen.csproj.CoreCompileInputs.cache
@@ -0,0 +1 @@
+7cc022230e8cf4be4e4ba9012e4e0d4f7257e268
diff --git a/obj/Debug/netcoreapp3.1/CustomBlueScreen.csproj.FileListAbsolute.txt b/obj/Debug/netcoreapp3.1/CustomBlueScreen.csproj.FileListAbsolute.txt
new file mode 100644
index 0000000..ecaf2c2
--- /dev/null
+++ b/obj/Debug/netcoreapp3.1/CustomBlueScreen.csproj.FileListAbsolute.txt
@@ -0,0 +1,20 @@
+C:\Users\finna\Desktop\Workspaces\VisualStudio\CustomBlueScreen\bin\Debug\netcoreapp3.1\CustomBlueScreen.exe
+C:\Users\finna\Desktop\Workspaces\VisualStudio\CustomBlueScreen\bin\Debug\netcoreapp3.1\CustomBlueScreen.deps.json
+C:\Users\finna\Desktop\Workspaces\VisualStudio\CustomBlueScreen\bin\Debug\netcoreapp3.1\CustomBlueScreen.runtimeconfig.json
+C:\Users\finna\Desktop\Workspaces\VisualStudio\CustomBlueScreen\bin\Debug\netcoreapp3.1\CustomBlueScreen.runtimeconfig.dev.json
+C:\Users\finna\Desktop\Workspaces\VisualStudio\CustomBlueScreen\bin\Debug\netcoreapp3.1\CustomBlueScreen.dll
+C:\Users\finna\Desktop\Workspaces\VisualStudio\CustomBlueScreen\bin\Debug\netcoreapp3.1\CustomBlueScreen.pdb
+C:\Users\finna\Desktop\Workspaces\VisualStudio\CustomBlueScreen\obj\Debug\netcoreapp3.1\CustomBlueScreen.csproj.AssemblyReference.cache
+C:\Users\finna\Desktop\Workspaces\VisualStudio\CustomBlueScreen\obj\Debug\netcoreapp3.1\MainWindow.g.cs
+C:\Users\finna\Desktop\Workspaces\VisualStudio\CustomBlueScreen\obj\Debug\netcoreapp3.1\App.g.cs
+C:\Users\finna\Desktop\Workspaces\VisualStudio\CustomBlueScreen\obj\Debug\netcoreapp3.1\CustomBlueScreen_MarkupCompile.cache
+C:\Users\finna\Desktop\Workspaces\VisualStudio\CustomBlueScreen\obj\Debug\netcoreapp3.1\CustomBlueScreen_MarkupCompile.lref
+C:\Users\finna\Desktop\Workspaces\VisualStudio\CustomBlueScreen\obj\Debug\netcoreapp3.1\MainWindow.baml
+C:\Users\finna\Desktop\Workspaces\VisualStudio\CustomBlueScreen\obj\Debug\netcoreapp3.1\CustomBlueScreen.g.resources
+C:\Users\finna\Desktop\Workspaces\VisualStudio\CustomBlueScreen\obj\Debug\netcoreapp3.1\CustomBlueScreen.GeneratedMSBuildEditorConfig.editorconfig
+C:\Users\finna\Desktop\Workspaces\VisualStudio\CustomBlueScreen\obj\Debug\netcoreapp3.1\CustomBlueScreen.AssemblyInfoInputs.cache
+C:\Users\finna\Desktop\Workspaces\VisualStudio\CustomBlueScreen\obj\Debug\netcoreapp3.1\CustomBlueScreen.AssemblyInfo.cs
+C:\Users\finna\Desktop\Workspaces\VisualStudio\CustomBlueScreen\obj\Debug\netcoreapp3.1\CustomBlueScreen.csproj.CoreCompileInputs.cache
+C:\Users\finna\Desktop\Workspaces\VisualStudio\CustomBlueScreen\obj\Debug\netcoreapp3.1\CustomBlueScreen.dll
+C:\Users\finna\Desktop\Workspaces\VisualStudio\CustomBlueScreen\obj\Debug\netcoreapp3.1\CustomBlueScreen.pdb
+C:\Users\finna\Desktop\Workspaces\VisualStudio\CustomBlueScreen\obj\Debug\netcoreapp3.1\CustomBlueScreen.genruntimeconfig.cache
diff --git a/obj/Debug/netcoreapp3.1/CustomBlueScreen.designer.deps.json b/obj/Debug/netcoreapp3.1/CustomBlueScreen.designer.deps.json
new file mode 100644
index 0000000..9bb9f82
--- /dev/null
+++ b/obj/Debug/netcoreapp3.1/CustomBlueScreen.designer.deps.json
@@ -0,0 +1,11 @@
+{
+ "runtimeTarget": {
+ "name": ".NETCoreApp,Version=v3.1",
+ "signature": ""
+ },
+ "compilationOptions": {},
+ "targets": {
+ ".NETCoreApp,Version=v3.1": {}
+ },
+ "libraries": {}
+}
\ No newline at end of file
diff --git a/obj/Debug/netcoreapp3.1/CustomBlueScreen.designer.runtimeconfig.json b/obj/Debug/netcoreapp3.1/CustomBlueScreen.designer.runtimeconfig.json
new file mode 100644
index 0000000..77f0494
--- /dev/null
+++ b/obj/Debug/netcoreapp3.1/CustomBlueScreen.designer.runtimeconfig.json
@@ -0,0 +1,17 @@
+{
+ "runtimeOptions": {
+ "tfm": "netcoreapp3.1",
+ "framework": {
+ "name": "Microsoft.WindowsDesktop.App",
+ "version": "3.1.0"
+ },
+ "additionalProbingPaths": [
+ "C:\\Users\\finna\\.dotnet\\store\\|arch|\\|tfm|",
+ "C:\\Users\\finna\\.nuget\\packages",
+ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
+ ],
+ "configProperties": {
+ "Microsoft.NETCore.DotNetHostPolicy.SetAppPaths": true
+ }
+ }
+}
\ No newline at end of file
diff --git a/obj/Debug/netcoreapp3.1/CustomBlueScreen.dll b/obj/Debug/netcoreapp3.1/CustomBlueScreen.dll
new file mode 100644
index 0000000..7f1f7ef
Binary files /dev/null and b/obj/Debug/netcoreapp3.1/CustomBlueScreen.dll differ
diff --git a/obj/Debug/netcoreapp3.1/CustomBlueScreen.g.resources b/obj/Debug/netcoreapp3.1/CustomBlueScreen.g.resources
new file mode 100644
index 0000000..339ff6a
Binary files /dev/null and b/obj/Debug/netcoreapp3.1/CustomBlueScreen.g.resources differ
diff --git a/obj/Debug/netcoreapp3.1/CustomBlueScreen.genruntimeconfig.cache b/obj/Debug/netcoreapp3.1/CustomBlueScreen.genruntimeconfig.cache
new file mode 100644
index 0000000..6830e89
--- /dev/null
+++ b/obj/Debug/netcoreapp3.1/CustomBlueScreen.genruntimeconfig.cache
@@ -0,0 +1 @@
+e27cf98373f74fcea49f7db047f322f51f94dd46
diff --git a/obj/Debug/netcoreapp3.1/CustomBlueScreen.pdb b/obj/Debug/netcoreapp3.1/CustomBlueScreen.pdb
new file mode 100644
index 0000000..5e84d44
Binary files /dev/null and b/obj/Debug/netcoreapp3.1/CustomBlueScreen.pdb differ
diff --git a/obj/Debug/netcoreapp3.1/CustomBlueScreen_MarkupCompile.cache b/obj/Debug/netcoreapp3.1/CustomBlueScreen_MarkupCompile.cache
new file mode 100644
index 0000000..ffa31f8
--- /dev/null
+++ b/obj/Debug/netcoreapp3.1/CustomBlueScreen_MarkupCompile.cache
@@ -0,0 +1,20 @@
+CustomBlueScreen
+
+
+winexe
+C#
+.cs
+C:\Users\finna\Desktop\Workspaces\VisualStudio\CustomBlueScreen\obj\Debug\netcoreapp3.1\
+CustomBlueScreen
+none
+false
+TRACE;DEBUG;NETCOREAPP;NETCOREAPP3_1;
+C:\Users\finna\Desktop\Workspaces\VisualStudio\CustomBlueScreen\App.xaml
+11407045341
+
+3-1233169557
+192-1533232326
+MainWindow.xaml;
+
+False
+
diff --git a/obj/Debug/netcoreapp3.1/CustomBlueScreen_MarkupCompile.i.cache b/obj/Debug/netcoreapp3.1/CustomBlueScreen_MarkupCompile.i.cache
new file mode 100644
index 0000000..9046d3b
--- /dev/null
+++ b/obj/Debug/netcoreapp3.1/CustomBlueScreen_MarkupCompile.i.cache
@@ -0,0 +1,20 @@
+CustomBlueScreen
+1.0.0.0
+
+winexe
+C#
+.cs
+C:\Users\finna\Desktop\Workspaces\VisualStudio\CustomBlueScreen\obj\Debug\netcoreapp3.1\
+CustomBlueScreen
+none
+false
+TRACE;DEBUG;NETCOREAPP;NETCOREAPP3_1;
+C:\Users\finna\Desktop\Workspaces\VisualStudio\CustomBlueScreen\App.xaml
+11407045341
+
+5-954233158
+192-1533232326
+MainWindow.xaml;
+
+False
+
diff --git a/obj/Debug/netcoreapp3.1/CustomBlueScreen_MarkupCompile.lref b/obj/Debug/netcoreapp3.1/CustomBlueScreen_MarkupCompile.lref
new file mode 100644
index 0000000..92b7ad7
--- /dev/null
+++ b/obj/Debug/netcoreapp3.1/CustomBlueScreen_MarkupCompile.lref
@@ -0,0 +1,4 @@
+
+
+FC:\Users\finna\Desktop\Workspaces\VisualStudio\CustomBlueScreen\MainWindow.xaml;;
+
diff --git a/obj/Debug/netcoreapp3.1/MainWindow.baml b/obj/Debug/netcoreapp3.1/MainWindow.baml
new file mode 100644
index 0000000..851723a
Binary files /dev/null and b/obj/Debug/netcoreapp3.1/MainWindow.baml differ
diff --git a/obj/Debug/netcoreapp3.1/MainWindow.g.cs b/obj/Debug/netcoreapp3.1/MainWindow.g.cs
new file mode 100644
index 0000000..f9ca674
--- /dev/null
+++ b/obj/Debug/netcoreapp3.1/MainWindow.g.cs
@@ -0,0 +1,76 @@
+#pragma checksum "..\..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "1BDB6CAC3688E3B8C95D084E070E493F157813EC"
+//------------------------------------------------------------------------------
+//
+// Dieser Code wurde von einem Tool generiert.
+// Laufzeitversion:4.0.30319.42000
+//
+// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
+// der Code erneut generiert wird.
+//
+//------------------------------------------------------------------------------
+
+using CustomBlueScreen;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Controls.Ribbon;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace CustomBlueScreen {
+
+
+ ///
+ /// MainWindow
+ ///
+ public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "5.0.11.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/CustomBlueScreen;component/mainwindow.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\..\MainWindow.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "5.0.11.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/obj/Debug/netcoreapp3.1/MainWindow.g.i.cs b/obj/Debug/netcoreapp3.1/MainWindow.g.i.cs
new file mode 100644
index 0000000..f9ca674
--- /dev/null
+++ b/obj/Debug/netcoreapp3.1/MainWindow.g.i.cs
@@ -0,0 +1,76 @@
+#pragma checksum "..\..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "1BDB6CAC3688E3B8C95D084E070E493F157813EC"
+//------------------------------------------------------------------------------
+//
+// Dieser Code wurde von einem Tool generiert.
+// Laufzeitversion:4.0.30319.42000
+//
+// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
+// der Code erneut generiert wird.
+//
+//------------------------------------------------------------------------------
+
+using CustomBlueScreen;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Controls.Ribbon;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace CustomBlueScreen {
+
+
+ ///
+ /// MainWindow
+ ///
+ public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "5.0.11.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/CustomBlueScreen;component/mainwindow.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\..\MainWindow.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "5.0.11.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/obj/Debug/netcoreapp3.1/apphost.exe b/obj/Debug/netcoreapp3.1/apphost.exe
new file mode 100644
index 0000000..f5c9009
Binary files /dev/null and b/obj/Debug/netcoreapp3.1/apphost.exe differ
diff --git a/obj/Release/netcoreapp3.1/App.g.cs b/obj/Release/netcoreapp3.1/App.g.cs
new file mode 100644
index 0000000..102e9e4
--- /dev/null
+++ b/obj/Release/netcoreapp3.1/App.g.cs
@@ -0,0 +1,71 @@
+#pragma checksum "..\..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "E96CCC84425F54A654654F7E2E148DBE8F3C261E"
+//------------------------------------------------------------------------------
+//
+// Dieser Code wurde von einem Tool generiert.
+// Laufzeitversion:4.0.30319.42000
+//
+// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
+// der Code erneut generiert wird.
+//
+//------------------------------------------------------------------------------
+
+using CustomBlueScreen;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Controls.Ribbon;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace CustomBlueScreen {
+
+
+ ///
+ /// App
+ ///
+ public partial class App : System.Windows.Application {
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "5.0.11.0")]
+ public void InitializeComponent() {
+
+ #line 5 "..\..\..\App.xaml"
+ this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative);
+
+ #line default
+ #line hidden
+ }
+
+ ///
+ /// Application Entry Point.
+ ///
+ [System.STAThreadAttribute()]
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "5.0.11.0")]
+ public static void Main() {
+ CustomBlueScreen.App app = new CustomBlueScreen.App();
+ app.InitializeComponent();
+ app.Run();
+ }
+ }
+}
+
diff --git a/obj/Release/netcoreapp3.1/App.g.i.cs b/obj/Release/netcoreapp3.1/App.g.i.cs
new file mode 100644
index 0000000..102e9e4
--- /dev/null
+++ b/obj/Release/netcoreapp3.1/App.g.i.cs
@@ -0,0 +1,71 @@
+#pragma checksum "..\..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "E96CCC84425F54A654654F7E2E148DBE8F3C261E"
+//------------------------------------------------------------------------------
+//
+// Dieser Code wurde von einem Tool generiert.
+// Laufzeitversion:4.0.30319.42000
+//
+// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
+// der Code erneut generiert wird.
+//
+//------------------------------------------------------------------------------
+
+using CustomBlueScreen;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Controls.Ribbon;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace CustomBlueScreen {
+
+
+ ///
+ /// App
+ ///
+ public partial class App : System.Windows.Application {
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "5.0.11.0")]
+ public void InitializeComponent() {
+
+ #line 5 "..\..\..\App.xaml"
+ this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative);
+
+ #line default
+ #line hidden
+ }
+
+ ///
+ /// Application Entry Point.
+ ///
+ [System.STAThreadAttribute()]
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "5.0.11.0")]
+ public static void Main() {
+ CustomBlueScreen.App app = new CustomBlueScreen.App();
+ app.InitializeComponent();
+ app.Run();
+ }
+ }
+}
+
diff --git a/obj/Release/netcoreapp3.1/CustomBlueScreen.AssemblyInfo.cs b/obj/Release/netcoreapp3.1/CustomBlueScreen.AssemblyInfo.cs
new file mode 100644
index 0000000..7a8f8dc
--- /dev/null
+++ b/obj/Release/netcoreapp3.1/CustomBlueScreen.AssemblyInfo.cs
@@ -0,0 +1,23 @@
+//------------------------------------------------------------------------------
+//
+// Dieser Code wurde von einem Tool generiert.
+// Laufzeitversion:4.0.30319.42000
+//
+// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
+// der Code erneut generiert wird.
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Reflection;
+
+[assembly: System.Reflection.AssemblyCompanyAttribute("CustomBlueScreen")]
+[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
+[assembly: System.Reflection.AssemblyProductAttribute("CustomBlueScreen")]
+[assembly: System.Reflection.AssemblyTitleAttribute("CustomBlueScreen")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
+
+// Von der MSBuild WriteCodeFragment-Klasse generiert.
+
diff --git a/obj/Release/netcoreapp3.1/CustomBlueScreen.AssemblyInfoInputs.cache b/obj/Release/netcoreapp3.1/CustomBlueScreen.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..09ffc63
--- /dev/null
+++ b/obj/Release/netcoreapp3.1/CustomBlueScreen.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+616242d7bf13b3e37cc2e65f84466b2c5639e1bd
diff --git a/obj/Release/netcoreapp3.1/CustomBlueScreen.GeneratedMSBuildEditorConfig.editorconfig b/obj/Release/netcoreapp3.1/CustomBlueScreen.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..8f5fc7d
--- /dev/null
+++ b/obj/Release/netcoreapp3.1/CustomBlueScreen.GeneratedMSBuildEditorConfig.editorconfig
@@ -0,0 +1,3 @@
+is_global = true
+build_property.RootNamespace = CustomBlueScreen
+build_property.ProjectDir = C:\Users\finna\Desktop\Workspaces\VisualStudio\CustomBlueScreen\
diff --git a/obj/Release/netcoreapp3.1/CustomBlueScreen.assets.cache b/obj/Release/netcoreapp3.1/CustomBlueScreen.assets.cache
new file mode 100644
index 0000000..0d36341
Binary files /dev/null and b/obj/Release/netcoreapp3.1/CustomBlueScreen.assets.cache differ
diff --git a/obj/Release/netcoreapp3.1/CustomBlueScreen.csproj.AssemblyReference.cache b/obj/Release/netcoreapp3.1/CustomBlueScreen.csproj.AssemblyReference.cache
new file mode 100644
index 0000000..4300561
Binary files /dev/null and b/obj/Release/netcoreapp3.1/CustomBlueScreen.csproj.AssemblyReference.cache differ
diff --git a/obj/Release/netcoreapp3.1/CustomBlueScreen.csproj.CoreCompileInputs.cache b/obj/Release/netcoreapp3.1/CustomBlueScreen.csproj.CoreCompileInputs.cache
new file mode 100644
index 0000000..5a60804
--- /dev/null
+++ b/obj/Release/netcoreapp3.1/CustomBlueScreen.csproj.CoreCompileInputs.cache
@@ -0,0 +1 @@
+40aa6e167a72057f99ca270d60ebf0e488e3e0b5
diff --git a/obj/Release/netcoreapp3.1/CustomBlueScreen.csproj.FileListAbsolute.txt b/obj/Release/netcoreapp3.1/CustomBlueScreen.csproj.FileListAbsolute.txt
new file mode 100644
index 0000000..9f099bd
--- /dev/null
+++ b/obj/Release/netcoreapp3.1/CustomBlueScreen.csproj.FileListAbsolute.txt
@@ -0,0 +1,20 @@
+C:\Users\finna\Desktop\Workspaces\VisualStudio\CustomBlueScreen\bin\Release\netcoreapp3.1\CustomBlueScreen.exe
+C:\Users\finna\Desktop\Workspaces\VisualStudio\CustomBlueScreen\bin\Release\netcoreapp3.1\CustomBlueScreen.deps.json
+C:\Users\finna\Desktop\Workspaces\VisualStudio\CustomBlueScreen\bin\Release\netcoreapp3.1\CustomBlueScreen.runtimeconfig.json
+C:\Users\finna\Desktop\Workspaces\VisualStudio\CustomBlueScreen\bin\Release\netcoreapp3.1\CustomBlueScreen.runtimeconfig.dev.json
+C:\Users\finna\Desktop\Workspaces\VisualStudio\CustomBlueScreen\bin\Release\netcoreapp3.1\CustomBlueScreen.dll
+C:\Users\finna\Desktop\Workspaces\VisualStudio\CustomBlueScreen\bin\Release\netcoreapp3.1\CustomBlueScreen.pdb
+C:\Users\finna\Desktop\Workspaces\VisualStudio\CustomBlueScreen\obj\Release\netcoreapp3.1\CustomBlueScreen.csproj.AssemblyReference.cache
+C:\Users\finna\Desktop\Workspaces\VisualStudio\CustomBlueScreen\obj\Release\netcoreapp3.1\MainWindow.g.cs
+C:\Users\finna\Desktop\Workspaces\VisualStudio\CustomBlueScreen\obj\Release\netcoreapp3.1\App.g.cs
+C:\Users\finna\Desktop\Workspaces\VisualStudio\CustomBlueScreen\obj\Release\netcoreapp3.1\CustomBlueScreen_MarkupCompile.cache
+C:\Users\finna\Desktop\Workspaces\VisualStudio\CustomBlueScreen\obj\Release\netcoreapp3.1\CustomBlueScreen_MarkupCompile.lref
+C:\Users\finna\Desktop\Workspaces\VisualStudio\CustomBlueScreen\obj\Release\netcoreapp3.1\MainWindow.baml
+C:\Users\finna\Desktop\Workspaces\VisualStudio\CustomBlueScreen\obj\Release\netcoreapp3.1\CustomBlueScreen.g.resources
+C:\Users\finna\Desktop\Workspaces\VisualStudio\CustomBlueScreen\obj\Release\netcoreapp3.1\CustomBlueScreen.GeneratedMSBuildEditorConfig.editorconfig
+C:\Users\finna\Desktop\Workspaces\VisualStudio\CustomBlueScreen\obj\Release\netcoreapp3.1\CustomBlueScreen.AssemblyInfoInputs.cache
+C:\Users\finna\Desktop\Workspaces\VisualStudio\CustomBlueScreen\obj\Release\netcoreapp3.1\CustomBlueScreen.AssemblyInfo.cs
+C:\Users\finna\Desktop\Workspaces\VisualStudio\CustomBlueScreen\obj\Release\netcoreapp3.1\CustomBlueScreen.csproj.CoreCompileInputs.cache
+C:\Users\finna\Desktop\Workspaces\VisualStudio\CustomBlueScreen\obj\Release\netcoreapp3.1\CustomBlueScreen.dll
+C:\Users\finna\Desktop\Workspaces\VisualStudio\CustomBlueScreen\obj\Release\netcoreapp3.1\CustomBlueScreen.pdb
+C:\Users\finna\Desktop\Workspaces\VisualStudio\CustomBlueScreen\obj\Release\netcoreapp3.1\CustomBlueScreen.genruntimeconfig.cache
diff --git a/obj/Release/netcoreapp3.1/CustomBlueScreen.designer.deps.json b/obj/Release/netcoreapp3.1/CustomBlueScreen.designer.deps.json
new file mode 100644
index 0000000..9bb9f82
--- /dev/null
+++ b/obj/Release/netcoreapp3.1/CustomBlueScreen.designer.deps.json
@@ -0,0 +1,11 @@
+{
+ "runtimeTarget": {
+ "name": ".NETCoreApp,Version=v3.1",
+ "signature": ""
+ },
+ "compilationOptions": {},
+ "targets": {
+ ".NETCoreApp,Version=v3.1": {}
+ },
+ "libraries": {}
+}
\ No newline at end of file
diff --git a/obj/Release/netcoreapp3.1/CustomBlueScreen.designer.runtimeconfig.json b/obj/Release/netcoreapp3.1/CustomBlueScreen.designer.runtimeconfig.json
new file mode 100644
index 0000000..77f0494
--- /dev/null
+++ b/obj/Release/netcoreapp3.1/CustomBlueScreen.designer.runtimeconfig.json
@@ -0,0 +1,17 @@
+{
+ "runtimeOptions": {
+ "tfm": "netcoreapp3.1",
+ "framework": {
+ "name": "Microsoft.WindowsDesktop.App",
+ "version": "3.1.0"
+ },
+ "additionalProbingPaths": [
+ "C:\\Users\\finna\\.dotnet\\store\\|arch|\\|tfm|",
+ "C:\\Users\\finna\\.nuget\\packages",
+ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
+ ],
+ "configProperties": {
+ "Microsoft.NETCore.DotNetHostPolicy.SetAppPaths": true
+ }
+ }
+}
\ No newline at end of file
diff --git a/obj/Release/netcoreapp3.1/CustomBlueScreen.dll b/obj/Release/netcoreapp3.1/CustomBlueScreen.dll
new file mode 100644
index 0000000..18a2618
Binary files /dev/null and b/obj/Release/netcoreapp3.1/CustomBlueScreen.dll differ
diff --git a/obj/Release/netcoreapp3.1/CustomBlueScreen.g.resources b/obj/Release/netcoreapp3.1/CustomBlueScreen.g.resources
new file mode 100644
index 0000000..f1ccf38
Binary files /dev/null and b/obj/Release/netcoreapp3.1/CustomBlueScreen.g.resources differ
diff --git a/obj/Release/netcoreapp3.1/CustomBlueScreen.genruntimeconfig.cache b/obj/Release/netcoreapp3.1/CustomBlueScreen.genruntimeconfig.cache
new file mode 100644
index 0000000..6830e89
--- /dev/null
+++ b/obj/Release/netcoreapp3.1/CustomBlueScreen.genruntimeconfig.cache
@@ -0,0 +1 @@
+e27cf98373f74fcea49f7db047f322f51f94dd46
diff --git a/obj/Release/netcoreapp3.1/CustomBlueScreen.pdb b/obj/Release/netcoreapp3.1/CustomBlueScreen.pdb
new file mode 100644
index 0000000..6cab6f7
Binary files /dev/null and b/obj/Release/netcoreapp3.1/CustomBlueScreen.pdb differ
diff --git a/obj/Release/netcoreapp3.1/CustomBlueScreen_MarkupCompile.cache b/obj/Release/netcoreapp3.1/CustomBlueScreen_MarkupCompile.cache
new file mode 100644
index 0000000..6c1fc9e
--- /dev/null
+++ b/obj/Release/netcoreapp3.1/CustomBlueScreen_MarkupCompile.cache
@@ -0,0 +1,20 @@
+CustomBlueScreen
+
+
+winexe
+C#
+.cs
+C:\Users\finna\Desktop\Workspaces\VisualStudio\CustomBlueScreen\obj\Release\netcoreapp3.1\
+CustomBlueScreen
+none
+false
+TRACE;RELEASE;NETCOREAPP;NETCOREAPP3_1;
+C:\Users\finna\Desktop\Workspaces\VisualStudio\CustomBlueScreen\App.xaml
+11407045341
+
+3-1233169557
+192-1533232326
+MainWindow.xaml;
+
+False
+
diff --git a/obj/Release/netcoreapp3.1/CustomBlueScreen_MarkupCompile.i.cache b/obj/Release/netcoreapp3.1/CustomBlueScreen_MarkupCompile.i.cache
new file mode 100644
index 0000000..dff1b56
--- /dev/null
+++ b/obj/Release/netcoreapp3.1/CustomBlueScreen_MarkupCompile.i.cache
@@ -0,0 +1,20 @@
+CustomBlueScreen
+1.0.0.0
+
+winexe
+C#
+.cs
+C:\Users\finna\Desktop\Workspaces\VisualStudio\CustomBlueScreen\obj\Release\netcoreapp3.1\
+CustomBlueScreen
+none
+false
+TRACE;RELEASE;NETCOREAPP;NETCOREAPP3_1;
+C:\Users\finna\Desktop\Workspaces\VisualStudio\CustomBlueScreen\App.xaml
+11407045341
+
+5858498615
+192-1533232326
+MainWindow.xaml;
+
+False
+
diff --git a/obj/Release/netcoreapp3.1/CustomBlueScreen_MarkupCompile.lref b/obj/Release/netcoreapp3.1/CustomBlueScreen_MarkupCompile.lref
new file mode 100644
index 0000000..92b7ad7
--- /dev/null
+++ b/obj/Release/netcoreapp3.1/CustomBlueScreen_MarkupCompile.lref
@@ -0,0 +1,4 @@
+
+
+FC:\Users\finna\Desktop\Workspaces\VisualStudio\CustomBlueScreen\MainWindow.xaml;;
+
diff --git a/obj/Release/netcoreapp3.1/MainWindow.baml b/obj/Release/netcoreapp3.1/MainWindow.baml
new file mode 100644
index 0000000..b2b7089
Binary files /dev/null and b/obj/Release/netcoreapp3.1/MainWindow.baml differ
diff --git a/obj/Release/netcoreapp3.1/MainWindow.g.cs b/obj/Release/netcoreapp3.1/MainWindow.g.cs
new file mode 100644
index 0000000..f9ca674
--- /dev/null
+++ b/obj/Release/netcoreapp3.1/MainWindow.g.cs
@@ -0,0 +1,76 @@
+#pragma checksum "..\..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "1BDB6CAC3688E3B8C95D084E070E493F157813EC"
+//------------------------------------------------------------------------------
+//
+// Dieser Code wurde von einem Tool generiert.
+// Laufzeitversion:4.0.30319.42000
+//
+// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
+// der Code erneut generiert wird.
+//
+//------------------------------------------------------------------------------
+
+using CustomBlueScreen;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Controls.Ribbon;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace CustomBlueScreen {
+
+
+ ///
+ /// MainWindow
+ ///
+ public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "5.0.11.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/CustomBlueScreen;component/mainwindow.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\..\MainWindow.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "5.0.11.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/obj/Release/netcoreapp3.1/MainWindow.g.i.cs b/obj/Release/netcoreapp3.1/MainWindow.g.i.cs
new file mode 100644
index 0000000..f9ca674
--- /dev/null
+++ b/obj/Release/netcoreapp3.1/MainWindow.g.i.cs
@@ -0,0 +1,76 @@
+#pragma checksum "..\..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "1BDB6CAC3688E3B8C95D084E070E493F157813EC"
+//------------------------------------------------------------------------------
+//
+// Dieser Code wurde von einem Tool generiert.
+// Laufzeitversion:4.0.30319.42000
+//
+// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
+// der Code erneut generiert wird.
+//
+//------------------------------------------------------------------------------
+
+using CustomBlueScreen;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Controls.Ribbon;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace CustomBlueScreen {
+
+
+ ///
+ /// MainWindow
+ ///
+ public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "5.0.11.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/CustomBlueScreen;component/mainwindow.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\..\MainWindow.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "5.0.11.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/obj/Release/netcoreapp3.1/apphost.exe b/obj/Release/netcoreapp3.1/apphost.exe
new file mode 100644
index 0000000..f1b9a92
Binary files /dev/null and b/obj/Release/netcoreapp3.1/apphost.exe differ
diff --git a/obj/project.assets.json b/obj/project.assets.json
new file mode 100644
index 0000000..cfacab0
--- /dev/null
+++ b/obj/project.assets.json
@@ -0,0 +1,75 @@
+{
+ "version": 3,
+ "targets": {
+ ".NETCoreApp,Version=v3.1": {}
+ },
+ "libraries": {},
+ "projectFileDependencyGroups": {
+ ".NETCoreApp,Version=v3.1": []
+ },
+ "packageFolders": {
+ "C:\\Users\\finna\\.nuget\\packages\\": {},
+ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
+ },
+ "project": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "C:\\Users\\finna\\Desktop\\Workspaces\\VisualStudio\\CustomBlueScreen\\CustomBlueScreen.csproj",
+ "projectName": "CustomBlueScreen",
+ "projectPath": "C:\\Users\\finna\\Desktop\\Workspaces\\VisualStudio\\CustomBlueScreen\\CustomBlueScreen.csproj",
+ "packagesPath": "C:\\Users\\finna\\.nuget\\packages\\",
+ "outputPath": "C:\\Users\\finna\\Desktop\\Workspaces\\VisualStudio\\CustomBlueScreen\\obj\\",
+ "projectStyle": "PackageReference",
+ "fallbackFolders": [
+ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
+ ],
+ "configFilePaths": [
+ "C:\\Users\\finna\\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"
+ ],
+ "originalTargetFrameworks": [
+ "netcoreapp3.1"
+ ],
+ "sources": {
+ "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "netcoreapp3.1": {
+ "targetAlias": "netcoreapp3.1",
+ "projectReferences": {}
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ }
+ },
+ "frameworks": {
+ "netcoreapp3.1": {
+ "targetAlias": "netcoreapp3.1",
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "frameworkReferences": {
+ "Microsoft.NETCore.App": {
+ "privateAssets": "all"
+ },
+ "Microsoft.WindowsDesktop.App.WPF": {
+ "privateAssets": "none"
+ }
+ },
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.402\\RuntimeIdentifierGraph.json"
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/obj/project.nuget.cache b/obj/project.nuget.cache
new file mode 100644
index 0000000..2086179
--- /dev/null
+++ b/obj/project.nuget.cache
@@ -0,0 +1,8 @@
+{
+ "version": 2,
+ "dgSpecHash": "lKK6fA/aTqdOglALDjYrdM1ecv0w/8ZoQG/idHDo+64g7eojc2BD1vEBWbMPq/3h4Z1CknFXhlY7+13WFBeEjw==",
+ "success": true,
+ "projectFilePath": "C:\\Users\\finna\\Desktop\\Workspaces\\VisualStudio\\CustomBlueScreen\\CustomBlueScreen.csproj",
+ "expectedPackageFiles": [],
+ "logs": []
+}
\ No newline at end of file
diff --git a/screen.png b/screen.png
new file mode 100644
index 0000000..5738c98
Binary files /dev/null and b/screen.png differ
diff --git a/screenQR.png b/screenQR.png
new file mode 100644
index 0000000..97d275d
Binary files /dev/null and b/screenQR.png differ