init save dotnet7

This commit is contained in:
2022-12-11 21:08:34 +01:00
commit f1229587f4
146 changed files with 4072 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = ".NET 6.0")]

View File

@@ -0,0 +1,71 @@
#pragma checksum "..\..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "DCC59813AB95D23CF72F07367E2D9621042BF6D9"
//------------------------------------------------------------------------------
// <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.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;
using WpfApp1;
namespace WpfApp1 {
/// <summary>
/// App
/// </summary>
public partial class App : System.Windows.Application {
/// <summary>
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.0.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", "7.0.0.0")]
public static void Main() {
WpfApp1.App app = new WpfApp1.App();
app.InitializeComponent();
app.Run();
}
}
}

View File

@@ -0,0 +1,76 @@
#pragma checksum "..\..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "ECDFABC04AE55218F692F255726307C4208DEF2C"
//------------------------------------------------------------------------------
// <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.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;
using WpfApp1;
namespace WpfApp1 {
/// <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", "7.0.0.0")]
public void InitializeComponent() {
if (_contentLoaded) {
return;
}
_contentLoaded = true;
System.Uri resourceLocater = new System.Uri("/WpfScr6;V1.0.0.0;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", "7.0.0.0")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
[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,25 @@
//------------------------------------------------------------------------------
// <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("WpfApp1")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("WpfApp1")]
[assembly: System.Reflection.AssemblyTitleAttribute("WpfApp1")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
// Von der MSBuild WriteCodeFragment-Klasse generiert.

View File

@@ -0,0 +1 @@
d604ad24407ce953817be2036da374ec3791f6f9

View File

@@ -0,0 +1,11 @@
is_global = true
build_property.TargetFramework = net6.0-windows
build_property.TargetPlatformMinVersion = 7.0
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = WpfApp1
build_property.ProjectDir = D:\develop\TestNet6\WpfApp1\WpfApp1\

View File

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

View File

@@ -0,0 +1,23 @@
{
"runtimeOptions": {
"tfm": "net6.0",
"frameworks": [
{
"name": "Microsoft.NETCore.App",
"version": "6.0.0"
},
{
"name": "Microsoft.WindowsDesktop.App",
"version": "6.0.0"
}
],
"additionalProbingPaths": [
"C:\\Users\\Robert\\.dotnet\\store\\|arch|\\|tfm|",
"C:\\Users\\Robert\\.nuget\\packages",
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
],
"configProperties": {
"Microsoft.NETCore.DotNetHostPolicy.SetAppPaths": true
}
}
}

View File

@@ -0,0 +1,20 @@
WpfApp1
1.0.0.0
winexe
C#
.cs
D:\develop\TestNet6\WpfApp1\WpfApp1\obj\Debug\net6.0-windows\
WpfApp1
none
false
TRACE;DEBUG;NET;NET6_0;NETCOREAPP
D:\develop\TestNet6\WpfApp1\WpfApp1\App.xaml
11407045341
5-1303815099
194-2004305220
MainWindow.xaml;
True

View File

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

FD:\develop\TestNet6\WpfApp1\WpfApp1\MainWindow.xaml;;

View File

@@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <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("WpfScr6")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("WpfScr6")]
[assembly: System.Reflection.AssemblyTitleAttribute("WpfScr6")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
// Von der MSBuild WriteCodeFragment-Klasse generiert.

View File

@@ -0,0 +1 @@
8b6a0db9e025a0f04dda0a5284dc83cd2f311b8b

View File

@@ -0,0 +1,11 @@
is_global = true
build_property.TargetFramework = net6.0-windows
build_property.TargetPlatformMinVersion = 7.0
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = WpfScr6
build_property.ProjectDir = D:\develop\TestNet6\WpfApp1\WpfApp1\

View File

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

View File

@@ -0,0 +1,23 @@
{
"runtimeOptions": {
"tfm": "net6.0",
"frameworks": [
{
"name": "Microsoft.NETCore.App",
"version": "6.0.0"
},
{
"name": "Microsoft.WindowsDesktop.App",
"version": "6.0.0"
}
],
"additionalProbingPaths": [
"C:\\Users\\Robert\\.dotnet\\store\\|arch|\\|tfm|",
"C:\\Users\\Robert\\.nuget\\packages",
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
],
"configProperties": {
"Microsoft.NETCore.DotNetHostPolicy.SetAppPaths": true
}
}
}

View File

@@ -0,0 +1,20 @@
WpfScr6
1.0.0.0
winexe
C#
.cs
D:\develop\TestNet6\WpfApp1\WpfApp1\obj\Debug\net6.0-windows\
WpfScr6
none
false
TRACE;DEBUG;NET;NET6_0;NETCOREAPP
D:\develop\TestNet6\WpfApp1\WpfApp1\App.xaml
11407045341
5720869822
194-2004305220
MainWindow.xaml;
False

View File

@@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v7.0", FrameworkDisplayName = ".NET 7.0")]

View File

@@ -0,0 +1,71 @@
#pragma checksum "..\..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "EEB1500D723CD05C6322ABE2C3E7BB3A06E1D4A1"
//------------------------------------------------------------------------------
// <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.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.Forms.Integration;
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 Kaehler.scr7 {
/// <summary>
/// App
/// </summary>
public partial class App : System.Windows.Application {
/// <summary>
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.0.0")]
public void InitializeComponent() {
#line 4 "..\..\..\App.xaml"
this.Startup += new System.Windows.StartupEventHandler(this.Application_Startup);
#line default
#line hidden
}
/// <summary>
/// Application Entry Point.
/// </summary>
[System.STAThreadAttribute()]
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.0.0")]
public static void Main() {
Kaehler.scr7.App app = new Kaehler.scr7.App();
app.InitializeComponent();
app.Run();
}
}
}

View File

@@ -0,0 +1,71 @@
#pragma checksum "..\..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "2DD7FC33A3CE500D190B4A571E6518917F50176C"
//------------------------------------------------------------------------------
// <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.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.Forms.Integration;
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 Kaehler.scr {
/// <summary>
/// App
/// </summary>
public partial class App : System.Windows.Application {
/// <summary>
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.0.0")]
public void InitializeComponent() {
#line 4 "..\..\..\App.xaml"
this.Startup += new System.Windows.StartupEventHandler(this.Application_Startup);
#line default
#line hidden
}
/// <summary>
/// Application Entry Point.
/// </summary>
[System.STAThreadAttribute()]
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.0.0")]
public static void Main() {
Kaehler.scr.App app = new Kaehler.scr.App();
app.InitializeComponent();
app.Run();
}
}
}

View File

@@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <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("Kaehler")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("Kaehler")]
[assembly: System.Reflection.AssemblyTitleAttribute("Kaehler")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
// Von der MSBuild WriteCodeFragment-Klasse generiert.

View File

@@ -0,0 +1 @@
3a9e4de228511460d97e757451226809964fc0e0

View File

@@ -0,0 +1,17 @@
is_global = true
build_property.ApplicationManifest =
build_property.StartupObject =
build_property.ApplicationDefaultFont =
build_property.ApplicationHighDpiMode =
build_property.ApplicationUseCompatibleTextRendering =
build_property.ApplicationVisualStyles =
build_property.TargetFramework = net7.0-windows
build_property.TargetPlatformMinVersion = 7.0
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = Kaehler
build_property.ProjectDir = D:\develop\TestNet6\WpfApp1\WpfApp1\

View File

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

View File

@@ -0,0 +1,23 @@
{
"runtimeOptions": {
"tfm": "net7.0",
"frameworks": [
{
"name": "Microsoft.NETCore.App",
"version": "7.0.0"
},
{
"name": "Microsoft.WindowsDesktop.App",
"version": "7.0.0"
}
],
"additionalProbingPaths": [
"C:\\Users\\Robert\\.dotnet\\store\\|arch|\\|tfm|",
"C:\\Users\\Robert\\.nuget\\packages",
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
],
"configProperties": {
"Microsoft.NETCore.DotNetHostPolicy.SetAppPaths": true
}
}
}

View File

@@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <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("Kaehler.scr")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("Kaehler.scr")]
[assembly: System.Reflection.AssemblyTitleAttribute("Kaehler.scr")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
// Von der MSBuild WriteCodeFragment-Klasse generiert.

View File

@@ -0,0 +1 @@
34da4b791e7718163d18b3313dff15be1443ca85

View File

@@ -0,0 +1,17 @@
is_global = true
build_property.ApplicationManifest =
build_property.StartupObject =
build_property.ApplicationDefaultFont =
build_property.ApplicationHighDpiMode =
build_property.ApplicationUseCompatibleTextRendering =
build_property.ApplicationVisualStyles =
build_property.TargetFramework = net7.0-windows
build_property.TargetPlatformMinVersion = 7.0
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = Kaehler.scr
build_property.ProjectDir = \\NAS\Test\src\Kaehler.scr\

View File

@@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <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("Kaehler.scr7")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("Kaehler.scr7")]
[assembly: System.Reflection.AssemblyTitleAttribute("Kaehler.scr7")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
// Von der MSBuild WriteCodeFragment-Klasse generiert.

View File

@@ -0,0 +1 @@
712c950c30d0bb2966136d9e3a93b2dccc3f6230

View File

@@ -0,0 +1,17 @@
is_global = true
build_property.ApplicationManifest =
build_property.StartupObject =
build_property.ApplicationDefaultFont =
build_property.ApplicationHighDpiMode =
build_property.ApplicationUseCompatibleTextRendering =
build_property.ApplicationVisualStyles =
build_property.TargetFramework = net7.0-windows
build_property.TargetPlatformMinVersion = 7.0
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = Kaehler.scr7
build_property.ProjectDir = D:\develop\Scr.Net7\WpfApp1\WpfApp1\

View File

@@ -0,0 +1 @@
a63f9e90857a6f37f4abc864d1085ca35d533c8a

View File

@@ -0,0 +1,40 @@
D:\develop\TestNet6\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\Kaehler.scr7.csproj.AssemblyReference.cache
D:\develop\TestNet6\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\MainWindow.baml
D:\develop\TestNet6\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\MainWindow.g.cs
D:\develop\TestNet6\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\Kaehler.scr7_MarkupCompile.cache
D:\develop\TestNet6\WpfApp1\WpfApp1\bin\Debug\net7.0-windows\Kaehler.scr7.exe
D:\develop\TestNet6\WpfApp1\WpfApp1\bin\Debug\net7.0-windows\Kaehler.scr7.deps.json
D:\develop\TestNet6\WpfApp1\WpfApp1\bin\Debug\net7.0-windows\Kaehler.scr7.runtimeconfig.json
D:\develop\TestNet6\WpfApp1\WpfApp1\bin\Debug\net7.0-windows\Kaehler.scr7.dll
D:\develop\TestNet6\WpfApp1\WpfApp1\bin\Debug\net7.0-windows\Kaehler.scr7.pdb
D:\develop\TestNet6\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\App.g.cs
D:\develop\TestNet6\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\Kaehler.scr7.g.resources
D:\develop\TestNet6\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\Kaehler.scr7.GeneratedMSBuildEditorConfig.editorconfig
D:\develop\TestNet6\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\Kaehler.scr7.AssemblyInfoInputs.cache
D:\develop\TestNet6\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\Kaehler.scr7.AssemblyInfo.cs
D:\develop\TestNet6\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\Kaehler.scr7.csproj.CoreCompileInputs.cache
D:\develop\TestNet6\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\Kaehler.scr7.dll
D:\develop\TestNet6\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\refint\Kaehler.scr7.dll
D:\develop\TestNet6\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\Kaehler.scr7.pdb
D:\develop\TestNet6\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\Kaehler.scr7.genruntimeconfig.cache
D:\develop\TestNet6\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\ref\Kaehler.scr7.dll
D:\develop\Scr.Net7\WpfApp1\WpfApp1\bin\Debug\net7.0-windows\Kaehler.scr7.exe
D:\develop\Scr.Net7\WpfApp1\WpfApp1\bin\Debug\net7.0-windows\Kaehler.scr7.deps.json
D:\develop\Scr.Net7\WpfApp1\WpfApp1\bin\Debug\net7.0-windows\Kaehler.scr7.runtimeconfig.json
D:\develop\Scr.Net7\WpfApp1\WpfApp1\bin\Debug\net7.0-windows\Kaehler.scr7.dll
D:\develop\Scr.Net7\WpfApp1\WpfApp1\bin\Debug\net7.0-windows\Kaehler.scr7.pdb
D:\develop\Scr.Net7\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\Kaehler.scr7.csproj.AssemblyReference.cache
D:\develop\Scr.Net7\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\MainWindow.baml
D:\develop\Scr.Net7\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\MainWindow.g.cs
D:\develop\Scr.Net7\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\App.g.cs
D:\develop\Scr.Net7\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\Kaehler.scr7_MarkupCompile.cache
D:\develop\Scr.Net7\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\Kaehler.scr7.g.resources
D:\develop\Scr.Net7\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\Kaehler.scr7.GeneratedMSBuildEditorConfig.editorconfig
D:\develop\Scr.Net7\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\Kaehler.scr7.AssemblyInfoInputs.cache
D:\develop\Scr.Net7\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\Kaehler.scr7.AssemblyInfo.cs
D:\develop\Scr.Net7\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\Kaehler.scr7.csproj.CoreCompileInputs.cache
D:\develop\Scr.Net7\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\Kaehler.scr7.dll
D:\develop\Scr.Net7\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\refint\Kaehler.scr7.dll
D:\develop\Scr.Net7\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\Kaehler.scr7.pdb
D:\develop\Scr.Net7\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\Kaehler.scr7.genruntimeconfig.cache
D:\develop\Scr.Net7\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\ref\Kaehler.scr7.dll

View File

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

View File

@@ -0,0 +1,23 @@
{
"runtimeOptions": {
"tfm": "net7.0",
"frameworks": [
{
"name": "Microsoft.NETCore.App",
"version": "7.0.0"
},
{
"name": "Microsoft.WindowsDesktop.App",
"version": "7.0.0"
}
],
"additionalProbingPaths": [
"C:\\Users\\Robert\\.dotnet\\store\\|arch|\\|tfm|",
"C:\\Users\\Robert\\.nuget\\packages",
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
],
"configProperties": {
"Microsoft.NETCore.DotNetHostPolicy.SetAppPaths": true
}
}
}

Binary file not shown.

View File

@@ -0,0 +1 @@
9c30b72a27738fc26f056382570e2c7b32d08e2a

Binary file not shown.

View File

@@ -0,0 +1,20 @@
Kaehler.scr7
winexe
C#
.cs
D:\develop\Scr.Net7\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\
Kaehler.scr7
none
false
TRACE;DEBUG;NET;NET7_0;NETCOREAPP
D:\develop\Scr.Net7\WpfApp1\WpfApp1\App.xaml
11407045341
3-1233169557
2071328265475
MainWindow.xaml;
False

View File

@@ -0,0 +1,20 @@
Kaehler.scr7
1.0.0.0
winexe
C#
.cs
D:\develop\Scr.Net7\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\
Kaehler.scr7
none
false
TRACE;DEBUG;NET;NET7_0;NETCOREAPP
D:\develop\Scr.Net7\WpfApp1\WpfApp1\App.xaml
11407045341
51690473318
2071328265475
MainWindow.xaml;
False

View File

@@ -0,0 +1,20 @@
Kaehler.scr
1.0.0.0
winexe
C#
.cs
\\NAS\Test\src\Kaehler.scr\obj\Debug\net7.0-windows\
Kaehler.scr
none
false
TRACE;DEBUG;NET;NET7_0;NETCOREAPP
\\NAS\Test\src\Kaehler.scr\App.xaml
11407045341
5-436064168
2071328265475
MainWindow.xaml;
False

Binary file not shown.

View File

@@ -0,0 +1,255 @@
#pragma checksum "..\..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "93A51A305089CADBE355CABAC2AE31BC2D6D4D2F"
//------------------------------------------------------------------------------
// <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.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.Forms.Integration;
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 Kaehler.scr7 {
/// <summary>
/// MainWindow
/// </summary>
public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
#line 4 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal Kaehler.scr7.MainWindow ScrWindow;
#line default
#line hidden
#line 17 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Canvas scrcanvas;
#line default
#line hidden
#line 18 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Image image1;
#line default
#line hidden
#line 19 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Image image2;
#line default
#line hidden
#line 20 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Image imageSCR;
#line default
#line hidden
#line 21 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Image image3;
#line default
#line hidden
#line 22 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Image image4;
#line default
#line hidden
#line 23 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Image image5;
#line default
#line hidden
#line 24 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TextBlock txtZitat;
#line default
#line hidden
#line 25 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Image imageBug;
#line default
#line hidden
private bool _contentLoaded;
/// <summary>
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.0.0")]
public void InitializeComponent() {
if (_contentLoaded) {
return;
}
_contentLoaded = true;
System.Uri resourceLocater = new System.Uri("/Kaehler.scr7;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", "7.0.0.0")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
switch (connectionId)
{
case 1:
this.ScrWindow = ((Kaehler.scr7.MainWindow)(target));
#line 4 "..\..\..\MainWindow.xaml"
this.ScrWindow.MouseLeftButtonUp += new System.Windows.Input.MouseButtonEventHandler(this.Window_MouseLeftButtonUp);
#line default
#line hidden
#line 4 "..\..\..\MainWindow.xaml"
this.ScrWindow.MouseRightButtonUp += new System.Windows.Input.MouseButtonEventHandler(this.Window_MouseRightButtonUp);
#line default
#line hidden
#line 4 "..\..\..\MainWindow.xaml"
this.ScrWindow.MouseDoubleClick += new System.Windows.Input.MouseButtonEventHandler(this.Window_MouseDoubleClick);
#line default
#line hidden
#line 4 "..\..\..\MainWindow.xaml"
this.ScrWindow.KeyUp += new System.Windows.Input.KeyEventHandler(this.Window_KeyUp);
#line default
#line hidden
#line 4 "..\..\..\MainWindow.xaml"
this.ScrWindow.Loaded += new System.Windows.RoutedEventHandler(this.Window_Loaded);
#line default
#line hidden
return;
case 2:
this.scrcanvas = ((System.Windows.Controls.Canvas)(target));
return;
case 3:
this.image1 = ((System.Windows.Controls.Image)(target));
#line 18 "..\..\..\MainWindow.xaml"
this.image1.KeyDown += new System.Windows.Input.KeyEventHandler(this.image1_KeyDown);
#line default
#line hidden
#line 18 "..\..\..\MainWindow.xaml"
this.image1.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.image1_MouseDown);
#line default
#line hidden
#line 18 "..\..\..\MainWindow.xaml"
this.image1.MouseWheel += new System.Windows.Input.MouseWheelEventHandler(this.image1_MouseWheel);
#line default
#line hidden
return;
case 4:
this.image2 = ((System.Windows.Controls.Image)(target));
#line 19 "..\..\..\MainWindow.xaml"
this.image2.KeyDown += new System.Windows.Input.KeyEventHandler(this.image2_KeyDown);
#line default
#line hidden
#line 19 "..\..\..\MainWindow.xaml"
this.image2.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.image2_MouseDown);
#line default
#line hidden
#line 19 "..\..\..\MainWindow.xaml"
this.image2.MouseWheel += new System.Windows.Input.MouseWheelEventHandler(this.image2_MouseWheel);
#line default
#line hidden
return;
case 5:
this.imageSCR = ((System.Windows.Controls.Image)(target));
return;
case 6:
this.image3 = ((System.Windows.Controls.Image)(target));
return;
case 7:
this.image4 = ((System.Windows.Controls.Image)(target));
return;
case 8:
this.image5 = ((System.Windows.Controls.Image)(target));
return;
case 9:
this.txtZitat = ((System.Windows.Controls.TextBlock)(target));
return;
case 10:
this.imageBug = ((System.Windows.Controls.Image)(target));
return;
}
this._contentLoaded = true;
}
}
}

View File

@@ -0,0 +1,255 @@
#pragma checksum "..\..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "C3131CA9D1D870DA4B119BE63646BE33A34F0527"
//------------------------------------------------------------------------------
// <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.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.Forms.Integration;
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 Kaehler.scr {
/// <summary>
/// MainWindow
/// </summary>
public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
#line 4 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal Kaehler.scr.MainWindow ScrWindow;
#line default
#line hidden
#line 17 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Canvas scrcanvas;
#line default
#line hidden
#line 18 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Image image1;
#line default
#line hidden
#line 19 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Image image2;
#line default
#line hidden
#line 20 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Image imageSCR;
#line default
#line hidden
#line 21 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Image image3;
#line default
#line hidden
#line 22 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Image image4;
#line default
#line hidden
#line 23 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Image image5;
#line default
#line hidden
#line 24 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TextBlock txtZitat;
#line default
#line hidden
#line 25 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Image imageBug;
#line default
#line hidden
private bool _contentLoaded;
/// <summary>
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.0.0")]
public void InitializeComponent() {
if (_contentLoaded) {
return;
}
_contentLoaded = true;
System.Uri resourceLocater = new System.Uri("/Kaehler.scr;V1.0.0.0;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", "7.0.0.0")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
switch (connectionId)
{
case 1:
this.ScrWindow = ((Kaehler.scr.MainWindow)(target));
#line 4 "..\..\..\MainWindow.xaml"
this.ScrWindow.MouseLeftButtonUp += new System.Windows.Input.MouseButtonEventHandler(this.Window_MouseLeftButtonUp);
#line default
#line hidden
#line 4 "..\..\..\MainWindow.xaml"
this.ScrWindow.MouseRightButtonUp += new System.Windows.Input.MouseButtonEventHandler(this.Window_MouseRightButtonUp);
#line default
#line hidden
#line 4 "..\..\..\MainWindow.xaml"
this.ScrWindow.MouseDoubleClick += new System.Windows.Input.MouseButtonEventHandler(this.Window_MouseDoubleClick);
#line default
#line hidden
#line 4 "..\..\..\MainWindow.xaml"
this.ScrWindow.KeyUp += new System.Windows.Input.KeyEventHandler(this.Window_KeyUp);
#line default
#line hidden
#line 4 "..\..\..\MainWindow.xaml"
this.ScrWindow.Loaded += new System.Windows.RoutedEventHandler(this.Window_Loaded);
#line default
#line hidden
return;
case 2:
this.scrcanvas = ((System.Windows.Controls.Canvas)(target));
return;
case 3:
this.image1 = ((System.Windows.Controls.Image)(target));
#line 18 "..\..\..\MainWindow.xaml"
this.image1.KeyDown += new System.Windows.Input.KeyEventHandler(this.image1_KeyDown);
#line default
#line hidden
#line 18 "..\..\..\MainWindow.xaml"
this.image1.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.image1_MouseDown);
#line default
#line hidden
#line 18 "..\..\..\MainWindow.xaml"
this.image1.MouseWheel += new System.Windows.Input.MouseWheelEventHandler(this.image1_MouseWheel);
#line default
#line hidden
return;
case 4:
this.image2 = ((System.Windows.Controls.Image)(target));
#line 19 "..\..\..\MainWindow.xaml"
this.image2.KeyDown += new System.Windows.Input.KeyEventHandler(this.image2_KeyDown);
#line default
#line hidden
#line 19 "..\..\..\MainWindow.xaml"
this.image2.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.image2_MouseDown);
#line default
#line hidden
#line 19 "..\..\..\MainWindow.xaml"
this.image2.MouseWheel += new System.Windows.Input.MouseWheelEventHandler(this.image2_MouseWheel);
#line default
#line hidden
return;
case 5:
this.imageSCR = ((System.Windows.Controls.Image)(target));
return;
case 6:
this.image3 = ((System.Windows.Controls.Image)(target));
return;
case 7:
this.image4 = ((System.Windows.Controls.Image)(target));
return;
case 8:
this.image5 = ((System.Windows.Controls.Image)(target));
return;
case 9:
this.txtZitat = ((System.Windows.Controls.TextBlock)(target));
return;
case 10:
this.imageBug = ((System.Windows.Controls.Image)(target));
return;
}
this._contentLoaded = true;
}
}
}

