Add files via upload

This commit is contained in:
Leon
2022-06-07 21:30:32 +02:00
committed by GitHub
commit fc7d93fdeb
72 changed files with 1304 additions and 0 deletions

9
App.xaml Normal file
View File

@@ -0,0 +1,9 @@
<Application x:Class="CustomBlueScreen.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:CustomBlueScreen"
StartupUri="MainWindow.xaml">
<Application.Resources>
</Application.Resources>
</Application>

17
App.xaml.cs Normal file
View File

@@ -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
{
/// <summary>
/// Interaction logic for App.xaml
/// </summary>
public partial class App : Application
{
}
}

10
AssemblyInfo.cs Normal file
View File

@@ -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)
)]

26
CustomBlueScreen.csproj Normal file
View File

@@ -0,0 +1,26 @@
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<UseWPF>true</UseWPF>
<Authors>UnlegitDqrk</Authors>
<Description></Description>
<Copyright>UnlegitDqrk</Copyright>
<SignAssembly>false</SignAssembly>
<RunAnalyzersDuringBuild>true</RunAnalyzersDuringBuild>
<Nullable></Nullable>
<Company />
</PropertyGroup>
<ItemGroup>
<None Remove="screen.png" />
<None Remove="screenQR.png" />
</ItemGroup>
<ItemGroup>
<Resource Include="screen.png" />
<Resource Include="screenQR.png" />
</ItemGroup>
</Project>

View File

@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup />
<ItemGroup>
<ApplicationDefinition Update="App.xaml">
<SubType>Designer</SubType>
</ApplicationDefinition>
</ItemGroup>
<ItemGroup>
<Page Update="MainWindow.xaml">
<SubType>Designer</SubType>
</Page>
</ItemGroup>
</Project>

25
CustomBlueScreen.sln Normal file
View File

@@ -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

15
MainWindow.xaml Normal file
View File

@@ -0,0 +1,15 @@
<Window x:Class="CustomBlueScreen.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:CustomBlueScreen"
mc:Ignorable="d"
Title="Bluescreen" Height="450" Width="800"
WindowStyle="None" WindowState="Maximized"
ResizeMode="NoResize" ShowInTaskbar="False" SizeToContent="WidthAndHeight">
<Grid>
<Image VerticalAlignment="Stretch" HorizontalAlignment="Stretch" Source="/screenQR.png"/>
</Grid>
</Window>

98
MainWindow.xaml.cs Normal file
View File

@@ -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
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
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
}
}
}

Binary file not shown.

View File

@@ -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": ""
}
}
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -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"
]
}
}

View File

@@ -0,0 +1,9 @@
{
"runtimeOptions": {
"tfm": "netcoreapp3.1",
"framework": {
"name": "Microsoft.WindowsDesktop.App",
"version": "3.1.0"
}
}
}

View File

@@ -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": ""
}
}
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -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"
]
}
}

View File

@@ -0,0 +1,9 @@
{
"runtimeOptions": {
"tfm": "netcoreapp3.1",
"framework": {
"name": "Microsoft.WindowsDesktop.App",
"version": "3.1.0"
}
}
}

View File

@@ -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"
}
}
}
}
}

View File

@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\finna\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.11.0</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\finna\.nuget\packages\" />
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
</ItemGroup>
<PropertyGroup>
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
</PropertyGroup>
</Project>

View File

@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
</PropertyGroup>
</Project>

View File

@@ -0,0 +1,71 @@
#pragma checksum "..\..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "E96CCC84425F54A654654F7E2E148DBE8F3C261E"
//------------------------------------------------------------------------------
// <auto-generated>
// 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.
// </auto-generated>
//------------------------------------------------------------------------------
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 {
/// <summary>
/// App
/// </summary>
public partial class App : System.Windows.Application {
/// <summary>
/// InitializeComponent
/// </summary>
[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
}
/// <summary>
/// Application Entry Point.
/// </summary>
[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();
}
}
}

View File

@@ -0,0 +1,71 @@
#pragma checksum "..\..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "E96CCC84425F54A654654F7E2E148DBE8F3C261E"
//------------------------------------------------------------------------------
// <auto-generated>
// 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.
// </auto-generated>
//------------------------------------------------------------------------------
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 {
/// <summary>
/// App
/// </summary>
public partial class App : System.Windows.Application {
/// <summary>
/// InitializeComponent
/// </summary>
[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
}
/// <summary>
/// Application Entry Point.
/// </summary>
[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();
}
}
}

View File

@@ -0,0 +1,24 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 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.
// </auto-generated>
//------------------------------------------------------------------------------
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.

View File

@@ -0,0 +1 @@
a33f2f7bdd60a37d006c7bd5442ab657ff399c2b

View File

@@ -0,0 +1,3 @@
is_global = true
build_property.RootNamespace = CustomBlueScreen
build_property.ProjectDir = C:\Users\finna\Desktop\Workspaces\VisualStudio\CustomBlueScreen\

Binary file not shown.

View File

