commit f1229587f4bc0808b3d3265185d6082f30358b51 Author: Robert Date: Sun Dec 11 21:08:34 2022 +0100 init save dotnet7 diff --git a/Kaehler.scr.sln b/Kaehler.scr.sln new file mode 100644 index 0000000..1373596 --- /dev/null +++ b/Kaehler.scr.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.4.33110.190 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Kaehler.scr", "Kaehler.scr\Kaehler.scr.csproj", "{51035891-0023-43FF-AAFC-25E3DC10C570}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {51035891-0023-43FF-AAFC-25E3DC10C570}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {51035891-0023-43FF-AAFC-25E3DC10C570}.Debug|Any CPU.Build.0 = Debug|Any CPU + {51035891-0023-43FF-AAFC-25E3DC10C570}.Release|Any CPU.ActiveCfg = Release|Any CPU + {51035891-0023-43FF-AAFC-25E3DC10C570}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {225D1E18-3CD7-47E6-BE6B-50AB72D773AD} + EndGlobalSection +EndGlobal diff --git a/Kaehler.scr/App.xaml b/Kaehler.scr/App.xaml new file mode 100644 index 0000000..0d73739 --- /dev/null +++ b/Kaehler.scr/App.xaml @@ -0,0 +1,8 @@ + + + + + diff --git a/Kaehler.scr/App.xaml.cs b/Kaehler.scr/App.xaml.cs new file mode 100644 index 0000000..244fda5 --- /dev/null +++ b/Kaehler.scr/App.xaml.cs @@ -0,0 +1,237 @@ +using System; +using System.Collections.Generic; +using System.Configuration; +using System.ComponentModel; +using System.Data; +//using System.Deployment.Application; +using System.Linq; +using System.Windows; +using System.Windows.Interop; +using System.Runtime.InteropServices; +using System.Windows.Media; +using System.Windows.Threading; +using System.Diagnostics; +using System.IO; +using System.Windows.Shapes; +using System.Windows.Forms; + +namespace Kaehler.scr +{ + public partial class App : System.Windows.Application + { + /* private enum UpdateStatuses + { + NoUpdateAvailable, + UpdateAvailable, + UpdateRequired, + NotDeployedViaClickOnce, + DeploymentDownloadException, + InvalidDeploymentException, + InvalidOperationException + }*/ + + private void Application_Startup(object sender, StartupEventArgs e) + { + try + { + CheckForExistingInstance(); + if (e.Args.GetLength(0) > 0) // es gibt einen Parameter + { + // Normal screensaver mode. + if (e.Args[0].ToLower().StartsWith("/s")) + { + StartScreenSaver(); + } + else // "/c" "/p" - Config, Preview mode + { + if (e.Args[0].ToLower().StartsWith("/c")) + { + System.Windows.MessageBox.Show("Es gibt noch keine Konfigurationsmöglichkeit."); + } + //if (e.Args[0].ToLower().StartsWith("/p")) + //{ + // System.Windows.MessageBox.Show("Es gibt noch keine Preview."); + //} + System.Windows.Application.Current.Shutdown(); + } + } + else // kein Parameter App-Mode + { + StartScreenSaver(); + } + } + catch (Exception ex) + { + Console.WriteLine("Exception in " + ex.Source + ": " + ex.Message); + System.Windows.MessageBox.Show("Exception in " + ex.Source + ": " + ex.Message); + } + } + + private void CheckForExistingInstance() + { + if (Process.GetProcessesByName(Process.GetCurrentProcess().ProcessName.ToString()).Length > 1) + { + System.Windows.Application.Current.Shutdown(); + } + } + + private void StartScreenSaver() + { + try + { + /* Das Deployment funktioniert nicht für scr-Dateien ... + try + { + ApplicationDeployment updateCheck = ApplicationDeployment.CurrentDeployment; + UpdateCheckInfo info = updateCheck.CheckForDetailedUpdate(); + // + if (info.UpdateAvailable) + { + UpdateApplication(); + } + } + catch (Exception uex) + { + Console.WriteLine("Exception in " + uex.Source.ToString() + ": " + uex.Message); + //System.Windows.Forms.MessageBox.Show("Exception in " + uex.Source.ToString() + ": " + uex.Message); + } + */ + + MainWindow ss = new MainWindow(); + ss.WindowStartupLocation = WindowStartupLocation.Manual; + System.Drawing.Rectangle location; + if (Screen.PrimaryScreen != null) { + location = Screen.PrimaryScreen.Bounds; + ss.WindowState = WindowState.Maximized; + ss.Show(); + ss.LayoutReset(); + } +/* ******************************************************************* */ + //creates window on other screens + foreach (System.Windows.Forms.Screen screen in System.Windows.Forms.Screen.AllScreens) + { + if (screen == System.Windows.Forms.Screen.PrimaryScreen) + continue; + + MainWindow window = new MainWindow(); + window.WindowStartupLocation = WindowStartupLocation.Manual; + location = screen.Bounds; + //covers entire monitor + window.Left = location.X - 7; + window.Top = location.Y - 7; + window.Width = location.Width + 14; + window.Height = location.Height + 14; + window.Show(); + window.LayoutReset(); + + } +/* ******************************************************************* */ + } + catch (Exception ex) + { + Console.WriteLine(value: "Exception in " + ex.Source + ": " + ex.Message); + System.Windows.Forms.MessageBox.Show("Exception in " + ex.Source + ": " + ex.Message); + } + + + } + +/* void bgWorker_DoWork(object sender, DoWorkEventArgs e) + { + UpdateCheckInfo info = null; + + // Check if the application was deployed via ClickOnce. + if (!ApplicationDeployment.IsNetworkDeployed) + { + e.Result = UpdateStatuses.NotDeployedViaClickOnce; + return; + } + + ApplicationDeployment updateCheck = ApplicationDeployment.CurrentDeployment; + + try + { + info = updateCheck.CheckForDetailedUpdate(); + } + catch (DeploymentDownloadException dde) + { + e.Result = UpdateStatuses.DeploymentDownloadException; + Console.WriteLine("Exception in " + dde.Source.ToString() + ": " + dde.Message); + return; + } + catch (InvalidDeploymentException ide) + { + e.Result = UpdateStatuses.InvalidDeploymentException; + Console.WriteLine("Exception in " + ide.Source.ToString() + ": " + ide.Message); + return; + } + catch (InvalidOperationException ioe) + { + e.Result = UpdateStatuses.InvalidOperationException; + Console.WriteLine("Exception in " + ioe.Source.ToString() + ": " + ioe.Message); + return; + } + + if (info.UpdateAvailable) + if (info.IsUpdateRequired) + e.Result = UpdateStatuses.UpdateRequired; + else + e.Result = UpdateStatuses.UpdateAvailable; + else + e.Result = UpdateStatuses.NoUpdateAvailable; + }*/ + +/* void bgWorker_RunWorkerCompleted(object sender, RunWorkerCompletedEventArgs e) + { + switch ((UpdateStatuses)e.Result) + { + case UpdateStatuses.NoUpdateAvailable: + // No update available, do nothing + System.Windows.Forms.MessageBox.Show("Es gibt kein Update, danke..."); + break; + case UpdateStatuses.UpdateAvailable: + DialogResult dialogResult = System.Windows.Forms.MessageBox.Show("Für den Screensaver gibt es ein Update. Jetzt einspielen?", "Update verfügbar", MessageBoxButtons.OKCancel); + if (dialogResult == DialogResult.OK) + UpdateApplication(); + break; + case UpdateStatuses.UpdateRequired: + System.Windows.Forms.MessageBox.Show("Ein erforderliches Update ist verfügbar, dieses wird jetzt installiert.", "Update verfügbar", MessageBoxButtons.OK); + UpdateApplication(); + break; + case UpdateStatuses.NotDeployedViaClickOnce: + System.Windows.Forms.MessageBox.Show("Is this deployed via ClickOnce?"); + break; + case UpdateStatuses.DeploymentDownloadException: + System.Windows.Forms.MessageBox.Show("Whoops, couldn't retrieve info on this app..."); + break; + case UpdateStatuses.InvalidDeploymentException: + System.Windows.Forms.MessageBox.Show("Cannot check for a new version. ClickOnce deployment is corrupt!"); + break; + case UpdateStatuses.InvalidOperationException: + System.Windows.Forms.MessageBox.Show("This application cannot be updated. It is likely not a ClickOnce application."); + break; + default: + System.Windows.Forms.MessageBox.Show("Nanu?"); + break; + } + }*/ + + /* private void UpdateApplication() + { + try + { + ApplicationDeployment updateCheck = ApplicationDeployment.CurrentDeployment; + updateCheck.Update(); + System.Windows.MessageBox.Show("Der Screensaver wurde erneuert und wird daher jetzt beendet."); + System.Windows.Application.Current.Shutdown(); + } + catch (DeploymentDownloadException dde) + { + System.Windows.MessageBox.Show("Cannot install the latest version of the application. \n\nPlease check your network connection, or try again later. Error: " + dde); + return; + } + }*/ + } + + +} diff --git a/Kaehler.scr/AssemblyInfo.cs b/Kaehler.scr/AssemblyInfo.cs new file mode 100644 index 0000000..8b5504e --- /dev/null +++ b/Kaehler.scr/AssemblyInfo.cs @@ -0,0 +1,10 @@ +using System.Windows; + +[assembly: ThemeInfo( + ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located + //(used if a resource is not found in the page, + // or application resource dictionaries) + ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located + //(used if a resource is not found in the page, + // app, or any theme specific resource dictionaries) +)] diff --git a/Kaehler.scr/Kaehler.scr.csproj b/Kaehler.scr/Kaehler.scr.csproj new file mode 100644 index 0000000..f29dcf6 --- /dev/null +++ b/Kaehler.scr/Kaehler.scr.csproj @@ -0,0 +1,11 @@ + + + + WinExe + net7.0-windows + enable + True + True + + + diff --git a/Kaehler.scr/Kaehler.scr.csproj.user b/Kaehler.scr/Kaehler.scr.csproj.user new file mode 100644 index 0000000..644b0a6 --- /dev/null +++ b/Kaehler.scr/Kaehler.scr.csproj.user @@ -0,0 +1,14 @@ + + + + + + Designer + + + + + Designer + + + \ No newline at end of file diff --git a/Kaehler.scr/MainWindow.xaml b/Kaehler.scr/MainWindow.xaml new file mode 100644 index 0000000..3cde0ac --- /dev/null +++ b/Kaehler.scr/MainWindow.xaml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Kaehler.scr/MainWindow.xaml.cs b/Kaehler.scr/MainWindow.xaml.cs new file mode 100644 index 0000000..a6dafa9 --- /dev/null +++ b/Kaehler.scr/MainWindow.xaml.cs @@ -0,0 +1,828 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +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.Media.Animation; +using System.Windows.Navigation; +using System.Windows.Shapes; +using System.Windows.Threading; +using System.Net.Cache; +using System.IO; +using System.Net; +using System.Diagnostics; +//using System.Drawing; + + +namespace Kaehler.scr +{ + /// + /// Interaktionslogik für MainWindow.xaml + /// + public partial class MainWindow : Window + { + const int cTimerStart = 1; + const int cStartAnzeige = 12; + const int cAusblenden = 11; + const int cTimerDeAni = 31; //war 21 + + private DispatcherTimer randTimer; + private bool bRandTimer; + //0=nix, 1..5 Image, 6 Zitat + private int iAktivesElement; + private Random oRand; + private int randCounter; + + public MainWindow() + { + InitializeComponent(); + } + + public void SCRBeenden() + { + App.Current.Shutdown(); + } + + private void Window_Loaded(object sender, RoutedEventArgs e) + { + try + { + randTimer = new DispatcherTimer(); + randTimer.Tick += new EventHandler(randTimer_Tick); + randTimer.Interval = new TimeSpan(0, 0, 0, 10); //10 Sekunden (3 zum Test) + oRand = new Random(); + iAktivesElement = 0; + randCounter = 0; + Logge("Starte Anzeige-Verdunklung"); + WinDeAni(); + Logge("Starte Randomizer"); + bRandTimer = true; + randTimer.Start(); + } + catch (Exception ex) + { + LoggeFehler("Exception in " + ex.Source + ": " + ex.Message); + //MessageBox.Show("Exception in " + ex.Source + ": " + ex.Message); + } + } + + private void Logge(string sLogText) + { + Console.WriteLine(sLogText); + SimpleEventLog(sLogText,false); + } + + private void LoggeFehler(string sLogText) + { + Console.WriteLine(sLogText); + SimpleEventLog(sLogText, true); + } + + private void randTimer_Tick(object sender, EventArgs e) + { + try + { + if (bRandTimer) + { + randCounter += 1; + Logge("Timer: " + randCounter.ToString()); + if (randCounter == cTimerStart) //erster Durchlauf nach 10s + { + // ... beginne mit Zitat + LoadZoomZitat(); + randCounter = cTimerDeAni; // 1 x 10s bis zur DeAnimation + } + // cAusblenden ... cStartAnzeige = Pause + else if (randCounter == cStartAnzeige) //Starte zufällige Anzeige + { + //Auswürfeln .. + LayoutReset(); + iAktivesElement = (int)oRand.Next(7); + if (iAktivesElement == 0) { iAktivesElement = 1; } + if (iAktivesElement == 7) { iAktivesElement = 6; } + Logge("Random-Wert: " + iAktivesElement.ToString()); + //Test: + //iAktivesElement = 5; + switch (iAktivesElement) + { + case 1: + LoadZoomImage(image1); + break; + case 2: + LoadZoomImage(image2); + break; + case 3: + LoadZoomImage(image3); + break; + case 4: + LoadZoomImage(image4); + break; + case 5: + LoadOpaqueImage(image5); + break; + default: + LoadZoomZitat(); + break; + } + } + else if (randCounter == cStartAnzeige + 1) //10s nach Anzeige-Start + { // manchmal wird die Animation nicht ausgeführt (?) + + //Logge("(deaktiviert) Aktives Element (" + iAktivesElement.ToString() + ") auf Sichtbar zwingen ..."); + //switch (iAktivesElement) + //{ + // case 1: + // image1.Visibility = Visibility.Visible; + // image1.Opacity = 1; + // break; + // case 2: + // image2.Visibility = Visibility.Visible; + // image2.Opacity = 1; + // break; + // case 3: + // image3.Visibility = Visibility.Visible; + // image3.Opacity = 1; + // break; + // case 4: + // image4.Visibility = Visibility.Visible; + // image4.Opacity = 1; + // break; + // case 5: + // txtZitat.Visibility = Visibility.Visible; + // txtZitat.Opacity = 1; + // break; + //} + + } + else if (randCounter > cTimerDeAni) // 10 x 10s ... Bild lange genug gezeigt + { // Ausblenden mit Ani + switch (iAktivesElement) + { + case 1: + DeAniImage(image1); + break; + case 2: + DeAniImage(image2); + break; + case 3: + DeAniImage(image3); + break; + case 4: + DeAniImage(image4); + break; + case 5: + DeAniImage(image5); + break; + default: + ZitatDeAni(); + break; + } + iAktivesElement = 0; + randCounter = cAusblenden; + } + } + } + catch (Exception ex) + { + LoggeFehler("Exception in " + ex.Source + ": " + ex.Message); + //MessageBox.Show("Exception in " + ex.Source + ": " + ex.Message); + } + } + + private void LoadZoomZitat() + { + Logge("Lade Zitat..."); + try + { + iAktivesElement = 5; + bool hasText = LoadZitat(); + if (hasText) + { + ZoomZitatAni(); + } + else + { + txtZitat.Visibility = Visibility.Hidden; + Logge("Zitat ausblenden / Err"); + randCounter = cTimerDeAni; // DeAnimation + } + } + catch (Exception ex) + { + LoggeFehler("Exception in " + ex.Source + ": " + ex.Message); + //MessageBox.Show("Exception in " + ex.Source + ": " + ex.Message); + } + } + + private void LoadZoomImage(Image ZielImage) + { + try + { + double xMax = LoadImage(ZielImage); + Logge("Image geladen"); + if (xMax < imageSCR.Height) + { + Logge("Imagegröße kleiner Screenhöhe: " + xMax.ToString()); + ZielImage.Height = xMax; + } + else + { + Logge("Imagegröße größer Screenhöhe: " + xMax.ToString()); + ZielImage.Height = imageSCR.Height; + } + if (xMax < imageSCR.Width) + { + Logge("Imagegröße kleiner Screenbreite: " + xMax.ToString()); + ZielImage.Width = xMax; + } + else + { + Logge("Imagegröße größer Screenbreite: " + xMax.ToString()); + ZielImage.Width = imageSCR.Width; + } + //AniImage(ZielImage); + ZoomAni(ZielImage); + } + catch (Exception ex) + { + LoggeFehler("Exception in " + ex.Source.ToString() + ": " + ex.Message); + //MessageBox.Show("Exception in " + ex.Source.ToString() + ": " + ex.Message); + } + } + + private void LoadOpaqueImage(Image ZielImage) + { + try + { + double xMax = LoadImage(ZielImage); + Logge("Image geladen"); + if (xMax < imageSCR.Height) + { + Logge("Imagegröße kleiner Screenhöhe: " + xMax.ToString()); + ZielImage.Height = xMax; + } + else + { + Logge("Imagegröße größer Screenhöhe: " + xMax.ToString()); + ZielImage.Height = imageSCR.Height; + } + if (xMax < imageSCR.Width) + { + Logge("Imagegröße kleiner Screenbreite: " + xMax.ToString()); + ZielImage.Width = xMax; + } + else + { + Logge("Imagegröße größer Screenbreite: " + xMax.ToString()); + ZielImage.Width = imageSCR.Width; + } + AniImage(ZielImage); + } + catch (Exception ex) + { + LoggeFehler("Exception in " + ex.Source + ": " + ex.Message); + //MessageBox.Show("Exception in " + ex.Source + ": " + ex.Message); + } + } + + public void LayoutReset() + { + try + { + //Zurück auf Startposition + //Zielimage + this.imageSCR.Width = this.ActualWidth - 110; + this.imageSCR.Height = this.ActualHeight - 110; + this.imageSCR.Visibility = Visibility.Hidden; + //Zitat + this.txtZitat.SetValue(Canvas.LeftProperty, (double)55); + this.txtZitat.SetValue(Canvas.TopProperty, (double)110); + this.txtZitat.Width = this.ActualWidth - 120; + this.txtZitat.Height = this.ActualHeight - 120; + this.txtZitat.Visibility = Visibility.Hidden; + this.txtZitat.Opacity = 1; + //Quellbilder + this.image1.Visibility = Visibility.Hidden; + this.image1.SetValue(Canvas.LeftProperty, (double)5); + this.image1.SetValue(Canvas.TopProperty, (double)5); + this.image1.Opacity = 1; + this.image2.Visibility = Visibility.Hidden; + this.image2.SetValue(Canvas.LeftProperty, (double)5); + this.image2.SetValue(Canvas.LeftProperty, (double)this.ActualWidth - 55); + this.image2.Opacity = 1; + this.image3.Visibility = Visibility.Hidden; + this.image3.SetValue(Canvas.LeftProperty, (double)this.ActualHeight - 55); + this.image3.SetValue(Canvas.LeftProperty, (double)5); + this.image3.Opacity = 1; + this.image4.Visibility = Visibility.Hidden; + this.image4.SetValue(Canvas.LeftProperty, (double)this.ActualHeight - 55); + this.image4.SetValue(Canvas.LeftProperty, (double)this.ActualWidth - 55); + this.image4.Opacity = 1; + this.image5.Visibility = Visibility.Hidden; + this.image5.Opacity = 1; + } + catch (Exception ex) + { + LoggeFehler("Exception in " + ex.Source + ": " + ex.Message); + //MessageBox.Show("Exception in " + ex.Source + ": " + ex.Message); + } + } + + private void ZoomAni(Image ZielImage) + { + try + { + //Skalierung XY + DoubleAnimation daScaleXY = new DoubleAnimation(0.1, 1, TimeSpan.FromSeconds(5)); + AnimationClock myClockXY = daScaleXY.CreateClock(); + ScaleTransform scaleXY = new ScaleTransform(1,1); + ZielImage.RenderTransform = scaleXY; + //Ecke oben + DoubleAnimation daTop = new DoubleAnimation(); + daTop.Duration = new Duration(TimeSpan.FromSeconds(5)); + //Ecke Links + DoubleAnimation daLeft = new DoubleAnimation(); + daLeft.Duration = new Duration(TimeSpan.FromSeconds(5)); + //Opacity + DoubleAnimation daOpa = new DoubleAnimation(0.1, 1, TimeSpan.FromSeconds(5)); + // + switch (ZielImage.Name) + { + case "image1": + daTop.From = (double)5; + daTop.To = (double)55; + daLeft.From = (double)5; + daLeft.To = (double)55; + break; + case "image2": + daTop.From = (double)5; + daTop.To = (double)55; + daLeft.From = (double)(this.ActualWidth - 55); + daLeft.To = (double)((this.ActualWidth - ZielImage.Width) / 2); + break; + case "image3": + daTop.From = (double)(this.ActualHeight - 55); + daTop.To = (double)((this.ActualHeight - ZielImage.Height) / 2); + daLeft.From = (double)5; + daLeft.To = (double)55; + break; + case "image4": + daTop.From = (double)this.ActualHeight - 55; + daTop.To = (double)((this.ActualHeight - ZielImage.Height) / 2); + daLeft.From = (double)(this.ActualWidth - 55); + daLeft.To = (double)((this.ActualWidth - ZielImage.Width) / 2); + break; + } + //Logge("Top: " + daTop.From.ToString() + " => " + daTop.To.ToString()); + //Logge("Left: " + daLeft.From.ToString() + " => " + daLeft.To.ToString()); + // + //zur Sicherheit - weil einige Bilder einfach nicht angezeigt werden + if (daTop.To > (double)1000) { daTop.To = (double)1; }; + if (daLeft.To > (double)1000) { daLeft.To = (double)1; }; + + Storyboard sb = new Storyboard(); + sb.Children.Add(daLeft); + sb.Children.Add(daTop); + //sb.Children.Add(daScaleX); + //sb.Children.Add(daScaleY); + // + sb.Children.Add(daOpa); + // + Storyboard.SetTargetName(daLeft, ZielImage.Name); + Storyboard.SetTargetProperty(daLeft, new PropertyPath(Canvas.LeftProperty)); + Storyboard.SetTargetName(daTop, ZielImage.Name); + Storyboard.SetTargetProperty(daTop, new PropertyPath(Canvas.TopProperty)); + Storyboard.SetTargetName(daLeft, ZielImage.Name); + //Storyboard.SetTargetProperty(daScaleX, new PropertyPath(ScaleTransform.ScaleXProperty)); + //Storyboard.SetTargetProperty(daScaleY, new PropertyPath(ScaleTransform.ScaleYProperty)); + // + Storyboard.SetTargetProperty(daOpa, new PropertyPath("(Opacity)")); + Storyboard.SetTargetName(daOpa, ZielImage.Name); + // + this.Resources.Clear(); + this.Resources.Add("ZoomAniImg", sb); + //ZielImage.Opacity = 0; //durchsichtig + ZielImage.Visibility = Visibility.Visible; + sb.Begin(); + //Logge("StoryboardAnimation gestartet"); + scaleXY.ApplyAnimationClock(ScaleTransform.ScaleXProperty, myClockXY); + scaleXY.ApplyAnimationClock(ScaleTransform.ScaleYProperty, myClockXY); + //Logge("AnimationClock gestartet"); + } + catch (Exception ex) + { + //LoggeFehler("Exception in " + ex.Source + ": " + ex.Message); + MessageBox.Show("Exception in " + ex.Source + ": " + ex.Message,"ZoomAni"); + } + } + + private void AniImage(Image ZielImage) + { + Logge("Ani " + ZielImage.Name); + try + { + //in die Mitte + ZielImage.SetValue(Canvas.LeftProperty, (double)((this.ActualWidth - ZielImage.Width) / 2)); + ZielImage.SetValue(Canvas.TopProperty, (double)((this.ActualHeight - ZielImage.Height) / 2)); + ZielImage.Opacity = 0; //durchsichtig + ZielImage.Visibility = Visibility.Visible; //sichtbar - na ja - fast + DoubleAnimation da = new DoubleAnimation(); + da.From = 0; + da.To = 1; + da.Duration = new Duration(TimeSpan.FromSeconds(7)); + Storyboard sb = new Storyboard(); + sb.Children.Add(da); + Storyboard.SetTargetName(da, ZielImage.Name); + Storyboard.SetTargetProperty(da, new PropertyPath("(Opacity)")); + this.Resources.Clear(); + this.Resources.Add("AniImg", sb); + sb.Begin(); + } + catch (Exception ex) + { + LoggeFehler("Exception in " + ex.Source + ": " + ex.Message); + //MessageBox.Show("Exception in " + ex.Source + ": " + ex.Message); + } + } + + + private void ZoomZitatAni() + { + Logge("Zitat ani ..."); + try + { + DoubleAnimation da = new DoubleAnimation(); + da.From = 0; + da.To = 1; + da.Duration = new Duration(TimeSpan.FromSeconds(1)); + Storyboard sb = new Storyboard(); + sb.Children.Add(da); + Storyboard.SetTargetName(da, txtZitat.Name); + Storyboard.SetTargetProperty(da, new PropertyPath("(Opacity)")); + this.Resources.Clear(); + this.Resources.Add("AniZitat", sb); + txtZitat.Visibility = Visibility.Visible; + sb.Begin(); + } + catch (Exception ex) + { + LoggeFehler("Exception in " + ex.Source + ": " + ex.Message); + //MessageBox.Show("Exception in " + ex.Source + ": " + ex.Message); + } + + } + + private void ZitatDeAni() + { + Logge("Zitat de-ani ..."); + try + { + DoubleAnimation da = new DoubleAnimation(); + da.From = 1; + da.To = 0; + da.Duration = new Duration(TimeSpan.FromSeconds(2)); + Storyboard sb = new Storyboard(); + sb.Children.Add(da); + Storyboard.SetTargetName(da, txtZitat.Name); + Storyboard.SetTargetProperty(da, new PropertyPath("(Opacity)")); + this.Resources.Clear(); + this.Resources.Add("DeAniZitat", sb); + sb.Begin(); + } + catch (Exception ex) + { + LoggeFehler("Exception in " + ex.Source + ": " + ex.Message); + //MessageBox.Show("Exception in " + ex.Source + ": " + ex.Message); + } + } + + private void WinDeAni() + { + Logge("MainWindow DeAni ..."); + try + { + DoubleAnimation da = new DoubleAnimation(); + da.From = 0; + da.To = 1; + da.Duration = new Duration(TimeSpan.FromSeconds(2)); + Storyboard sb = new Storyboard(); + sb.Children.Add(da); + Storyboard.SetTargetName(da, this.Name); + Storyboard.SetTargetProperty(da, new PropertyPath("(Opacity)")); + this.Resources.Clear(); + this.Resources.Add("DeAniWin", sb); + sb.Begin(); + } + catch (Exception ex) + { + LoggeFehler("Exception in " + ex.Source + ": " + ex.Message); + //MessageBox.Show("Exception in " + ex.Source + ": " + ex.Message); + } + } + + private bool LoadZitat() + { + try + { + string phpUrl = "https://robert.rkaehler.net/kaehler.scr/getZitatTxt.php"; + string sDummy = LoadTextFromUrl(phpUrl); + Logge("Zitat geladen:" + sDummy); + if (sDummy.StartsWith("Err:")) + { + txtZitat.Text = "Fehler beim Zugriff auf die Zitate-Datenbank: \r\n" + + sDummy.Substring(5); + return false; + } + else + { + txtZitat.Text = sDummy; + int xlen = sDummy.Length; + if (xlen > 0) + { return true; } + else + { return false; } + } + } + catch (Exception ex) + { + LoggeFehler("Exception in " + ex.Source + ": " + ex.Message); + //MessageBox.Show("Exception in " + ex.Source + ": " + ex.Message); + return false; + } + } + + private double LoadImage(Image ZielImage) + { + try + { + string ImageName = ZielImage.Name.ToString(); + string BaseName = "https://robert.rkaehler.net/kaehler.scr/getFile_"; + string DirNum = ImageName.Substring(ImageName.Length - 1); + string phpUrl = BaseName + DirNum + ".php"; + string ImageUrl = LoadTextFromUrl(phpUrl).Replace("\r\n", ""); + if ((ImageUrl.Length == 0) | (ImageUrl.StartsWith("Err:"))) + { return 0; } + else + { return LoadImageFromUrl(ZielImage, ImageUrl); } + } + catch (Exception ex) + { + LoggeFehler("Exception in " + ex.Source + ": " + ex.Message); + //MessageBox.Show("Exception in " + ex.Source + ": " + ex.Message); + return 0; + } + + } + + private void DeAniImage(Image ZielImage) + { + Logge("DeAni " + ZielImage.Name); + try + { + DoubleAnimation da = new DoubleAnimation(); + da.From = 1; + da.To = 0; + da.Duration = new Duration(TimeSpan.FromSeconds(2)); + Storyboard sb = new Storyboard(); + sb.Children.Add(da); + Storyboard.SetTargetName(da, ZielImage.Name); + Storyboard.SetTargetProperty(da, new PropertyPath("(Opacity)")); + this.Resources.Clear(); + this.Resources.Add("DeAniImg", sb); + sb.Begin(); + } + catch (Exception ex) + { + LoggeFehler("Exception in " + ex.Source + ": " + ex.Message); + //MessageBox.Show("Exception in " + ex.Source + ": " + ex.Message); + } + } + + private string LoadTextFromUrl(string TextUrl) + { + int BytesToRead = 100; + string sDummy = ""; + try + { + //WebRequest request = WebRequest.Create(new Uri(TextUrl, UriKind.Absolute)); + WebRequest request = WebRequest.Create(TextUrl); + request.Timeout = 500; + ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12; + WebResponse response = request.GetResponse(); + Console.WriteLine(((HttpWebResponse)response).StatusDescription); + Stream responseStream = response.GetResponseStream(); + BinaryReader reader = new BinaryReader(responseStream); + MemoryStream memoryStream = new MemoryStream(); + byte[] bytebuffer = new byte[BytesToRead]; + int bytesRead = reader.Read(bytebuffer, 0, BytesToRead); + while (bytesRead > 0) + { + memoryStream.Write(bytebuffer, 0, bytesRead); + bytesRead = reader.Read(bytebuffer, 0, BytesToRead); + } + memoryStream.Seek(0, SeekOrigin.Begin); + StreamReader readerTXT = new StreamReader(memoryStream); + sDummy = readerTXT.ReadToEnd(); + } + catch (Exception ex) + { + sDummy = "Err: " + ex.Message; + } + return sDummy.Trim(); + } + + private string getTempPath() + { + string tempPath = System.IO.Path.GetTempPath(); + tempPath += "Kaehler.Scr\\"; + if (!File.Exists(tempPath)) + { + System.IO.Directory.CreateDirectory(tempPath); + } + return tempPath; + } + + private string getTempImgName(string ImageUrl) + { + string sName = getTempPath(); + int x1 = ImageUrl.LastIndexOf("/"); + string sPre = ImageUrl.Substring(x1 - 1, 1) + "_"; + return sName + sPre + ImageUrl.Substring(x1+1); + } + + private double LoadImageFromUrl(Image ZielImage, string ImageUrl) + { + Logge("LoadImage " + ImageUrl + " => " + ZielImage.Name); + double xMax = 0; + int BytesToRead = 100; + try + { + BitmapImage tmpImage = new BitmapImage(); + string sCacheFileName = getTempImgName(ImageUrl); + if (!File.Exists(sCacheFileName)) + { + //WebRequest request = WebRequest.Create(new Uri(ImageUrl, UriKind.Absolute)); + WebRequest request = WebRequest.Create(ImageUrl); + request.Timeout = 500; + ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12; + WebResponse response = request.GetResponse(); + Stream responseStream = response.GetResponseStream(); + BinaryReader reader = new BinaryReader(responseStream); + MemoryStream memoryStream = new MemoryStream(); + + byte[] bytebuffer = new byte[BytesToRead]; + int bytesRead = reader.Read(bytebuffer, 0, BytesToRead); + while (bytesRead > 0) + { + memoryStream.Write(bytebuffer, 0, bytesRead); + bytesRead = reader.Read(bytebuffer, 0, BytesToRead); + } + tmpImage.BeginInit(); + memoryStream.Seek(0, SeekOrigin.Begin); + tmpImage.StreamSource = memoryStream; + tmpImage.EndInit(); + + ZielImage.Source = tmpImage; + //in den Cache ... + FileStream jpgstream = new FileStream(sCacheFileName, FileMode.Create); + JpegBitmapEncoder encoder = new JpegBitmapEncoder(); + encoder.Frames.Add(BitmapFrame.Create(tmpImage)); + encoder.Save(jpgstream); + jpgstream.Flush(); + jpgstream.Close(); + // + } + else //aus dem Cache lesen + { + tmpImage.BeginInit(); + tmpImage.UriSource = new Uri(@"file:///" + sCacheFileName, UriKind.RelativeOrAbsolute); + tmpImage.EndInit(); + ZielImage.Source = tmpImage; + } + + if (tmpImage.Height > tmpImage.Width) + { + xMax = tmpImage.Height; + } + else + { + xMax = tmpImage.Width; + } + } + catch (Exception ex) + { + LoggeFehler("Fehler in LoadImageFromUrl: " + ex.Message); + //MessageBox.Show("Exception in " + ex.Source + ": " + ex.Message); + ZielImage.Source = imageBug.Source; + xMax = imageBug.Height; + } + return xMax; + } + + private void Window_MouseLeftButtonUp(object sender, MouseButtonEventArgs e) + { + SCRBeenden(); + } + + private void Window_MouseRightButtonUp(object sender, MouseButtonEventArgs e) + { + SCRBeenden(); + } + + private void Window_MouseDoubleClick(object sender, MouseButtonEventArgs e) + { + SCRBeenden(); + } + + private void Window_KeyUp(object sender, KeyEventArgs e) + { + SCRBeenden(); + } + + private void image1_KeyDown(object sender, KeyEventArgs e) + { + SCRBeenden(); + } + + private void image1_MouseDown(object sender, MouseButtonEventArgs e) + { + SCRBeenden(); + } + + private void image1_MouseWheel(object sender, MouseWheelEventArgs e) + { + SCRBeenden(); + } + + private void image2_KeyDown(object sender, KeyEventArgs e) + { + SCRBeenden(); + } + + private void image2_MouseDown(object sender, MouseButtonEventArgs e) + { + SCRBeenden(); + } + + private void image2_MouseWheel(object sender, MouseWheelEventArgs e) + { + SCRBeenden(); + } + + private void txtZitat_MouseDown(object sender, MouseButtonEventArgs e) + { + SCRBeenden(); + } + + private void txtZitat_KeyDown(object sender, KeyEventArgs e) + { + SCRBeenden(); + } + + private void txtZitat_MouseWheel(object sender, MouseWheelEventArgs e) + { + SCRBeenden(); + } + + private void SimpleEventLog(String sText, Boolean fErr) + { + //'Schreibt nur als Information in Anwendungs-Log + try + { + String sBereich = ""; + if (fErr) + { + sBereich = "KaehlerSCR-Fehler: "; + using (EventLog eventLog = new EventLog("Application")) + { + eventLog.Source = "Application"; + eventLog.WriteEntry(sBereich + sText, EventLogEntryType.Error, 102, 2); + } + } + else + { + sBereich = "KaehlerSCR-Meldung: "; + using (EventLog eventLog = new EventLog("Application")) + { + eventLog.Source = "Application"; + eventLog.WriteEntry(sText, EventLogEntryType.Information, 101, 1); + } + } + //EventLogTraceListener listener = new EventLogTraceListener(sBereich); + //Debug.Listeners.Add(listener); + //Debug.WriteLine(sText); + //listener.Flush(); + } + catch (Exception ignore) { + Console.WriteLine("Fehler in SimpleEventLog: " + ignore.Message); + Console.WriteLine("Fehler in SimpleEventLog Fehlertext war: " + sText); + } + } + } +} diff --git a/Kaehler.scr/apps_bug.png b/Kaehler.scr/apps_bug.png new file mode 100644 index 0000000..ae7e22f Binary files /dev/null and b/Kaehler.scr/apps_bug.png differ diff --git a/Kaehler.scr/bin/Debug/net7.0-windows/Kaehler.scr7.deps.json b/Kaehler.scr/bin/Debug/net7.0-windows/Kaehler.scr7.deps.json new file mode 100644 index 0000000..dbf4463 --- /dev/null +++ b/Kaehler.scr/bin/Debug/net7.0-windows/Kaehler.scr7.deps.json @@ -0,0 +1,23 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v7.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v7.0": { + "Kaehler.scr7/1.0.0": { + "runtime": { + "Kaehler.scr7.dll": {} + } + } + } + }, + "libraries": { + "Kaehler.scr7/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/Kaehler.scr/bin/Debug/net7.0-windows/Kaehler.scr7.dll b/Kaehler.scr/bin/Debug/net7.0-windows/Kaehler.scr7.dll new file mode 100644 index 0000000..2efc11b Binary files /dev/null and b/Kaehler.scr/bin/Debug/net7.0-windows/Kaehler.scr7.dll differ diff --git a/Kaehler.scr/bin/Debug/net7.0-windows/Kaehler.scr7.exe b/Kaehler.scr/bin/Debug/net7.0-windows/Kaehler.scr7.exe new file mode 100644 index 0000000..c81c742 Binary files /dev/null and b/Kaehler.scr/bin/Debug/net7.0-windows/Kaehler.scr7.exe differ diff --git a/Kaehler.scr/bin/Debug/net7.0-windows/Kaehler.scr7.pdb b/Kaehler.scr/bin/Debug/net7.0-windows/Kaehler.scr7.pdb new file mode 100644 index 0000000..ddb9d1b Binary files /dev/null and b/Kaehler.scr/bin/Debug/net7.0-windows/Kaehler.scr7.pdb differ diff --git a/Kaehler.scr/bin/Debug/net7.0-windows/Kaehler.scr7.runtimeconfig.json b/Kaehler.scr/bin/Debug/net7.0-windows/Kaehler.scr7.runtimeconfig.json new file mode 100644 index 0000000..7b1a726 --- /dev/null +++ b/Kaehler.scr/bin/Debug/net7.0-windows/Kaehler.scr7.runtimeconfig.json @@ -0,0 +1,15 @@ +{ + "runtimeOptions": { + "tfm": "net7.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "7.0.0" + }, + { + "name": "Microsoft.WindowsDesktop.App", + "version": "7.0.0" + } + ] + } +} \ No newline at end of file diff --git a/Kaehler.scr/bin/Release/net7.0-windows/Kaehler.scr b/Kaehler.scr/bin/Release/net7.0-windows/Kaehler.scr new file mode 100644 index 0000000..4e4f4bf Binary files /dev/null and b/Kaehler.scr/bin/Release/net7.0-windows/Kaehler.scr differ diff --git a/Kaehler.scr/bin/Release/net7.0-windows/Kaehler.scr.deps.json b/Kaehler.scr/bin/Release/net7.0-windows/Kaehler.scr.deps.json new file mode 100644 index 0000000..2bdb7b1 --- /dev/null +++ b/Kaehler.scr/bin/Release/net7.0-windows/Kaehler.scr.deps.json @@ -0,0 +1,23 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v7.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v7.0": { + "Kaehler.scr/1.0.0": { + "runtime": { + "Kaehler.scr.dll": {} + } + } + } + }, + "libraries": { + "Kaehler.scr/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/Kaehler.scr/bin/Release/net7.0-windows/Kaehler.scr.dll b/Kaehler.scr/bin/Release/net7.0-windows/Kaehler.scr.dll new file mode 100644 index 0000000..2ffca26 Binary files /dev/null and b/Kaehler.scr/bin/Release/net7.0-windows/Kaehler.scr.dll differ diff --git a/Kaehler.scr/bin/Release/net7.0-windows/Kaehler.scr.exe b/Kaehler.scr/bin/Release/net7.0-windows/Kaehler.scr.exe new file mode 100644 index 0000000..4e4f4bf Binary files /dev/null and b/Kaehler.scr/bin/Release/net7.0-windows/Kaehler.scr.exe differ diff --git a/Kaehler.scr/bin/Release/net7.0-windows/Kaehler.scr.pdb b/Kaehler.scr/bin/Release/net7.0-windows/Kaehler.scr.pdb new file mode 100644 index 0000000..0281d5c Binary files /dev/null and b/Kaehler.scr/bin/Release/net7.0-windows/Kaehler.scr.pdb differ diff --git a/Kaehler.scr/bin/Release/net7.0-windows/Kaehler.scr.runtimeconfig.json b/Kaehler.scr/bin/Release/net7.0-windows/Kaehler.scr.runtimeconfig.json new file mode 100644 index 0000000..37e9817 --- /dev/null +++ b/Kaehler.scr/bin/Release/net7.0-windows/Kaehler.scr.runtimeconfig.json @@ -0,0 +1,18 @@ +{ + "runtimeOptions": { + "tfm": "net7.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "7.0.0" + }, + { + "name": "Microsoft.WindowsDesktop.App", + "version": "7.0.0" + } + ], + "configProperties": { + "System.Reflection.Metadata.MetadataUpdater.IsSupported": false + } + } +} \ No newline at end of file diff --git a/Kaehler.scr/icon.ico b/Kaehler.scr/icon.ico new file mode 100644 index 0000000..46e5abc Binary files /dev/null and b/Kaehler.scr/icon.ico differ diff --git a/Kaehler.scr/obj/Debug/net6.0-windows/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/Kaehler.scr/obj/Debug/net6.0-windows/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs new file mode 100644 index 0000000..ed92695 --- /dev/null +++ b/Kaehler.scr/obj/Debug/net6.0-windows/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = ".NET 6.0")] diff --git a/Kaehler.scr/obj/Debug/net6.0-windows/App.g.i.cs b/Kaehler.scr/obj/Debug/net6.0-windows/App.g.i.cs new file mode 100644 index 0000000..b314deb --- /dev/null +++ b/Kaehler.scr/obj/Debug/net6.0-windows/App.g.i.cs @@ -0,0 +1,71 @@ +#pragma checksum "..\..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "DCC59813AB95D23CF72F07367E2D9621042BF6D9" +//------------------------------------------------------------------------------ +// +// Dieser Code wurde von einem Tool generiert. +// Laufzeitversion:4.0.30319.42000 +// +// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn +// der Code erneut generiert wird. +// +//------------------------------------------------------------------------------ + +using System; +using System.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 { + + + /// + /// App + /// + public partial class App : System.Windows.Application { + + /// + /// InitializeComponent + /// + [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 + } + + /// + /// Application Entry Point. + /// + [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(); + } + } +} + diff --git a/Kaehler.scr/obj/Debug/net6.0-windows/MainWindow.g.i.cs b/Kaehler.scr/obj/Debug/net6.0-windows/MainWindow.g.i.cs new file mode 100644 index 0000000..a8f7a21 --- /dev/null +++ b/Kaehler.scr/obj/Debug/net6.0-windows/MainWindow.g.i.cs @@ -0,0 +1,76 @@ +#pragma checksum "..\..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "ECDFABC04AE55218F692F255726307C4208DEF2C" +//------------------------------------------------------------------------------ +// +// Dieser Code wurde von einem Tool generiert. +// Laufzeitversion:4.0.30319.42000 +// +// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn +// der Code erneut generiert wird. +// +//------------------------------------------------------------------------------ + +using System; +using System.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 { + + + /// + /// MainWindow + /// + public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector { + + private bool _contentLoaded; + + /// + /// InitializeComponent + /// + [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; + } + } +} + diff --git a/Kaehler.scr/obj/Debug/net6.0-windows/WpfApp1.AssemblyInfo.cs b/Kaehler.scr/obj/Debug/net6.0-windows/WpfApp1.AssemblyInfo.cs new file mode 100644 index 0000000..5329ac5 --- /dev/null +++ b/Kaehler.scr/obj/Debug/net6.0-windows/WpfApp1.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// Dieser Code wurde von einem Tool generiert. +// Laufzeitversion:4.0.30319.42000 +// +// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn +// der Code erneut generiert wird. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("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. + diff --git a/Kaehler.scr/obj/Debug/net6.0-windows/WpfApp1.AssemblyInfoInputs.cache b/Kaehler.scr/obj/Debug/net6.0-windows/WpfApp1.AssemblyInfoInputs.cache new file mode 100644 index 0000000..4215463 --- /dev/null +++ b/Kaehler.scr/obj/Debug/net6.0-windows/WpfApp1.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +d604ad24407ce953817be2036da374ec3791f6f9 diff --git a/Kaehler.scr/obj/Debug/net6.0-windows/WpfApp1.GeneratedMSBuildEditorConfig.editorconfig b/Kaehler.scr/obj/Debug/net6.0-windows/WpfApp1.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..3814b57 --- /dev/null +++ b/Kaehler.scr/obj/Debug/net6.0-windows/WpfApp1.GeneratedMSBuildEditorConfig.editorconfig @@ -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\ diff --git a/Kaehler.scr/obj/Debug/net6.0-windows/WpfApp1.assets.cache b/Kaehler.scr/obj/Debug/net6.0-windows/WpfApp1.assets.cache new file mode 100644 index 0000000..51e19cf Binary files /dev/null and b/Kaehler.scr/obj/Debug/net6.0-windows/WpfApp1.assets.cache differ diff --git a/Kaehler.scr/obj/Debug/net6.0-windows/WpfApp1.csproj.AssemblyReference.cache b/Kaehler.scr/obj/Debug/net6.0-windows/WpfApp1.csproj.AssemblyReference.cache new file mode 100644 index 0000000..0fddf66 Binary files /dev/null and b/Kaehler.scr/obj/Debug/net6.0-windows/WpfApp1.csproj.AssemblyReference.cache differ diff --git a/Kaehler.scr/obj/Debug/net6.0-windows/WpfApp1.designer.deps.json b/Kaehler.scr/obj/Debug/net6.0-windows/WpfApp1.designer.deps.json new file mode 100644 index 0000000..706cdfa --- /dev/null +++ b/Kaehler.scr/obj/Debug/net6.0-windows/WpfApp1.designer.deps.json @@ -0,0 +1,11 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": {} + }, + "libraries": {} +} \ No newline at end of file diff --git a/Kaehler.scr/obj/Debug/net6.0-windows/WpfApp1.designer.runtimeconfig.json b/Kaehler.scr/obj/Debug/net6.0-windows/WpfApp1.designer.runtimeconfig.json new file mode 100644 index 0000000..645ff06 --- /dev/null +++ b/Kaehler.scr/obj/Debug/net6.0-windows/WpfApp1.designer.runtimeconfig.json @@ -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 + } + } +} \ No newline at end of file diff --git a/Kaehler.scr/obj/Debug/net6.0-windows/WpfApp1_MarkupCompile.i.cache b/Kaehler.scr/obj/Debug/net6.0-windows/WpfApp1_MarkupCompile.i.cache new file mode 100644 index 0000000..fd92c67 --- /dev/null +++ b/Kaehler.scr/obj/Debug/net6.0-windows/WpfApp1_MarkupCompile.i.cache @@ -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 + diff --git a/Kaehler.scr/obj/Debug/net6.0-windows/WpfApp1_MarkupCompile.i.lref b/Kaehler.scr/obj/Debug/net6.0-windows/WpfApp1_MarkupCompile.i.lref new file mode 100644 index 0000000..eaf293e --- /dev/null +++ b/Kaehler.scr/obj/Debug/net6.0-windows/WpfApp1_MarkupCompile.i.lref @@ -0,0 +1,4 @@ + + +FD:\develop\TestNet6\WpfApp1\WpfApp1\MainWindow.xaml;; + diff --git a/Kaehler.scr/obj/Debug/net6.0-windows/WpfScr6.AssemblyInfo.cs b/Kaehler.scr/obj/Debug/net6.0-windows/WpfScr6.AssemblyInfo.cs new file mode 100644 index 0000000..9c03309 --- /dev/null +++ b/Kaehler.scr/obj/Debug/net6.0-windows/WpfScr6.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// Dieser Code wurde von einem Tool generiert. +// Laufzeitversion:4.0.30319.42000 +// +// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn +// der Code erneut generiert wird. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("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. + diff --git a/Kaehler.scr/obj/Debug/net6.0-windows/WpfScr6.AssemblyInfoInputs.cache b/Kaehler.scr/obj/Debug/net6.0-windows/WpfScr6.AssemblyInfoInputs.cache new file mode 100644 index 0000000..76ddbe1 --- /dev/null +++ b/Kaehler.scr/obj/Debug/net6.0-windows/WpfScr6.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +8b6a0db9e025a0f04dda0a5284dc83cd2f311b8b diff --git a/Kaehler.scr/obj/Debug/net6.0-windows/WpfScr6.GeneratedMSBuildEditorConfig.editorconfig b/Kaehler.scr/obj/Debug/net6.0-windows/WpfScr6.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..eadbdda --- /dev/null +++ b/Kaehler.scr/obj/Debug/net6.0-windows/WpfScr6.GeneratedMSBuildEditorConfig.editorconfig @@ -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\ diff --git a/Kaehler.scr/obj/Debug/net6.0-windows/WpfScr6.assets.cache b/Kaehler.scr/obj/Debug/net6.0-windows/WpfScr6.assets.cache new file mode 100644 index 0000000..ebdabbb Binary files /dev/null and b/Kaehler.scr/obj/Debug/net6.0-windows/WpfScr6.assets.cache differ diff --git a/Kaehler.scr/obj/Debug/net6.0-windows/WpfScr6.csproj.AssemblyReference.cache b/Kaehler.scr/obj/Debug/net6.0-windows/WpfScr6.csproj.AssemblyReference.cache new file mode 100644 index 0000000..0fddf66 Binary files /dev/null and b/Kaehler.scr/obj/Debug/net6.0-windows/WpfScr6.csproj.AssemblyReference.cache differ diff --git a/Kaehler.scr/obj/Debug/net6.0-windows/WpfScr6.designer.deps.json b/Kaehler.scr/obj/Debug/net6.0-windows/WpfScr6.designer.deps.json new file mode 100644 index 0000000..706cdfa --- /dev/null +++ b/Kaehler.scr/obj/Debug/net6.0-windows/WpfScr6.designer.deps.json @@ -0,0 +1,11 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": {} + }, + "libraries": {} +} \ No newline at end of file diff --git a/Kaehler.scr/obj/Debug/net6.0-windows/WpfScr6.designer.runtimeconfig.json b/Kaehler.scr/obj/Debug/net6.0-windows/WpfScr6.designer.runtimeconfig.json new file mode 100644 index 0000000..645ff06 --- /dev/null +++ b/Kaehler.scr/obj/Debug/net6.0-windows/WpfScr6.designer.runtimeconfig.json @@ -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 + } + } +} \ No newline at end of file diff --git a/Kaehler.scr/obj/Debug/net6.0-windows/WpfScr6_MarkupCompile.i.cache b/Kaehler.scr/obj/Debug/net6.0-windows/WpfScr6_MarkupCompile.i.cache new file mode 100644 index 0000000..eda982a --- /dev/null +++ b/Kaehler.scr/obj/Debug/net6.0-windows/WpfScr6_MarkupCompile.i.cache @@ -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 + diff --git a/Kaehler.scr/obj/Debug/net7.0-windows/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs b/Kaehler.scr/obj/Debug/net7.0-windows/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs new file mode 100644 index 0000000..4257f4b --- /dev/null +++ b/Kaehler.scr/obj/Debug/net7.0-windows/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v7.0", FrameworkDisplayName = ".NET 7.0")] diff --git a/Kaehler.scr/obj/Debug/net7.0-windows/App.g.cs b/Kaehler.scr/obj/Debug/net7.0-windows/App.g.cs new file mode 100644 index 0000000..77e11de --- /dev/null +++ b/Kaehler.scr/obj/Debug/net7.0-windows/App.g.cs @@ -0,0 +1,71 @@ +#pragma checksum "..\..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "EEB1500D723CD05C6322ABE2C3E7BB3A06E1D4A1" +//------------------------------------------------------------------------------ +// +// Dieser Code wurde von einem Tool generiert. +// Laufzeitversion:4.0.30319.42000 +// +// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn +// der Code erneut generiert wird. +// +//------------------------------------------------------------------------------ + +using System; +using System.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 { + + + /// + /// App + /// + public partial class App : System.Windows.Application { + + /// + /// InitializeComponent + /// + [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 + } + + /// + /// Application Entry Point. + /// + [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(); + } + } +} + diff --git a/Kaehler.scr/obj/Debug/net7.0-windows/App.g.i.cs b/Kaehler.scr/obj/Debug/net7.0-windows/App.g.i.cs new file mode 100644 index 0000000..096c321 --- /dev/null +++ b/Kaehler.scr/obj/Debug/net7.0-windows/App.g.i.cs @@ -0,0 +1,71 @@ +#pragma checksum "..\..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "2DD7FC33A3CE500D190B4A571E6518917F50176C" +//------------------------------------------------------------------------------ +// +// Dieser Code wurde von einem Tool generiert. +// Laufzeitversion:4.0.30319.42000 +// +// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn +// der Code erneut generiert wird. +// +//------------------------------------------------------------------------------ + +using System; +using System.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 { + + + /// + /// App + /// + public partial class App : System.Windows.Application { + + /// + /// InitializeComponent + /// + [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 + } + + /// + /// Application Entry Point. + /// + [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(); + } + } +} + diff --git a/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.AssemblyInfo.cs b/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.AssemblyInfo.cs new file mode 100644 index 0000000..3fc00da --- /dev/null +++ b/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// Dieser Code wurde von einem Tool generiert. +// Laufzeitversion:4.0.30319.42000 +// +// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn +// der Code erneut generiert wird. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("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. + diff --git a/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.AssemblyInfoInputs.cache b/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.AssemblyInfoInputs.cache new file mode 100644 index 0000000..388d9c4 --- /dev/null +++ b/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +3a9e4de228511460d97e757451226809964fc0e0 diff --git a/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.GeneratedMSBuildEditorConfig.editorconfig b/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..1379482 --- /dev/null +++ b/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.GeneratedMSBuildEditorConfig.editorconfig @@ -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\ diff --git a/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.assets.cache b/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.assets.cache new file mode 100644 index 0000000..88b4957 Binary files /dev/null and b/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.assets.cache differ diff --git a/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.csproj.AssemblyReference.cache b/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.csproj.AssemblyReference.cache new file mode 100644 index 0000000..123b014 Binary files /dev/null and b/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.csproj.AssemblyReference.cache differ diff --git a/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.designer.deps.json b/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.designer.deps.json new file mode 100644 index 0000000..e775195 --- /dev/null +++ b/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.designer.deps.json @@ -0,0 +1,11 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v7.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v7.0": {} + }, + "libraries": {} +} \ No newline at end of file diff --git a/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.designer.runtimeconfig.json b/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.designer.runtimeconfig.json new file mode 100644 index 0000000..bc88217 --- /dev/null +++ b/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.designer.runtimeconfig.json @@ -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 + } + } +} \ No newline at end of file diff --git a/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.scr.AssemblyInfo.cs b/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.scr.AssemblyInfo.cs new file mode 100644 index 0000000..2cb24e4 --- /dev/null +++ b/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.scr.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// Dieser Code wurde von einem Tool generiert. +// Laufzeitversion:4.0.30319.42000 +// +// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn +// der Code erneut generiert wird. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("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. + diff --git a/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.scr.AssemblyInfoInputs.cache b/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.scr.AssemblyInfoInputs.cache new file mode 100644 index 0000000..f7a8e5a --- /dev/null +++ b/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.scr.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +34da4b791e7718163d18b3313dff15be1443ca85 diff --git a/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.scr.GeneratedMSBuildEditorConfig.editorconfig b/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.scr.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..a47d74f --- /dev/null +++ b/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.scr.GeneratedMSBuildEditorConfig.editorconfig @@ -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\ diff --git a/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.scr.assets.cache b/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.scr.assets.cache new file mode 100644 index 0000000..94084b3 Binary files /dev/null and b/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.scr.assets.cache differ diff --git a/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.scr.csproj.AssemblyReference.cache b/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.scr.csproj.AssemblyReference.cache new file mode 100644 index 0000000..123b014 Binary files /dev/null and b/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.scr.csproj.AssemblyReference.cache differ diff --git a/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.scr7.AssemblyInfo.cs b/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.scr7.AssemblyInfo.cs new file mode 100644 index 0000000..fa76dc2 --- /dev/null +++ b/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.scr7.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// Dieser Code wurde von einem Tool generiert. +// Laufzeitversion:4.0.30319.42000 +// +// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn +// der Code erneut generiert wird. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("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. + diff --git a/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.scr7.AssemblyInfoInputs.cache b/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.scr7.AssemblyInfoInputs.cache new file mode 100644 index 0000000..f2dfe70 --- /dev/null +++ b/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.scr7.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +712c950c30d0bb2966136d9e3a93b2dccc3f6230 diff --git a/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.scr7.GeneratedMSBuildEditorConfig.editorconfig b/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.scr7.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..6b094da --- /dev/null +++ b/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.scr7.GeneratedMSBuildEditorConfig.editorconfig @@ -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\ diff --git a/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.scr7.assets.cache b/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.scr7.assets.cache new file mode 100644 index 0000000..ec44c30 Binary files /dev/null and b/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.scr7.assets.cache differ diff --git a/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.scr7.csproj.AssemblyReference.cache b/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.scr7.csproj.AssemblyReference.cache new file mode 100644 index 0000000..123b014 Binary files /dev/null and b/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.scr7.csproj.AssemblyReference.cache differ diff --git a/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.scr7.csproj.BuildWithSkipAnalyzers b/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.scr7.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.scr7.csproj.CoreCompileInputs.cache b/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.scr7.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..b141d52 --- /dev/null +++ b/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.scr7.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +a63f9e90857a6f37f4abc864d1085ca35d533c8a diff --git a/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.scr7.csproj.FileListAbsolute.txt b/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.scr7.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..d86ceba --- /dev/null +++ b/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.scr7.csproj.FileListAbsolute.txt @@ -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 diff --git a/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.scr7.designer.deps.json b/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.scr7.designer.deps.json new file mode 100644 index 0000000..e775195 --- /dev/null +++ b/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.scr7.designer.deps.json @@ -0,0 +1,11 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v7.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v7.0": {} + }, + "libraries": {} +} \ No newline at end of file diff --git a/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.scr7.designer.runtimeconfig.json b/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.scr7.designer.runtimeconfig.json new file mode 100644 index 0000000..bc88217 --- /dev/null +++ b/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.scr7.designer.runtimeconfig.json @@ -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 + } + } +} \ No newline at end of file diff --git a/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.scr7.dll b/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.scr7.dll new file mode 100644 index 0000000..2efc11b Binary files /dev/null and b/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.scr7.dll differ diff --git a/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.scr7.g.resources b/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.scr7.g.resources new file mode 100644 index 0000000..3b4b830 Binary files /dev/null and b/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.scr7.g.resources differ diff --git a/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.scr7.genruntimeconfig.cache b/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.scr7.genruntimeconfig.cache new file mode 100644 index 0000000..e5d49fd --- /dev/null +++ b/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.scr7.genruntimeconfig.cache @@ -0,0 +1 @@ +9c30b72a27738fc26f056382570e2c7b32d08e2a diff --git a/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.scr7.pdb b/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.scr7.pdb new file mode 100644 index 0000000..ddb9d1b Binary files /dev/null and b/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.scr7.pdb differ diff --git a/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.scr7_MarkupCompile.cache b/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.scr7_MarkupCompile.cache new file mode 100644 index 0000000..cb4c086 --- /dev/null +++ b/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.scr7_MarkupCompile.cache @@ -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 + diff --git a/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.scr7_MarkupCompile.i.cache b/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.scr7_MarkupCompile.i.cache new file mode 100644 index 0000000..cd436e2 --- /dev/null +++ b/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.scr7_MarkupCompile.i.cache @@ -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 + diff --git a/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.scr_MarkupCompile.i.cache b/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.scr_MarkupCompile.i.cache new file mode 100644 index 0000000..d0f7392 --- /dev/null +++ b/Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.scr_MarkupCompile.i.cache @@ -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 + diff --git a/Kaehler.scr/obj/Debug/net7.0-windows/MainWindow.baml b/Kaehler.scr/obj/Debug/net7.0-windows/MainWindow.baml new file mode 100644 index 0000000..df71966 Binary files /dev/null and b/Kaehler.scr/obj/Debug/net7.0-windows/MainWindow.baml differ diff --git a/Kaehler.scr/obj/Debug/net7.0-windows/MainWindow.g.cs b/Kaehler.scr/obj/Debug/net7.0-windows/MainWindow.g.cs new file mode 100644 index 0000000..3aed139 --- /dev/null +++ b/Kaehler.scr/obj/Debug/net7.0-windows/MainWindow.g.cs @@ -0,0 +1,255 @@ +#pragma checksum "..\..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "93A51A305089CADBE355CABAC2AE31BC2D6D4D2F" +//------------------------------------------------------------------------------ +// +// Dieser Code wurde von einem Tool generiert. +// Laufzeitversion:4.0.30319.42000 +// +// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn +// der Code erneut generiert wird. +// +//------------------------------------------------------------------------------ + +using System; +using System.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 { + + + /// + /// MainWindow + /// + 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; + + /// + /// InitializeComponent + /// + [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; + } + } +} + diff --git a/Kaehler.scr/obj/Debug/net7.0-windows/MainWindow.g.i.cs b/Kaehler.scr/obj/Debug/net7.0-windows/MainWindow.g.i.cs new file mode 100644 index 0000000..6a13e2b --- /dev/null +++ b/Kaehler.scr/obj/Debug/net7.0-windows/MainWindow.g.i.cs @@ -0,0 +1,255 @@ +#pragma checksum "..\..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "C3131CA9D1D870DA4B119BE63646BE33A34F0527" +//------------------------------------------------------------------------------ +// +// Dieser Code wurde von einem Tool generiert. +// Laufzeitversion:4.0.30319.42000 +// +// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn +// der Code erneut generiert wird. +// +//------------------------------------------------------------------------------ + +using System; +using System.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 { + + + /// + /// MainWindow + /// + 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; + + /// + /// InitializeComponent + /// + [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; + } + } +} + diff --git a/Kaehler.scr/obj/Debug/net7.0-windows/WpfScr6.AssemblyInfo.cs b/Kaehler.scr/obj/Debug/net7.0-windows/WpfScr6.AssemblyInfo.cs new file mode 100644 index 0000000..9c03309 --- /dev/null +++ b/Kaehler.scr/obj/Debug/net7.0-windows/WpfScr6.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// Dieser Code wurde von einem Tool generiert. +// Laufzeitversion:4.0.30319.42000 +// +// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn +// der Code erneut generiert wird. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("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. + diff --git a/Kaehler.scr/obj/Debug/net7.0-windows/WpfScr6.AssemblyInfoInputs.cache b/Kaehler.scr/obj/Debug/net7.0-windows/WpfScr6.AssemblyInfoInputs.cache new file mode 100644 index 0000000..76ddbe1 --- /dev/null +++ b/Kaehler.scr/obj/Debug/net7.0-windows/WpfScr6.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +8b6a0db9e025a0f04dda0a5284dc83cd2f311b8b diff --git a/Kaehler.scr/obj/Debug/net7.0-windows/WpfScr6.GeneratedMSBuildEditorConfig.editorconfig b/Kaehler.scr/obj/Debug/net7.0-windows/WpfScr6.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..bdf6d61 --- /dev/null +++ b/Kaehler.scr/obj/Debug/net7.0-windows/WpfScr6.GeneratedMSBuildEditorConfig.editorconfig @@ -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\ diff --git a/Kaehler.scr/obj/Debug/net7.0-windows/WpfScr6.assets.cache b/Kaehler.scr/obj/Debug/net7.0-windows/WpfScr6.assets.cache new file mode 100644 index 0000000..8b4b387 Binary files /dev/null and b/Kaehler.scr/obj/Debug/net7.0-windows/WpfScr6.assets.cache differ diff --git a/Kaehler.scr/obj/Debug/net7.0-windows/WpfScr6.csproj.AssemblyReference.cache b/Kaehler.scr/obj/Debug/net7.0-windows/WpfScr6.csproj.AssemblyReference.cache new file mode 100644 index 0000000..123b014 Binary files /dev/null and b/Kaehler.scr/obj/Debug/net7.0-windows/WpfScr6.csproj.AssemblyReference.cache differ diff --git a/Kaehler.scr/obj/Debug/net7.0-windows/WpfScr6.csproj.FileListAbsolute.txt b/Kaehler.scr/obj/Debug/net7.0-windows/WpfScr6.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..f11825b --- /dev/null +++ b/Kaehler.scr/obj/Debug/net7.0-windows/WpfScr6.csproj.FileListAbsolute.txt @@ -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 diff --git a/Kaehler.scr/obj/Debug/net7.0-windows/WpfScr6.designer.deps.json b/Kaehler.scr/obj/Debug/net7.0-windows/WpfScr6.designer.deps.json new file mode 100644 index 0000000..e775195 --- /dev/null +++ b/Kaehler.scr/obj/Debug/net7.0-windows/WpfScr6.designer.deps.json @@ -0,0 +1,11 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v7.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v7.0": {} + }, + "libraries": {} +} \ No newline at end of file diff --git a/Kaehler.scr/obj/Debug/net7.0-windows/WpfScr6.designer.runtimeconfig.json b/Kaehler.scr/obj/Debug/net7.0-windows/WpfScr6.designer.runtimeconfig.json new file mode 100644 index 0000000..bc88217 --- /dev/null +++ b/Kaehler.scr/obj/Debug/net7.0-windows/WpfScr6.designer.runtimeconfig.json @@ -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 + } + } +} \ No newline at end of file diff --git a/Kaehler.scr/obj/Debug/net7.0-windows/_IsIncrementalBuild b/Kaehler.scr/obj/Debug/net7.0-windows/_IsIncrementalBuild new file mode 100644 index 0000000..1c3ac5a --- /dev/null +++ b/Kaehler.scr/obj/Debug/net7.0-windows/_IsIncrementalBuild @@ -0,0 +1 @@ +obj\Debug\net7.0-windows\\_IsIncrementalBuild diff --git a/Kaehler.scr/obj/Debug/net7.0-windows/apphost.exe b/Kaehler.scr/obj/Debug/net7.0-windows/apphost.exe new file mode 100644 index 0000000..c81c742 Binary files /dev/null and b/Kaehler.scr/obj/Debug/net7.0-windows/apphost.exe differ diff --git a/Kaehler.scr/obj/Debug/net7.0-windows/ref/Kaehler.scr7.dll b/Kaehler.scr/obj/Debug/net7.0-windows/ref/Kaehler.scr7.dll new file mode 100644 index 0000000..3215080 Binary files /dev/null and b/Kaehler.scr/obj/Debug/net7.0-windows/ref/Kaehler.scr7.dll differ diff --git a/Kaehler.scr/obj/Debug/net7.0-windows/refint/Kaehler.scr7.dll b/Kaehler.scr/obj/Debug/net7.0-windows/refint/Kaehler.scr7.dll new file mode 100644 index 0000000..3215080 Binary files /dev/null and b/Kaehler.scr/obj/Debug/net7.0-windows/refint/Kaehler.scr7.dll differ diff --git a/Kaehler.scr/obj/Kaehler.csproj.nuget.dgspec.json b/Kaehler.scr/obj/Kaehler.csproj.nuget.dgspec.json new file mode 100644 index 0000000..fff0ec3 --- /dev/null +++ b/Kaehler.scr/obj/Kaehler.csproj.nuget.dgspec.json @@ -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" + } + } + } + } +} \ No newline at end of file diff --git a/Kaehler.scr/obj/Kaehler.csproj.nuget.g.props b/Kaehler.scr/obj/Kaehler.csproj.nuget.g.props new file mode 100644 index 0000000..59e0a64 --- /dev/null +++ b/Kaehler.scr/obj/Kaehler.csproj.nuget.g.props @@ -0,0 +1,16 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\Robert\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + PackageReference + 6.4.0 + + + + + + \ No newline at end of file diff --git a/Kaehler.scr/obj/Kaehler.csproj.nuget.g.targets b/Kaehler.scr/obj/Kaehler.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/Kaehler.scr/obj/Kaehler.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/Kaehler.scr/obj/Kaehler.scr.csproj.nuget.dgspec.json b/Kaehler.scr/obj/Kaehler.scr.csproj.nuget.dgspec.json new file mode 100644 index 0000000..6da57cc --- /dev/null +++ b/Kaehler.scr/obj/Kaehler.scr.csproj.nuget.dgspec.json @@ -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" + } + } + } + } +} \ No newline at end of file diff --git a/Kaehler.scr/obj/Kaehler.scr.csproj.nuget.g.props b/Kaehler.scr/obj/Kaehler.scr.csproj.nuget.g.props new file mode 100644 index 0000000..59e0a64 --- /dev/null +++ b/Kaehler.scr/obj/Kaehler.scr.csproj.nuget.g.props @@ -0,0 +1,16 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\Robert\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + PackageReference + 6.4.0 + + + + + + \ No newline at end of file diff --git a/Kaehler.scr/obj/Kaehler.scr.csproj.nuget.g.targets b/Kaehler.scr/obj/Kaehler.scr.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/Kaehler.scr/obj/Kaehler.scr.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/Kaehler.scr/obj/Kaehler.scr7.csproj.nuget.dgspec.json b/Kaehler.scr/obj/Kaehler.scr7.csproj.nuget.dgspec.json new file mode 100644 index 0000000..f014447 --- /dev/null +++ b/Kaehler.scr/obj/Kaehler.scr7.csproj.nuget.dgspec.json @@ -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" + } + } + } + } +} \ No newline at end of file diff --git a/Kaehler.scr/obj/Kaehler.scr7.csproj.nuget.g.props b/Kaehler.scr/obj/Kaehler.scr7.csproj.nuget.g.props new file mode 100644 index 0000000..59e0a64 --- /dev/null +++ b/Kaehler.scr/obj/Kaehler.scr7.csproj.nuget.g.props @@ -0,0 +1,16 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\Robert\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + PackageReference + 6.4.0 + + + + + + \ No newline at end of file diff --git a/Kaehler.scr/obj/Kaehler.scr7.csproj.nuget.g.targets b/Kaehler.scr/obj/Kaehler.scr7.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/Kaehler.scr/obj/Kaehler.scr7.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/Kaehler.scr/obj/Release/net7.0-windows/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs b/Kaehler.scr/obj/Release/net7.0-windows/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs new file mode 100644 index 0000000..4257f4b --- /dev/null +++ b/Kaehler.scr/obj/Release/net7.0-windows/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v7.0", FrameworkDisplayName = ".NET 7.0")] diff --git a/Kaehler.scr/obj/Release/net7.0-windows/App.g.cs b/Kaehler.scr/obj/Release/net7.0-windows/App.g.cs new file mode 100644 index 0000000..096c321 --- /dev/null +++ b/Kaehler.scr/obj/Release/net7.0-windows/App.g.cs @@ -0,0 +1,71 @@ +#pragma checksum "..\..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "2DD7FC33A3CE500D190B4A571E6518917F50176C" +//------------------------------------------------------------------------------ +// +// Dieser Code wurde von einem Tool generiert. +// Laufzeitversion:4.0.30319.42000 +// +// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn +// der Code erneut generiert wird. +// +//------------------------------------------------------------------------------ + +using System; +using System.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 { + + + /// + /// App + /// + public partial class App : System.Windows.Application { + + /// + /// InitializeComponent + /// + [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 + } + + /// + /// Application Entry Point. + /// + [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(); + } + } +} + diff --git a/Kaehler.scr/obj/Release/net7.0-windows/App.g.i.cs b/Kaehler.scr/obj/Release/net7.0-windows/App.g.i.cs new file mode 100644 index 0000000..096c321 --- /dev/null +++ b/Kaehler.scr/obj/Release/net7.0-windows/App.g.i.cs @@ -0,0 +1,71 @@ +#pragma checksum "..\..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "2DD7FC33A3CE500D190B4A571E6518917F50176C" +//------------------------------------------------------------------------------ +// +// Dieser Code wurde von einem Tool generiert. +// Laufzeitversion:4.0.30319.42000 +// +// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn +// der Code erneut generiert wird. +// +//------------------------------------------------------------------------------ + +using System; +using System.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 { + + + /// + /// App + /// + public partial class App : System.Windows.Application { + + /// + /// InitializeComponent + /// + [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 + } + + /// + /// Application Entry Point. + /// + [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(); + } + } +} + diff --git a/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr.AssemblyInfo.cs b/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr.AssemblyInfo.cs new file mode 100644 index 0000000..afbccf3 --- /dev/null +++ b/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// Dieser Code wurde von einem Tool generiert. +// Laufzeitversion:4.0.30319.42000 +// +// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn +// der Code erneut generiert wird. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("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. + diff --git a/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr.AssemblyInfoInputs.cache b/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr.AssemblyInfoInputs.cache new file mode 100644 index 0000000..e0c80ab --- /dev/null +++ b/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +7aba713d409dea39b0cea699ba890bf6025927fd diff --git a/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr.GeneratedMSBuildEditorConfig.editorconfig b/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..03c4797 --- /dev/null +++ b/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr.GeneratedMSBuildEditorConfig.editorconfig @@ -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\ diff --git a/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr.assets.cache b/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr.assets.cache new file mode 100644 index 0000000..8ed3bbf Binary files /dev/null and b/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr.assets.cache differ diff --git a/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr.csproj.AssemblyReference.cache b/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr.csproj.AssemblyReference.cache new file mode 100644 index 0000000..123b014 Binary files /dev/null and b/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr.csproj.AssemblyReference.cache differ diff --git a/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr.csproj.BuildWithSkipAnalyzers b/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr.csproj.CoreCompileInputs.cache b/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..936259a --- /dev/null +++ b/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +b45da75869f15006736c7542b701b6f6b523dbbb diff --git a/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr.csproj.FileListAbsolute.txt b/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..d259480 --- /dev/null +++ b/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr.csproj.FileListAbsolute.txt @@ -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 diff --git a/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr.designer.deps.json b/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr.designer.deps.json new file mode 100644 index 0000000..e775195 --- /dev/null +++ b/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr.designer.deps.json @@ -0,0 +1,11 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v7.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v7.0": {} + }, + "libraries": {} +} \ No newline at end of file diff --git a/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr.designer.runtimeconfig.json b/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr.designer.runtimeconfig.json new file mode 100644 index 0000000..1ce4643 --- /dev/null +++ b/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr.designer.runtimeconfig.json @@ -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 + } + } +} \ No newline at end of file diff --git a/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr.dll b/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr.dll new file mode 100644 index 0000000..2ffca26 Binary files /dev/null and b/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr.dll differ diff --git a/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr.g.resources b/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr.g.resources new file mode 100644 index 0000000..d1ddb57 Binary files /dev/null and b/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr.g.resources differ diff --git a/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr.genruntimeconfig.cache b/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr.genruntimeconfig.cache new file mode 100644 index 0000000..16527d8 --- /dev/null +++ b/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr.genruntimeconfig.cache @@ -0,0 +1 @@ +31cb08d4a86341edb0d95b2400bf190ae3fba036 diff --git a/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr.pdb b/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr.pdb new file mode 100644 index 0000000..0281d5c Binary files /dev/null and b/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr.pdb differ diff --git a/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr7.AssemblyInfo.cs b/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr7.AssemblyInfo.cs new file mode 100644 index 0000000..5e4c2b2 --- /dev/null +++ b/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr7.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// Dieser Code wurde von einem Tool generiert. +// Laufzeitversion:4.0.30319.42000 +// +// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn +// der Code erneut generiert wird. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("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. + diff --git a/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr7.AssemblyInfoInputs.cache b/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr7.AssemblyInfoInputs.cache new file mode 100644 index 0000000..a55899a --- /dev/null +++ b/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr7.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +f69ca18965a973c44671fe9ab0c15d41189e1b8f diff --git a/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr7.GeneratedMSBuildEditorConfig.editorconfig b/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr7.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..6b094da --- /dev/null +++ b/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr7.GeneratedMSBuildEditorConfig.editorconfig @@ -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\ diff --git a/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr7.assets.cache b/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr7.assets.cache new file mode 100644 index 0000000..7deb271 Binary files /dev/null and b/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr7.assets.cache differ diff --git a/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr7.csproj.AssemblyReference.cache b/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr7.csproj.AssemblyReference.cache new file mode 100644 index 0000000..123b014 Binary files /dev/null and b/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr7.csproj.AssemblyReference.cache differ diff --git a/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr7.csproj.CoreCompileInputs.cache b/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr7.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..f236fda --- /dev/null +++ b/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr7.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +298326de5e78c04f0668c5908819f7ddb79bec60 diff --git a/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr7.csproj.FileListAbsolute.txt b/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr7.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..fd64c41 --- /dev/null +++ b/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr7.csproj.FileListAbsolute.txt @@ -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 diff --git a/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr7.dll b/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr7.dll new file mode 100644 index 0000000..29ab8d8 Binary files /dev/null and b/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr7.dll differ diff --git a/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr7.g.resources b/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr7.g.resources new file mode 100644 index 0000000..f22d025 Binary files /dev/null and b/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr7.g.resources differ diff --git a/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr7.genruntimeconfig.cache b/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr7.genruntimeconfig.cache new file mode 100644 index 0000000..49a6c56 --- /dev/null +++ b/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr7.genruntimeconfig.cache @@ -0,0 +1 @@ +1c164bfd5d3b2f49f31d1e389690aa6edf3856fe diff --git a/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr7.pdb b/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr7.pdb new file mode 100644 index 0000000..5be04c8 Binary files /dev/null and b/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr7.pdb differ diff --git a/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr7_MarkupCompile.cache b/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr7_MarkupCompile.cache new file mode 100644 index 0000000..3ce7586 --- /dev/null +++ b/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr7_MarkupCompile.cache @@ -0,0 +1,20 @@ +Kaehler.scr7 + + +winexe +C# +.cs +D:\develop\Scr.Net7\WpfApp1\WpfApp1\obj\Release\net7.0-windows\ +Kaehler.scr7 +none +false +TRACE;RELEASE;NET;NET7_0;NETCOREAPP +D:\develop\Scr.Net7\WpfApp1\WpfApp1\App.xaml +11407045341 + +3-1233169557 +2071328265475 +MainWindow.xaml; + +False + diff --git a/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr7_MarkupCompile.i.cache b/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr7_MarkupCompile.i.cache new file mode 100644 index 0000000..b5feef4 --- /dev/null +++ b/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr7_MarkupCompile.i.cache @@ -0,0 +1,20 @@ +Kaehler.scr7 +1.0.0.0 + +winexe +C# +.cs +D:\develop\Scr.Net7\WpfApp1\WpfApp1\obj\Release\net7.0-windows\ +Kaehler.scr7 +none +false +TRACE;RELEASE;NET;NET7_0;NETCOREAPP +D:\develop\Scr.Net7\WpfApp1\WpfApp1\App.xaml +11407045341 + +5-1790546043 +2071328265475 +MainWindow.xaml; + +False + diff --git a/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr_MarkupCompile.cache b/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr_MarkupCompile.cache new file mode 100644 index 0000000..6a83a85 --- /dev/null +++ b/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr_MarkupCompile.cache @@ -0,0 +1,20 @@ +Kaehler.scr + + +winexe +C# +.cs +T:\src\Kaehler.scr\obj\Release\net7.0-windows\ +Kaehler.scr +none +false +TRACE;RELEASE;NET;NET7_0;NETCOREAPP +T:\src\Kaehler.scr\App.xaml +11407045341 + +3-1233169557 +2071328265475 +MainWindow.xaml; + +False + diff --git a/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr_MarkupCompile.i.cache b/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr_MarkupCompile.i.cache new file mode 100644 index 0000000..fb0c188 --- /dev/null +++ b/Kaehler.scr/obj/Release/net7.0-windows/Kaehler.scr_MarkupCompile.i.cache @@ -0,0 +1,20 @@ +Kaehler.scr +1.0.0.0 + +winexe +C# +.cs +T:\src\Kaehler.scr\obj\Release\net7.0-windows\ +Kaehler.scr +none +false +TRACE;RELEASE;NET;NET7_0;NETCOREAPP +T:\src\Kaehler.scr\App.xaml +11407045341 + +51785681376 +2071328265475 +MainWindow.xaml; + +False + diff --git a/Kaehler.scr/obj/Release/net7.0-windows/MainWindow.baml b/Kaehler.scr/obj/Release/net7.0-windows/MainWindow.baml new file mode 100644 index 0000000..aa268d8 Binary files /dev/null and b/Kaehler.scr/obj/Release/net7.0-windows/MainWindow.baml differ diff --git a/Kaehler.scr/obj/Release/net7.0-windows/MainWindow.g.cs b/Kaehler.scr/obj/Release/net7.0-windows/MainWindow.g.cs new file mode 100644 index 0000000..ac23dac --- /dev/null +++ b/Kaehler.scr/obj/Release/net7.0-windows/MainWindow.g.cs @@ -0,0 +1,255 @@ +#pragma checksum "..\..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "C3131CA9D1D870DA4B119BE63646BE33A34F0527" +//------------------------------------------------------------------------------ +// +// Dieser Code wurde von einem Tool generiert. +// Laufzeitversion:4.0.30319.42000 +// +// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn +// der Code erneut generiert wird. +// +//------------------------------------------------------------------------------ + +using System; +using System.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 { + + + /// + /// MainWindow + /// + 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; + + /// + /// InitializeComponent + /// + [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;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; + } + } +} + diff --git a/Kaehler.scr/obj/Release/net7.0-windows/MainWindow.g.i.cs b/Kaehler.scr/obj/Release/net7.0-windows/MainWindow.g.i.cs new file mode 100644 index 0000000..ac23dac --- /dev/null +++ b/Kaehler.scr/obj/Release/net7.0-windows/MainWindow.g.i.cs @@ -0,0 +1,255 @@ +#pragma checksum "..\..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "C3131CA9D1D870DA4B119BE63646BE33A34F0527" +//------------------------------------------------------------------------------ +// +// Dieser Code wurde von einem Tool generiert. +// Laufzeitversion:4.0.30319.42000 +// +// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn +// der Code erneut generiert wird. +// +//------------------------------------------------------------------------------ + +using System; +using System.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 { + + + /// + /// MainWindow + /// + 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; + + /// + /// InitializeComponent + /// + [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;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; + } + } +} + diff --git a/Kaehler.scr/obj/Release/net7.0-windows/_IsIncrementalBuild b/Kaehler.scr/obj/Release/net7.0-windows/_IsIncrementalBuild new file mode 100644 index 0000000..fec7d00 --- /dev/null +++ b/Kaehler.scr/obj/Release/net7.0-windows/_IsIncrementalBuild @@ -0,0 +1 @@ +obj\Release\net7.0-windows\\_IsIncrementalBuild diff --git a/Kaehler.scr/obj/Release/net7.0-windows/apphost.exe b/Kaehler.scr/obj/Release/net7.0-windows/apphost.exe new file mode 100644 index 0000000..4e4f4bf Binary files /dev/null and b/Kaehler.scr/obj/Release/net7.0-windows/apphost.exe differ diff --git a/Kaehler.scr/obj/Release/net7.0-windows/ref/Kaehler.scr.dll b/Kaehler.scr/obj/Release/net7.0-windows/ref/Kaehler.scr.dll new file mode 100644 index 0000000..6ec535e Binary files /dev/null and b/Kaehler.scr/obj/Release/net7.0-windows/ref/Kaehler.scr.dll differ diff --git a/Kaehler.scr/obj/Release/net7.0-windows/ref/Kaehler.scr7.dll b/Kaehler.scr/obj/Release/net7.0-windows/ref/Kaehler.scr7.dll new file mode 100644 index 0000000..0f964b4 Binary files /dev/null and b/Kaehler.scr/obj/Release/net7.0-windows/ref/Kaehler.scr7.dll differ diff --git a/Kaehler.scr/obj/Release/net7.0-windows/refint/Kaehler.scr.dll b/Kaehler.scr/obj/Release/net7.0-windows/refint/Kaehler.scr.dll new file mode 100644 index 0000000..6ec535e Binary files /dev/null and b/Kaehler.scr/obj/Release/net7.0-windows/refint/Kaehler.scr.dll differ diff --git a/Kaehler.scr/obj/Release/net7.0-windows/refint/Kaehler.scr7.dll b/Kaehler.scr/obj/Release/net7.0-windows/refint/Kaehler.scr7.dll new file mode 100644 index 0000000..0f964b4 Binary files /dev/null and b/Kaehler.scr/obj/Release/net7.0-windows/refint/Kaehler.scr7.dll differ diff --git a/Kaehler.scr/obj/WpfApp1.csproj.nuget.dgspec.json b/Kaehler.scr/obj/WpfApp1.csproj.nuget.dgspec.json new file mode 100644 index 0000000..464a54b --- /dev/null +++ b/Kaehler.scr/obj/WpfApp1.csproj.nuget.dgspec.json @@ -0,0 +1,71 @@ +{ + "format": 1, + "restore": { + "D:\\develop\\TestNet6\\WpfApp1\\WpfApp1\\WpfApp1.csproj": {} + }, + "projects": { + "D:\\develop\\TestNet6\\WpfApp1\\WpfApp1\\WpfApp1.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\develop\\TestNet6\\WpfApp1\\WpfApp1\\WpfApp1.csproj", + "projectName": "WpfApp1", + "projectPath": "D:\\develop\\TestNet6\\WpfApp1\\WpfApp1\\WpfApp1.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": [ + "net6.0-windows" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0-windows7.0": { + "targetAlias": "net6.0-windows", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0-windows7.0": { + "targetAlias": "net6.0-windows", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + }, + "Microsoft.WindowsDesktop.App.WPF": { + "privateAssets": "none" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.100\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/Kaehler.scr/obj/WpfApp1.csproj.nuget.g.props b/Kaehler.scr/obj/WpfApp1.csproj.nuget.g.props new file mode 100644 index 0000000..59e0a64 --- /dev/null +++ b/Kaehler.scr/obj/WpfApp1.csproj.nuget.g.props @@ -0,0 +1,16 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\Robert\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + PackageReference + 6.4.0 + + + + + + \ No newline at end of file diff --git a/Kaehler.scr/obj/WpfApp1.csproj.nuget.g.targets b/Kaehler.scr/obj/WpfApp1.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/Kaehler.scr/obj/WpfApp1.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/Kaehler.scr/obj/WpfScr6.csproj.nuget.dgspec.json b/Kaehler.scr/obj/WpfScr6.csproj.nuget.dgspec.json new file mode 100644 index 0000000..a6a914b --- /dev/null +++ b/Kaehler.scr/obj/WpfScr6.csproj.nuget.dgspec.json @@ -0,0 +1,71 @@ +{ + "format": 1, + "restore": { + "D:\\develop\\TestNet6\\WpfApp1\\WpfApp1\\WpfScr6.csproj": {} + }, + "projects": { + "D:\\develop\\TestNet6\\WpfApp1\\WpfApp1\\WpfScr6.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\develop\\TestNet6\\WpfApp1\\WpfApp1\\WpfScr6.csproj", + "projectName": "WpfScr6", + "projectPath": "D:\\develop\\TestNet6\\WpfApp1\\WpfApp1\\WpfScr6.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" + } + } + } + } +} \ No newline at end of file diff --git a/Kaehler.scr/obj/WpfScr6.csproj.nuget.g.props b/Kaehler.scr/obj/WpfScr6.csproj.nuget.g.props new file mode 100644 index 0000000..59e0a64 --- /dev/null +++ b/Kaehler.scr/obj/WpfScr6.csproj.nuget.g.props @@ -0,0 +1,16 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\Robert\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + PackageReference + 6.4.0 + + + + + + \ No newline at end of file diff --git a/Kaehler.scr/obj/WpfScr6.csproj.nuget.g.targets b/Kaehler.scr/obj/WpfScr6.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/Kaehler.scr/obj/WpfScr6.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/Kaehler.scr/obj/project.assets.json b/Kaehler.scr/obj/project.assets.json new file mode 100644 index 0000000..263dd80 --- /dev/null +++ b/Kaehler.scr/obj/project.assets.json @@ -0,0 +1,77 @@ +{ + "version": 3, + "targets": { + "net7.0-windows7.0": {} + }, + "libraries": {}, + "projectFileDependencyGroups": { + "net7.0-windows7.0": [] + }, + "packageFolders": { + "C:\\Users\\Robert\\.nuget\\packages\\": {}, + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} + }, + "project": { + "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" + } + } + } +} \ No newline at end of file diff --git a/Kaehler.scr/obj/project.nuget.cache b/Kaehler.scr/obj/project.nuget.cache new file mode 100644 index 0000000..7e9d0fb --- /dev/null +++ b/Kaehler.scr/obj/project.nuget.cache @@ -0,0 +1,8 @@ +{ + "version": 2, + "dgSpecHash": "XP5y4Yw5lNu2H2qGkid9cUz0xyKkFvwxBTobd2IE4ezjP79QT+DvOPWBbk2tSdVfeWw/I+hJMbk6nZM7UtRuoQ==", + "success": true, + "projectFilePath": "T:\\src\\Kaehler.scr\\Kaehler.scr.csproj", + "expectedPackageFiles": [], + "logs": [] +} \ No newline at end of file