View File

@@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <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("WpfScr6")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("WpfScr6")]
[assembly: System.Reflection.AssemblyTitleAttribute("WpfScr6")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
// Von der MSBuild WriteCodeFragment-Klasse generiert.

View File

@@ -0,0 +1 @@
8b6a0db9e025a0f04dda0a5284dc83cd2f311b8b

View File

@@ -0,0 +1,17 @@
is_global = true
build_property.ApplicationManifest =
build_property.StartupObject =
build_property.ApplicationDefaultFont =
build_property.ApplicationHighDpiMode =
build_property.ApplicationUseCompatibleTextRendering =
build_property.ApplicationVisualStyles =
build_property.TargetFramework = net7.0-windows
build_property.TargetPlatformMinVersion = 7.0
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = WpfScr6
build_property.ProjectDir = D:\develop\TestNet6\WpfApp1\WpfApp1\

View File

@@ -0,0 +1,10 @@
D:\develop\TestNet6\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\WpfScr6.csproj.AssemblyReference.cache
D:\develop\TestNet6\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\MainWindow.baml
D:\develop\TestNet6\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\MainWindow.g.cs
D:\develop\TestNet6\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\App.g.cs
D:\develop\TestNet6\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\WpfScr6_MarkupCompile.cache
D:\develop\TestNet6\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\WpfScr6.g.resources
D:\develop\TestNet6\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\WpfScr6.GeneratedMSBuildEditorConfig.editorconfig
D:\develop\TestNet6\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\WpfScr6.AssemblyInfoInputs.cache
D:\develop\TestNet6\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\WpfScr6.AssemblyInfo.cs
D:\develop\TestNet6\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\WpfScr6.csproj.CoreCompileInputs.cache

View File

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

View File

@@ -0,0 +1,23 @@
{
"runtimeOptions": {
"tfm": "net7.0",
"frameworks": [
{
"name": "Microsoft.NETCore.App",
"version": "7.0.0"
},
{
"name": "Microsoft.WindowsDesktop.App",
"version": "7.0.0"
}
],
"additionalProbingPaths": [
"C:\\Users\\Robert\\.dotnet\\store\\|arch|\\|tfm|",
"C:\\Users\\Robert\\.nuget\\packages",
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
],
"configProperties": {
"Microsoft.NETCore.DotNetHostPolicy.SetAppPaths": true
}
}
}

View File

@@ -0,0 +1 @@
obj\Debug\net7.0-windows\\_IsIncrementalBuild

Binary file not shown.

View File

@@ -0,0 +1,71 @@
{
"format": 1,
"restore": {
"D:\\develop\\TestNet6\\WpfApp1\\WpfApp1\\Kaehler.csproj": {}
},
"projects": {
"D:\\develop\\TestNet6\\WpfApp1\\WpfApp1\\Kaehler.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "D:\\develop\\TestNet6\\WpfApp1\\WpfApp1\\Kaehler.csproj",
"projectName": "Kaehler",
"projectPath": "D:\\develop\\TestNet6\\WpfApp1\\WpfApp1\\Kaehler.csproj",
"packagesPath": "C:\\Users\\Robert\\.nuget\\packages\\",
"outputPath": "D:\\develop\\TestNet6\\WpfApp1\\WpfApp1\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
],
"configFilePaths": [
"C:\\Users\\Robert\\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": [
"net7.0-windows"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"C:\\Program Files\\dotnet\\library-packs": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net7.0-windows7.0": {
"targetAlias": "net7.0-windows",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net7.0-windows7.0": {
"targetAlias": "net7.0-windows",
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48",
"net481"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
},
"Microsoft.WindowsDesktop.App": {
"privateAssets": "none"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.100\\RuntimeIdentifierGraph.json"
}
}
}
}
}