@@ -0,0 +1 @@
7cc022230e8cf4be4e4ba9012e4e0d4f7257e268

View File

@@ -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

View File

@@ -0,0 +1,11 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v3.1",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v3.1": {}
},
"libraries": {}
}

View File

@@ -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
}
}
}

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1 @@
e27cf98373f74fcea49f7db047f322f51f94dd46

Binary file not shown.

View File

@@ -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

View File

@@ -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

View File

@@ -0,0 +1,4 @@

FC:\Users\finna\Desktop\Workspaces\VisualStudio\CustomBlueScreen\MainWindow.xaml;;

Binary file not shown.

View File

@@ -0,0 +1,76 @@
#pragma checksum "..\..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "1BDB6CAC3688E3B8C95D084E070E493F157813EC"
//------------------------------------------------------------------------------
// <auto-generated>
// 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.
// </auto-generated>
//------------------------------------------------------------------------------
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 {
/// <summary>
/// MainWindow
/// </summary>
public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
private bool _contentLoaded;
/// <summary>
/// InitializeComponent
/// </summary>
[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;
}
}
}

View File

@@ -0,0 +1,76 @@
#pragma checksum "..\..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "1BDB6CAC3688E3B8C95D084E070E493F157813EC"
//------------------------------------------------------------------------------
// <auto-generated>
// 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.
// </auto-generated>
//------------------------------------------------------------------------------
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 {
/// <summary>
/// MainWindow
/// </summary>
public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
private bool _contentLoaded;
/// <summary>
/// InitializeComponent
/// </summary>
[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;
}
}
}

Binary file not shown.

View File

@@ -0,0 +1,71 @@
#pragma checksum "..\..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "E96CCC84425F54A654654F7E2E148DBE8F3C261E"
//------------------------------------------------------------------------------
// <auto-generated>
// 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.
// </auto-generated>
//------------------------------------------------------------------------------
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 {
/// <summary>
/// App
/// </summary>
public partial class App : System.Windows.Application {
/// <summary>
/// InitializeComponent
/// </summary>
[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
}
/// <summary>
/// Application Entry Point.
/// </summary>
[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();
}
}
}

View File

@@ -0,0 +1,71 @@
#pragma checksum "..\..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "E96CCC84425F54A654654F7E2E148DBE8F3C261E"
//------------------------------------------------------------------------------
// <auto-generated>
// 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.
// </auto-generated>
//------------------------------------------------------------------------------
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 {
/// <summary>
/// App
/// </summary>
public partial class App : System.Windows.Application {
/// <summary>
/// InitializeComponent
/// </summary>
[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
}
/// <summary>
/// Application Entry Point.
/// </summary>
[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();
}
}
}

View File

@@ -0,0 +1,23 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 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.
// </auto-generated>
//------------------------------------------------------------------------------
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.

View File

@@ -0,0 +1 @@
616242d7bf13b3e37cc2e65f84466b2c5639e1bd

View File

@@ -0,0 +1,3 @@
is_global = true
build_property.RootNamespace = CustomBlueScreen
build_property.ProjectDir = C:\Users\finna\Desktop\Workspaces\VisualStudio\CustomBlueScreen\

View File

@@ -0,0 +1 @@
40aa6e167a72057f99ca270d60ebf0e488e3e0b5

View File

@@ -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

View File

@@ -0,0 +1,11 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v3.1",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v3.1": {}
},
"libraries": {}
}

View File

@@ -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
}
}
}

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1 @@
e27cf98373f74fcea49f7db047f322f51f94dd46

Binary file not shown.

View File

@@ -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

View File

@@ -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

View File

@@ -0,0 +1,4 @@

FC:\Users\finna\Desktop\Workspaces\VisualStudio\CustomBlueScreen\MainWindow.xaml;;

Binary file not shown.

View File

@@ -0,0 +1,76 @@
#pragma checksum "..\..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "1BDB6CAC3688E3B8C95D084E070E493F157813EC"
//------------------------------------------------------------------------------
// <auto-generated>
// 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.
// </auto-generated>
//------------------------------------------------------------------------------
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 {
/// <summary>
/// MainWindow
/// </summary>
public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
private bool _contentLoaded;
/// <summary>
/// InitializeComponent
/// </summary>
[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;
}
}
}

View File

@@ -0,0 +1,76 @@
#pragma checksum "..\..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "1BDB6CAC3688E3B8C95D084E070E493F157813EC"
//------------------------------------------------------------------------------
// <auto-generated>
// 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.
// </auto-generated>
//------------------------------------------------------------------------------
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 {
/// <summary>
/// MainWindow
/// </summary>
public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
private bool _contentLoaded;
/// <summary>
/// InitializeComponent
/// </summary>
[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;
}
}
}

Binary file not shown.

75
obj/project.assets.json Normal file
View File

@@ -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"
}
}
}
}

8
obj/project.nuget.cache Normal file
View File

@@ -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": []
}

BIN
screen.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB

BIN
screenQR.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 78 KiB