View File

@@ -0,0 +1,16 @@
<?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\Robert\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.4.0</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\Robert\.nuget\packages\" />
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
</ItemGroup>
</Project>

View File

@@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" />

View File

@@ -0,0 +1,71 @@
{
"format": 1,
"restore": {
"T:\\src\\Kaehler.scr\\Kaehler.scr.csproj": {}
},
"projects": {
"T:\\src\\Kaehler.scr\\Kaehler.scr.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "T:\\src\\Kaehler.scr\\Kaehler.scr.csproj",
"projectName": "Kaehler.scr",
"projectPath": "T:\\src\\Kaehler.scr\\Kaehler.scr.csproj",
"packagesPath": "C:\\Users\\Robert\\.nuget\\packages\\",
"outputPath": "T:\\src\\Kaehler.scr\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
],
"configFilePaths": [
"C:\\Users\\Robert\\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": [
"net7.0-windows"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"C:\\Program Files\\dotnet\\library-packs": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net7.0-windows7.0": {
"targetAlias": "net7.0-windows",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net7.0-windows7.0": {
"targetAlias": "net7.0-windows",
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48",
"net481"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
},
"Microsoft.WindowsDesktop.App": {
"privateAssets": "none"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.100\\RuntimeIdentifierGraph.json"
}
}
}
}
}

View File

@@ -0,0 +1,16 @@
<?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\Robert\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.4.0</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\Robert\.nuget\packages\" />
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
</ItemGroup>
</Project>

View File

@@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" />

View File

@@ -0,0 +1,71 @@
{
"format": 1,
"restore": {
"D:\\develop\\Scr.Net7\\WpfApp1\\WpfApp1\\Kaehler.scr7.csproj": {}
},
"projects": {
"D:\\develop\\Scr.Net7\\WpfApp1\\WpfApp1\\Kaehler.scr7.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "D:\\develop\\Scr.Net7\\WpfApp1\\WpfApp1\\Kaehler.scr7.csproj",
"projectName": "Kaehler.scr7",
"projectPath": "D:\\develop\\Scr.Net7\\WpfApp1\\WpfApp1\\Kaehler.scr7.csproj",
"packagesPath": "C:\\Users\\Robert\\.nuget\\packages\\",
"outputPath": "D:\\develop\\Scr.Net7\\WpfApp1\\WpfApp1\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
],
"configFilePaths": [
"C:\\Users\\Robert\\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": [
"net7.0-windows"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"C:\\Program Files\\dotnet\\library-packs": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net7.0-windows7.0": {
"targetAlias": "net7.0-windows",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net7.0-windows7.0": {
"targetAlias": "net7.0-windows",
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48",
"net481"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
},
"Microsoft.WindowsDesktop.App": {
"privateAssets": "none"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.100\\RuntimeIdentifierGraph.json"
}
}
}
}
}

View File

@@ -0,0 +1,16 @@
<?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\Robert\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.4.0</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\Robert\.nuget\packages\" />
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
</ItemGroup>
</Project>

View File

@@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" />

View File

@@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v7.0", FrameworkDisplayName = ".NET 7.0")]

View File

@@ -0,0 +1,71 @@
#pragma checksum "..\..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "2DD7FC33A3CE500D190B4A571E6518917F50176C"
//------------------------------------------------------------------------------
// <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.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.Forms.Integration;
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 Kaehler.scr {
/// <summary>
/// App
/// </summary>
public partial class App : System.Windows.Application {
/// <summary>
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.0.0")]
public void InitializeComponent() {
#line 4 "..\..\..\App.xaml"
this.Startup += new System.Windows.StartupEventHandler(this.Application_Startup);
#line default
#line hidden
}
/// <summary>
/// Application Entry Point.
/// </summary>
[System.STAThreadAttribute()]
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.0.0")]
public static void Main() {
Kaehler.scr.App app = new Kaehler.scr.App();
app.InitializeComponent();
app.Run();
}
}
}

View File

@@ -0,0 +1,71 @@
#pragma checksum "..\..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "2DD7FC33A3CE500D190B4A571E6518917F50176C"
//------------------------------------------------------------------------------
// <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.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.Forms.Integration;
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 Kaehler.scr {
/// <summary>
/// App
/// </summary>
public partial class App : System.Windows.Application {
/// <summary>
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.0.0")]
public void InitializeComponent() {
#line 4 "..\..\..\App.xaml"
this.Startup += new System.Windows.StartupEventHandler(this.Application_Startup);
#line default
#line hidden
}
/// <summary>
/// Application Entry Point.
/// </summary>
[System.STAThreadAttribute()]
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.0.0")]
public static void Main() {
Kaehler.scr.App app = new Kaehler.scr.App();
app.InitializeComponent();
app.Run();
}
}
}

View File

@@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <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("Kaehler.scr")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("Kaehler.scr")]
[assembly: System.Reflection.AssemblyTitleAttribute("Kaehler.scr")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
// Von der MSBuild WriteCodeFragment-Klasse generiert.

View File

@@ -0,0 +1 @@
7aba713d409dea39b0cea699ba890bf6025927fd

View File

@@ -0,0 +1,17 @@
is_global = true
build_property.ApplicationManifest =
build_property.StartupObject =
build_property.ApplicationDefaultFont =
build_property.ApplicationHighDpiMode =
build_property.ApplicationUseCompatibleTextRendering =
build_property.ApplicationVisualStyles =
build_property.TargetFramework = net7.0-windows
build_property.TargetPlatformMinVersion = 7.0
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = Kaehler.scr
build_property.ProjectDir = T:\src\Kaehler.scr\

View File

@@ -0,0 +1 @@
b45da75869f15006736c7542b701b6f6b523dbbb

View File

@@ -0,0 +1,40 @@
D:\develop\Scr.Net7\WpfApp1\WpfApp1\obj\Release\net7.0-windows\Kaehler.scr.csproj.AssemblyReference.cache
D:\develop\Scr.Net7\WpfApp1\WpfApp1\obj\Release\net7.0-windows\MainWindow.baml
D:\develop\Scr.Net7\WpfApp1\WpfApp1\obj\Release\net7.0-windows\MainWindow.g.cs
D:\develop\Scr.Net7\WpfApp1\WpfApp1\obj\Release\net7.0-windows\App.g.cs
D:\develop\Scr.Net7\WpfApp1\WpfApp1\obj\Release\net7.0-windows\Kaehler.scr_MarkupCompile.cache
D:\develop\Scr.Net7\WpfApp1\WpfApp1\obj\Release\net7.0-windows\Kaehler.scr.g.resources
D:\develop\Scr.Net7\WpfApp1\WpfApp1\obj\Release\net7.0-windows\Kaehler.scr.GeneratedMSBuildEditorConfig.editorconfig
D:\develop\Scr.Net7\WpfApp1\WpfApp1\obj\Release\net7.0-windows\Kaehler.scr.AssemblyInfoInputs.cache
D:\develop\Scr.Net7\WpfApp1\WpfApp1\obj\Release\net7.0-windows\Kaehler.scr.AssemblyInfo.cs
D:\develop\Scr.Net7\WpfApp1\WpfApp1\obj\Release\net7.0-windows\Kaehler.scr.csproj.CoreCompileInputs.cache
D:\develop\Scr.Net7\WpfApp1\WpfApp1\bin\Release\net7.0-windows\Kaehler.scr.exe
D:\develop\Scr.Net7\WpfApp1\WpfApp1\bin\Release\net7.0-windows\Kaehler.scr.deps.json
D:\develop\Scr.Net7\WpfApp1\WpfApp1\bin\Release\net7.0-windows\Kaehler.scr.runtimeconfig.json
D:\develop\Scr.Net7\WpfApp1\WpfApp1\bin\Release\net7.0-windows\Kaehler.scr.dll
D:\develop\Scr.Net7\WpfApp1\WpfApp1\bin\Release\net7.0-windows\Kaehler.scr.pdb
D:\develop\Scr.Net7\WpfApp1\WpfApp1\obj\Release\net7.0-windows\Kaehler.scr.dll
D:\develop\Scr.Net7\WpfApp1\WpfApp1\obj\Release\net7.0-windows\refint\Kaehler.scr.dll
D:\develop\Scr.Net7\WpfApp1\WpfApp1\obj\Release\net7.0-windows\Kaehler.scr.pdb
D:\develop\Scr.Net7\WpfApp1\WpfApp1\obj\Release\net7.0-windows\Kaehler.scr.genruntimeconfig.cache
D:\develop\Scr.Net7\WpfApp1\WpfApp1\obj\Release\net7.0-windows\ref\Kaehler.scr.dll
T:\src\Kaehler.scr\bin\Release\net7.0-windows\Kaehler.scr.exe
T:\src\Kaehler.scr\bin\Release\net7.0-windows\Kaehler.scr.deps.json
T:\src\Kaehler.scr\bin\Release\net7.0-windows\Kaehler.scr.runtimeconfig.json
T:\src\Kaehler.scr\bin\Release\net7.0-windows\Kaehler.scr.dll
T:\src\Kaehler.scr\bin\Release\net7.0-windows\Kaehler.scr.pdb
T:\src\Kaehler.scr\obj\Release\net7.0-windows\Kaehler.scr.csproj.AssemblyReference.cache
T:\src\Kaehler.scr\obj\Release\net7.0-windows\MainWindow.baml
T:\src\Kaehler.scr\obj\Release\net7.0-windows\MainWindow.g.cs
T:\src\Kaehler.scr\obj\Release\net7.0-windows\App.g.cs
T:\src\Kaehler.scr\obj\Release\net7.0-windows\Kaehler.scr_MarkupCompile.cache
T:\src\Kaehler.scr\obj\Release\net7.0-windows\Kaehler.scr.g.resources
T:\src\Kaehler.scr\obj\Release\net7.0-windows\Kaehler.scr.GeneratedMSBuildEditorConfig.editorconfig
T:\src\Kaehler.scr\obj\Release\net7.0-windows\Kaehler.scr.AssemblyInfoInputs.cache
T:\src\Kaehler.scr\obj\Release\net7.0-windows\Kaehler.scr.AssemblyInfo.cs
T:\src\Kaehler.scr\obj\Release\net7.0-windows\Kaehler.scr.csproj.CoreCompileInputs.cache
T:\src\Kaehler.scr\obj\Release\net7.0-windows\Kaehler.scr.dll
T:\src\Kaehler.scr\obj\Release\net7.0-windows\refint\Kaehler.scr.dll
T:\src\Kaehler.scr\obj\Release\net7.0-windows\Kaehler.scr.pdb
T:\src\Kaehler.scr\obj\Release\net7.0-windows\Kaehler.scr.genruntimeconfig.cache
T:\src\Kaehler.scr\obj\Release\net7.0-windows\ref\Kaehler.scr.dll

View File

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

View File

@@ -0,0 +1,24 @@
{
"runtimeOptions": {
"tfm": "net7.0",
"frameworks": [
{
"name": "Microsoft.NETCore.App",
"version": "7.0.0"
},
{
"name": "Microsoft.WindowsDesktop.App",
"version": "7.0.0"
}
],
"additionalProbingPaths": [
"C:\\Users\\Robert\\.dotnet\\store\\|arch|\\|tfm|",
"C:\\Users\\Robert\\.nuget\\packages",
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
],
"configProperties": {
"System.Reflection.Metadata.MetadataUpdater.IsSupported": false,
"Microsoft.NETCore.DotNetHostPolicy.SetAppPaths": true
}
}
}

Binary file not shown.

View File

@@ -0,0 +1 @@
31cb08d4a86341edb0d95b2400bf190ae3fba036

Binary file not shown.

View File

@@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <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("Kaehler.scr7")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("Kaehler.scr7")]
[assembly: System.Reflection.AssemblyTitleAttribute("Kaehler.scr7")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
// Von der MSBuild WriteCodeFragment-Klasse generiert.

View File

@@ -0,0 +1 @@
f69ca18965a973c44671fe9ab0c15d41189e1b8f

View File

@@ -0,0 +1,17 @@
is_global = true
build_property.ApplicationManifest =
build_property.StartupObject =
build_property.ApplicationDefaultFont =
build_property.ApplicationHighDpiMode =
build_property.ApplicationUseCompatibleTextRendering =
build_property.ApplicationVisualStyles =
build_property.TargetFramework = net7.0-windows
build_property.TargetPlatformMinVersion = 7.0
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = Kaehler.scr7
build_property.ProjectDir = D:\develop\Scr.Net7\WpfApp1\WpfApp1\

View File

@@ -0,0 +1 @@
298326de5e78c04f0668c5908819f7ddb79bec60

View File

@@ -0,0 +1,20 @@
D:\develop\Scr.Net7\WpfApp1\WpfApp1\bin\Release\net7.0-windows\Kaehler.scr7.exe
D:\develop\Scr.Net7\WpfApp1\WpfApp1\bin\Release\net7.0-windows\Kaehler.scr7.deps.json
D:\develop\Scr.Net7\WpfApp1\WpfApp1\bin\Release\net7.0-windows\Kaehler.scr7.runtimeconfig.json
D:\develop\Scr.Net7\WpfApp1\WpfApp1\bin\Release\net7.0-windows\Kaehler.scr7.dll
D:\develop\Scr.Net7\WpfApp1\WpfApp1\bin\Release\net7.0-windows\Kaehler.scr7.pdb
D:\develop\Scr.Net7\WpfApp1\WpfApp1\obj\Release\net7.0-windows\Kaehler.scr7.csproj.AssemblyReference.cache
D:\develop\Scr.Net7\WpfApp1\WpfApp1\obj\Release\net7.0-windows\MainWindow.baml
D:\develop\Scr.Net7\WpfApp1\WpfApp1\obj\Release\net7.0-windows\MainWindow.g.cs
D:\develop\Scr.Net7\WpfApp1\WpfApp1\obj\Release\net7.0-windows\App.g.cs
D:\develop\Scr.Net7\WpfApp1\WpfApp1\obj\Release\net7.0-windows\Kaehler.scr7_MarkupCompile.cache
D:\develop\Scr.Net7\WpfApp1\WpfApp1\obj\Release\net7.0-windows\Kaehler.scr7.g.resources
D:\develop\Scr.Net7\WpfApp1\WpfApp1\obj\Release\net7.0-windows\Kaehler.scr7.GeneratedMSBuildEditorConfig.editorconfig
D:\develop\Scr.Net7\WpfApp1\WpfApp1\obj\Release\net7.0-windows\Kaehler.scr7.AssemblyInfoInputs.cache
D:\develop\Scr.Net7\WpfApp1\WpfApp1\obj\Release\net7.0-windows\Kaehler.scr7.AssemblyInfo.cs
D:\develop\Scr.Net7\WpfApp1\WpfApp1\obj\Release\net7.0-windows\Kaehler.scr7.csproj.CoreCompileInputs.cache
D:\develop\Scr.Net7\WpfApp1\WpfApp1\obj\Release\net7.0-windows\Kaehler.scr7.dll
D:\develop\Scr.Net7\WpfApp1\WpfApp1\obj\Release\net7.0-windows\refint\Kaehler.scr7.dll
D:\develop\Scr.Net7\WpfApp1\WpfApp1\obj\Release\net7.0-windows\Kaehler.scr7.pdb
D:\develop\Scr.Net7\WpfApp1\WpfApp1\obj\Release\net7.0-windows\Kaehler.scr7.genruntimeconfig.cache
D:\develop\Scr.Net7\WpfApp1\WpfApp1\obj\Release\net7.0-windows\ref\Kaehler.scr7.dll

Some files were not shown because too many files have changed in this diff Show More