diff --git a/InnoLabProjektDektopApp/.vs/InnoLabProjektDektopApp/DesignTimeBuild/.dtbcache.v2 b/InnoLabProjektDektopApp/.vs/InnoLabProjektDektopApp/DesignTimeBuild/.dtbcache.v2 index fd3f995d2fd09006d806040a3542168ab8487ae1..20401a1535a9c30b6fa3231d7c2386a52a0f9ad9 100644 Binary files a/InnoLabProjektDektopApp/.vs/InnoLabProjektDektopApp/DesignTimeBuild/.dtbcache.v2 and b/InnoLabProjektDektopApp/.vs/InnoLabProjektDektopApp/DesignTimeBuild/.dtbcache.v2 differ diff --git a/InnoLabProjektDektopApp/.vs/InnoLabProjektDektopApp/v17/.futdcache.v2 b/InnoLabProjektDektopApp/.vs/InnoLabProjektDektopApp/v17/.futdcache.v2 index 0ff45843b94587f0c5849b8455753a10ee1190b3..9055a5821b1cc7cfd41f55ea22ca92ff34338e6c 100644 Binary files a/InnoLabProjektDektopApp/.vs/InnoLabProjektDektopApp/v17/.futdcache.v2 and b/InnoLabProjektDektopApp/.vs/InnoLabProjektDektopApp/v17/.futdcache.v2 differ diff --git a/InnoLabProjektDektopApp/.vs/InnoLabProjektDektopApp/v17/.suo b/InnoLabProjektDektopApp/.vs/InnoLabProjektDektopApp/v17/.suo index a71f591b69de2b92e49725cc27bb3346dd67646b..034c36fa219e11e793d0afd54ca073041d9c5b94 100644 Binary files a/InnoLabProjektDektopApp/.vs/InnoLabProjektDektopApp/v17/.suo and b/InnoLabProjektDektopApp/.vs/InnoLabProjektDektopApp/v17/.suo differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/App.xaml b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/App.xaml index c0236af680b5fc486c8eafe4bb2b669121b6a9c6..244eb5d768db93aedf6c1405522b1d40151bb3d2 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/App.xaml +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/App.xaml @@ -2,7 +2,7 @@ xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:local="clr-namespace:InnoLabProjektDektopApp" - StartupUri="Screens\FirstLaunch\04Settings.xaml"> + StartupUri="Screens\Regulaer\03End.xaml"> <Application.Resources> <ResourceDictionary> <ResourceDictionary.MergedDictionaries> diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/App.xaml.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/App.xaml.cs index c4a739ac4eacbd77a78c12835a50f063e415a10a..71164530543bbfdae2f42882600f2a76f380158e 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/App.xaml.cs +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/App.xaml.cs @@ -1,4 +1,6 @@ -using System.Configuration; +using InnoLabProjektDektopApp.Services; +using InnoLabProjektDektopApp.Utils; +using System.Configuration; using System.Data; using System.Windows; @@ -9,6 +11,32 @@ namespace InnoLabProjektDektopApp /// </summary> public partial class App : Application { + private readonly NotifyIconManager _notifyIcon = new(); + private static ProcessMonitor _processMonitor = new(); + + internal static ProcessMonitor GetProcessMonitor() + { + return _processMonitor; + } + + public App() + { + + } + + + protected override void OnStartup(StartupEventArgs e) + { + _notifyIcon.Initialize(); + base.OnStartup(e); + } + + protected override void OnExit(ExitEventArgs e) + { + _notifyIcon.Dispose(); + base.OnExit(e); + } + } } diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Assets/distractingPrograms.json b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Assets/distractingPrograms.json new file mode 100644 index 0000000000000000000000000000000000000000..2d5a7c5c2af6d6e21d1b1096cfa6d066f9edac22 --- /dev/null +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Assets/distractingPrograms.json @@ -0,0 +1,14 @@ +{ + "Programs": [ + { + "processName": "steam", + "mainWindowTitle": "The Steam Game Launcher", + "distracting": true + }, + { + "processName": "discord", + "mainWindowTitle": "Messaging service", + "distracting": true + } + ] +} \ No newline at end of file diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Assets/end.png b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Assets/end.png new file mode 100644 index 0000000000000000000000000000000000000000..d474536f30b680927718424c5f2a1d0d3c1ccd84 Binary files /dev/null and b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Assets/end.png differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Assets/pause.png b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Assets/pause.png new file mode 100644 index 0000000000000000000000000000000000000000..d4d8de1c99759bb7fe97ee7c69ed0c709950ef02 Binary files /dev/null and b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Assets/pause.png differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Assets/skip.png b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Assets/skip.png new file mode 100644 index 0000000000000000000000000000000000000000..8008a3bf5f57d0d46ac19a70efcc243cdc2c4967 Binary files /dev/null and b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Assets/skip.png differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Assets/start.png b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Assets/start.png new file mode 100644 index 0000000000000000000000000000000000000000..abda107909a20c2245dcd84c6b6e138357e5b7c2 Binary files /dev/null and b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Assets/start.png differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/InnoLabProjektDektopApp.csproj b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/InnoLabProjektDektopApp.csproj index 9ff62f7911812f54abdae213ce5d9bf898a3f9af..dc2d4c2c4fdfbcc0766c3df9f571c313d091ed89 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/InnoLabProjektDektopApp.csproj +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/InnoLabProjektDektopApp.csproj @@ -15,7 +15,9 @@ <ItemGroup> <None Remove="Assets\blockedProcesses.json" /> + <None Remove="Assets\distractingPrograms.json" /> <None Remove="Assets\distractingWebsites.json" /> + <None Remove="Assets\end.png" /> <None Remove="Assets\gamesicon.png" /> <None Remove="Assets\icon.ico" /> <None Remove="Assets\logo.png" /> @@ -585,13 +587,16 @@ <None Remove="Assets\MascottAnimation\Up\7\frame8.png" /> <None Remove="Assets\MascottAnimation\Up\7\frame9.png" /> <None Remove="Assets\otherwebsitesicon.png" /> + <None Remove="Assets\pause.png" /> <None Remove="Assets\pencilicon.png" /> <None Remove="Assets\pornicon.png" /> <None Remove="Assets\profileicon.png" /> <None Remove="Assets\programsicon.png" /> <None Remove="Assets\settings.json" /> <None Remove="Assets\shoppingicon.png" /> + <None Remove="Assets\skip.png" /> <None Remove="Assets\socialmediaicon.png" /> + <None Remove="Assets\start.png" /> <None Remove="Screens\FirstLaunch\Mascott_InnoLab.jpg" /> </ItemGroup> @@ -612,20 +617,31 @@ </ItemGroup> <ItemGroup> + <PackageReference Include="Hardcodet.NotifyIcon.Wpf" Version="2.0.1" /> <PackageReference Include="Newtonsoft.Json" Version="13.0.3" /> - <PackageReference Include="System.Management" Version="9.0.0" /> + <PackageReference Include="Newtonsoft.Json.Bson" Version="1.0.3" /> + <PackageReference Include="System.Management" Version="9.0.1" /> </ItemGroup> <ItemGroup> <Content Include="Assets\blockedProcesses.json"> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> </Content> + <Content Include="Assets\distractingPrograms.json"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </Content> <Content Include="Assets\distractingWebsites.json"> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> </Content> + <Content Include="Assets\end.png"> + <CopyToOutputDirectory>Always</CopyToOutputDirectory> + </Content> <Content Include="Assets\gamesicon.png"> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> </Content> + <Content Include="Assets\pause.png"> + <CopyToOutputDirectory>Always</CopyToOutputDirectory> + </Content> <Content Include="Assets\pencilicon.png"> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> </Content> @@ -644,12 +660,18 @@ <Content Include="Assets\shoppingicon.png"> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> </Content> + <Content Include="Assets\skip.png"> + <CopyToOutputDirectory>Always</CopyToOutputDirectory> + </Content> <Content Include="Assets\socialmediaicon.png"> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> </Content> - <Resource Include="Assets\icon.ico"> - <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> - </Resource> + <Content Include="Assets\icon.ico"> + <CopyToOutputDirectory>Always</CopyToOutputDirectory> + </Content> + <Content Include="Assets\start.png"> + <CopyToOutputDirectory>Always</CopyToOutputDirectory> + </Content> <Resource Include="Assets\logo.png" /> <Content Include="Assets\otherwebsitesicon.png"> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/InnoLabProjektDektopApp.csproj.user b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/InnoLabProjektDektopApp.csproj.user index af921afd5877ef45f3aa8fea89de501934c70d25..92b7ce65cc46375f291131fc7d5d03ffb956158d 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/InnoLabProjektDektopApp.csproj.user +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/InnoLabProjektDektopApp.csproj.user @@ -10,8 +10,14 @@ <Compile Update="Screens\Templates\HeaderTemplate.xaml.cs"> <SubType>Code</SubType> </Compile> + <Compile Update="Utils\InputDialog.xaml.cs"> + <SubType>Code</SubType> + </Compile> </ItemGroup> <ItemGroup> + <Page Update="Screens\FirstLaunch\03_2ProgramsList.xaml"> + <SubType>Designer</SubType> + </Page> <Page Update="Screens\FirstLaunch\03_1DistractionsList.xaml"> <SubType>Designer</SubType> </Page> @@ -45,5 +51,8 @@ <Page Update="Styles\Styles.xaml"> <SubType>Designer</SubType> </Page> + <Page Update="Utils\InputDialog.xaml"> + <SubType>Designer</SubType> + </Page> </ItemGroup> </Project> \ No newline at end of file diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/FirstLaunch/01Startscreen.xaml b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/FirstLaunch/01Startscreen.xaml index ef936276665f0828240052ec3de7d513ab972d5c..ef3099fe2184deb4447690e987854383c9acfe4e 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/FirstLaunch/01Startscreen.xaml +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/FirstLaunch/01Startscreen.xaml @@ -1,4 +1,4 @@ -<Window x:Class="InnoLabProjektDektopApp.Startscreen" +<Page x:Class="InnoLabProjektDektopApp.Startscreen" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" @@ -6,7 +6,8 @@ xmlns:local="clr-namespace:InnoLabProjektDektopApp" xmlns:header="clr-namespace:InnoLabProjektDektopApp.Screens.Templates" mc:Ignorable="d" - Height="550" Width="900"> + > + <ScrollViewer> <Grid> <Label Content="Are you ready to
work focused?" HorizontalAlignment="Left" Margin="76,102,0,0" VerticalAlignment="Top" Height="143" Width="432" FontSize="48" HorizontalContentAlignment="Center" VerticalContentAlignment="Center"/> @@ -14,5 +15,8 @@ <TextBlock HorizontalAlignment="Left" Height="121" Margin="117,250,0,0" TextWrapping="Wrap" VerticalAlignment="Top" Width="350"><Run Text="Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation"/><LineBreak/><Run/><LineBreak/><Run Text="Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation"/></TextBlock> <Rectangle HorizontalAlignment="Left" Height="269" Margin="587,0,0,0" Stroke="Black" VerticalAlignment="Center" Width="313" Fill="#FF828080"/> <Image HorizontalAlignment="Left" Height="197" Margin="668,174,0,0" VerticalAlignment="Top" Width="213" Source="/Screens/FirstLaunch/Mascott_InnoLab.jpg"/> - </Grid> -</Window> + <TextBlock HorizontalAlignment="Left" Height="121" Margin="117,500,0,0" TextWrapping="Wrap" VerticalAlignment="Top" Width="350"><Run Text="Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation"/><LineBreak/><Run/><LineBreak/><Run Text="Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation"/></TextBlock> + + </Grid> + </ScrollViewer> +</Page> diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/FirstLaunch/01Startscreen.xaml.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/FirstLaunch/01Startscreen.xaml.cs index df4a42a5ed224e1a1d3417c76ba755f76f8fd386..d34c6c7c9bf252c8681961cf2ddc3e08df3ae9f3 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/FirstLaunch/01Startscreen.xaml.cs +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/FirstLaunch/01Startscreen.xaml.cs @@ -14,12 +14,11 @@ namespace InnoLabProjektDektopApp /// <summary> /// Interaction logic for MainWindow.xaml /// </summary> - public partial class Startscreen : Window + public partial class Startscreen : Page { public Startscreen() { InitializeComponent(); - GlobalSettings.setDefaults(this); } private void Option1_Click(object sender, RoutedEventArgs e) { @@ -36,7 +35,7 @@ namespace InnoLabProjektDektopApp private void Button_Click(object sender, RoutedEventArgs e) { - this.Content = new Progress().Content; + // } } } \ No newline at end of file diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/FirstLaunch/02Progress.xaml b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/FirstLaunch/02Progress.xaml index 386854e6b4278f7bced3edf1d2495d74d4210de0..dbc6617668806d2fc00b4962353a3ccb0216cc0b 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/FirstLaunch/02Progress.xaml +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/FirstLaunch/02Progress.xaml @@ -1,12 +1,11 @@ -<Window x:Class="InnoLabProjektDektopApp.Progress" +<Page x:Class="InnoLabProjektDektopApp.Progress" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:local="clr-namespace:InnoLabProjektDektopApp" xmlns:header="clr-namespace:InnoLabProjektDektopApp.Screens.Templates" - mc:Ignorable="d" - Height="550" Width="900"> + mc:Ignorable="d"> <Grid> <Label Content="Your way to working more focused" HorizontalAlignment="Center" Margin="0,119,0,0" VerticalAlignment="Top" Height="108" Width="780" FontSize="48" HorizontalContentAlignment="Center" VerticalContentAlignment="Center"/> @@ -21,4 +20,4 @@ <Button Content="Button" HorizontalAlignment="Left" Height="40" Margin="388,343,0,0" VerticalAlignment="Top" Width="110" Click="Button_Click2"/> <Button Content="Button" HorizontalAlignment="Left" Height="40" Margin="695,343,0,0" VerticalAlignment="Top" Width="110" Click="Button_Click2"/> </Grid> -</Window> +</Page> diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/FirstLaunch/02Progress.xaml.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/FirstLaunch/02Progress.xaml.cs index fed90d7f460371a8afb20fdb2919d571d714c62c..cc95495a2b156c20fe5af60cdfc0069eab919f2a 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/FirstLaunch/02Progress.xaml.cs +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/FirstLaunch/02Progress.xaml.cs @@ -14,33 +14,19 @@ namespace InnoLabProjektDektopApp /// <summary> /// Interaction logic for MainWindow.xaml /// </summary> - public partial class Progress : Window + public partial class Progress : Page { public Progress() { InitializeComponent(); - GlobalSettings.setDefaults(this); } - private void Option1_Click(object sender, RoutedEventArgs e) - { - //this.Content = new AnotherWindow().Content; - } - private void Option2_Click(object sender, RoutedEventArgs e) - { - //this.Content = new AnotherWindow().Content; - } - private void Option3_Click(object sender, RoutedEventArgs e) - { - //this.Content = new AnotherWindow().Content; - } - private void Button_Click1(object sender, RoutedEventArgs e) { //this.Content = new AnotherWindow().Content; } private void Button_Click2(object sender, RoutedEventArgs e) { - this.Content = new Settings().Content; + //this.Content = new Settings().Content; } private void Button_Click3(object sender, RoutedEventArgs e) { diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/FirstLaunch/03_0Distractions.xaml b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/FirstLaunch/03_0Distractions.xaml index 14c450758bcb87e0784154260a4007b09a857e5d..e62c6ab5b39a53e753d769cc4c88ba0bb3c29194 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/FirstLaunch/03_0Distractions.xaml +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/FirstLaunch/03_0Distractions.xaml @@ -1,12 +1,11 @@ -<Window x:Class="InnoLabProjektDektopApp.Distractions" +<Page x:Class="InnoLabProjektDektopApp.Distractions" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:local="clr-namespace:InnoLabProjektDektopApp" xmlns:header="clr-namespace:InnoLabProjektDektopApp.Screens.Templates" - mc:Ignorable="d" - Height="550" Width="900"> + mc:Ignorable="d"> <Grid> <StackPanel Margin="20,0,20,20"> @@ -69,7 +68,7 @@ </Grid> <TextBlock Style="{StaticResource StandardText}" Text="By clicking on each category, you can change the programs/websites that should be marked as distracting."/> - <ScrollViewer VerticalScrollBarVisibility="Auto" Margin="20,10,0,8" Height="100"> + <ScrollViewer VerticalScrollBarVisibility="Auto" Margin="20,0,0,8" Height="0"> <StackPanel x:Name="SearchResultsPanel" /> </ScrollViewer> @@ -271,5 +270,5 @@ </StackPanel> </Grid> -</Window> +</Page> diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/FirstLaunch/03_0Distractions.xaml.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/FirstLaunch/03_0Distractions.xaml.cs index c056f90fc132ff764744f9e9dd81152ca334558c..554562b3c62ce3d907473b10c9c489f0b94bf996 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/FirstLaunch/03_0Distractions.xaml.cs +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/FirstLaunch/03_0Distractions.xaml.cs @@ -19,7 +19,7 @@ namespace InnoLabProjektDektopApp /// <summary> /// Interaction logic for MainWindow.xaml /// </summary> - public partial class Distractions : Window + public partial class Distractions : Page { private string jsonFilePath = System.IO.Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "Assets", "distractingWebsites.json"); @@ -27,7 +27,6 @@ namespace InnoLabProjektDektopApp public Distractions() { InitializeComponent(); - GlobalSettings.setDefaults(this); LoadJsonData(); } @@ -229,10 +228,14 @@ namespace InnoLabProjektDektopApp if (!string.IsNullOrEmpty(category)) { - // Navigiere zur entsprechenden Seite (DistractionsList) - var distractionListScreen = new DistractionsList(category); - distractionListScreen.Show(); // Zeige neue Seite - this.Close(); // Schließe aktuelle Seite + if(category == "Other Programs") + { + this.NavigationService.Navigate(new ProgramsList()); + } + else + { + this.NavigationService.Navigate(new DistractionsList(category)); + } } } } diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/FirstLaunch/03_1DistractionsList.xaml b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/FirstLaunch/03_1DistractionsList.xaml index a7623b7a0d38a8b06b0eee98e35b8a2a3138f6c1..9f5fde8481198b5b72ab8a7fe1d91f003387995d 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/FirstLaunch/03_1DistractionsList.xaml +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/FirstLaunch/03_1DistractionsList.xaml @@ -1,12 +1,11 @@ -<Window x:Class="InnoLabProjektDektopApp.DistractionsList" +<Page x:Class="InnoLabProjektDektopApp.DistractionsList" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:local="clr-namespace:InnoLabProjektDektopApp" xmlns:header="clr-namespace:InnoLabProjektDektopApp.Screens.Templates" - mc:Ignorable="d" - Height="550" Width="900"> + mc:Ignorable="d"> <Grid> <StackPanel Margin="20,20,20,20"> <Grid> @@ -160,4 +159,4 @@ Text="CATEGORY" RenderTransformOrigin="0.548,1.689" Margin="10,0,0,0"/> </Grid> -</Window> \ No newline at end of file +</Page> \ No newline at end of file diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/FirstLaunch/03_1DistractionsList.xaml.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/FirstLaunch/03_1DistractionsList.xaml.cs index 8f17528511ab5de44b7942ef84247d87f663ea91..8543d0eba7e811f724912ee3a26fc0b945bb947b 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/FirstLaunch/03_1DistractionsList.xaml.cs +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/FirstLaunch/03_1DistractionsList.xaml.cs @@ -17,7 +17,7 @@ using System.Text.Json.Serialization; namespace InnoLabProjektDektopApp { - public partial class DistractionsList : Window + public partial class DistractionsList : Page { private string _category; private Dictionary<string, List<WebsiteEntry>> _data; @@ -26,7 +26,6 @@ namespace InnoLabProjektDektopApp public DistractionsList(string category) { InitializeComponent(); - GlobalSettings.setDefaults(this); _category = category; _jsonFilePath = System.IO.Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "Assets", "distractingWebsites.json"); LoadCategoryItems(); @@ -223,9 +222,7 @@ namespace InnoLabProjektDektopApp private void BackButton_Click(object sender, RoutedEventArgs e) { - var distractionsScreen = new Distractions(); - distractionsScreen.Show(); - this.Close(); + this.NavigationService.Navigate(new Distractions()); } public class WebsiteEntry diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/FirstLaunch/03_2ProgramsList.xaml b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/FirstLaunch/03_2ProgramsList.xaml new file mode 100644 index 0000000000000000000000000000000000000000..25c59825347f2e94e66b03f3faea008a3a4adda8 --- /dev/null +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/FirstLaunch/03_2ProgramsList.xaml @@ -0,0 +1,175 @@ +<Page x:Class="InnoLabProjektDektopApp.ProgramsList" + xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" + xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" + xmlns:d="http://schemas.microsoft.com/expression/blend/2008" + xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" + xmlns:local="clr-namespace:InnoLabProjektDektopApp" + xmlns:header="clr-namespace:InnoLabProjektDektopApp.Screens.Templates" + mc:Ignorable="d"> + <Grid> + <StackPanel Margin="20,20,20,20"> + <Grid> + <Grid.ColumnDefinitions> + <ColumnDefinition Width="*" /> + <ColumnDefinition Width="Auto" /> + </Grid.ColumnDefinitions> + + <Button Width="40" + Height="40" + Background="White" + BorderBrush="Black" + BorderThickness="1" + HorizontalAlignment="Left" + VerticalAlignment="Top" + Click="BackButton_Click"> + <Button.Template> + <ControlTemplate TargetType="Button"> + <Grid> + <Ellipse Fill="Gray" /> + <TextBlock Text="←" + FontSize="16" + VerticalAlignment="Center" + HorizontalAlignment="Center" /> + </Grid> + </ControlTemplate> + </Button.Template> + </Button> + + + <!-- Überschrift --> + <TextBlock Grid.Column="0" + Style="{StaticResource Header1}" + Text="Edit the list of distracting programs" + HorizontalAlignment="Left" Margin="0,46,0,-46" /> + + <!-- Suchfeld --> + <DockPanel Grid.Column="1" HorizontalAlignment="Right" Margin="10,0,0,0"> + <!-- TextBox für Suche --> + <Grid> + <TextBox x:Name="SearchBox" + Width="150" + Height="30" + FontSize="14" + VerticalAlignment="Center" + Padding="5" + HorizontalAlignment="Left" + Foreground="Black" + Background="Transparent" + BorderBrush="Gray" + BorderThickness="1" + TextChanged="SearchBox_TextChanged" /> + + <TextBlock x:Name="SearchPlaceholder" + Text="Search..." + VerticalAlignment="Center" + HorizontalAlignment="Left" + Foreground="Gray" + FontSize="14" + Padding="5" + IsHitTestVisible="False" + Margin="5,0,0,0" /> + </Grid> + + <!-- Lupe-Symbol --> + <Button Width="30" + Height="30" + Margin="5,0,0,0" + VerticalAlignment="Center" + HorizontalAlignment="Right"> + <TextBlock Text="🔍" + FontSize="14" + VerticalAlignment="Center" + HorizontalAlignment="Center" /> + </Button> + </DockPanel> + </Grid> + <TextBlock Style="{StaticResource StandardText}" Margin="0,40,0,0" + Text="By clicking on a toggle, you can change the programs that should be marked as distracting." /> + + <Border Background="#2C2C2C" CornerRadius="10" Padding="10" Margin="0,10,0,0"> + <Grid> + <Grid.ColumnDefinitions> + <ColumnDefinition Width="2*" /> + <ColumnDefinition Width="3*" /> + <ColumnDefinition Width="2*" /> + <ColumnDefinition Width="Auto" /> + </Grid.ColumnDefinitions> + + <!-- Label --> + <TextBlock Text="Add a distracting program:" + VerticalAlignment="Center" + Foreground="White" + FontSize="14" + FontWeight="Bold" + Grid.Column="0" + Margin="10,0,10,0" /> + + <!-- Input Field with Placeholder --> + <Grid Grid.Column="1" VerticalAlignment="Center" Margin="0,0,10,0"> + <TextBox x:Name="UrlInputBox" + VerticalAlignment="Center" + Padding="5" + FontSize="14" + Background="Transparent" + Foreground="White" + BorderBrush="Gray" + BorderThickness="1" + TextChanged="UrlInputBox_TextChanged" /> + <TextBlock x:Name="UrlPlaceholder" + Text="process name" + VerticalAlignment="Center" + Foreground="Gray" + FontSize="14" + Padding="5" + IsHitTestVisible="False" + Margin="5,0,0,0" /> + </Grid> + + <!-- Add Button --> + <Button Width="30" + Height="30" + VerticalAlignment="Center" + HorizontalAlignment="Right" + Grid.Column="3" + Margin="0" + BorderThickness="0" + ToolTip="Add" + Click="AddButton_Click"> + <TextBlock Text="+" + FontSize="20" + Foreground="#333436" + VerticalAlignment="Center" + HorizontalAlignment="Center" + /> + </Button> + </Grid> + </Border> + + <!-- Überschrift --> + <Grid> + <StackPanel Orientation="Horizontal" VerticalAlignment="Center" HorizontalAlignment="Left" Margin="0,10,0,10" Width="350"> + <CheckBox x:Name="OtherProgramsCheckBox" IsChecked="True" VerticalAlignment="Center"/> + <TextBlock x:Name="HeaderTextBlock" + Style="{StaticResource Header2}" + Text="CATEGORY" RenderTransformOrigin="0.548,1.689" Margin="10,0,0,0"/> + </StackPanel> + <StackPanel Orientation="Horizontal" VerticalAlignment="Center" HorizontalAlignment="Right" Margin="0,10,0,10" Width="430"> + <TextBlock x:Name="HeaderTextBlock2" + Style="{StaticResource Header2}" + Text="Running Programs" RenderTransformOrigin="0.548,1.689" Margin="0,0,0,0" HorizontalAlignment="Right"/> + <Button Width="110" Margin="150,0,0,0" ToolTip="Refresh" Click="RefreshButton_Click"> + <TextBlock Text="Click to Refresh"/> + </Button> + </StackPanel> + </Grid> + </StackPanel> + <ScrollViewer VerticalScrollBarVisibility="Auto" Margin="20,225,20,8" Width="400px" HorizontalAlignment="Left"> + <StackPanel x:Name="ItemsPanel" /> + </ScrollViewer> + <ScrollViewer VerticalScrollBarVisibility="Auto" Margin="20,225,20,8" Width="400px" HorizontalAlignment="Right"> + <StackPanel x:Name="ItemsPanel2" /> + </ScrollViewer> + + + </Grid> +</Page> \ No newline at end of file diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/FirstLaunch/03_2ProgramsList.xaml.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/FirstLaunch/03_2ProgramsList.xaml.cs new file mode 100644 index 0000000000000000000000000000000000000000..c323f922c82432dfb6bb61444c5db2f4810bbca1 --- /dev/null +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/FirstLaunch/03_2ProgramsList.xaml.cs @@ -0,0 +1,360 @@ +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.Navigation; +using System.Windows.Shapes; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Text.Json; +using System.Text.Json.Serialization; +using InnoLabProjektDektopApp.Services; +using System.Diagnostics; +using static InnoLabProjektDektopApp.DistractionsList; +using System; +using InnoLabProjektDektopApp.Utils; + + +namespace InnoLabProjektDektopApp +{ + public partial class ProgramsList : Page + { + private Dictionary<string, List<ProcessEntry>> _data; + private readonly string _jsonFilePath; + + public ProgramsList() + { + InitializeComponent(); + _jsonFilePath = System.IO.Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "Assets", "distractingPrograms.json"); + LoadProgramList(); + RefreshRunningProcessList(); + } + + private void SearchBox_TextChanged(object sender, TextChangedEventArgs e) + { + // Platzhalter ein- oder ausblenden + if (!string.IsNullOrEmpty(SearchBox.Text)) + { + SearchPlaceholder.Visibility = Visibility.Collapsed; // Ausblenden + } + else + { + SearchPlaceholder.Visibility = Visibility.Visible; // Einblenden + } + + // Filterlogik für die Suchergebnisse + string searchText = SearchBox.Text?.ToLower() ?? string.Empty; + + // Clear current UI + ItemsPanel.Children.Clear(); + + // Filter items based on search text + if (_data != null && _data.TryGetValue("Programs", out List<ProcessEntry>? value)) + { + var filteredItems = value.Where( + item => string.IsNullOrEmpty(searchText) || + item.ProcessName.Contains(searchText, StringComparison.CurrentCultureIgnoreCase)) + .ToList(); + + foreach (var item in filteredItems) + { + // Create a StackPanel for each filtered item + ShowNewItemInList(item.ProcessName, item.MainWindowTitle, item.IsDistracting); + } + } + } + + + + private void AddButton_Click(object sender, RoutedEventArgs e) + { + string enteredUrl = UrlInputBox.Text.Trim(); + + if (string.IsNullOrEmpty(enteredUrl)) + { + MessageBox.Show("Please enter a URL.", "Invalid Input", MessageBoxButton.OK, MessageBoxImage.Warning); + return; + } + + // Add the new URL to the current category + if (!_data.ContainsKey("Programs")) + { + _data["Programs"] = new List<ProcessEntry>(); + } + + // Check if the process is already in the list + if (_data["Programs"].Any(p => p.ProcessName.Equals(enteredUrl, StringComparison.CurrentCultureIgnoreCase))) + { + MessageBox.Show($"Process '{enteredUrl}' is already added.", "Info", MessageBoxButton.OK, MessageBoxImage.Information); + UrlInputBox.Clear(); + return; + } + + _data["Programs"].Add(new ProcessEntry + { + ProcessName = enteredUrl, + MainWindowTitle = enteredUrl, + IsDistracting = true + }); + + // Save changes to the JSON + SaveData(); + + // Add to UI dynamically + var stackPanel = new StackPanel { Orientation = Orientation.Horizontal, Margin = new Thickness(5, 2, 5, 2) }; + + var checkBox = new CheckBox + { + Content = $"{enteredUrl}: {enteredUrl}", + Margin = new Thickness(5), + IsChecked = true, + Tag = new ProcessEntry { ProcessName = enteredUrl, MainWindowTitle = enteredUrl, IsDistracting = true } + }; + + checkBox.Checked += CheckBox_CheckedChanged; + checkBox.Unchecked += CheckBox_CheckedChanged; + + stackPanel.Children.Add(checkBox); + ItemsPanel.Children.Add(stackPanel); + + // Clear the input field + UrlInputBox.Clear(); + + // Refresh Panel to exclude duplicates + RefreshRunningProcessList(); + } + + private void RefreshButton_Click(object sender, RoutedEventArgs e) + { + RefreshRunningProcessList(); + } + + private void RefreshRunningProcessList() + { + var windowedProcesses = ProcessMonitor.GetWindowedProcesses(); + ItemsPanel2.Children.Clear(); + foreach (var process in windowedProcesses) + { + // check if the process is not already in the list + if (_data["Programs"].Any(p => p.ProcessName.Equals(process.Name, StringComparison.CurrentCultureIgnoreCase))) continue; + + var stackPanel = new StackPanel { Orientation = Orientation.Horizontal, Margin = new Thickness(5, 2, 5, 2) }; + + var button = new Button + { + Content = "+", + Width = 30, + Margin = new Thickness(5) + }; + + var textBlock = new TextBlock + { + Text = $"{process.MainWindowTitle} ({process.Name})", + Margin = new Thickness(5), + ToolTip = $"{process.MainWindowTitle} ({process.Name})" + }; + + button.Click += (s, args) => + { + AddProcessFromList(process.Name, process.MainWindowTitle); + }; + + stackPanel.Children.Add(button); + stackPanel.Children.Add(textBlock); + ItemsPanel2.Children.Add(stackPanel); + } + } + + private void AddProcessFromList(string processName, string mainWindowTitle) + { + // Check if the process is already in the list + if (_data.TryGetValue("Programs", out List<ProcessEntry>? value) && value.Any(p => p.ProcessName.Equals(processName, StringComparison.CurrentCultureIgnoreCase))) + { + MessageBox.Show($"Process '{processName}' is already added.", "Info", MessageBoxButton.OK, MessageBoxImage.Information); + return; + } + + //show a message box to give the user the option to change the main window title + var inputDialog = new InputDialog("Enter a new Title:", mainWindowTitle); // Assuming InputDialog is a custom dialog + if (inputDialog.ShowDialog() == true) + { + mainWindowTitle = inputDialog.Input; // Get updated title + } + + if (inputDialog.DialogResult == false) return; + + + // Add the process to the list + if (!_data.ContainsKey("Programs")) + { + _data["Programs"] = []; + } + _data["Programs"].Add(new ProcessEntry + { + ProcessName = processName, + MainWindowTitle = mainWindowTitle, + IsDistracting = true + }); + + ShowNewItemInList(processName, mainWindowTitle, true); + RefreshRunningProcessList(); + + // Save changes to the JSON + SaveData(); + } + + private void ShowNewItemInList(string processName, string mainWindowTitle, bool isDistracting) + { + // Add to UI dynamically + var newStackPanel = new StackPanel { Orientation = Orientation.Horizontal, Margin = new Thickness(5, 2, 5, 2) }; + var newCheckBox = new CheckBox + { + Content = $"{mainWindowTitle} ({processName})", + Margin = new Thickness(5), + IsChecked = isDistracting, + ToolTip = $"{mainWindowTitle} ({processName})", + Tag = new ProcessEntry { ProcessName = processName, MainWindowTitle = mainWindowTitle, IsDistracting = isDistracting } + }; + newCheckBox.Checked += CheckBox_CheckedChanged; + newCheckBox.Unchecked += CheckBox_CheckedChanged; + + var editButton = new Button + { + Content = "Edit", + Margin = new Thickness(5, 0, 0, 0), + Tag = newCheckBox // Store reference to checkbox for easier editing + }; + editButton.Click += (s, e) => EditItemInList(processName, mainWindowTitle); + + newStackPanel.Children.Add(newCheckBox); + newStackPanel.Children.Add(editButton); + ItemsPanel.Children.Add(newStackPanel); + } + + private void EditItemInList(string processName, string mainWindowTitle) + { + var inputDialog = new InputDialog("Enter a new Title:", mainWindowTitle); + inputDialog.ShowDialog(); + if (inputDialog.DialogResult == false || inputDialog.Input.Length == 0) return; + + _data["Programs"].FirstOrDefault(p => p.ProcessName.Equals(processName, StringComparison.CurrentCultureIgnoreCase))!.MainWindowTitle = inputDialog.Input; + + SaveData(); + RefreshProgramList(); + } + + + private void UrlInputBox_TextChanged(object sender, TextChangedEventArgs e) + { + // Überprüfen, ob die TextBox leer ist + if (!string.IsNullOrEmpty(UrlInputBox.Text)) + { + UrlPlaceholder.Visibility = Visibility.Collapsed; // Placeholder ausblenden + } + else + { + UrlPlaceholder.Visibility = Visibility.Visible; // Placeholder anzeigen + } + } + + public void RefreshProgramList() + { + ItemsPanel.Children.Clear(); + + // Kategorie-Elemente laden + var items = _data["Programs"]; + foreach (var item in items) + { + ShowNewItemInList(item.ProcessName, item.MainWindowTitle, item.IsDistracting); + } + + // Überschrift setzen + HeaderTextBlock.Text = "Programs"; + } + + public void LoadProgramList() + { + try + { + // JSON-Datei lesen + string jsonContent = File.ReadAllText(_jsonFilePath); + + // JSON deserialisieren + _data = JsonSerializer.Deserialize<Dictionary<string, List<ProcessEntry>>>(jsonContent); + + if (_data != null && _data.ContainsKey("Programs")) + { + // Kategorie-Elemente laden + var items = _data["Programs"]; + foreach (var item in items) + { + ShowNewItemInList(item.ProcessName, item.MainWindowTitle, item.IsDistracting); + } + + // Überschrift setzen + HeaderTextBlock.Text = "Programs"; + } + else + { + MessageBox.Show($"No items found for category 'Programs'."); + } + } + catch (Exception ex) + { + MessageBox.Show($"Error loading items: {ex.Message}"); + } + } + + + private void CheckBox_CheckedChanged(object sender, RoutedEventArgs e) + { + if (sender is CheckBox checkBox && checkBox.Tag is ProcessEntry item) + { + // Wert in der JSON-Datenstruktur aktualisieren + item.IsDistracting = checkBox.IsChecked ?? false; + + // Write the value into the _data dictionary + _data["Programs"].FirstOrDefault(p => p.ProcessName.Equals(item.ProcessName, StringComparison.CurrentCultureIgnoreCase))!.IsDistracting = item.IsDistracting; + + // Änderungen in die Datei schreiben + SaveData(); + } + } + + private void SaveData() + { + try + { + string updatedJson = JsonSerializer.Serialize(_data, new JsonSerializerOptions { WriteIndented = true }); + File.WriteAllText(_jsonFilePath, updatedJson); + MessageBox.Show("Data saved successfully!"); + } + catch (Exception ex) + { + MessageBox.Show($"Error saving data: {ex.Message}"); + } + } + + private void BackButton_Click(object sender, RoutedEventArgs e) + { + this.NavigationService.Navigate(new Distractions()); + } + + public class ProcessEntry + { + [JsonPropertyName("processName")] + public required string ProcessName { get; set; } + + [JsonPropertyName("mainWindowTitle")] + public required string MainWindowTitle { get; set; } + + [JsonPropertyName("distracting")] + public bool IsDistracting { get; set; } + } + } +} \ No newline at end of file diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/FirstLaunch/04Settings.xaml b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/FirstLaunch/04Settings.xaml index 4af139e3031e4c63dce9f102f57b1455f0c83c01..0a3353f791707271925e5c03aeedcb37299d08d8 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/FirstLaunch/04Settings.xaml +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/FirstLaunch/04Settings.xaml @@ -1,12 +1,11 @@ -<Window x:Class="InnoLabProjektDektopApp.Settings" +<Page x:Class="InnoLabProjektDektopApp.Settings" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:local="clr-namespace:InnoLabProjektDektopApp" xmlns:header="clr-namespace:InnoLabProjektDektopApp.Screens.Templates" - mc:Ignorable="d" - Height="550" Width="900"> + mc:Ignorable="d"> <ScrollViewer VerticalScrollBarVisibility="Auto" HorizontalScrollBarVisibility="Disabled"> <Grid> @@ -120,40 +119,46 @@ ToolTip="You can decide how long the focus and break period should be. The focus </Grid.ColumnDefinitions> <!-- Focus Period --> - <StackPanel Grid.Column="0" Margin="10"> - <TextBlock Text="Focus period" FontSize="14" FontWeight="SemiBold" Foreground="Gray" /> - <ComboBox x:Name="FocusPeriodComboBox" HorizontalAlignment="Left" Height="30" Width="150" FontSize="14" Padding="5" SelectionChanged="ComboBox_SelectionChanged" IsEditable="True"> - <ComboBoxItem Content="20 minutes" /> - <ComboBoxItem Content="30 minutes" /> - <ComboBoxItem Content="40 minutes" /> - <ComboBoxItem Content="50 minutes" IsSelected="True" /> - <ComboBoxItem Content="60 minutes" /> - <ComboBoxItem Content="90 minutes" /> - <ComboBoxItem Content="120 minutes" /> - <ComboBoxItem Content="150 minutes" /> - <ComboBoxItem Content="180 minutes" /> - </ComboBox> - </StackPanel> - - <!-- Break Period --> - <StackPanel Grid.Column="1" Margin="10"> - <TextBlock Text="Break period" FontSize="14" FontWeight="SemiBold" Foreground="Gray" /> - <ComboBox x:Name="BreakPeriodComboBox" HorizontalAlignment="Left" Height="30" Width="150" FontSize="14" Padding="5" IsEditable="True"> - <ComboBoxItem Content="0 minutes" /> - <ComboBoxItem Content="3 minutes" /> - <ComboBoxItem Content="5 minutes" /> - <ComboBoxItem Content="10 minutes" IsSelected="True" /> - <ComboBoxItem Content="15 minutes" /> - <ComboBoxItem Content="20 minutes" /> - <ComboBoxItem Content="25 minutes" /> - <ComboBoxItem Content="30 minutes" /> - </ComboBox> - </StackPanel> - - <!-- Cycles --> + <StackPanel Grid.Column="0" Margin="10"> + <TextBlock Text="Focus period" FontSize="14" FontWeight="SemiBold" Foreground="Gray" /> + <StackPanel Orientation="Horizontal"> + <ComboBox x:Name="FocusPeriodComboBox" HorizontalAlignment="Left" Height="30" Width="100" FontSize="14" Padding="5" SelectionChanged="ComboBox_SelectionChanged" IsEditable="True" PreviewTextInput="ComboBox_PreviewTextInput"> + <ComboBoxItem Content="20" /> + <ComboBoxItem Content="30" /> + <ComboBoxItem Content="40" /> + <ComboBoxItem Content="50" IsSelected="True" /> + <ComboBoxItem Content="60" /> + <ComboBoxItem Content="90" /> + <ComboBoxItem Content="120" /> + <ComboBoxItem Content="150" /> + <ComboBoxItem Content="180" /> + </ComboBox> + <TextBlock Text="minutes" VerticalAlignment="Center" Margin="5,0,0,0" FontSize="14" Foreground="Gray" /> + </StackPanel> + </StackPanel> + + <!-- Break Period --> + <StackPanel Grid.Column="1" Margin="10"> + <TextBlock Text="Break period" FontSize="14" FontWeight="SemiBold" Foreground="Gray" /> + <StackPanel Orientation="Horizontal"> + <ComboBox x:Name="BreakPeriodComboBox" HorizontalAlignment="Left" Height="30" Width="100" FontSize="14" Padding="5" IsEditable="True" PreviewTextInput="ComboBox_PreviewTextInput"> + <ComboBoxItem Content="0" /> + <ComboBoxItem Content="3" /> + <ComboBoxItem Content="5" /> + <ComboBoxItem Content="10" IsSelected="True" /> + <ComboBoxItem Content="15" /> + <ComboBoxItem Content="20" /> + <ComboBoxItem Content="25" /> + <ComboBoxItem Content="30" /> + </ComboBox> + <TextBlock Text="minutes" VerticalAlignment="Center" Margin="5,0,0,0" FontSize="14" Foreground="Gray" /> + </StackPanel> + </StackPanel> + + <!-- Cycles --> <StackPanel Grid.Column="2" Margin="10"> <TextBlock Text="Cycles" FontSize="14" FontWeight="SemiBold" Foreground="Gray" /> - <ComboBox x:Name="CyclesComboBox" HorizontalAlignment="Left" Height="30" Width="150" FontSize="14" Padding="5" IsEditable="True"> + <ComboBox x:Name="CyclesComboBox" HorizontalAlignment="Left" Height="30" Width="150" FontSize="14" Padding="5" IsEditable="True" PreviewTextInput="ComboBox_PreviewTextInput">> <ComboBoxItem Content="1" /> <ComboBoxItem Content="2" /> <ComboBoxItem Content="3" /> @@ -178,4 +183,4 @@ ToolTip="You can decide how long the focus and break period should be. The focus </Grid> </ScrollViewer> -</Window> +</Page> diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/FirstLaunch/04Settings.xaml.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/FirstLaunch/04Settings.xaml.cs index 0847605ade723e1c0e74a0c9746d5b8fd2211a94..ce2080b3ce17dddc545d441c8d158cf9cf815c1b 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/FirstLaunch/04Settings.xaml.cs +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/FirstLaunch/04Settings.xaml.cs @@ -17,12 +17,11 @@ namespace InnoLabProjektDektopApp /// <summary> /// Interaction logic for MainWindow.xaml /// </summary> - public partial class Settings : Window + public partial class Settings : Page { public Settings() { InitializeComponent(); - GlobalSettings.setDefaults(this); MascotVisibilityChanged(null, null); } private void MascotVisibilityChanged(object sender, RoutedEventArgs e) @@ -33,6 +32,10 @@ namespace InnoLabProjektDektopApp if (MascotVisibleNo.IsChecked == true) { MotivationSection.Visibility = Visibility.Collapsed; // Hide the section + + //uncheck motivation options + WordsOfAffirmationCheckBox.IsChecked = false; + InsultingWordsCheckBox.IsChecked = false; } else { @@ -61,18 +64,22 @@ namespace InnoLabProjektDektopApp private void SaveSettingsButton_Click(object sender, RoutedEventArgs e) { - // Sammle die Einstellungen aus den Eingabefeldern - string focusPeriod = ((ComboBoxItem)FocusPeriodComboBox.SelectedItem)?.Content.ToString() ?? "50 minutes"; - string breakPeriod = ((ComboBoxItem)BreakPeriodComboBox.SelectedItem)?.Content.ToString() ?? "10 minutes"; - string cycles = ((ComboBoxItem)CyclesComboBox.SelectedItem)?.Content.ToString() ?? "4"; + // Sammle die Werte aus den ComboBoxen oder verwende Standardwerte + string focusPeriod = string.IsNullOrWhiteSpace(FocusPeriodComboBox.Text) ? "50" : FocusPeriodComboBox.Text; + string breakPeriod = string.IsNullOrWhiteSpace(BreakPeriodComboBox.Text) ? "10" : BreakPeriodComboBox.Text; + string cycles = string.IsNullOrWhiteSpace(CyclesComboBox.Text) ? "4" : CyclesComboBox.Text; + + string distractionMode = DistractionModeFullBlocking.IsChecked == true + ? "Full-blocking mode" + : DistractionModeMascotFeedback.IsChecked == true + ? "Mascot feedback only" + : "seconds warning mode"; - string distractionMode = DistractionModeFullBlocking.IsChecked == true - ? "Full-blocking mode" - : DistractionModeMascotFeedback.IsChecked == true - ? "Mascot feedback only" - : $"{SecondsComboBox.SelectedItem} seconds warning mode"; + string warningSeconds = !string.IsNullOrWhiteSpace(SecondsComboBox.Text) + ? SecondsComboBox.Text + : "10"; - string mascotVisible = MascotVisibleYes.IsChecked == true ? "Yes" : "No"; + string mascotVisible = MascotVisibleYes.IsChecked == true ? "Yes" : "No"; bool wordsOfAffirmation = WordsOfAffirmationCheckBox.IsChecked ?? false; bool insultingWords = InsultingWordsCheckBox.IsChecked ?? false; @@ -88,6 +95,7 @@ private void SaveSettingsButton_Click(object sender, RoutedEventArgs e) { "breakPeriod", breakPeriod }, { "cycles", cycles }, { "distractionMode", distractionMode }, + { "warningSeconds", warningSeconds }, { "mascotVisibility", mascotVisible }, { "wordsOfAffirmation", wordsOfAffirmation.ToString() }, { "insultingWords", insultingWords.ToString() } @@ -123,19 +131,20 @@ private void SaveSettingsButton_Click(object sender, RoutedEventArgs e) private void NavigateToOverviewButton_Click(object sender, RoutedEventArgs e) { - // Erstelle eine Instanz des OverviewScreen - var overviewScreen = new Overview(); - // Zeige den OverviewScreen - overviewScreen.Show(); + this.NavigationService.Navigate(new Overview()); + + } - // Schließe den aktuellen Screen - this.Close(); + private void ComboBox_PreviewTextInput(object sender, TextCompositionEventArgs e) + { + e.Handled = !int.TryParse(e.Text, out _); } - } + + } } \ No newline at end of file diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/Regulaer/01Overview.xaml b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/Regulaer/01Overview.xaml index f079877b6a56d28f2d66c58d1ab817e29028f710..664ad19dab9fd56268eb15743d52cab5af511adc 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/Regulaer/01Overview.xaml +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/Regulaer/01Overview.xaml @@ -1,12 +1,12 @@ -<Window x:Class="InnoLabProjektDektopApp.Overview" +<Page x:Class="InnoLabProjektDektopApp.Overview" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:local="clr-namespace:InnoLabProjektDektopApp" xmlns:header="clr-namespace:InnoLabProjektDektopApp.Screens.Templates" - mc:Ignorable="d" - Height="550" Width="900"> + mc:Ignorable="d"> + <ScrollViewer> <Grid> <StackPanel Margin="20,0,20,20"> @@ -15,6 +15,8 @@ Text="Selection and editing of your saved profiles" HorizontalAlignment="Left" Margin="0,10,0,10" /> + + <!-- Profiles and Add Button Section --> <Border Background="#333333" CornerRadius="10" Padding="15" > @@ -67,97 +69,99 @@ HorizontalAlignment="Left" /> Text="Settings for this session" /> - <Grid> - <Grid.ColumnDefinitions> - <ColumnDefinition Width="2*" /> - <ColumnDefinition Width="2*" /> - <ColumnDefinition Width="1*" /> - <ColumnDefinition Width="2*" /> - <ColumnDefinition Width="2*" /> - <ColumnDefinition Width="2*" /> - </Grid.ColumnDefinitions> - - <!-- Focus Period --> - <StackPanel Grid.Column="0" VerticalAlignment="Center"> - <TextBlock Text="Focus period" Foreground="White" FontSize="14" FontWeight="Bold" /> - <ComboBox x:Name="FocusPeriodComboBox" Width="100" HorizontalAlignment="Left"> - <ComboBoxItem Content="20 minutes" /> - <ComboBoxItem Content="30 minutes" /> - <ComboBoxItem Content="40 minutes" /> - <ComboBoxItem Content="50 minutes" IsSelected="True" /> - <ComboBoxItem Content="60 minutes" /> - <ComboBoxItem Content="90 minutes" /> - <ComboBoxItem Content="120 minutes" /> - <ComboBoxItem Content="150 minutes" /> - <ComboBoxItem Content="180 minutes" /> - </ComboBox> - </StackPanel> + <WrapPanel> + + <!-- Erste Reihe --> + <StackPanel Grid.Row="0" Grid.Column="0" Margin="10"> + <TextBlock Text="Focus period" FontSize="14" FontWeight="Bold" Foreground="White" /> + <StackPanel Orientation="Horizontal"> + <ComboBox x:Name="FocusPeriodComboBox" HorizontalAlignment="Left" Height="30" Width="70" FontSize="14" Padding="5" SelectionChanged="ComboBox_SelectionChanged" IsEditable="True" PreviewTextInput="ComboBox_PreviewTextInput"> + <ComboBoxItem Content="20" /> + <ComboBoxItem Content="30" /> + <ComboBoxItem Content="40" /> + <ComboBoxItem Content="50" IsSelected="True" /> + <ComboBoxItem Content="60" /> + <ComboBoxItem Content="90" /> + <ComboBoxItem Content="120" /> + <ComboBoxItem Content="150" /> + <ComboBoxItem Content="180" /> + </ComboBox> + <TextBlock Text="minutes" VerticalAlignment="Center" Margin="5,0,0,0" FontSize="14" Foreground="Gray" /> + </StackPanel> + </StackPanel> - <!-- Break Period --> - <StackPanel Grid.Column="1" VerticalAlignment="Center"> - <TextBlock Text="Break period" Foreground="White" FontSize="14" FontWeight="Bold" /> - <ComboBox x:Name="BreakPeriodComboBox" Width="100" HorizontalAlignment="Left"> - <ComboBoxItem Content="0 minutes" /> - <ComboBoxItem Content="3 minutes" /> - <ComboBoxItem Content="5 minutes" /> - <ComboBoxItem Content="10 minutes" IsSelected="True" /> - <ComboBoxItem Content="15 minutes" /> - <ComboBoxItem Content="20 minutes" /> - <ComboBoxItem Content="25 minutes" /> - <ComboBoxItem Content="30 minutes" /> - </ComboBox> - </StackPanel> + <StackPanel Grid.Row="0" Grid.Column="1" Margin="10"> + <TextBlock Text="Break period" FontSize="14" FontWeight="Bold" Foreground="White" /> + <StackPanel Orientation="Horizontal"> + <ComboBox x:Name="BreakPeriodComboBox" HorizontalAlignment="Left" Height="30" Width="70" FontSize="14" Padding="5" IsEditable="True" PreviewTextInput="ComboBox_PreviewTextInput"> + <ComboBoxItem Content="0" /> + <ComboBoxItem Content="3" /> + <ComboBoxItem Content="5" /> + <ComboBoxItem Content="10" IsSelected="True" /> + <ComboBoxItem Content="15" /> + <ComboBoxItem Content="20" /> + <ComboBoxItem Content="25" /> + <ComboBoxItem Content="30" /> + </ComboBox> + <TextBlock Text="minutes" VerticalAlignment="Center" Margin="5,0,0,0" FontSize="14" Foreground="Gray" /> + </StackPanel> + </StackPanel> - <!-- Cycles --> - <StackPanel Grid.Column="2" VerticalAlignment="Center"> - <TextBlock Text="Cycles" Foreground="White" FontSize="14" FontWeight="Bold" /> - <ComboBox x:Name="CyclesComboBox" Width="50" HorizontalAlignment="Left"> - <ComboBoxItem Content="1" /> - <ComboBoxItem Content="2" /> - <ComboBoxItem Content="3" /> - <ComboBoxItem Content="4" IsSelected="True" /> - <ComboBoxItem Content="5" /> - <ComboBoxItem Content="6" /> - </ComboBox> - </StackPanel> + <StackPanel Grid.Row="0" Grid.Column="2" Margin="10"> + <TextBlock Text="Cycles" FontSize="14" FontWeight="Bold" Foreground="White" /> + <ComboBox x:Name="CyclesComboBox" HorizontalAlignment="Left" Height="30" Width="50" FontSize="14" Padding="5" IsEditable="True" PreviewTextInput="ComboBox_PreviewTextInput"> + <ComboBoxItem Content="1" /> + <ComboBoxItem Content="2" /> + <ComboBoxItem Content="3" /> + <ComboBoxItem Content="4" IsSelected="True" /> + <ComboBoxItem Content="5" /> + <ComboBoxItem Content="6" /> + </ComboBox> + </StackPanel> - <!-- Distraction Mode --> - <StackPanel Grid.Column="3" VerticalAlignment="Center"> - <TextBlock Text="Distraction Mode" Foreground="White" FontSize="14" FontWeight="Bold" /> - <ComboBox x:Name="DistractionModeComboBox" Width="140" HorizontalAlignment="Left"> - <ComboBoxItem Content="Full-blocking mode" IsSelected="True" /> - <ComboBoxItem Content="Warning mode" /> - <ComboBoxItem Content="Mascot feedback only" /> - </ComboBox> - </StackPanel> + <!-- Zweite Reihe --> + <StackPanel Grid.Row="1" Grid.Column="0" Margin="10" x:Name="SecondsWarningPanel" > + <TextBlock Text="Seconds" Foreground="White" FontSize="14" FontWeight="Bold" /> + <ComboBox x:Name="SecondsWarningComboBox" Width="50" HorizontalAlignment="Left"> + <ComboBoxItem Content="3" /> + <ComboBoxItem Content="5" /> + <ComboBoxItem Content="10" IsSelected="True"/> + <ComboBoxItem Content="15" /> + <ComboBoxItem Content="30" /> + </ComboBox> + </StackPanel> - <!-- Mascot Visibility --> - <StackPanel Grid.Column="4" VerticalAlignment="Center"> - <TextBlock Text="Mascot visible" Foreground="White" FontSize="14" FontWeight="Bold" /> - <ComboBox x:Name="MascotVisibilityComboBox" Width="80" HorizontalAlignment="Left"> - <ComboBoxItem Content="Yes" IsSelected="True" /> - <ComboBoxItem Content="No" /> - </ComboBox> - </StackPanel> + <StackPanel Grid.Row="1" Grid.Column="1" VerticalAlignment="Center" Margin="10"> + <TextBlock Text="Distraction Mode" Foreground="White" FontSize="14" FontWeight="Bold" /> + <ComboBox x:Name="DistractionModeComboBox" Width="170" HorizontalAlignment="Left" SelectionChanged="DistractionMode_SelectionChanged"> + <ComboBoxItem Content="Full-blocking mode" IsSelected="True" /> + <ComboBoxItem Content="seconds warning mode" /> + <ComboBoxItem Content="Mascot feedback only" /> + </ComboBox> + </StackPanel> - <!-- Motivation Options --> - <StackPanel Grid.Column="5" VerticalAlignment="Center"> - <TextBlock Text="Motivation options" Foreground="White" FontSize="14" FontWeight="Bold" /> - <StackPanel Orientation="Horizontal" > - <CheckBox x:Name="WordsOfAffirmationCheckBox" IsChecked="True" VerticalAlignment="Center"/> - <TextBlock -Style="{StaticResource StandardText}" Foreground="White" -Text="words of affirmation" Margin="10,0,0,0"/> + <StackPanel Grid.Row="1" Grid.Column="2" VerticalAlignment="Center" Margin="10" Width="150"> + <TextBlock Text="Mascot visible" Foreground="White" FontSize="14" FontWeight="Bold" /> + <ComboBox x:Name="MascotVisibilityComboBox" Width="80" HorizontalAlignment="Left" SelectionChanged="MascotVisibilityComboBox_SelectionChanged"> + <ComboBoxItem Content="Yes" IsSelected="True" /> + <ComboBoxItem Content="No" /> + </ComboBox> </StackPanel> - <StackPanel Orientation="Horizontal" > - <CheckBox x:Name="InsultingWordsCheckBox" IsChecked="True" VerticalAlignment="Center"/> - <TextBlock -Style="{StaticResource StandardText}" Foreground="White" -Text="insulting words" Margin="10,0,0,0"/> + + <StackPanel Grid.Row="1" Grid.Column="3" VerticalAlignment="Stretch" Margin="10" x:Name="MotivationOptionsPanel" Visibility="Collapsed"> + <TextBlock Text="Motivation options" Foreground="White" FontSize="14" FontWeight="Bold" /> + <StackPanel Orientation="Horizontal"> + <CheckBox x:Name="WordsOfAffirmationCheckBox" IsChecked="True" VerticalAlignment="Center" /> + <TextBlock Style="{StaticResource StandardText}" Foreground="White" Text="words of affirmation" Margin="10,0,0,0" /> + </StackPanel> + <StackPanel Orientation="Horizontal"> + <CheckBox x:Name="InsultingWordsCheckBox" IsChecked="True" VerticalAlignment="Center" /> + <TextBlock Style="{StaticResource StandardText}" Foreground="White" Text="insulting words" Margin="10,0,0,0" /> + </StackPanel> </StackPanel> - </StackPanel> - </Grid> - </StackPanel> + </WrapPanel> + + </StackPanel> </Border> <TextBlock Text="Optional: What do you want to focus on during this session? (Premium)" Foreground="Gray" FontSize="14" FontWeight="Bold" Margin="0,20,0,0"/> @@ -194,4 +198,5 @@ TextChanged="FocusTopicInputBox_TextChanged" /> </StackPanel> </Grid> -</Window> + </ScrollViewer> +</Page> diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/Regulaer/01Overview.xaml.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/Regulaer/01Overview.xaml.cs index a3d93ab2c30a6982b573edf0b7cc9058ab8205d7..c50fa8c66fd6c6b14a48210d571adb9469d93f76 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/Regulaer/01Overview.xaml.cs +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/Regulaer/01Overview.xaml.cs @@ -3,13 +3,14 @@ using System.IO; using System.Text.Json; using System.Windows; using System.Windows.Controls; +using System.Windows.Input; namespace InnoLabProjektDektopApp { /// <summary> /// Interaction logic for Overview.xaml /// </summary> - public partial class Overview : Window + public partial class Overview : Page { // Aktuelles Profil, für das Einstellungen geladen werden sollen private string profile = "profile1"; @@ -17,10 +18,11 @@ namespace InnoLabProjektDektopApp // Pfad zur JSON-Datei, in der die Einstellungen gespeichert sind private string SettingsFilePath; + private static Session tmpSession = null; + public Overview() { InitializeComponent(); - GlobalSettings.setDefaults(this); // Definieren des Pfads zur JSON-Datei this.SettingsFilePath = System.IO.Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "settings.json"); @@ -34,6 +36,7 @@ namespace InnoLabProjektDektopApp { try { + // JSON-Datei lesen // JSON-Datei lesen if (File.Exists(SettingsFilePath)) { @@ -48,21 +51,21 @@ namespace InnoLabProjektDektopApp if (profileSettings.TryGetProperty("focusPeriod", out var focusPeriodElement)) { string focusPeriod = focusPeriodElement.GetString(); - FocusPeriodComboBox.SelectedItem = FindComboBoxItem(FocusPeriodComboBox, focusPeriod); + FocusPeriodComboBox.Text = focusPeriod; } // Break Period if (profileSettings.TryGetProperty("breakPeriod", out var breakPeriodElement)) { string breakPeriod = breakPeriodElement.GetString(); - BreakPeriodComboBox.SelectedItem = FindComboBoxItem(BreakPeriodComboBox, breakPeriod); + BreakPeriodComboBox.Text = breakPeriod; } // Cycles if (profileSettings.TryGetProperty("cycles", out var cyclesElement)) { string cycles = cyclesElement.GetString(); - CyclesComboBox.SelectedItem = FindComboBoxItem(CyclesComboBox, cycles); + CyclesComboBox.Text = cycles; } // Distraction Mode @@ -70,6 +73,39 @@ namespace InnoLabProjektDektopApp { string distractionMode = distractionModeElement.GetString(); DistractionModeComboBox.SelectedItem = FindComboBoxItem(DistractionModeComboBox, distractionMode); + + // Zusätzliche ComboBox für Sekunden aktivieren, wenn Modus "seconds warning mode" ist + if (distractionMode == "seconds warning mode") + { + SecondsWarningComboBox.Visibility = Visibility.Visible; + + + } + else + { + SecondsWarningComboBox.Visibility = Visibility.Collapsed; + } + } + + //Get information about seconds + if (profileSettings.TryGetProperty("warningSeconds", out var warningSecondsElement)) + { + string warningSeconds = warningSecondsElement.GetString(); + + // Überprüfen, ob der Wert existiert, andernfalls auf Standard setzen + var item = SecondsWarningComboBox.Items + .OfType<ComboBoxItem>() + .FirstOrDefault(i => i.Content.ToString() == warningSeconds); + + if (item != null) + { + SecondsWarningComboBox.SelectedItem = item; + } + else + { + // Setze einen Standardwert, falls der gespeicherte Wert ungültig ist + SecondsWarningComboBox.SelectedItem = "10"; // Default: "10" + } } // Mascot Visibility @@ -77,8 +113,19 @@ namespace InnoLabProjektDektopApp { string mascotVisibility = mascotVisibilityElement.GetString(); MascotVisibilityComboBox.SelectedItem = FindComboBoxItem(MascotVisibilityComboBox, mascotVisibility); + + // Überprüfen, ob es "No" ist + if (mascotVisibility == "No") + { + MotivationOptionsPanel.Visibility = Visibility.Collapsed; + } + else + { + MotivationOptionsPanel.Visibility = Visibility.Visible; + } } + // Checkbox: Words of Affirmation if (profileSettings.TryGetProperty("wordsOfAffirmation", out var wordsOfAffirmationElement)) { @@ -126,7 +173,8 @@ namespace InnoLabProjektDektopApp // Ereignis-Handler für den "Edit Profile"-Button private void EditProfile_Click(object sender, RoutedEventArgs e) { - MessageBox.Show("Edit Profile clicked!"); + var distractions = new Distractions(); + this.NavigationService.Navigate(distractions); } // Ereignis-Handler für den "Add Profile"-Button @@ -172,10 +220,66 @@ namespace InnoLabProjektDektopApp MessageBoxButton.OK, MessageBoxImage.Information); - var sessionScreen = new Session(focusPeriod, breakPeriod, cycles, distractionMode, mascotVisible, wordsOfAffirmation, insultingWords); - sessionScreen.Show(); - this.Close(); + tmpSession = new Session(focusPeriod, breakPeriod, cycles, distractionMode, mascotVisible, wordsOfAffirmation, insultingWords); + this.NavigationService.Navigate(tmpSession); + } + + public static Session getSessionInstance() { + return tmpSession; + } + + private void ComboBox_PreviewTextInput(object sender, TextCompositionEventArgs e) + { + e.Handled = !int.TryParse(e.Text, out _); + } + + private void ComboBox_SelectionChanged(object sender, SelectionChangedEventArgs e) + { + + } + + private void DistractionMode_SelectionChanged(object sender, SelectionChangedEventArgs e) + { + if (DistractionModeComboBox.SelectedItem != null && + DistractionModeComboBox.SelectedItem.ToString().Contains("seconds warning mode")) + { + SecondsWarningPanel.Visibility = Visibility.Visible; + + // Setze einen Standardwert, falls keiner ausgewählt ist + if (SecondsWarningComboBox.SelectedItem == null) + { + SecondsWarningComboBox.SelectedItem = "10"; // Default: "10" + } + } + else + { + SecondsWarningPanel.Visibility = Visibility.Collapsed; + } + } + + private void MascotVisibilityComboBox_SelectionChanged(object sender, SelectionChangedEventArgs e) + { + if (MascotVisibilityComboBox.SelectedItem is ComboBoxItem selectedItem) + { + string selectedValue = selectedItem.Content.ToString(); + if (MotivationOptionsPanel == null) return; + + + // MotivationOptionsPanel wird sichtbar oder verborgen + if (selectedValue == "No") + { + MotivationOptionsPanel.Visibility = Visibility.Collapsed; + WordsOfAffirmationCheckBox.IsChecked = false; + InsultingWordsCheckBox.IsChecked = false; + } + else + { + MotivationOptionsPanel.Visibility = Visibility.Visible; + } + } } + + } } diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/Regulaer/02Session.xaml b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/Regulaer/02Session.xaml index 016543d483cb02120a069b8e97c0377953cdee93..831dc4fb9be5878699e2b14aedc25c2c989a9fcb 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/Regulaer/02Session.xaml +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/Regulaer/02Session.xaml @@ -1,4 +1,4 @@ -<Window x:Class="InnoLabProjektDektopApp.Session" +<Page x:Class="InnoLabProjektDektopApp.Session" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" @@ -6,10 +6,10 @@ xmlns:local="clr-namespace:InnoLabProjektDektopApp" xmlns:header="clr-namespace:InnoLabProjektDektopApp.Screens.Templates" mc:Ignorable="d" - Closing="Window_Closing" + ContextMenuClosing="Page_ContextMenuClosing" Height="550" Width="900"> <Grid> - <header:HeaderTemplate VerticalAlignment="Center" Height="534"/> + <!-- <header:HeaderTemplate VerticalAlignment="Center" Height="534" Loaded="HeaderTemplate_Loaded"/> --> <Button Margin="0,100,150,10" Width="40" Height="40" HorizontalAlignment="Right" VerticalAlignment="Top" Background="Transparent" BorderBrush="Transparent" Click="discardSession_Click"> <Grid > <Line X1="5" Y1="5" X2="35" Y2="35" Stroke="Gray" StrokeThickness="5" /> @@ -23,4 +23,4 @@ </StackPanel> <Button Content="Pause" Name="PlayPauseButton" Style="{StaticResource PlayPauseButton}" HorizontalAlignment="Center" Margin="0,320,0,0" VerticalAlignment="Top" RenderTransformOrigin="0.5,0.5" Click="PlayPause_Click"></Button> </Grid> -</Window> \ No newline at end of file +</Page> \ No newline at end of file diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/Regulaer/02Session.xaml.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/Regulaer/02Session.xaml.cs index b66aed8c4c8622674a64d0fb173f56c857288ec4..2b5bc38cf166e4ff2c6fb948dd316090d18052ac 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/Regulaer/02Session.xaml.cs +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/Regulaer/02Session.xaml.cs @@ -1,10 +1,6 @@ using InnoLabProjektDektopApp.Screens.Regulaer; -using InnoLabProjektDektopApp.Services; using System.Diagnostics; -using System.IO; using System.Text; -using System.Text.Json; -using System.Threading; using System.Windows; using System.Windows.Controls; using System.Windows.Data; @@ -21,7 +17,7 @@ namespace InnoLabProjektDektopApp /// <summary> /// Interaction logic for MainWindow.xaml /// </summary> - public partial class Session : Window + public partial class Session : Page { private int focusPeriod; private int breakPeriod; @@ -36,11 +32,9 @@ namespace InnoLabProjektDektopApp private Mascott mascott; - // private EmotionManager emotionManager; - private Timer timer; private int maxTime; - private static int seconds = 0; + private int seconds; private int step = -1; //Indicates whether the timer is running (-1) or paused (0) private int sessions; private int currentSession = 1; //Tracks which session is currently running @@ -61,10 +55,9 @@ namespace InnoLabProjektDektopApp this.mascotVisible = mascotVisible; this.wordsOfAffirmation = wordsOfAffirmation; this.insultingWords = insultingWords; - GlobalSettings.setDefaults(this); this.maxTime = focusPeriod * 60; //todo: multiply with 60 later - seconds = this.maxTime; + this.seconds = this.maxTime; this.sessions = cycles; @@ -118,8 +111,6 @@ namespace InnoLabProjektDektopApp } - - public void startTimer() { if (seconds <= 0) return; // Prevent starting if time is zero @@ -140,13 +131,6 @@ namespace InnoLabProjektDektopApp updateTexts(); } - public static DateTime endTime() { - DateTime currentTime = DateTime.Now; - currentTime.AddSeconds(seconds); - return currentTime; - } - - private void updateTexts() { @@ -279,12 +263,9 @@ namespace InnoLabProjektDektopApp "Kein Grund ausgewählt"; MessageBox.Show($"Abbruchgrund: {selectedReason}", "Sitzung beendet", MessageBoxButton.OK, MessageBoxImage.Information); + reasonWindow.Close(); + this.NavigationService.Navigate(new Overview()); - // Zum OverviewScreen navigieren - var overviewScreen = new Overview(); - overviewScreen.Show(); - reasonWindow.Close(); // Fenster schließen - this.Close(); // Aktuelles Fenster schließen }; // Radiobuttons und Button zum StackPanel hinzufügen @@ -297,34 +278,36 @@ namespace InnoLabProjektDektopApp reasonWindow.Content = stackPanel; // Fenster anzeigen - reasonWindow.ShowDialog(); + reasonWindow.Show(); } - private void Window_Closing(object sender, System.ComponentModel.CancelEventArgs e) + private void Page_ContextMenuClosing(object sender, ContextMenuEventArgs e) { mascott.Close(); } - } + public DateTime timeLeft() + { + return DateTime.Now.AddSeconds(maxTime - seconds); + } + } +} - public static class GradientGenerator +public static class GradientGenerator +{ + public static Brush generateTwoColorBrush(Color color1, Color color2, double ratio) { - public static Brush generateTwoColorBrush(Color color1, Color color2, double ratio) - { - GradientStopCollection collection = new GradientStopCollection(); + GradientStopCollection collection = new GradientStopCollection(); - collection.Add(new GradientStop(color1, 0)); - collection.Add(new GradientStop(color1, ratio)); - collection.Add(new GradientStop(color2, ratio)); - collection.Add(new GradientStop(color2, 1.0)); + collection.Add(new GradientStop(color1, 0)); + collection.Add(new GradientStop(color1, ratio)); + collection.Add(new GradientStop(color2, ratio)); + collection.Add(new GradientStop(color2, 1.0)); - LinearGradientBrush brush = new LinearGradientBrush(collection); - brush.StartPoint = new Point(0, 0); - brush.EndPoint = new Point(1, 0); + LinearGradientBrush brush = new LinearGradientBrush(collection); + brush.StartPoint = new Point(0, 0); + brush.EndPoint = new Point(1, 0); - return brush; - } + return brush; } - - -} \ No newline at end of file +} diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/Regulaer/03End.xaml b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/Regulaer/03End.xaml index 161057bd8cfe821669ca4d3ca69f8af91b35f764..272dba2997fe60bdc7e6d5f3de0b17df0e3dd105 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/Regulaer/03End.xaml +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/Regulaer/03End.xaml @@ -1,4 +1,4 @@ -<Window x:Class="InnoLabProjektDektopApp.End" +<NavigationWindow x:Class="InnoLabProjektDektopApp.End" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" @@ -6,14 +6,6 @@ xmlns:local="clr-namespace:InnoLabProjektDektopApp" xmlns:header="clr-namespace:InnoLabProjektDektopApp.Screens.Templates" mc:Ignorable="d" - Height="550" Width="900"> - <Grid> - <header:HeaderTemplate VerticalAlignment="Top"/> - - <Button Content="Subscription" Style="{StaticResource TopMenuButon}" HorizontalAlignment="Right" Margin="0,4,100,0" VerticalAlignment="Top" Height="26" Width="80" Click="Option2_Click"/> - <Button Content="Contract" Style="{StaticResource TopMenuButon}" HorizontalAlignment="Right" Margin="0,4,20,0" VerticalAlignment="Top" Height="26" Width="80" Click="Option3_Click"/> + Height="550" Width="900" ShowsNavigationUI="False"> - <!-- DELETE --> - <Label Content="End Page" HorizontalAlignment="Center" Margin="0,234,0,0" VerticalAlignment="Top" Height="108" Width="439" FontSize="48" HorizontalContentAlignment="Center" VerticalContentAlignment="Center"/> - </Grid> -</Window> +</NavigationWindow> diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/Regulaer/03End.xaml.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/Regulaer/03End.xaml.cs index 31b03826d76c2e2b3a1d325ab97f9f2585e3eadf..0a6a64229b8caca0ea5911636e9cf007b38c2363 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/Regulaer/03End.xaml.cs +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/Regulaer/03End.xaml.cs @@ -14,24 +14,15 @@ namespace InnoLabProjektDektopApp /// <summary> /// Interaction logic for MainWindow.xaml /// </summary> - public partial class End : Window + public partial class End : NavigationWindow { public End() { InitializeComponent(); GlobalSettings.setDefaults(this); + + this.Navigate(new Settings()); } - private void Option1_Click(object sender, RoutedEventArgs e) - { - //this.Content = new AnotherWindow().Content; - } - private void Option2_Click(object sender, RoutedEventArgs e) - { - //this.Content = new AnotherWindow().Content; - } - private void Option3_Click(object sender, RoutedEventArgs e) - { - //this.Content = new AnotherWindow().Content; - } + } } \ No newline at end of file diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/Regulaer/04Statistics.xaml b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/Regulaer/04Statistics.xaml index 7d68674fc539ffdbd650bd1f4bb3c9df1ce1a512..fc31cd547bda997e680ae006e222021d6efe36d4 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/Regulaer/04Statistics.xaml +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/Regulaer/04Statistics.xaml @@ -1,4 +1,4 @@ -<Window x:Class="InnoLabProjektDektopApp.Statistics" +<Page x:Class="InnoLabProjektDektopApp.Statistics" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" @@ -7,13 +7,8 @@ xmlns:header="clr-namespace:InnoLabProjektDektopApp.Screens.Templates" mc:Ignorable="d" Height="550" Width="900"> - <Grid> - <header:HeaderTemplate VerticalAlignment="top"/> - - <Button Content="Subscription" Style="{StaticResource TopMenuButon}" HorizontalAlignment="Right" Margin="0,4,100,0" VerticalAlignment="Top" Height="26" Width="80" Click="Option2_Click"/> - <Button Content="Contract" Style="{StaticResource TopMenuButon}" HorizontalAlignment="Right" Margin="0,4,20,0" VerticalAlignment="Top" Height="26" Width="80" Click="Option3_Click"/> - - <!-- DELETE --> - <Label Content="Statistics Page" HorizontalAlignment="Center" Margin="0,234,0,0" VerticalAlignment="Top" Height="108" Width="439" FontSize="48" HorizontalContentAlignment="Center" VerticalContentAlignment="Center"/> + <Grid Background="Red"> + <TextBlock Text="Statistics Page" HorizontalAlignment="Center" VerticalAlignment="Center" FontSize="24" /> + <Button Content="Go to Overview" HorizontalAlignment="Center" Click="NavigateToOverview_Click" /> </Grid> -</Window> +</Page> diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/Regulaer/04Statistics.xaml.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/Regulaer/04Statistics.xaml.cs index 94c9dcef6c23d2e47d69061a90b53fa9ad050848..021aa77c2b080e4de714b8eec12d11718ea9c8bd 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/Regulaer/04Statistics.xaml.cs +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/Regulaer/04Statistics.xaml.cs @@ -14,24 +14,16 @@ namespace InnoLabProjektDektopApp /// <summary> /// Interaction logic for MainWindow.xaml /// </summary> - public partial class Statistics : Window + public partial class Statistics : Page { public Statistics() { InitializeComponent(); - GlobalSettings.setDefaults(this); } - private void Option1_Click(object sender, RoutedEventArgs e) + private void NavigateToOverview_Click(object sender, RoutedEventArgs e) { - //this.Content = new AnotherWindow().Content; - } - private void Option2_Click(object sender, RoutedEventArgs e) - { - //this.Content = new AnotherWindow().Content; - } - private void Option3_Click(object sender, RoutedEventArgs e) - { - //this.Content = new AnotherWindow().Content; + // Navigiere zur Overview-Seite + this.NavigationService.Navigate(new Startscreen()); } } } \ No newline at end of file diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/Regulaer/Mascott.xaml.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/Regulaer/Mascott.xaml.cs index 4c0d5030ac3614cdb76a2de9b8c00afaf0bd7ca4..832fa8b79570fc9dc16815b79d44ef736a0658eb 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/Regulaer/Mascott.xaml.cs +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/Regulaer/Mascott.xaml.cs @@ -13,6 +13,7 @@ using System.Windows; using System.Windows.Controls; using System.Windows.Data; using System.Windows.Documents; +using System.Windows.Forms.VisualStyles; using System.Windows.Input; using System.Windows.Media; using System.Windows.Media.Animation; @@ -28,9 +29,12 @@ namespace InnoLabProjektDektopApp.Screens.Regulaer { private Timer frameTimer; private Timer animationTimer; + private Timer emotionTimer; private int frameCounter = 0; - private int animationCounter = 7; + private int animationStage = 1; private string framePath = ""; + private int odDistractionstage = 4; + private string animationDirection = "Up"; ProcessMonitor processMonitor; @@ -47,21 +51,34 @@ namespace InnoLabProjektDektopApp.Screens.Regulaer } InitializeComponent(); - processMonitor = new ProcessMonitor(); + processMonitor = App.GetProcessMonitor(); this.Left = -30; //SystemParameters.PrimaryScreenWidth - this.Width; this.Top = SystemParameters.PrimaryScreenHeight - this.Height - 30; - processMonitor.StartMonitoring(); animationTimer = new Timer(animationTick, null, 0, 4000); } + private void animationTick(object state) { Application.Current.Dispatcher.Invoke(() => { - Counterxd.Text = "" + animationCounter + " (" + processMonitor.CalculateCurrentDistractionStage(Session.endTime()) + ")"; + if (!processMonitor.isMonitoring) processMonitor.StartMonitoring(); + + DateTime timeLeft = Overview.getSessionInstance().timeLeft(); + int distractionStage = processMonitor.CalculateCurrentDistractionStage(timeLeft); + + if (distractionStage == odDistractionstage) { + Counterxd.Text = "x: " + distractionStage.ToString(); + return; + } + + animationDirection = distractionStage < odDistractionstage ? "Down" : "Up"; + animationStage = distractionStage; + odDistractionstage = distractionStage; + + Counterxd.Text = "o: " + distractionStage.ToString(); changeEmotionState(); - Console.WriteLine("test xD"); }); } @@ -74,17 +91,14 @@ namespace InnoLabProjektDektopApp.Screens.Regulaer { Application.Current.Dispatcher.Invoke(() => - { - string tmpPath = "Up"; //animationdirection > 0 ? "Down" : "Up"; - framePath = $"pack://application:,,,/Assets/MascottAnimation/{tmpPath}/{animationCounter}/frame{frameCounter}.png"; + { + framePath = $"pack://application:,,,/Assets/MascottAnimation/{animationDirection}/{animationStage}/frame{frameCounter}.png"; bool sucessfulySet = setFrame(); if (!sucessfulySet) { frameTimer.Dispose(); frameCounter = 0; - animationCounter--; - if (animationCounter < 1) animationCounter = 7; } frameCounter++; @@ -106,8 +120,7 @@ namespace InnoLabProjektDektopApp.Screens.Regulaer } private bool mascottVisible() - { - + { String profile = "profile1"; String SettingsFilePath = System.IO.Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "settings.json"); diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/Templates/HeaderTemplate.xaml b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/Templates/HeaderTemplate.xaml index edf33b279070a7a7e2e96f85ca6c30ef34dcf45f..4d4b387fb6fac9ec645e44518ab77b13540288d4 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/Templates/HeaderTemplate.xaml +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/Templates/HeaderTemplate.xaml @@ -7,13 +7,26 @@ mc:Ignorable="d" d:DesignHeight="550" d:DesignWidth="900"> <Grid> - <ToggleButton x:Name="BurgerMenuButton" Content="☰" Width="50" Height="50" Click="BurgerMenuButton_Click" Margin="10,20,0,0" VerticalAlignment="Top" HorizontalAlignment="Left"/> - <StackPanel x:Name="MenuPanel" Visibility="Collapsed" VerticalAlignment="Top" HorizontalAlignment="Left" Margin="10,80,0,0" > - <Button Content="Overview" Click="OverviewButton_Click"/> - <Button Content="Session" Click="SessionButton_Click"/> - <Button Content="End" Click="EndButton_Click"/> - <Button Content="Statistics" Click="StatisticsButton_Click"/> + <ToggleButton x:Name="BurgerMenuButton" Content="☰" Width="50" Height="50" Click="BurgerMenuButton_Click" Margin="10,20,0,0" VerticalAlignment="Top" HorizontalAlignment="Left" Style="{StaticResource BurgerMenuButtonStyle}" /> + <StackPanel x:Name="MenuPanel" + Visibility="Collapsed" + VerticalAlignment="Top" + HorizontalAlignment="Left" + Margin="10,80,0,0"> + <Button Content="Overview" + Style="{StaticResource MenuButtonStyle}" + Click="OverviewButton_Click"/> + <Button Content="Session" + Style="{StaticResource MenuButtonStyle}" + Click="SessionButton_Click"/> + <Button Content="End" + Style="{StaticResource MenuButtonStyle}" + Click="EndButton_Click"/> + <Button Content="Statistics" + Style="{StaticResource MenuButtonStyle}" + Click="StatisticsButton_Click"/> </StackPanel> + </Grid> </UserControl> \ No newline at end of file diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/Templates/HeaderTemplate.xaml.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/Templates/HeaderTemplate.xaml.cs index 1ef7d93c26a2549cc38aedf11d3a1d3a6c99ebf6..eef54162fd07299544bf5b51322676ad9e4840a5 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/Templates/HeaderTemplate.xaml.cs +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/Templates/HeaderTemplate.xaml.cs @@ -29,7 +29,7 @@ namespace InnoLabProjektDektopApp.Screens.Templates private void BurgerMenuButton_Click(object sender, RoutedEventArgs e) { // Toggle the visibility of the menu panel - MenuPanel.Visibility = MenuPanel.Visibility == Visibility.Visible ? Visibility.Collapsed : Visibility.Visible; + //MenuPanel.Visibility = MenuPanel.Visibility == Visibility.Visible ? Visibility.Collapsed : Visibility.Visible; } private void OverviewButton_Click(object sender, RoutedEventArgs e) diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Services/ProcessMonitor.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Services/ProcessMonitor.cs index 1f63cbe7fe757b4d3be14b487eb213fe8b0390ea..23cc27e6b5f5f23f05bd09c2ca83103647bb02cd 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Services/ProcessMonitor.cs +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Services/ProcessMonitor.cs @@ -13,23 +13,38 @@ namespace InnoLabProjektDektopApp.Services public DateTime EndTime { get; set; } = endTime; } + public class BreakInfo(DateTime startTime, DateTime endTime) + { + public DateTime StartTime { get; set; } = startTime; + public DateTime EndTime { get; set; } = endTime; + } + class ProcessMonitor { - private readonly Dictionary<string, DateTime> processStartTimes = new Dictionary<string, DateTime>(); - private static List<string> blockedProcesses = new List<string>(); - private bool isMonitoring = false; - private readonly List<ProcessInfo> processInfoList = new List<ProcessInfo>(); + private static List<string> blockedProcesses = []; + + private readonly Dictionary<string, DateTime> processStartTimes = []; + private readonly List<ProcessInfo> processInfoList = []; + public bool isMonitoring = false; private DateTime startTime; + private readonly List<BreakInfo> breakInfoList = []; + public bool IsBreak { get; private set;} + private DateTime breakStartTime; + public ProcessMonitor() { + IsBreak = false; blockedProcesses = LoadBlockedProcesses(); - } public async void StartMonitoring() { + if (isMonitoring || IsBreak) + { + return; + } startTime = DateTime.Now; Debug.WriteLine("Started Process Monitoring"); var query = new WqlEventQuery("__InstanceCreationEvent", new TimeSpan(0, 0, 1), @@ -37,25 +52,99 @@ namespace InnoLabProjektDektopApp.Services var watcher = new ManagementEventWatcher { Query = query }; isMonitoring = true; + + // check if any distracting processes are already running + var processes = GetRunningProcessList(); + foreach (var process in processes) + { + if (IsProcessOnBlockedList(process.Key)) + { + var result = MessageBox.Show($"Are you sure you want to get distracted by {process.Key}?", "Distracting Process Detected", + MessageBoxButton.YesNo, + MessageBoxImage.Question, + MessageBoxResult.No, + MessageBoxOptions.DefaultDesktopOnly + ); + if (result == MessageBoxResult.No) + { + KillProcessesByName(process.Key); + } + else + { + TrackProcess(process.Key, DateTime.Now); + } + } + } + await Task.Run(() => { while (isMonitoring) { // this wait is here to prevent another event from being triggered before the previous one is handled - var e = watcher.WaitForNextEvent(); - Task.Run(() => HandleNewProcess(e)); - Task.Delay(100).Wait(); + var task = Task.Run(() => watcher.WaitForNextEvent()); + if (Task.WaitAny(task, Task.Delay(100)) == 0) + { + if (!isMonitoring) break; + Task.Run(() => HandleNewProcess(task.Result)); + } } }); } public void StopMonitoring() { + if (!isMonitoring) + { + return; + } Debug.WriteLine("Stopping Process Monitoring"); CalculateCurrentDistractionStage(DateTime.Now); isMonitoring = false; } + public void StartBreak() + { + if (IsBreak) + { + return; + } + IsBreak = true; + breakStartTime = DateTime.Now; + StopMonitoring(); + } + + public void EndBreak() + { + if (!IsBreak) + { + return; + } + breakInfoList.Add(new BreakInfo(breakStartTime, DateTime.Now)); + IsBreak = false; + StartMonitoring(); + } + + public void FinishSession() + { + StopMonitoring(); + EndBreak(); + + // save the processInfoList and breakInfoList to a file + var processInfoListFilePath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "Assets\\processInfoList.json"); + var processInfoListJson = JsonConvert.SerializeObject(processInfoList); + File.WriteAllText(processInfoListFilePath, processInfoListJson); + + var breakInfoListFilePath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "Assets\\breakInfoList.json"); + var breakInfoListJson = JsonConvert.SerializeObject(breakInfoList); + File.WriteAllText(breakInfoListFilePath, breakInfoListJson); + + // reset the processInfoList and breakInfoList + processInfoList.Clear(); + breakInfoList.Clear(); + processStartTimes.Clear(); + + } + public int CalculateCurrentDistractionStage(DateTime endTime) { @@ -68,9 +157,21 @@ namespace InnoLabProjektDektopApp.Services double distractedMinutes = totalDistractionTime.TotalMinutes + dummyTimeInMinutes; double distractionFraction = (distractedMinutes / totalMinutes); int stage = (int)Math.Ceiling(distractionFraction * 7); + Debug.WriteLine($"Distraction stage: {stage}"); return stage; } + + public static List<(string Name, string MainWindowTitle)> GetWindowedProcesses() + { + var processes = Process.GetProcesses() + .Where(p => !string.IsNullOrWhiteSpace(p.MainWindowTitle)) + .Where(p => p.ProcessName.ToLower() != "coflow") + .Select(p => (p.ProcessName, p.MainWindowTitle)) + .ToList(); + return processes; + } + private void HandleNewProcess(ManagementBaseObject e) { var processName = Path.GetFileNameWithoutExtension((string)((ManagementBaseObject)e["TargetInstance"])["Name"]); @@ -220,19 +321,59 @@ namespace InnoLabProjektDektopApp.Services var mergedIntervals = new List<(DateTime Start, DateTime End)> { intervals[0] }; + // Iterate through the intervals, starting from the second one foreach (var interval in intervals.Skip(1)) { var last = mergedIntervals.Last(); + // If the current interval overlaps with the last merged interval, merge them if (interval.StartTime <= last.End) { mergedIntervals[^1] = (last.Start, new DateTime(Math.Max(last.End.Ticks, interval.EndTime.Ticks))); } else { + // Otherwise, add the current interval as a new merged interval mergedIntervals.Add(interval); } } + // Remove overlaps with breaks + foreach (var breakInfo in breakInfoList) + { + mergedIntervals = mergedIntervals.SelectMany(interval => + { + // If the interval ends before the break starts or starts after the break ends, keep the interval as is + if (interval.End <= breakInfo.StartTime || interval.Start >= breakInfo.EndTime) + { + return [interval]; + } + // If the interval starts before the break and ends after the break, split the interval into two + else if (interval.Start < breakInfo.StartTime && interval.End > breakInfo.EndTime) + { + return + [ + (interval.Start, breakInfo.StartTime), + (breakInfo.EndTime, interval.End) + ]; + } + // If the interval starts before the break and ends during the break, adjust the end time to the start of the break + else if (interval.Start < breakInfo.StartTime) + { + return new List<(DateTime Start, DateTime End)> { (interval.Start, breakInfo.StartTime) }; + } + // If the interval starts during the break and ends after the break, adjust the start time to the end of the break + else if (interval.End > breakInfo.EndTime) + { + return [(breakInfo.EndTime, interval.End)]; + } + // If the interval is completely within the break, remove the interval + else + { + return []; + } + }).ToList(); + } + return mergedIntervals.Aggregate(TimeSpan.Zero, (sum, interval) => sum + (interval.End - interval.Start)); } diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Styles/Styles.xaml b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Styles/Styles.xaml index f89aa15175e133e760d41380ea4e01ecb20bc118..e1b592fd77f5a50af403ce658ef93614f79a7fb8 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Styles/Styles.xaml +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Styles/Styles.xaml @@ -1,7 +1,31 @@ <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"> + + <!-- Farben definieren --> + <Color x:Key="HIGHLIGHT_PRIMARY_COLOR">#ADD8E6</Color> + <!-- Ersetze durch den exakten Farbwert --> + <Color x:Key="HIGHLIGHT_SECONDARY_COLOR">#1B2736</Color> + <!-- Ersetze durch den exakten Farbwert --> + <Color x:Key="BACKGROUND_PRIMARY_COLOR">#272727</Color> + <!-- Ersetze durch den exakten Farbwert --> + <Color x:Key="BACKGROUND_SECONDARY_COLOR">#333436</Color> + <!-- Ersetze durch den exakten Farbwert --> + <Color x:Key="TEXT_PRIMARY_COLOR">#EEEEEE</Color> + <!-- Ersetze durch den exakten Farbwert --> + <Color x:Key="TEXT_SECONDARY_COLOR">#9E9E9E</Color> + <!-- Ersetze durch den exakten Farbwert --> + + <!-- Optional: Farben als Brushes bereitstellen --> + <SolidColorBrush x:Key="HIGHLIGHT_PRIMARY_BRUSH" Color="{StaticResource HIGHLIGHT_PRIMARY_COLOR}" /> + <SolidColorBrush x:Key="HIGHLIGHT_SECONDARY_BRUSH" Color="{StaticResource HIGHLIGHT_SECONDARY_COLOR}" /> + <SolidColorBrush x:Key="BACKGROUND_PRIMARY_BRUSH" Color="{StaticResource BACKGROUND_PRIMARY_COLOR}" /> + <SolidColorBrush x:Key="BACKGROUND_SECONDARY_BRUSH" Color="{StaticResource BACKGROUND_SECONDARY_COLOR}" /> + <SolidColorBrush x:Key="TEXT_PRIMARY_BRUSH" Color="{StaticResource TEXT_PRIMARY_COLOR}" /> + <SolidColorBrush x:Key="TEXT_SECONDARY_BRUSH" Color="{StaticResource TEXT_SECONDARY_COLOR}" /> + <Style TargetType="ToolTip"> + <Setter Property="Background" Value="LightYellow" /> <Setter Property="Foreground" Value="Black" /> <Setter Property="Template"> @@ -23,9 +47,11 @@ <Style TargetType="TextBlock"> <Setter Property="ToolTipService.InitialShowDelay" Value="0" /> + <Setter Property="FontFamily" Value="Segoe UI"/> </Style> <Style TargetType="TextBlock" x:Key="Header1"> + <Setter Property="FontFamily" Value="Segoe UI"/> <Setter Property="FontSize" Value="24"/> <Setter Property="FontWeight" Value="Bold"/> <Setter Property="Foreground" Value="DarkBlue"/> @@ -34,6 +60,7 @@ <!-- Style für Header 2 --> <Style TargetType="TextBlock" x:Key="Header2"> + <Setter Property="FontFamily" Value="Segoe UI"/> <Setter Property="FontSize" Value="20"/> <Setter Property="FontWeight" Value="SemiBold"/> <Setter Property="Foreground" Value="DarkGray"/> @@ -43,6 +70,7 @@ <!-- Style für Standardtext --> <Style TargetType="TextBlock" x:Key="StandardText"> + <Setter Property="FontFamily" Value="Segoe UI"/> <Setter Property="FontSize" Value="14"/> <Setter Property="FontWeight" Value="Normal"/> <Setter Property="Foreground" Value="Black"/> @@ -105,4 +133,62 @@ </Style> + <Style TargetType="ToggleButton" x:Key="BurgerMenuButtonStyle"> + <Setter Property="Width" Value="50"/> + <Setter Property="Height" Value="50"/> + <Setter Property="Margin" Value="10,20,0,0"/> + <Setter Property="VerticalAlignment" Value="Top"/> + <Setter Property="HorizontalAlignment" Value="Left"/> + <Setter Property="Background" Value="#FF4CAF50"/> + <!-- Green background --> + <Setter Property="Foreground" Value="White"/> + <!-- White text --> + <Setter Property="FontSize" Value="24"/> + <Setter Property="BorderBrush" Value="Transparent"/> + <Setter Property="BorderThickness" Value="0"/> + <Setter Property="Cursor" Value="Hand"/> + <Setter Property="Template"> + <Setter.Value> + <ControlTemplate TargetType="ToggleButton"> + <Border Background="{TemplateBinding Background}" + BorderBrush="{TemplateBinding BorderBrush}" + BorderThickness="{TemplateBinding BorderThickness}" + CornerRadius="5"> + <ContentPresenter HorizontalAlignment="Center" VerticalAlignment="Center"/> + </Border> + </ControlTemplate> + </Setter.Value> + </Setter> + <Style.Triggers> + <Trigger Property="IsMouseOver" Value="True"> + <Setter Property="Background" Value="#FF388E3C"/> + <!-- Darker green on hover --> + </Trigger> + <Trigger Property="IsChecked" Value="True"> + <Setter Property="Background" Value="#FF2E7D32"/> + <!-- Even darker green when checked --> + </Trigger> + </Style.Triggers> + </Style> + + <!-- Style for the Buttons in the MenuPanel --> + <Style TargetType="Button" x:Key="MenuButtonStyle"> + <Setter Property="Margin" Value="5"/> + <Setter Property="Padding" Value="10"/> + <Setter Property="Background" Value="#FF2196F3"/> + <!-- Blue background --> + <Setter Property="Foreground" Value="White"/> + <!-- White text --> + <Setter Property="FontSize" Value="16"/> + <Setter Property="BorderBrush" Value="Transparent"/> + <Setter Property="BorderThickness" Value="0"/> + <Setter Property="Cursor" Value="Hand"/> + <Style.Triggers> + <Trigger Property="IsMouseOver" Value="True"> + <Setter Property="Background" Value="#FF1976D2"/> + <!-- Darker blue on hover --> + </Trigger> + </Style.Triggers> + </Style> + </ResourceDictionary> \ No newline at end of file diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Utils/InputDialog.xaml b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Utils/InputDialog.xaml new file mode 100644 index 0000000000000000000000000000000000000000..c479217f231cc3eeb586371b1bb54a957792578c --- /dev/null +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Utils/InputDialog.xaml @@ -0,0 +1,14 @@ +<Window x:Class="InnoLabProjektDektopApp.Utils.InputDialog" + xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" + xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" + Title="Input Dialog" Height="150" Width="300" WindowStartupLocation="CenterOwner"> + <StackPanel Margin="10"> + <TextBlock x:Name="PromptText" Text="Enter your input:" Margin="0,0,0,10" TextWrapping="Wrap"/> + <TextBox x:Name="InputTextBox" Margin="0,0,0,10"/> + <StackPanel Orientation="Horizontal" HorizontalAlignment="Right"> + <Button Content="OK" Click="OK_Click" Width="75" Margin="0,0,10,0" IsDefault="True"/> + <Button Content="Cancel" Click="Cancel_Click" Width="75" IsCancel="True"/> + </StackPanel> + </StackPanel> +</Window> + diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Utils/InputDialog.xaml.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Utils/InputDialog.xaml.cs new file mode 100644 index 0000000000000000000000000000000000000000..a335da0e2c3f86092b3940f4063a03f9db4cda7d --- /dev/null +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Utils/InputDialog.xaml.cs @@ -0,0 +1,33 @@ +using System.Windows; + +namespace InnoLabProjektDektopApp.Utils +{ + /// <summary> + /// Interaction logic for InputDialog.xaml + /// </summary> + public partial class InputDialog : Window + { + public string Input { get; private set; } + + public InputDialog(string prompt, string defaultValue = "") + { + InitializeComponent(); + PromptText.Text = prompt; // Ensure XAML has a TextBlock named PromptText + InputTextBox.Text = defaultValue; // Ensure XAML has a TextBox named InputTextBox + InputTextBox.Focus(); + } + + private void OK_Click(object sender, RoutedEventArgs e) + { + Input = InputTextBox.Text; + DialogResult = true; // Sets DialogResult and allows the window to close + Close(); + } + + private void Cancel_Click(object sender, RoutedEventArgs e) + { + DialogResult = false; // Indicates cancellation + Close(); + } + } +} diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Utils/NotifyIconManager.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Utils/NotifyIconManager.cs new file mode 100644 index 0000000000000000000000000000000000000000..dc6b7a155a3e0e2f36a0d3c87cde9d3b05663363 --- /dev/null +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Utils/NotifyIconManager.cs @@ -0,0 +1,198 @@ +using InnoLabProjektDektopApp.Services; +using System; +using Drawing = System.Drawing; +using System.Windows; +using System.Windows.Controls; +using System.Windows.Threading; +using Forms = System.Windows.Forms; +using System.Windows.Media; +using System.Windows.Navigation; +using System.IO; +using static System.Runtime.InteropServices.JavaScript.JSType; +using System.Net.Http.Json; +using System.Text.Json; + +namespace InnoLabProjektDektopApp.Utils +{ + internal class NotifyIconManager + { + private readonly Forms.NotifyIcon _notifyIcon = new(); + private readonly ProcessMonitor _processMonitor = App.GetProcessMonitor(); + private DispatcherTimer _countdownTimer; + private TimeSpan _countdownTime; + private Forms.ToolStripLabel _countdownLabel; // Reference to the countdown label + private class Settings + { + public int focusPeriod { get; set; } + public int breakPeriod { get; set; } + public int cycles { get; set; } + public string distractionMode { get; set; } + public string mascotVisible { get; set; } + public bool wordsOfAffirmation { get; set; } + public bool insultingWords { get; set; } + } + private Settings _settings = new(); + + public void Initialize() + { + _notifyIcon.Icon = new Drawing.Icon("Assets/icon.ico"); + _notifyIcon.Text = "CoFlow"; + _notifyIcon.Visible = true; + _notifyIcon.ContextMenuStrip = new Forms.ContextMenuStrip(); + _notifyIcon.MouseClick += NotifyIcon_MouseClick; + + // Initialize the countdown timer + _countdownTimer = new DispatcherTimer(); + _countdownTimer.Interval = TimeSpan.FromSeconds(1); + _countdownTimer.Tick += CountdownTimer_Tick; + + RerenderContextMenu(); + } + + public void Dispose() + { + _notifyIcon.Dispose(); + _countdownTimer.Stop(); + } + + private void RerenderContextMenu(bool showContextMenu = false) + { + _notifyIcon.ContextMenuStrip.Items.Clear(); + LoadSettings(); + + if (_processMonitor.isMonitoring || _processMonitor.IsBreak) + { + _notifyIcon.ContextMenuStrip.Items.Add(new Forms.ToolStripLabel($"Focussession 1/{_settings.cycles}", null, false)); + // Add the countdown label (initialize it if it doesn't exist) + _countdownLabel = new Forms.ToolStripLabel($"Countdown: {_countdownTime:mm\\:ss}"); + _notifyIcon.ContextMenuStrip.Items.Add(_countdownLabel); + if (!_processMonitor.IsBreak) + { + _notifyIcon.ContextMenuStrip.Items.Add("Take a Break", Drawing.Image.FromFile("Assets/pause.png"), (sender, args) => + { + _countdownTimer.Stop(); + _processMonitor.StartBreak(); + RerenderContextMenu(true); + }); + } + if (_processMonitor.IsBreak) + { + _notifyIcon.ContextMenuStrip.Items.Add("Skip Break", Drawing.Image.FromFile("Assets/skip.png"), (sender, args) => + { + _countdownTimer.Start(); + _processMonitor.EndBreak(); + RerenderContextMenu(true); + }); + } + _notifyIcon.ContextMenuStrip.Items.Add("End Session", Drawing.Image.FromFile("Assets/end.png"), (sender, args) => + { + _processMonitor.StopMonitoring(); + StopCountdown(); + Window mainWindow = Application.Current.MainWindow; + NavigationService mainNavigation = ((System.Windows.Navigation.NavigationWindow)mainWindow).NavigationService; + mainNavigation.Navigate(new Overview()); + RerenderContextMenu(true); + }); + } + else + { + _notifyIcon.ContextMenuStrip.Items.Add(new Forms.ToolStripLabel("Current Settings:", null, false)); + _notifyIcon.ContextMenuStrip.Items.Add(new Forms.ToolStripLabel( + $"Focus Duration: {_settings.focusPeriod} min | Break Duration: {_settings.breakPeriod} min | Cycles: {_settings.cycles}", null, false)); + _notifyIcon.ContextMenuStrip.Items.Add("Start Session", Drawing.Image.FromFile("Assets/start.png"), (sender, args) => + { + _processMonitor.StartMonitoring(); + StartCountdown(TimeSpan.FromMinutes(_settings.focusPeriod)); + RerenderContextMenu(true); + Window mainWindow = Application.Current.MainWindow; + NavigationService mainNavigation = ((System.Windows.Navigation.NavigationWindow)mainWindow).NavigationService; + mainNavigation.Navigate( + new Session(_settings.focusPeriod, + _settings.breakPeriod, + _settings.cycles, + _settings.distractionMode, + _settings.mascotVisible, + _settings.wordsOfAffirmation, + _settings.insultingWords)); + }); + } + + + // Reopen the context menu if requested + if (showContextMenu) + { + _notifyIcon.ContextMenuStrip.Show(); + } + } + + private void NotifyIcon_MouseClick(object sender, Forms.MouseEventArgs e) + { + if (e.Button == Forms.MouseButtons.Left) + { + Window mainWindow = Application.Current.MainWindow; + mainWindow.WindowState = WindowState.Normal; + mainWindow.Activate(); + NavigationService mainNavigation = ((System.Windows.Navigation.NavigationWindow)mainWindow).NavigationService; + if (!_processMonitor.isMonitoring && !_processMonitor.IsBreak) + { + mainNavigation.Navigate(new Overview()); + } + } + } + + private void StartCountdown(TimeSpan duration) + { + _countdownTime = duration; + _countdownTimer.Start(); + } + + private void StopCountdown() + { + _countdownTimer.Stop(); + _countdownTime = TimeSpan.Zero; + UpdateCountdownLabel(); // Update the label to show 00:00 + } + + private void CountdownTimer_Tick(object sender, EventArgs e) + { + if (_countdownTime > TimeSpan.Zero) + { + _countdownTime = _countdownTime.Subtract(TimeSpan.FromSeconds(1)); + UpdateCountdownLabel(); // Update only the countdown label + } + else + { + _countdownTimer.Stop(); + } + } + + private void UpdateCountdownLabel() + { + if (_countdownLabel != null) + { + _countdownLabel.Text = $"Countdown: {_countdownTime:mm\\:ss}"; + } + } + + private void LoadSettings() + { + string path = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "settings.json"); + if (File.Exists(path)) + { + string jsonContent = File.ReadAllText(path); + var settings = JsonSerializer.Deserialize<Dictionary<string, JsonElement>>(jsonContent); + if (settings != null && settings.TryGetValue("profile1", out JsonElement profileSettings)) + { + _settings.focusPeriod = int.Parse(profileSettings.GetProperty("focusPeriod").GetString().Replace(" minutes", "")); + _settings.breakPeriod = int.Parse(profileSettings.GetProperty("breakPeriod").GetString().Replace(" minutes", "")); + _settings.cycles = int.Parse(profileSettings.GetProperty("cycles").GetString() ?? "1"); + _settings.distractionMode = profileSettings.GetProperty("distractionMode").GetString() ?? "default"; + _settings.mascotVisible = profileSettings.GetProperty("mascotVisibility").GetString() ?? "yes"; + _settings.wordsOfAffirmation = bool.Parse(profileSettings.GetProperty("wordsOfAffirmation").GetString() ?? "true"); + _settings.insultingWords = bool.Parse(profileSettings.GetProperty("insultingWords").GetString() ?? "false"); + } + } + } + + } +} \ No newline at end of file diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/App.g.i.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/App.g.i.cs index fb1428074a8b0c8318455a33dc43b5a425324ef1..32e4ff9b515e6dc5d922c528f3eb0ae62f0a63ff 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/App.g.i.cs +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/App.g.i.cs @@ -1,4 +1,4 @@ -#pragma checksum "..\..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "2DEDC9624A7085F1363F3F7BDB3110EA433383A8" +#pragma checksum "..\..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "7D74CC56137BF813041AB27EB36F34CDC24CEC07" //------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. @@ -19,6 +19,7 @@ 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; @@ -55,11 +56,11 @@ namespace InnoLabProjektDektopApp { _contentLoaded = true; #line 5 "..\..\..\App.xaml" - this.StartupUri = new System.Uri("Screens\\FirstLaunch\\04Settings.xaml", System.UriKind.Relative); + this.StartupUri = new System.Uri("Screens\\Regulaer\\03End.xaml", System.UriKind.Relative); #line default #line hidden - System.Uri resourceLocater = new System.Uri("/CoFlow;V1.0.0.0;component/app.xaml", System.UriKind.Relative); + System.Uri resourceLocater = new System.Uri("/CoFlow;component/app.xaml", System.UriKind.Relative); #line 1 "..\..\..\App.xaml" System.Windows.Application.LoadComponent(this, resourceLocater); diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/GeneratedInternalTypeHelper.g.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/GeneratedInternalTypeHelper.g.cs deleted file mode 100644 index 44d6a6ab64dd628a0490fd28e7394b530545edda..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/GeneratedInternalTypeHelper.g.cs +++ /dev/null @@ -1,62 +0,0 @@ -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -namespace XamlGeneratedNamespace { - - - /// <summary> - /// GeneratedInternalTypeHelper - /// </summary> - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.2.0")] - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] - public sealed class GeneratedInternalTypeHelper : System.Windows.Markup.InternalTypeHelper { - - /// <summary> - /// CreateInstance - /// </summary> - protected override object CreateInstance(System.Type type, System.Globalization.CultureInfo culture) { - return System.Activator.CreateInstance(type, ((System.Reflection.BindingFlags.Public | System.Reflection.BindingFlags.NonPublic) - | (System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.CreateInstance)), null, null, culture); - } - - /// <summary> - /// GetPropertyValue - /// </summary> - protected override object GetPropertyValue(System.Reflection.PropertyInfo propertyInfo, object target, System.Globalization.CultureInfo culture) { - return propertyInfo.GetValue(target, System.Reflection.BindingFlags.Default, null, null, culture); - } - - /// <summary> - /// SetPropertyValue - /// </summary> - protected override void SetPropertyValue(System.Reflection.PropertyInfo propertyInfo, object target, object value, System.Globalization.CultureInfo culture) { - propertyInfo.SetValue(target, value, System.Reflection.BindingFlags.Default, null, null, culture); - } - - /// <summary> - /// CreateDelegate - /// </summary> - protected override System.Delegate CreateDelegate(System.Type delegateType, object target, string handler) { - return ((System.Delegate)(target.GetType().InvokeMember("_CreateDelegate", (System.Reflection.BindingFlags.InvokeMethod - | (System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance)), null, target, new object[] { - delegateType, - handler}, null))); - } - - /// <summary> - /// AddEventHandler - /// </summary> - protected override void AddEventHandler(System.Reflection.EventInfo eventInfo, object target, System.Delegate handler) { - eventInfo.AddEventHandler(target, handler); - } - } -} - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp.AssemblyInfo.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp.AssemblyInfo.cs index d65b4b4ff31b291dace605580fd43f0bcd2272e8..39ec0ce430a6cc5d891f58197c53e86514166335 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp.AssemblyInfo.cs +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp.AssemblyInfo.cs @@ -14,7 +14,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("CoFlow")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+272f901e8af4de60c9295321f425fc9dddb406f9")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+5f41fb0b139cbff51fc8a27100ed200aa9cb3959")] [assembly: System.Reflection.AssemblyProductAttribute("CoFlow")] [assembly: System.Reflection.AssemblyTitleAttribute("CoFlow")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp.AssemblyInfoInputs.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp.AssemblyInfoInputs.cache index 4a3556d0e2833511dd71756eba03488caf3b4eb9..ed8b51df967e73ccafc20302bf731072741aaab1 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp.AssemblyInfoInputs.cache +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp.AssemblyInfoInputs.cache @@ -1 +1 @@ -34983293ad4d382613c90278121ce7241b8a39a3d23ce200d4b464e137e0794b +30ce9fed19639eb3af3bb796f0f993aa2a4885cea884e23a6e62ea92911d7f61 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp.assets.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp.assets.cache index 332805ecef93f26db709a84702174ec180a2e5ca..39760d29a4332a41e8277ecb86407f34d5a57bef 100644 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp.assets.cache and b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp.assets.cache differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp.csproj.CoreCompileInputs.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp.csproj.CoreCompileInputs.cache index 48f7b1f74cbb5cdde1a8c4cbcee148282c88f198..4cf8a166191921a46c4e6ac59a3f2fcd08f7e3ad 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp.csproj.CoreCompileInputs.cache +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -92b1fe7a09f53452dfb77833ca82206a44d59b0d628aeee9428a059bd3a8733e +3b19e34b4a90ff0c85f211b18dc188144ae0d2b9d03e16e7685615808cff1cab diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp.csproj.FileListAbsolute.txt b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp.csproj.FileListAbsolute.txt index f6f09787d274b8188fc502fb994bac71fb0faa7f..ba20531df0078f041c4c75839f613988a00ac9b8 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp.csproj.FileListAbsolute.txt +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp.csproj.FileListAbsolute.txt @@ -1,398 +1,5 @@ -C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\InnoLabProjektDektopApp.exe -C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\InnoLabProjektDektopApp.deps.json -C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\InnoLabProjektDektopApp.runtimeconfig.json -C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\InnoLabProjektDektopApp.dll -C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\InnoLabProjektDektopApp.pdb -C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Styles\Styles.baml -C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\01Overview.g.cs -C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\02Session.g.cs -C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\03End.g.cs -C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\04Statistics.g.cs -C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Templates\HeaderTemplate.g.cs -C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\App.g.cs -C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\GeneratedInternalTypeHelper.g.cs -C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp_MarkupCompile.cache -C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp_MarkupCompile.lref -C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\App.baml -C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\01Overview.baml -C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\02Session.baml -C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\03End.baml -C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\04Statistics.baml -C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Templates\HeaderTemplate.baml -C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.g.resources -C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.GeneratedMSBuildEditorConfig.editorconfig -C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.AssemblyInfoInputs.cache -C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.AssemblyInfo.cs -C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.csproj.CoreCompileInputs.cache -C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.dll -C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\refint\InnoLabProjektDektopApp.dll -C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.pdb -C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.genruntimeconfig.cache -C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\ref\InnoLabProjektDektopApp.dll -C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\01Startscreen.g.cs -C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\01Startscreen.baml -C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\02Progress.g.cs -C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\03_0Distractions.g.cs -C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\03_1DistractionsList.g.cs -C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\04Settings.g.cs -C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\02Progress.baml -C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\03_0Distractions.baml -C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\03_1DistractionsList.baml -C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\04Settings.baml -C:\Users\Phil\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\InnoLabProjektDektopApp.exe -C:\Users\Phil\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\InnoLabProjektDektopApp.deps.json -C:\Users\Phil\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\InnoLabProjektDektopApp.runtimeconfig.json -C:\Users\Phil\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\InnoLabProjektDektopApp.dll -C:\Users\Phil\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\InnoLabProjektDektopApp.pdb -C:\Users\Phil\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Styles\Styles.baml -C:\Users\Phil\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\01Startscreen.g.cs -C:\Users\Phil\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\02Progress.g.cs -C:\Users\Phil\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\03_0Distractions.g.cs -C:\Users\Phil\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\03_1DistractionsList.g.cs -C:\Users\Phil\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\04Settings.g.cs -C:\Users\Phil\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\01Overview.g.cs -C:\Users\Phil\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\02Session.g.cs -C:\Users\Phil\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\03End.g.cs -C:\Users\Phil\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\04Statistics.g.cs -C:\Users\Phil\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Templates\HeaderTemplate.g.cs -C:\Users\Phil\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\App.g.cs -C:\Users\Phil\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\GeneratedInternalTypeHelper.g.cs -C:\Users\Phil\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp_MarkupCompile.cache -C:\Users\Phil\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp_MarkupCompile.lref -C:\Users\Phil\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\App.baml -C:\Users\Phil\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\01Startscreen.baml -C:\Users\Phil\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\02Progress.baml -C:\Users\Phil\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\03_0Distractions.baml -C:\Users\Phil\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\03_1DistractionsList.baml -C:\Users\Phil\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\04Settings.baml -C:\Users\Phil\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\01Overview.baml -C:\Users\Phil\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\02Session.baml -C:\Users\Phil\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\03End.baml -C:\Users\Phil\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\04Statistics.baml -C:\Users\Phil\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Templates\HeaderTemplate.baml -C:\Users\Phil\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.g.resources -C:\Users\Phil\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.GeneratedMSBuildEditorConfig.editorconfig -C:\Users\Phil\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.AssemblyInfoInputs.cache -C:\Users\Phil\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.AssemblyInfo.cs -C:\Users\Phil\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.csproj.CoreCompileInputs.cache -C:\Users\Phil\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.dll -C:\Users\Phil\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\refint\InnoLabProjektDektopApp.dll -C:\Users\Phil\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.pdb -C:\Users\Phil\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.genruntimeconfig.cache -C:\Users\Phil\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\ref\InnoLabProjektDektopApp.dll -C:\Users\Phil\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.csproj.AssemblyReference.cache -C:\Users\Phil\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\Newtonsoft.Json.dll -C:\Users\Phil\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\System.CodeDom.dll -C:\Users\Phil\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\System.Management.dll -C:\Users\Phil\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\runtimes\win\lib\net8.0\System.Management.dll -C:\Users\Phil\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabP.75C040FC.Up2Date -C:\Users\Phil\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\Assets\blockedProcesses.json -C:\Users\Phil\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp_Content.g.cs -C:\Users\Phili\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.csproj.AssemblyReference.cache -C:\Users\Phili\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Styles\Styles.baml -C:\Users\Phili\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\01Startscreen.g.cs -C:\Users\Phili\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\02Progress.g.cs -C:\Users\Phili\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\03_0Distractions.g.cs -C:\Users\Phili\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\03_1DistractionsList.g.cs -C:\Users\Phili\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\04Settings.g.cs -C:\Users\Phili\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\01Overview.g.cs -C:\Users\Phili\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\02Session.g.cs -C:\Users\Phili\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\03End.g.cs -C:\Users\Phili\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\04Statistics.g.cs -C:\Users\Phili\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Templates\HeaderTemplate.g.cs -C:\Users\Phili\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\App.g.cs -C:\Users\Phili\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp_Content.g.cs -C:\Users\Phili\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\GeneratedInternalTypeHelper.g.cs -C:\Users\Phili\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp_MarkupCompile.cache -C:\Users\Phili\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp_MarkupCompile.lref -C:\Users\Phili\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\App.baml -C:\Users\Phili\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\01Startscreen.baml -C:\Users\Phili\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\02Progress.baml -C:\Users\Phili\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\03_0Distractions.baml -C:\Users\Phili\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\03_1DistractionsList.baml -C:\Users\Phili\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\04Settings.baml -C:\Users\Phili\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\01Overview.baml -C:\Users\Phili\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\02Session.baml -C:\Users\Phili\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\03End.baml -C:\Users\Phili\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\04Statistics.baml -C:\Users\Phili\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Templates\HeaderTemplate.baml -C:\Users\Phili\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.g.resources -C:\Users\Phili\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\refint\InnoLabProjektDektopApp.dll -C:\Users\Phili\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.pdb -C:\Users\Phili\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\Assets\blockedProcesses.json -C:\Users\Phili\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\InnoLabProjektDektopApp.exe -C:\Users\Phili\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\InnoLabProjektDektopApp.deps.json -C:\Users\Phili\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\InnoLabProjektDektopApp.runtimeconfig.json -C:\Users\Phili\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\InnoLabProjektDektopApp.dll -C:\Users\Phili\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\InnoLabProjektDektopApp.pdb -C:\Users\Phili\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\Newtonsoft.Json.dll -C:\Users\Phili\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\System.CodeDom.dll -C:\Users\Phili\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\System.Management.dll -C:\Users\Phili\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\runtimes\win\lib\net8.0\System.Management.dll -C:\Users\Phili\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.GeneratedMSBuildEditorConfig.editorconfig -C:\Users\Phili\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.AssemblyInfoInputs.cache -C:\Users\Phili\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.AssemblyInfo.cs -C:\Users\Phili\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.csproj.CoreCompileInputs.cache -C:\Users\Phili\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabP.75C040FC.Up2Date -C:\Users\Phili\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.dll -C:\Users\Phili\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.genruntimeconfig.cache -C:\Users\Phili\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\ref\InnoLabProjektDektopApp.dll -F:\Dokumente\Schule\Studium\InoLab\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.csproj.AssemblyReference.cache -F:\Dokumente\Schule\Studium\InoLab\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Styles\Styles.baml -F:\Dokumente\Schule\Studium\InoLab\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\01Startscreen.g.cs -F:\Dokumente\Schule\Studium\InoLab\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\02Progress.g.cs -F:\Dokumente\Schule\Studium\InoLab\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\03_0Distractions.g.cs -F:\Dokumente\Schule\Studium\InoLab\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\03_1DistractionsList.g.cs -F:\Dokumente\Schule\Studium\InoLab\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\04Settings.g.cs -F:\Dokumente\Schule\Studium\InoLab\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\01Overview.g.cs -F:\Dokumente\Schule\Studium\InoLab\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\02Session.g.cs -F:\Dokumente\Schule\Studium\InoLab\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\03End.g.cs -F:\Dokumente\Schule\Studium\InoLab\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\04Statistics.g.cs -F:\Dokumente\Schule\Studium\InoLab\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Templates\HeaderTemplate.g.cs -F:\Dokumente\Schule\Studium\InoLab\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\App.g.cs -F:\Dokumente\Schule\Studium\InoLab\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp_Content.g.cs -F:\Dokumente\Schule\Studium\InoLab\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\GeneratedInternalTypeHelper.g.cs -F:\Dokumente\Schule\Studium\InoLab\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp_MarkupCompile.cache -F:\Dokumente\Schule\Studium\InoLab\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp_MarkupCompile.lref -F:\Dokumente\Schule\Studium\InoLab\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.dll -F:\Dokumente\Schule\Studium\InoLab\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\refint\InnoLabProjektDektopApp.dll -F:\Dokumente\Schule\Studium\InoLab\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.pdb -F:\Dokumente\Schule\Studium\InoLab\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\Assets\blockedProcesses.json -F:\Dokumente\Schule\Studium\InoLab\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\InnoLabProjektDektopApp.exe -F:\Dokumente\Schule\Studium\InoLab\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\InnoLabProjektDektopApp.deps.json -F:\Dokumente\Schule\Studium\InoLab\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\InnoLabProjektDektopApp.runtimeconfig.json -F:\Dokumente\Schule\Studium\InoLab\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\InnoLabProjektDektopApp.dll -F:\Dokumente\Schule\Studium\InoLab\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\InnoLabProjektDektopApp.pdb -F:\Dokumente\Schule\Studium\InoLab\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\Newtonsoft.Json.dll -F:\Dokumente\Schule\Studium\InoLab\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\System.CodeDom.dll -F:\Dokumente\Schule\Studium\InoLab\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\System.Management.dll -F:\Dokumente\Schule\Studium\InoLab\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\runtimes\win\lib\net8.0\System.Management.dll -F:\Dokumente\Schule\Studium\InoLab\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\App.baml -F:\Dokumente\Schule\Studium\InoLab\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\01Startscreen.baml -F:\Dokumente\Schule\Studium\InoLab\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\02Progress.baml -F:\Dokumente\Schule\Studium\InoLab\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\03_0Distractions.baml -F:\Dokumente\Schule\Studium\InoLab\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\03_1DistractionsList.baml -F:\Dokumente\Schule\Studium\InoLab\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\04Settings.baml -F:\Dokumente\Schule\Studium\InoLab\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\01Overview.baml -F:\Dokumente\Schule\Studium\InoLab\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\02Session.baml -F:\Dokumente\Schule\Studium\InoLab\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\03End.baml -F:\Dokumente\Schule\Studium\InoLab\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\04Statistics.baml -F:\Dokumente\Schule\Studium\InoLab\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Templates\HeaderTemplate.baml -F:\Dokumente\Schule\Studium\InoLab\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.g.resources -F:\Dokumente\Schule\Studium\InoLab\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.GeneratedMSBuildEditorConfig.editorconfig -F:\Dokumente\Schule\Studium\InoLab\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.AssemblyInfoInputs.cache -F:\Dokumente\Schule\Studium\InoLab\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.AssemblyInfo.cs -F:\Dokumente\Schule\Studium\InoLab\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.csproj.CoreCompileInputs.cache -F:\Dokumente\Schule\Studium\InoLab\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabP.75C040FC.Up2Date -F:\Dokumente\Schule\Studium\InoLab\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.genruntimeconfig.cache -F:\Dokumente\Schule\Studium\InoLab\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\ref\InnoLabProjektDektopApp.dll -C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\Assets\blockedProcesses.json -C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\InnoLabProjektDektopApp.exe -C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\InnoLabProjektDektopApp.deps.json -C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\InnoLabProjektDektopApp.runtimeconfig.json -C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\InnoLabProjektDektopApp.dll -C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\InnoLabProjektDektopApp.pdb -C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\Newtonsoft.Json.dll -C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\System.CodeDom.dll -C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\System.Management.dll -C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\runtimes\win\lib\net8.0\System.Management.dll -C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.csproj.AssemblyReference.cache -C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Styles\Styles.baml -C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\01Startscreen.g.cs -C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\02Progress.g.cs -C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\03_0Distractions.g.cs -C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\03_1DistractionsList.g.cs -C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\04Settings.g.cs -C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\01Overview.g.cs -C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\02Session.g.cs -C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\03End.g.cs -C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\04Statistics.g.cs -C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Templates\HeaderTemplate.g.cs -C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\App.g.cs -C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp_Content.g.cs -C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\GeneratedInternalTypeHelper.g.cs -C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp_MarkupCompile.cache -C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp_MarkupCompile.lref -C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\App.baml -C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\01Startscreen.baml -C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\02Progress.baml -C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\03_0Distractions.baml -C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\03_1DistractionsList.baml -C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\04Settings.baml -C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\01Overview.baml -C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\02Session.baml -C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\03End.baml -C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\04Statistics.baml -C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Templates\HeaderTemplate.baml -C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.g.resources -C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.GeneratedMSBuildEditorConfig.editorconfig -C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.AssemblyInfoInputs.cache -C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.AssemblyInfo.cs -C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.csproj.CoreCompileInputs.cache -C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabP.75C040FC.Up2Date -C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.dll -C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\refint\InnoLabProjektDektopApp.dll -C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.pdb -C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.genruntimeconfig.cache -C:\Users\Sandra\Source\Repos\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\ref\InnoLabProjektDektopApp.dll -D:\Studium\7. Semester\InnoLab\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\Assets\blockedProcesses.json -D:\Studium\7. Semester\InnoLab\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\InnoLabProjektDektopApp.exe -D:\Studium\7. Semester\InnoLab\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\InnoLabProjektDektopApp.deps.json -D:\Studium\7. Semester\InnoLab\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\InnoLabProjektDektopApp.runtimeconfig.json -D:\Studium\7. Semester\InnoLab\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\InnoLabProjektDektopApp.dll -D:\Studium\7. Semester\InnoLab\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\InnoLabProjektDektopApp.pdb -D:\Studium\7. Semester\InnoLab\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\Newtonsoft.Json.dll -D:\Studium\7. Semester\InnoLab\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\System.CodeDom.dll -D:\Studium\7. Semester\InnoLab\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\System.Management.dll -D:\Studium\7. Semester\InnoLab\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\runtimes\win\lib\net8.0\System.Management.dll -D:\Studium\7. Semester\InnoLab\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.csproj.AssemblyReference.cache -D:\Studium\7. Semester\InnoLab\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Styles\Styles.baml -D:\Studium\7. Semester\InnoLab\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\01Startscreen.g.cs -D:\Studium\7. Semester\InnoLab\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\02Progress.g.cs -D:\Studium\7. Semester\InnoLab\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\03_0Distractions.g.cs -D:\Studium\7. Semester\InnoLab\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\03_1DistractionsList.g.cs -D:\Studium\7. Semester\InnoLab\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\04Settings.g.cs -D:\Studium\7. Semester\InnoLab\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\01Overview.g.cs -D:\Studium\7. Semester\InnoLab\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\02Session.g.cs -D:\Studium\7. Semester\InnoLab\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\03End.g.cs -D:\Studium\7. Semester\InnoLab\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\04Statistics.g.cs -D:\Studium\7. Semester\InnoLab\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Templates\HeaderTemplate.g.cs -D:\Studium\7. Semester\InnoLab\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\App.g.cs -D:\Studium\7. Semester\InnoLab\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp_Content.g.cs -D:\Studium\7. Semester\InnoLab\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\GeneratedInternalTypeHelper.g.cs -D:\Studium\7. Semester\InnoLab\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp_MarkupCompile.cache -D:\Studium\7. Semester\InnoLab\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp_MarkupCompile.lref -D:\Studium\7. Semester\InnoLab\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\App.baml -D:\Studium\7. Semester\InnoLab\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\01Startscreen.baml -D:\Studium\7. Semester\InnoLab\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\02Progress.baml -D:\Studium\7. Semester\InnoLab\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\03_0Distractions.baml -D:\Studium\7. Semester\InnoLab\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\03_1DistractionsList.baml -D:\Studium\7. Semester\InnoLab\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\04Settings.baml -D:\Studium\7. Semester\InnoLab\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\01Overview.baml -D:\Studium\7. Semester\InnoLab\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\02Session.baml -D:\Studium\7. Semester\InnoLab\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\03End.baml -D:\Studium\7. Semester\InnoLab\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\04Statistics.baml -D:\Studium\7. Semester\InnoLab\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Templates\HeaderTemplate.baml -D:\Studium\7. Semester\InnoLab\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.g.resources -D:\Studium\7. Semester\InnoLab\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.GeneratedMSBuildEditorConfig.editorconfig -D:\Studium\7. Semester\InnoLab\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.AssemblyInfoInputs.cache -D:\Studium\7. Semester\InnoLab\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.AssemblyInfo.cs -D:\Studium\7. Semester\InnoLab\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.csproj.CoreCompileInputs.cache -D:\Studium\7. Semester\InnoLab\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabP.75C040FC.Up2Date -D:\Studium\7. Semester\InnoLab\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.dll -D:\Studium\7. Semester\InnoLab\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\refint\InnoLabProjektDektopApp.dll -D:\Studium\7. Semester\InnoLab\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.pdb -D:\Studium\7. Semester\InnoLab\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.genruntimeconfig.cache -D:\Studium\7. Semester\InnoLab\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\ref\InnoLabProjektDektopApp.dll -C:\Users\Phili\Source\Repos\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\Assets\blockedProcesses.json -C:\Users\Phili\Source\Repos\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\InnoLabProjektDektopApp.exe -C:\Users\Phili\Source\Repos\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\InnoLabProjektDektopApp.deps.json -C:\Users\Phili\Source\Repos\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\InnoLabProjektDektopApp.runtimeconfig.json -C:\Users\Phili\Source\Repos\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\InnoLabProjektDektopApp.dll -C:\Users\Phili\Source\Repos\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\InnoLabProjektDektopApp.pdb -C:\Users\Phili\Source\Repos\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\Newtonsoft.Json.dll -C:\Users\Phili\Source\Repos\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\System.CodeDom.dll -C:\Users\Phili\Source\Repos\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\System.Management.dll -C:\Users\Phili\Source\Repos\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\runtimes\win\lib\net8.0\System.Management.dll -C:\Users\Phili\Source\Repos\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.csproj.AssemblyReference.cache -C:\Users\Phili\Source\Repos\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Styles\Styles.baml -C:\Users\Phili\Source\Repos\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\01Startscreen.g.cs -C:\Users\Phili\Source\Repos\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\02Progress.g.cs -C:\Users\Phili\Source\Repos\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\03_0Distractions.g.cs -C:\Users\Phili\Source\Repos\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\03_1DistractionsList.g.cs -C:\Users\Phili\Source\Repos\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\04Settings.g.cs -C:\Users\Phili\Source\Repos\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\01Overview.g.cs -C:\Users\Phili\Source\Repos\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\02Session.g.cs -C:\Users\Phili\Source\Repos\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\03End.g.cs -C:\Users\Phili\Source\Repos\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\04Statistics.g.cs -C:\Users\Phili\Source\Repos\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Templates\HeaderTemplate.g.cs -C:\Users\Phili\Source\Repos\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\App.g.cs -C:\Users\Phili\Source\Repos\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp_Content.g.cs -C:\Users\Phili\Source\Repos\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\GeneratedInternalTypeHelper.g.cs -C:\Users\Phili\Source\Repos\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp_MarkupCompile.cache -C:\Users\Phili\Source\Repos\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp_MarkupCompile.lref -C:\Users\Phili\Source\Repos\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\App.baml -C:\Users\Phili\Source\Repos\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\01Startscreen.baml -C:\Users\Phili\Source\Repos\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\02Progress.baml -C:\Users\Phili\Source\Repos\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\03_0Distractions.baml -C:\Users\Phili\Source\Repos\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\03_1DistractionsList.baml -C:\Users\Phili\Source\Repos\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\04Settings.baml -C:\Users\Phili\Source\Repos\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\01Overview.baml -C:\Users\Phili\Source\Repos\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\02Session.baml -C:\Users\Phili\Source\Repos\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\03End.baml -C:\Users\Phili\Source\Repos\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\04Statistics.baml -C:\Users\Phili\Source\Repos\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Templates\HeaderTemplate.baml -C:\Users\Phili\Source\Repos\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.g.resources -C:\Users\Phili\Source\Repos\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.GeneratedMSBuildEditorConfig.editorconfig -C:\Users\Phili\Source\Repos\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.AssemblyInfoInputs.cache -C:\Users\Phili\Source\Repos\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.AssemblyInfo.cs -C:\Users\Phili\Source\Repos\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.csproj.CoreCompileInputs.cache -C:\Users\Phili\Source\Repos\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabP.75C040FC.Up2Date -C:\Users\Phili\Source\Repos\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.dll -C:\Users\Phili\Source\Repos\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\refint\InnoLabProjektDektopApp.dll -C:\Users\Phili\Source\Repos\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.pdb -C:\Users\Phili\Source\Repos\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.genruntimeconfig.cache -C:\Users\Phili\Source\Repos\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\ref\InnoLabProjektDektopApp.dll -D:\Studium\7. Semester\InnoLab\CoFlowCURRENT\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\Assets\blockedProcesses.json -D:\Studium\7. Semester\InnoLab\CoFlowCURRENT\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\Assets\distractingWebsites.json -D:\Studium\7. Semester\InnoLab\CoFlowCURRENT\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\Assets\gamesicon.png -D:\Studium\7. Semester\InnoLab\CoFlowCURRENT\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\Assets\pornicon.png -D:\Studium\7. Semester\InnoLab\CoFlowCURRENT\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\Assets\programsicon.png -D:\Studium\7. Semester\InnoLab\CoFlowCURRENT\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\Assets\shoppingicon.png -D:\Studium\7. Semester\InnoLab\CoFlowCURRENT\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\Assets\socialmediaicon.png -D:\Studium\7. Semester\InnoLab\CoFlowCURRENT\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\Assets\otherwebsitesicon.png -D:\Studium\7. Semester\InnoLab\CoFlowCURRENT\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\CoFlow.exe -D:\Studium\7. Semester\InnoLab\CoFlowCURRENT\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\CoFlow.deps.json -D:\Studium\7. Semester\InnoLab\CoFlowCURRENT\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\CoFlow.runtimeconfig.json -D:\Studium\7. Semester\InnoLab\CoFlowCURRENT\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\CoFlow.dll -D:\Studium\7. Semester\InnoLab\CoFlowCURRENT\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\CoFlow.pdb -D:\Studium\7. Semester\InnoLab\CoFlowCURRENT\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\Newtonsoft.Json.dll -D:\Studium\7. Semester\InnoLab\CoFlowCURRENT\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\System.CodeDom.dll -D:\Studium\7. Semester\InnoLab\CoFlowCURRENT\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\System.Management.dll -D:\Studium\7. Semester\InnoLab\CoFlowCURRENT\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\runtimes\win\lib\net8.0\System.Management.dll -D:\Studium\7. Semester\InnoLab\CoFlowCURRENT\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.csproj.AssemblyReference.cache -D:\Studium\7. Semester\InnoLab\CoFlowCURRENT\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Styles\Styles.baml -D:\Studium\7. Semester\InnoLab\CoFlowCURRENT\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\01Startscreen.g.cs -D:\Studium\7. Semester\InnoLab\CoFlowCURRENT\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\02Progress.g.cs -D:\Studium\7. Semester\InnoLab\CoFlowCURRENT\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\03_0Distractions.g.cs -D:\Studium\7. Semester\InnoLab\CoFlowCURRENT\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\03_1DistractionsList.g.cs -D:\Studium\7. Semester\InnoLab\CoFlowCURRENT\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\04Settings.g.cs -D:\Studium\7. Semester\InnoLab\CoFlowCURRENT\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\01Overview.g.cs -D:\Studium\7. Semester\InnoLab\CoFlowCURRENT\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\02Session.g.cs -D:\Studium\7. Semester\InnoLab\CoFlowCURRENT\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\03End.g.cs -D:\Studium\7. Semester\InnoLab\CoFlowCURRENT\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\04Statistics.g.cs -D:\Studium\7. Semester\InnoLab\CoFlowCURRENT\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Templates\HeaderTemplate.g.cs -D:\Studium\7. Semester\InnoLab\CoFlowCURRENT\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\App.g.cs -D:\Studium\7. Semester\InnoLab\CoFlowCURRENT\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\CoFlow_Content.g.cs -D:\Studium\7. Semester\InnoLab\CoFlowCURRENT\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\GeneratedInternalTypeHelper.g.cs -D:\Studium\7. Semester\InnoLab\CoFlowCURRENT\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\CoFlow_MarkupCompile.cache -D:\Studium\7. Semester\InnoLab\CoFlowCURRENT\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\CoFlow_MarkupCompile.lref -D:\Studium\7. Semester\InnoLab\CoFlowCURRENT\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\App.baml -D:\Studium\7. Semester\InnoLab\CoFlowCURRENT\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\01Startscreen.baml -D:\Studium\7. Semester\InnoLab\CoFlowCURRENT\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\02Progress.baml -D:\Studium\7. Semester\InnoLab\CoFlowCURRENT\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\03_0Distractions.baml -D:\Studium\7. Semester\InnoLab\CoFlowCURRENT\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\03_1DistractionsList.baml -D:\Studium\7. Semester\InnoLab\CoFlowCURRENT\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\04Settings.baml -D:\Studium\7. Semester\InnoLab\CoFlowCURRENT\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\01Overview.baml -D:\Studium\7. Semester\InnoLab\CoFlowCURRENT\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\02Session.baml -D:\Studium\7. Semester\InnoLab\CoFlowCURRENT\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\03End.baml -D:\Studium\7. Semester\InnoLab\CoFlowCURRENT\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\04Statistics.baml -D:\Studium\7. Semester\InnoLab\CoFlowCURRENT\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Templates\HeaderTemplate.baml -D:\Studium\7. Semester\InnoLab\CoFlowCURRENT\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\CoFlow.g.resources -D:\Studium\7. Semester\InnoLab\CoFlowCURRENT\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.GeneratedMSBuildEditorConfig.editorconfig -D:\Studium\7. Semester\InnoLab\CoFlowCURRENT\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.AssemblyInfoInputs.cache -D:\Studium\7. Semester\InnoLab\CoFlowCURRENT\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.AssemblyInfo.cs -D:\Studium\7. Semester\InnoLab\CoFlowCURRENT\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.csproj.CoreCompileInputs.cache -D:\Studium\7. Semester\InnoLab\CoFlowCURRENT\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabP.75C040FC.Up2Date -D:\Studium\7. Semester\InnoLab\CoFlowCURRENT\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\CoFlow.dll -D:\Studium\7. Semester\InnoLab\CoFlowCURRENT\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\refint\CoFlow.dll -D:\Studium\7. Semester\InnoLab\CoFlowCURRENT\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\CoFlow.pdb -D:\Studium\7. Semester\InnoLab\CoFlowCURRENT\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.genruntimeconfig.cache -D:\Studium\7. Semester\InnoLab\CoFlowCURRENT\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\ref\CoFlow.dll -D:\Studium\7. Semester\InnoLab\CoFlowCURRENT\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\Assets\pencilicon.png -D:\Studium\7. Semester\InnoLab\CoFlowCURRENT\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\Assets\profileicon.png -D:\Studium\7. Semester\InnoLab\CoFlowCURRENT\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\Assets\settings.json C:\Users\mhustoles\Documents\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\Assets\blockedProcesses.json +C:\Users\mhustoles\Documents\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\Assets\distractingPrograms.json C:\Users\mhustoles\Documents\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\Assets\distractingWebsites.json C:\Users\mhustoles\Documents\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\Assets\gamesicon.png C:\Users\mhustoles\Documents\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\Assets\pencilicon.png @@ -404,28 +11,40 @@ C:\Users\mhustoles\Documents\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektop C:\Users\mhustoles\Documents\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\Assets\socialmediaicon.png C:\Users\mhustoles\Documents\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\Assets\otherwebsitesicon.png C:\Users\mhustoles\Documents\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\CoFlow.exe +C:\Users\mhustoles\Documents\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\Assets\end.png +C:\Users\mhustoles\Documents\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\Assets\pause.png +C:\Users\mhustoles\Documents\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\Assets\skip.png +C:\Users\mhustoles\Documents\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\Assets\icon.ico +C:\Users\mhustoles\Documents\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\Assets\start.png C:\Users\mhustoles\Documents\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\CoFlow.deps.json C:\Users\mhustoles\Documents\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\CoFlow.runtimeconfig.json C:\Users\mhustoles\Documents\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\CoFlow.dll C:\Users\mhustoles\Documents\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\CoFlow.pdb +C:\Users\mhustoles\Documents\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\Hardcodet.NotifyIcon.Wpf.dll C:\Users\mhustoles\Documents\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\Newtonsoft.Json.dll +C:\Users\mhustoles\Documents\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\Newtonsoft.Json.Bson.dll C:\Users\mhustoles\Documents\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\System.CodeDom.dll C:\Users\mhustoles\Documents\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\System.Management.dll C:\Users\mhustoles\Documents\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\runtimes\win\lib\net8.0\System.Management.dll C:\Users\mhustoles\Documents\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.csproj.AssemblyReference.cache C:\Users\mhustoles\Documents\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Styles\Styles.baml +C:\Users\mhustoles\Documents\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Utils\InputDialog.baml C:\Users\mhustoles\Documents\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\01Startscreen.g.cs C:\Users\mhustoles\Documents\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\02Progress.g.cs C:\Users\mhustoles\Documents\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\03_0Distractions.g.cs C:\Users\mhustoles\Documents\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\03_1DistractionsList.g.cs +C:\Users\mhustoles\Documents\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\03_2ProgramsList.g.cs C:\Users\mhustoles\Documents\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\04Settings.g.cs C:\Users\mhustoles\Documents\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\01Overview.g.cs C:\Users\mhustoles\Documents\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\02Session.g.cs C:\Users\mhustoles\Documents\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\03End.g.cs C:\Users\mhustoles\Documents\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\04Statistics.g.cs +C:\Users\mhustoles\Documents\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\Mascott.g.cs C:\Users\mhustoles\Documents\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Templates\HeaderTemplate.g.cs +C:\Users\mhustoles\Documents\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Utils\InputDialog.g.cs C:\Users\mhustoles\Documents\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\App.g.cs C:\Users\mhustoles\Documents\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\CoFlow_Content.g.cs +C:\Users\mhustoles\Documents\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\GeneratedInternalTypeHelper.g.cs C:\Users\mhustoles\Documents\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\CoFlow_MarkupCompile.cache C:\Users\mhustoles\Documents\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\CoFlow_MarkupCompile.lref C:\Users\mhustoles\Documents\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\App.baml @@ -433,11 +52,13 @@ C:\Users\mhustoles\Documents\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektop C:\Users\mhustoles\Documents\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\02Progress.baml C:\Users\mhustoles\Documents\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\03_0Distractions.baml C:\Users\mhustoles\Documents\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\03_1DistractionsList.baml +C:\Users\mhustoles\Documents\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\03_2ProgramsList.baml C:\Users\mhustoles\Documents\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\04Settings.baml C:\Users\mhustoles\Documents\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\01Overview.baml C:\Users\mhustoles\Documents\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\02Session.baml C:\Users\mhustoles\Documents\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\03End.baml C:\Users\mhustoles\Documents\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\04Statistics.baml +C:\Users\mhustoles\Documents\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\Mascott.baml C:\Users\mhustoles\Documents\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Templates\HeaderTemplate.baml C:\Users\mhustoles\Documents\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\CoFlow.g.resources C:\Users\mhustoles\Documents\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.GeneratedMSBuildEditorConfig.editorconfig @@ -450,6 +71,3 @@ C:\Users\mhustoles\Documents\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektop C:\Users\mhustoles\Documents\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\CoFlow.pdb C:\Users\mhustoles\Documents\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\InnoLabProjektDektopApp.genruntimeconfig.cache C:\Users\mhustoles\Documents\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\ref\CoFlow.dll -C:\Users\mhustoles\Documents\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\Mascott.g.cs -C:\Users\mhustoles\Documents\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\GeneratedInternalTypeHelper.g.cs -C:\Users\mhustoles\Documents\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\Mascott.baml diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp.designer.deps.json b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp.designer.deps.json deleted file mode 100644 index 945cffd33cbcf3cbd8ec0f5f0e5ef48a9f373032..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp.designer.deps.json +++ /dev/null @@ -1,69 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v8.0", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v8.0": { - "Newtonsoft.Json/13.0.3": { - "runtime": { - "lib/net6.0/Newtonsoft.Json.dll": { - "assemblyVersion": "13.0.0.0", - "fileVersion": "13.0.3.27908" - } - } - }, - "System.CodeDom/9.0.0": { - "runtime": { - "lib/net8.0/System.CodeDom.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "System.Management/9.0.0": { - "dependencies": { - "System.CodeDom": "9.0.0" - }, - "runtime": { - "lib/net8.0/System.Management.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net8.0/System.Management.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - } - } - }, - "libraries": { - "Newtonsoft.Json/13.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==", - "path": "newtonsoft.json/13.0.3", - "hashPath": "newtonsoft.json.13.0.3.nupkg.sha512" - }, - "System.CodeDom/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-oTE5IfuMoET8yaZP/vdvy9xO47guAv/rOhe4DODuFBN3ySprcQOlXqO3j+e/H/YpKKR5sglrxRaZ2HYOhNJrqA==", - "path": "system.codedom/9.0.0", - "hashPath": "system.codedom.9.0.0.nupkg.sha512" - }, - "System.Management/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-bVh4xAMI5grY5GZoklKcMBLirhC8Lqzp63Ft3zXJacwGAlLyFdF4k0qz4pnKIlO6HyL2Z4zqmHm9UkzEo6FFsA==", - "path": "system.management/9.0.0", - "hashPath": "system.management.9.0.0.nupkg.sha512" - } - } -} \ No newline at end of file diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp.designer.runtimeconfig.json b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp.designer.runtimeconfig.json deleted file mode 100644 index 15315811b5d575c75c7a22f410b187e7d043cde5..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp.designer.runtimeconfig.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "runtimeOptions": { - "tfm": "net8.0", - "frameworks": [ - { - "name": "Microsoft.NETCore.App", - "version": "8.0.0" - }, - { - "name": "Microsoft.WindowsDesktop.App", - "version": "8.0.0" - } - ], - "additionalProbingPaths": [ - "C:\\Users\\Sandra\\.dotnet\\store\\|arch|\\|tfm|", - "C:\\Users\\Sandra\\.nuget\\packages" - ], - "configProperties": { - "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": true, - "Microsoft.NETCore.DotNetHostPolicy.SetAppPaths": true - } - } -} \ No newline at end of file diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp.dll b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp.dll deleted file mode 100644 index deed9e9b800a3ee9219bc15403db6e09a87dde8f..0000000000000000000000000000000000000000 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp.dll and /dev/null differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp.g.resources b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp.g.resources deleted file mode 100644 index ec8528d456998ea5f6ab96e16787a91ce544a5ca..0000000000000000000000000000000000000000 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp.g.resources and /dev/null differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp.pdb b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp.pdb deleted file mode 100644 index f6d2800f12bc618ae9ef1adc05d8ccc5d87e08d9..0000000000000000000000000000000000000000 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp.pdb and /dev/null differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_11kgolmm_wpftmp.AssemblyInfo.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_11kgolmm_wpftmp.AssemblyInfo.cs deleted file mode 100644 index 3af44555a66c1ad12342ead37d0fa6bd02a4627f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_11kgolmm_wpftmp.AssemblyInfo.cs +++ /dev/null @@ -1,25 +0,0 @@ -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+7d9fdc65b72f7cc8ea8104cf503e772444f3ebe7")] -[assembly: System.Reflection.AssemblyProductAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyTitleAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] -[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_11kgolmm_wpftmp.AssemblyInfoInputs.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_11kgolmm_wpftmp.AssemblyInfoInputs.cache deleted file mode 100644 index e53f172a5e43dae4e82cd22e0216ee2a440e3a7b..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_11kgolmm_wpftmp.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -c91725249ea17b46ca8a7399dd416160bad06e59a0d84c3a3853cbe729a5e799 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_11kgolmm_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_11kgolmm_wpftmp.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index cdd741c66d3f39f125dce83a55ab396d70566b53..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_11kgolmm_wpftmp.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,13 +0,0 @@ -is_global = true -build_property.TargetFramework = net8.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 = InnoLabProjektDektopApp_11kgolmm_wpftmp -build_property.ProjectDir = C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_11kgolmm_wpftmp.GlobalUsings.g.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_11kgolmm_wpftmp.GlobalUsings.g.cs deleted file mode 100644 index 08bb19f98f92ddf9f0a40b2a35cc780abab2477f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_11kgolmm_wpftmp.GlobalUsings.g.cs +++ /dev/null @@ -1,6 +0,0 @@ -// <auto-generated/> -global using global::System; -global using global::System.Collections.Generic; -global using global::System.Linq; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_11kgolmm_wpftmp.assets.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_11kgolmm_wpftmp.assets.cache deleted file mode 100644 index 0460bd6768a125df4088156ce559924e7f423e1f..0000000000000000000000000000000000000000 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_11kgolmm_wpftmp.assets.cache and /dev/null differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_2ptayal0_wpftmp.AssemblyInfo.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_2ptayal0_wpftmp.AssemblyInfo.cs deleted file mode 100644 index 3af44555a66c1ad12342ead37d0fa6bd02a4627f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_2ptayal0_wpftmp.AssemblyInfo.cs +++ /dev/null @@ -1,25 +0,0 @@ -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+7d9fdc65b72f7cc8ea8104cf503e772444f3ebe7")] -[assembly: System.Reflection.AssemblyProductAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyTitleAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] -[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_2ptayal0_wpftmp.AssemblyInfoInputs.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_2ptayal0_wpftmp.AssemblyInfoInputs.cache deleted file mode 100644 index e53f172a5e43dae4e82cd22e0216ee2a440e3a7b..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_2ptayal0_wpftmp.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -c91725249ea17b46ca8a7399dd416160bad06e59a0d84c3a3853cbe729a5e799 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_2ptayal0_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_2ptayal0_wpftmp.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 83068eba3c95df63621bc603199428a08414224b..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_2ptayal0_wpftmp.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,13 +0,0 @@ -is_global = true -build_property.TargetFramework = net8.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 = InnoLabProjektDektopApp_2ptayal0_wpftmp -build_property.ProjectDir = C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_2ptayal0_wpftmp.GlobalUsings.g.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_2ptayal0_wpftmp.GlobalUsings.g.cs deleted file mode 100644 index 08bb19f98f92ddf9f0a40b2a35cc780abab2477f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_2ptayal0_wpftmp.GlobalUsings.g.cs +++ /dev/null @@ -1,6 +0,0 @@ -// <auto-generated/> -global using global::System; -global using global::System.Collections.Generic; -global using global::System.Linq; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_2ptayal0_wpftmp.assets.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_2ptayal0_wpftmp.assets.cache deleted file mode 100644 index 4e54a6afaae111044611691622314e2ce0e95d52..0000000000000000000000000000000000000000 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_2ptayal0_wpftmp.assets.cache and /dev/null differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_2ptayal0_wpftmp.csproj.BuildWithSkipAnalyzers b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_2ptayal0_wpftmp.csproj.BuildWithSkipAnalyzers deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_2sau4xxu_wpftmp.AssemblyInfo.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_2sau4xxu_wpftmp.AssemblyInfo.cs deleted file mode 100644 index f5396dbcec163bc8051d4d144b2370b0ca77aabf..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_2sau4xxu_wpftmp.AssemblyInfo.cs +++ /dev/null @@ -1,25 +0,0 @@ -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+45b0308489b9a25e177645c2690d5b0da55ef8b5")] -[assembly: System.Reflection.AssemblyProductAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyTitleAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] -[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_2sau4xxu_wpftmp.AssemblyInfoInputs.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_2sau4xxu_wpftmp.AssemblyInfoInputs.cache deleted file mode 100644 index d2ffe315618bd1fddc6647db53993cbf7b29390d..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_2sau4xxu_wpftmp.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -06be5f1bb5b1abf8cb6f5e6e6ad37b7c40446f3b230e37cf3bf659b8fb4b695d diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_2sau4xxu_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_2sau4xxu_wpftmp.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index c9d1d77d030400f61ae0896dd74c4e94ad3afbe4..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_2sau4xxu_wpftmp.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,13 +0,0 @@ -is_global = true -build_property.TargetFramework = net8.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 = InnoLabProjektDektopApp_2sau4xxu_wpftmp -build_property.ProjectDir = C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_2sau4xxu_wpftmp.GlobalUsings.g.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_2sau4xxu_wpftmp.GlobalUsings.g.cs deleted file mode 100644 index 08bb19f98f92ddf9f0a40b2a35cc780abab2477f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_2sau4xxu_wpftmp.GlobalUsings.g.cs +++ /dev/null @@ -1,6 +0,0 @@ -// <auto-generated/> -global using global::System; -global using global::System.Collections.Generic; -global using global::System.Linq; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_2sau4xxu_wpftmp.assets.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_2sau4xxu_wpftmp.assets.cache deleted file mode 100644 index fb60895fd925c0b184e6118c7648a1e6e2523143..0000000000000000000000000000000000000000 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_2sau4xxu_wpftmp.assets.cache and /dev/null differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_2sau4xxu_wpftmp.csproj.BuildWithSkipAnalyzers b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_2sau4xxu_wpftmp.csproj.BuildWithSkipAnalyzers deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_3lfpradl_wpftmp.AssemblyInfo.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_3lfpradl_wpftmp.AssemblyInfo.cs deleted file mode 100644 index 3af44555a66c1ad12342ead37d0fa6bd02a4627f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_3lfpradl_wpftmp.AssemblyInfo.cs +++ /dev/null @@ -1,25 +0,0 @@ -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+7d9fdc65b72f7cc8ea8104cf503e772444f3ebe7")] -[assembly: System.Reflection.AssemblyProductAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyTitleAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] -[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_3lfpradl_wpftmp.AssemblyInfoInputs.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_3lfpradl_wpftmp.AssemblyInfoInputs.cache deleted file mode 100644 index e53f172a5e43dae4e82cd22e0216ee2a440e3a7b..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_3lfpradl_wpftmp.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -c91725249ea17b46ca8a7399dd416160bad06e59a0d84c3a3853cbe729a5e799 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_3lfpradl_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_3lfpradl_wpftmp.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index ea7f19a2044671d85ebb052be8dee1a0f2a1dd45..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_3lfpradl_wpftmp.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,13 +0,0 @@ -is_global = true -build_property.TargetFramework = net8.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 = InnoLabProjektDektopApp_3lfpradl_wpftmp -build_property.ProjectDir = C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_3lfpradl_wpftmp.GlobalUsings.g.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_3lfpradl_wpftmp.GlobalUsings.g.cs deleted file mode 100644 index 08bb19f98f92ddf9f0a40b2a35cc780abab2477f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_3lfpradl_wpftmp.GlobalUsings.g.cs +++ /dev/null @@ -1,6 +0,0 @@ -// <auto-generated/> -global using global::System; -global using global::System.Collections.Generic; -global using global::System.Linq; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_3lfpradl_wpftmp.assets.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_3lfpradl_wpftmp.assets.cache deleted file mode 100644 index 799033094e3037afbb0219cc9e0a963da71dc2b7..0000000000000000000000000000000000000000 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_3lfpradl_wpftmp.assets.cache and /dev/null differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_3nacdzpt_wpftmp.AssemblyInfo.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_3nacdzpt_wpftmp.AssemblyInfo.cs deleted file mode 100644 index 3af44555a66c1ad12342ead37d0fa6bd02a4627f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_3nacdzpt_wpftmp.AssemblyInfo.cs +++ /dev/null @@ -1,25 +0,0 @@ -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+7d9fdc65b72f7cc8ea8104cf503e772444f3ebe7")] -[assembly: System.Reflection.AssemblyProductAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyTitleAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] -[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_3nacdzpt_wpftmp.AssemblyInfoInputs.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_3nacdzpt_wpftmp.AssemblyInfoInputs.cache deleted file mode 100644 index e53f172a5e43dae4e82cd22e0216ee2a440e3a7b..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_3nacdzpt_wpftmp.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -c91725249ea17b46ca8a7399dd416160bad06e59a0d84c3a3853cbe729a5e799 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_3nacdzpt_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_3nacdzpt_wpftmp.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index e93cbb5a913437066649936c095cd709ca8b30af..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_3nacdzpt_wpftmp.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,13 +0,0 @@ -is_global = true -build_property.TargetFramework = net8.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 = InnoLabProjektDektopApp_3nacdzpt_wpftmp -build_property.ProjectDir = C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_3nacdzpt_wpftmp.GlobalUsings.g.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_3nacdzpt_wpftmp.GlobalUsings.g.cs deleted file mode 100644 index 08bb19f98f92ddf9f0a40b2a35cc780abab2477f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_3nacdzpt_wpftmp.GlobalUsings.g.cs +++ /dev/null @@ -1,6 +0,0 @@ -// <auto-generated/> -global using global::System; -global using global::System.Collections.Generic; -global using global::System.Linq; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_3nacdzpt_wpftmp.assets.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_3nacdzpt_wpftmp.assets.cache deleted file mode 100644 index 1ca247d36a2b878a2c3b2f86323b43f1bc389ff5..0000000000000000000000000000000000000000 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_3nacdzpt_wpftmp.assets.cache and /dev/null differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_3qcufm2a_wpftmp.AssemblyInfo.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_3qcufm2a_wpftmp.AssemblyInfo.cs deleted file mode 100644 index f5396dbcec163bc8051d4d144b2370b0ca77aabf..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_3qcufm2a_wpftmp.AssemblyInfo.cs +++ /dev/null @@ -1,25 +0,0 @@ -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+45b0308489b9a25e177645c2690d5b0da55ef8b5")] -[assembly: System.Reflection.AssemblyProductAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyTitleAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] -[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_3qcufm2a_wpftmp.AssemblyInfoInputs.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_3qcufm2a_wpftmp.AssemblyInfoInputs.cache deleted file mode 100644 index d2ffe315618bd1fddc6647db53993cbf7b29390d..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_3qcufm2a_wpftmp.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -06be5f1bb5b1abf8cb6f5e6e6ad37b7c40446f3b230e37cf3bf659b8fb4b695d diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_3qcufm2a_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_3qcufm2a_wpftmp.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 89e0660a978e0422bb434dd26345baeb29e39259..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_3qcufm2a_wpftmp.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,13 +0,0 @@ -is_global = true -build_property.TargetFramework = net8.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 = InnoLabProjektDektopApp_3qcufm2a_wpftmp -build_property.ProjectDir = C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_3qcufm2a_wpftmp.GlobalUsings.g.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_3qcufm2a_wpftmp.GlobalUsings.g.cs deleted file mode 100644 index 08bb19f98f92ddf9f0a40b2a35cc780abab2477f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_3qcufm2a_wpftmp.GlobalUsings.g.cs +++ /dev/null @@ -1,6 +0,0 @@ -// <auto-generated/> -global using global::System; -global using global::System.Collections.Generic; -global using global::System.Linq; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_3qcufm2a_wpftmp.assets.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_3qcufm2a_wpftmp.assets.cache deleted file mode 100644 index 3799777fe55c47ee3e12fe4326b51de8d336024b..0000000000000000000000000000000000000000 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_3qcufm2a_wpftmp.assets.cache and /dev/null differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_5jw5yjbs_wpftmp.AssemblyInfo.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_5jw5yjbs_wpftmp.AssemblyInfo.cs deleted file mode 100644 index 3af44555a66c1ad12342ead37d0fa6bd02a4627f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_5jw5yjbs_wpftmp.AssemblyInfo.cs +++ /dev/null @@ -1,25 +0,0 @@ -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+7d9fdc65b72f7cc8ea8104cf503e772444f3ebe7")] -[assembly: System.Reflection.AssemblyProductAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyTitleAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] -[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_5jw5yjbs_wpftmp.AssemblyInfoInputs.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_5jw5yjbs_wpftmp.AssemblyInfoInputs.cache deleted file mode 100644 index e53f172a5e43dae4e82cd22e0216ee2a440e3a7b..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_5jw5yjbs_wpftmp.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -c91725249ea17b46ca8a7399dd416160bad06e59a0d84c3a3853cbe729a5e799 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_5jw5yjbs_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_5jw5yjbs_wpftmp.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 1736c4e873d31842a4bc7a12dc2a09d2e483dd4e..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_5jw5yjbs_wpftmp.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,13 +0,0 @@ -is_global = true -build_property.TargetFramework = net8.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 = InnoLabProjektDektopApp_5jw5yjbs_wpftmp -build_property.ProjectDir = C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_5jw5yjbs_wpftmp.GlobalUsings.g.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_5jw5yjbs_wpftmp.GlobalUsings.g.cs deleted file mode 100644 index 08bb19f98f92ddf9f0a40b2a35cc780abab2477f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_5jw5yjbs_wpftmp.GlobalUsings.g.cs +++ /dev/null @@ -1,6 +0,0 @@ -// <auto-generated/> -global using global::System; -global using global::System.Collections.Generic; -global using global::System.Linq; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_5jw5yjbs_wpftmp.assets.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_5jw5yjbs_wpftmp.assets.cache deleted file mode 100644 index ad177f6c2b5ba6a12e541863c6ef02eaf539235a..0000000000000000000000000000000000000000 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_5jw5yjbs_wpftmp.assets.cache and /dev/null differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_5jw5yjbs_wpftmp.csproj.BuildWithSkipAnalyzers b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_5jw5yjbs_wpftmp.csproj.BuildWithSkipAnalyzers deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_Content.g.i.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_Content.g.i.cs deleted file mode 100644 index 63e04c5c5af524286cddf451727be0407c592d9a..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_Content.g.i.cs +++ /dev/null @@ -1,13 +0,0 @@ -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("assets/blockedprocesses.json")] - - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_MarkupCompile.i.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_MarkupCompile.i.cache deleted file mode 100644 index 7415cbd36a8c29ae0ef15e83c71db49c0f116301..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_MarkupCompile.i.cache +++ /dev/null @@ -1,20 +0,0 @@ -InnoLabProjektDektopApp -1.0.0.0 - -winexe -C# -.cs -C:\Users\Phil\Source\Repos\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\ -InnoLabProjektDektopApp -none -false -TRACE;DEBUG;NET;NET8_0;NETCOREAPP -C:\Users\Phil\Source\Repos\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\App.xaml -11-54832007 -1-409365417 -16308522296 -2001070804990 -Screens\FirstLaunch\01Startscreen.xaml;Screens\FirstLaunch\02Progress.xaml;Screens\FirstLaunch\03_0Distractions.xaml;Screens\FirstLaunch\03_1DistractionsList.xaml;Screens\FirstLaunch\04Settings.xaml;Screens\Regulaer\01Overview.xaml;Screens\Regulaer\02Session.xaml;Screens\Regulaer\03End.xaml;Screens\Regulaer\04Statistics.xaml;Screens\Templates\HeaderTemplate.xaml;Styles\Styles.xaml; - -True - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_akbxehcf_wpftmp.AssemblyInfo.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_akbxehcf_wpftmp.AssemblyInfo.cs deleted file mode 100644 index f5396dbcec163bc8051d4d144b2370b0ca77aabf..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_akbxehcf_wpftmp.AssemblyInfo.cs +++ /dev/null @@ -1,25 +0,0 @@ -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+45b0308489b9a25e177645c2690d5b0da55ef8b5")] -[assembly: System.Reflection.AssemblyProductAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyTitleAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] -[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_akbxehcf_wpftmp.AssemblyInfoInputs.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_akbxehcf_wpftmp.AssemblyInfoInputs.cache deleted file mode 100644 index d2ffe315618bd1fddc6647db53993cbf7b29390d..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_akbxehcf_wpftmp.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -06be5f1bb5b1abf8cb6f5e6e6ad37b7c40446f3b230e37cf3bf659b8fb4b695d diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_akbxehcf_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_akbxehcf_wpftmp.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 15880a1c2a999775ed97ad48469dd9b9589e085d..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_akbxehcf_wpftmp.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,13 +0,0 @@ -is_global = true -build_property.TargetFramework = net8.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 = InnoLabProjektDektopApp_akbxehcf_wpftmp -build_property.ProjectDir = C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_akbxehcf_wpftmp.GlobalUsings.g.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_akbxehcf_wpftmp.GlobalUsings.g.cs deleted file mode 100644 index 08bb19f98f92ddf9f0a40b2a35cc780abab2477f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_akbxehcf_wpftmp.GlobalUsings.g.cs +++ /dev/null @@ -1,6 +0,0 @@ -// <auto-generated/> -global using global::System; -global using global::System.Collections.Generic; -global using global::System.Linq; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_akbxehcf_wpftmp.assets.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_akbxehcf_wpftmp.assets.cache deleted file mode 100644 index 9c07d91b7b92e8f90e24f7cb90a32441d35ba8c8..0000000000000000000000000000000000000000 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_akbxehcf_wpftmp.assets.cache and /dev/null differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_cjqefd2s_wpftmp.AssemblyInfo.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_cjqefd2s_wpftmp.AssemblyInfo.cs deleted file mode 100644 index f5396dbcec163bc8051d4d144b2370b0ca77aabf..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_cjqefd2s_wpftmp.AssemblyInfo.cs +++ /dev/null @@ -1,25 +0,0 @@ -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+45b0308489b9a25e177645c2690d5b0da55ef8b5")] -[assembly: System.Reflection.AssemblyProductAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyTitleAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] -[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_cjqefd2s_wpftmp.AssemblyInfoInputs.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_cjqefd2s_wpftmp.AssemblyInfoInputs.cache deleted file mode 100644 index d2ffe315618bd1fddc6647db53993cbf7b29390d..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_cjqefd2s_wpftmp.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -06be5f1bb5b1abf8cb6f5e6e6ad37b7c40446f3b230e37cf3bf659b8fb4b695d diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_cjqefd2s_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_cjqefd2s_wpftmp.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 3e006b745f3b7c7c7ac133014aa484b785b3c3df..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_cjqefd2s_wpftmp.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,13 +0,0 @@ -is_global = true -build_property.TargetFramework = net8.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 = InnoLabProjektDektopApp_cjqefd2s_wpftmp -build_property.ProjectDir = C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_cjqefd2s_wpftmp.GlobalUsings.g.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_cjqefd2s_wpftmp.GlobalUsings.g.cs deleted file mode 100644 index 08bb19f98f92ddf9f0a40b2a35cc780abab2477f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_cjqefd2s_wpftmp.GlobalUsings.g.cs +++ /dev/null @@ -1,6 +0,0 @@ -// <auto-generated/> -global using global::System; -global using global::System.Collections.Generic; -global using global::System.Linq; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_cjqefd2s_wpftmp.assets.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_cjqefd2s_wpftmp.assets.cache deleted file mode 100644 index f53641e22ee6e68258f3b2e6ec8c07ed1e9bfb67..0000000000000000000000000000000000000000 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_cjqefd2s_wpftmp.assets.cache and /dev/null differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_cjqefd2s_wpftmp.csproj.BuildWithSkipAnalyzers b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_cjqefd2s_wpftmp.csproj.BuildWithSkipAnalyzers deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_d2flurcm_wpftmp.AssemblyInfo.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_d2flurcm_wpftmp.AssemblyInfo.cs deleted file mode 100644 index f5396dbcec163bc8051d4d144b2370b0ca77aabf..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_d2flurcm_wpftmp.AssemblyInfo.cs +++ /dev/null @@ -1,25 +0,0 @@ -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+45b0308489b9a25e177645c2690d5b0da55ef8b5")] -[assembly: System.Reflection.AssemblyProductAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyTitleAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] -[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_d2flurcm_wpftmp.AssemblyInfoInputs.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_d2flurcm_wpftmp.AssemblyInfoInputs.cache deleted file mode 100644 index d2ffe315618bd1fddc6647db53993cbf7b29390d..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_d2flurcm_wpftmp.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -06be5f1bb5b1abf8cb6f5e6e6ad37b7c40446f3b230e37cf3bf659b8fb4b695d diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_d2flurcm_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_d2flurcm_wpftmp.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index c969e6b963be827c2d4464ee9cc4cf76f98237d9..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_d2flurcm_wpftmp.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,13 +0,0 @@ -is_global = true -build_property.TargetFramework = net8.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 = InnoLabProjektDektopApp_d2flurcm_wpftmp -build_property.ProjectDir = C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_d2flurcm_wpftmp.GlobalUsings.g.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_d2flurcm_wpftmp.GlobalUsings.g.cs deleted file mode 100644 index 08bb19f98f92ddf9f0a40b2a35cc780abab2477f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_d2flurcm_wpftmp.GlobalUsings.g.cs +++ /dev/null @@ -1,6 +0,0 @@ -// <auto-generated/> -global using global::System; -global using global::System.Collections.Generic; -global using global::System.Linq; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_d2flurcm_wpftmp.assets.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_d2flurcm_wpftmp.assets.cache deleted file mode 100644 index a84c3fadc3f054446e6c92e5e9e05ea12c08282c..0000000000000000000000000000000000000000 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_d2flurcm_wpftmp.assets.cache and /dev/null differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_d2flurcm_wpftmp.csproj.BuildWithSkipAnalyzers b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_d2flurcm_wpftmp.csproj.BuildWithSkipAnalyzers deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_d5g1el3h_wpftmp.AssemblyInfo.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_d5g1el3h_wpftmp.AssemblyInfo.cs deleted file mode 100644 index 3af44555a66c1ad12342ead37d0fa6bd02a4627f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_d5g1el3h_wpftmp.AssemblyInfo.cs +++ /dev/null @@ -1,25 +0,0 @@ -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+7d9fdc65b72f7cc8ea8104cf503e772444f3ebe7")] -[assembly: System.Reflection.AssemblyProductAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyTitleAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] -[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_d5g1el3h_wpftmp.AssemblyInfoInputs.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_d5g1el3h_wpftmp.AssemblyInfoInputs.cache deleted file mode 100644 index e53f172a5e43dae4e82cd22e0216ee2a440e3a7b..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_d5g1el3h_wpftmp.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -c91725249ea17b46ca8a7399dd416160bad06e59a0d84c3a3853cbe729a5e799 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_d5g1el3h_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_d5g1el3h_wpftmp.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index f24c84741f215d890ea50a6ae728bf557aed1d07..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_d5g1el3h_wpftmp.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,13 +0,0 @@ -is_global = true -build_property.TargetFramework = net8.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 = InnoLabProjektDektopApp_d5g1el3h_wpftmp -build_property.ProjectDir = C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_d5g1el3h_wpftmp.GlobalUsings.g.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_d5g1el3h_wpftmp.GlobalUsings.g.cs deleted file mode 100644 index 08bb19f98f92ddf9f0a40b2a35cc780abab2477f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_d5g1el3h_wpftmp.GlobalUsings.g.cs +++ /dev/null @@ -1,6 +0,0 @@ -// <auto-generated/> -global using global::System; -global using global::System.Collections.Generic; -global using global::System.Linq; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_d5g1el3h_wpftmp.assets.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_d5g1el3h_wpftmp.assets.cache deleted file mode 100644 index 3866b1ba9d235d5a0f06d22bad5665eaa69899fe..0000000000000000000000000000000000000000 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_d5g1el3h_wpftmp.assets.cache and /dev/null differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_d5g1el3h_wpftmp.csproj.BuildWithSkipAnalyzers b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_d5g1el3h_wpftmp.csproj.BuildWithSkipAnalyzers deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_eezjtprf_wpftmp.AssemblyInfo.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_eezjtprf_wpftmp.AssemblyInfo.cs deleted file mode 100644 index f5396dbcec163bc8051d4d144b2370b0ca77aabf..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_eezjtprf_wpftmp.AssemblyInfo.cs +++ /dev/null @@ -1,25 +0,0 @@ -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+45b0308489b9a25e177645c2690d5b0da55ef8b5")] -[assembly: System.Reflection.AssemblyProductAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyTitleAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] -[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_eezjtprf_wpftmp.AssemblyInfoInputs.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_eezjtprf_wpftmp.AssemblyInfoInputs.cache deleted file mode 100644 index d2ffe315618bd1fddc6647db53993cbf7b29390d..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_eezjtprf_wpftmp.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -06be5f1bb5b1abf8cb6f5e6e6ad37b7c40446f3b230e37cf3bf659b8fb4b695d diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_eezjtprf_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_eezjtprf_wpftmp.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index d064bc90df3f92a94d009a34aad6fc50efe171aa..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_eezjtprf_wpftmp.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,13 +0,0 @@ -is_global = true -build_property.TargetFramework = net8.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 = InnoLabProjektDektopApp_eezjtprf_wpftmp -build_property.ProjectDir = C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_eezjtprf_wpftmp.GlobalUsings.g.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_eezjtprf_wpftmp.GlobalUsings.g.cs deleted file mode 100644 index 08bb19f98f92ddf9f0a40b2a35cc780abab2477f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_eezjtprf_wpftmp.GlobalUsings.g.cs +++ /dev/null @@ -1,6 +0,0 @@ -// <auto-generated/> -global using global::System; -global using global::System.Collections.Generic; -global using global::System.Linq; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_eezjtprf_wpftmp.assets.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_eezjtprf_wpftmp.assets.cache deleted file mode 100644 index 932eeda3b4e3212b3debde46e74953dc3c2402ec..0000000000000000000000000000000000000000 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_eezjtprf_wpftmp.assets.cache and /dev/null differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_eezjtprf_wpftmp.csproj.BuildWithSkipAnalyzers b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_eezjtprf_wpftmp.csproj.BuildWithSkipAnalyzers deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_elzlhq3x_wpftmp.AssemblyInfo.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_elzlhq3x_wpftmp.AssemblyInfo.cs deleted file mode 100644 index f5396dbcec163bc8051d4d144b2370b0ca77aabf..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_elzlhq3x_wpftmp.AssemblyInfo.cs +++ /dev/null @@ -1,25 +0,0 @@ -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+45b0308489b9a25e177645c2690d5b0da55ef8b5")] -[assembly: System.Reflection.AssemblyProductAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyTitleAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] -[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_elzlhq3x_wpftmp.AssemblyInfoInputs.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_elzlhq3x_wpftmp.AssemblyInfoInputs.cache deleted file mode 100644 index d2ffe315618bd1fddc6647db53993cbf7b29390d..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_elzlhq3x_wpftmp.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -06be5f1bb5b1abf8cb6f5e6e6ad37b7c40446f3b230e37cf3bf659b8fb4b695d diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_elzlhq3x_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_elzlhq3x_wpftmp.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 09dcecd4df44e31ab817af401a6998a12c9d6fbf..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_elzlhq3x_wpftmp.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,13 +0,0 @@ -is_global = true -build_property.TargetFramework = net8.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 = InnoLabProjektDektopApp_elzlhq3x_wpftmp -build_property.ProjectDir = C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_elzlhq3x_wpftmp.GlobalUsings.g.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_elzlhq3x_wpftmp.GlobalUsings.g.cs deleted file mode 100644 index 08bb19f98f92ddf9f0a40b2a35cc780abab2477f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_elzlhq3x_wpftmp.GlobalUsings.g.cs +++ /dev/null @@ -1,6 +0,0 @@ -// <auto-generated/> -global using global::System; -global using global::System.Collections.Generic; -global using global::System.Linq; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_elzlhq3x_wpftmp.assets.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_elzlhq3x_wpftmp.assets.cache deleted file mode 100644 index 4e671768ca9b1ebd3c52a4c689a3626bcc005b54..0000000000000000000000000000000000000000 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_elzlhq3x_wpftmp.assets.cache and /dev/null differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_elzlhq3x_wpftmp.csproj.BuildWithSkipAnalyzers b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_elzlhq3x_wpftmp.csproj.BuildWithSkipAnalyzers deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_eo4opm4v_wpftmp.AssemblyInfo.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_eo4opm4v_wpftmp.AssemblyInfo.cs deleted file mode 100644 index 3af44555a66c1ad12342ead37d0fa6bd02a4627f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_eo4opm4v_wpftmp.AssemblyInfo.cs +++ /dev/null @@ -1,25 +0,0 @@ -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+7d9fdc65b72f7cc8ea8104cf503e772444f3ebe7")] -[assembly: System.Reflection.AssemblyProductAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyTitleAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] -[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_eo4opm4v_wpftmp.AssemblyInfoInputs.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_eo4opm4v_wpftmp.AssemblyInfoInputs.cache deleted file mode 100644 index e53f172a5e43dae4e82cd22e0216ee2a440e3a7b..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_eo4opm4v_wpftmp.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -c91725249ea17b46ca8a7399dd416160bad06e59a0d84c3a3853cbe729a5e799 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_eo4opm4v_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_eo4opm4v_wpftmp.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 5ec641970fd82aca226d0a2cb9edaac8c2c2d2af..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_eo4opm4v_wpftmp.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,13 +0,0 @@ -is_global = true -build_property.TargetFramework = net8.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 = InnoLabProjektDektopApp_eo4opm4v_wpftmp -build_property.ProjectDir = C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_eo4opm4v_wpftmp.GlobalUsings.g.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_eo4opm4v_wpftmp.GlobalUsings.g.cs deleted file mode 100644 index 08bb19f98f92ddf9f0a40b2a35cc780abab2477f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_eo4opm4v_wpftmp.GlobalUsings.g.cs +++ /dev/null @@ -1,6 +0,0 @@ -// <auto-generated/> -global using global::System; -global using global::System.Collections.Generic; -global using global::System.Linq; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_eo4opm4v_wpftmp.assets.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_eo4opm4v_wpftmp.assets.cache deleted file mode 100644 index e85be9d4e0130f008ae9246bbc361c28d83e2000..0000000000000000000000000000000000000000 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_eo4opm4v_wpftmp.assets.cache and /dev/null differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_fculczfx_wpftmp.AssemblyInfo.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_fculczfx_wpftmp.AssemblyInfo.cs deleted file mode 100644 index 3af44555a66c1ad12342ead37d0fa6bd02a4627f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_fculczfx_wpftmp.AssemblyInfo.cs +++ /dev/null @@ -1,25 +0,0 @@ -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+7d9fdc65b72f7cc8ea8104cf503e772444f3ebe7")] -[assembly: System.Reflection.AssemblyProductAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyTitleAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] -[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_fculczfx_wpftmp.AssemblyInfoInputs.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_fculczfx_wpftmp.AssemblyInfoInputs.cache deleted file mode 100644 index e53f172a5e43dae4e82cd22e0216ee2a440e3a7b..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_fculczfx_wpftmp.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -c91725249ea17b46ca8a7399dd416160bad06e59a0d84c3a3853cbe729a5e799 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_fculczfx_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_fculczfx_wpftmp.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index d800815d51fbad83f7ef9597d3c60e3206180aa2..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_fculczfx_wpftmp.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,13 +0,0 @@ -is_global = true -build_property.TargetFramework = net8.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 = InnoLabProjektDektopApp_fculczfx_wpftmp -build_property.ProjectDir = C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_fculczfx_wpftmp.GlobalUsings.g.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_fculczfx_wpftmp.GlobalUsings.g.cs deleted file mode 100644 index 08bb19f98f92ddf9f0a40b2a35cc780abab2477f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_fculczfx_wpftmp.GlobalUsings.g.cs +++ /dev/null @@ -1,6 +0,0 @@ -// <auto-generated/> -global using global::System; -global using global::System.Collections.Generic; -global using global::System.Linq; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_fculczfx_wpftmp.assets.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_fculczfx_wpftmp.assets.cache deleted file mode 100644 index 9fba377e1670e6410d70a4af31f18da697150da3..0000000000000000000000000000000000000000 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_fculczfx_wpftmp.assets.cache and /dev/null differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ffds5dj0_wpftmp.AssemblyInfo.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ffds5dj0_wpftmp.AssemblyInfo.cs deleted file mode 100644 index 3af44555a66c1ad12342ead37d0fa6bd02a4627f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ffds5dj0_wpftmp.AssemblyInfo.cs +++ /dev/null @@ -1,25 +0,0 @@ -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+7d9fdc65b72f7cc8ea8104cf503e772444f3ebe7")] -[assembly: System.Reflection.AssemblyProductAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyTitleAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] -[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ffds5dj0_wpftmp.AssemblyInfoInputs.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ffds5dj0_wpftmp.AssemblyInfoInputs.cache deleted file mode 100644 index e53f172a5e43dae4e82cd22e0216ee2a440e3a7b..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ffds5dj0_wpftmp.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -c91725249ea17b46ca8a7399dd416160bad06e59a0d84c3a3853cbe729a5e799 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ffds5dj0_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ffds5dj0_wpftmp.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index cf3e1715e1e453dde1903a96ebf62c10e93c7c4c..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ffds5dj0_wpftmp.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,13 +0,0 @@ -is_global = true -build_property.TargetFramework = net8.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 = InnoLabProjektDektopApp_ffds5dj0_wpftmp -build_property.ProjectDir = C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ffds5dj0_wpftmp.GlobalUsings.g.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ffds5dj0_wpftmp.GlobalUsings.g.cs deleted file mode 100644 index 08bb19f98f92ddf9f0a40b2a35cc780abab2477f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ffds5dj0_wpftmp.GlobalUsings.g.cs +++ /dev/null @@ -1,6 +0,0 @@ -// <auto-generated/> -global using global::System; -global using global::System.Collections.Generic; -global using global::System.Linq; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ffds5dj0_wpftmp.assets.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ffds5dj0_wpftmp.assets.cache deleted file mode 100644 index 5cefd812ee7eafec82ffd4546b48be8153b61970..0000000000000000000000000000000000000000 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ffds5dj0_wpftmp.assets.cache and /dev/null differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ffds5dj0_wpftmp.csproj.BuildWithSkipAnalyzers b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ffds5dj0_wpftmp.csproj.BuildWithSkipAnalyzers deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_hoci2upi_wpftmp.AssemblyInfo.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_hoci2upi_wpftmp.AssemblyInfo.cs deleted file mode 100644 index f5396dbcec163bc8051d4d144b2370b0ca77aabf..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_hoci2upi_wpftmp.AssemblyInfo.cs +++ /dev/null @@ -1,25 +0,0 @@ -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+45b0308489b9a25e177645c2690d5b0da55ef8b5")] -[assembly: System.Reflection.AssemblyProductAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyTitleAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] -[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_hoci2upi_wpftmp.AssemblyInfoInputs.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_hoci2upi_wpftmp.AssemblyInfoInputs.cache deleted file mode 100644 index d2ffe315618bd1fddc6647db53993cbf7b29390d..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_hoci2upi_wpftmp.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -06be5f1bb5b1abf8cb6f5e6e6ad37b7c40446f3b230e37cf3bf659b8fb4b695d diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_hoci2upi_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_hoci2upi_wpftmp.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 574340cda39b02f82f54dacd103b25af1f5f52f8..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_hoci2upi_wpftmp.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,13 +0,0 @@ -is_global = true -build_property.TargetFramework = net8.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 = InnoLabProjektDektopApp_hoci2upi_wpftmp -build_property.ProjectDir = C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_hoci2upi_wpftmp.GlobalUsings.g.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_hoci2upi_wpftmp.GlobalUsings.g.cs deleted file mode 100644 index 08bb19f98f92ddf9f0a40b2a35cc780abab2477f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_hoci2upi_wpftmp.GlobalUsings.g.cs +++ /dev/null @@ -1,6 +0,0 @@ -// <auto-generated/> -global using global::System; -global using global::System.Collections.Generic; -global using global::System.Linq; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_hoci2upi_wpftmp.assets.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_hoci2upi_wpftmp.assets.cache deleted file mode 100644 index 84d86c91c4a8fb50f69684994bb1a4bbd2f3ef82..0000000000000000000000000000000000000000 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_hoci2upi_wpftmp.assets.cache and /dev/null differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_hoci2upi_wpftmp.csproj.BuildWithSkipAnalyzers b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_hoci2upi_wpftmp.csproj.BuildWithSkipAnalyzers deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_i4x0xp05_wpftmp.AssemblyInfo.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_i4x0xp05_wpftmp.AssemblyInfo.cs deleted file mode 100644 index 3af44555a66c1ad12342ead37d0fa6bd02a4627f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_i4x0xp05_wpftmp.AssemblyInfo.cs +++ /dev/null @@ -1,25 +0,0 @@ -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+7d9fdc65b72f7cc8ea8104cf503e772444f3ebe7")] -[assembly: System.Reflection.AssemblyProductAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyTitleAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] -[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_i4x0xp05_wpftmp.AssemblyInfoInputs.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_i4x0xp05_wpftmp.AssemblyInfoInputs.cache deleted file mode 100644 index e53f172a5e43dae4e82cd22e0216ee2a440e3a7b..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_i4x0xp05_wpftmp.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -c91725249ea17b46ca8a7399dd416160bad06e59a0d84c3a3853cbe729a5e799 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_i4x0xp05_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_i4x0xp05_wpftmp.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 570f939bef42f5121ce867b5ce9eade35f52959a..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_i4x0xp05_wpftmp.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,13 +0,0 @@ -is_global = true -build_property.TargetFramework = net8.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 = InnoLabProjektDektopApp_i4x0xp05_wpftmp -build_property.ProjectDir = C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_i4x0xp05_wpftmp.GlobalUsings.g.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_i4x0xp05_wpftmp.GlobalUsings.g.cs deleted file mode 100644 index 08bb19f98f92ddf9f0a40b2a35cc780abab2477f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_i4x0xp05_wpftmp.GlobalUsings.g.cs +++ /dev/null @@ -1,6 +0,0 @@ -// <auto-generated/> -global using global::System; -global using global::System.Collections.Generic; -global using global::System.Linq; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_i4x0xp05_wpftmp.assets.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_i4x0xp05_wpftmp.assets.cache deleted file mode 100644 index b79fa069f45f9874c95755a02b9e57dc306f3d94..0000000000000000000000000000000000000000 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_i4x0xp05_wpftmp.assets.cache and /dev/null differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_i4x0xp05_wpftmp.csproj.BuildWithSkipAnalyzers b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_i4x0xp05_wpftmp.csproj.BuildWithSkipAnalyzers deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_igqawv2h_wpftmp.AssemblyInfo.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_igqawv2h_wpftmp.AssemblyInfo.cs deleted file mode 100644 index f5396dbcec163bc8051d4d144b2370b0ca77aabf..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_igqawv2h_wpftmp.AssemblyInfo.cs +++ /dev/null @@ -1,25 +0,0 @@ -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+45b0308489b9a25e177645c2690d5b0da55ef8b5")] -[assembly: System.Reflection.AssemblyProductAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyTitleAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] -[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_igqawv2h_wpftmp.AssemblyInfoInputs.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_igqawv2h_wpftmp.AssemblyInfoInputs.cache deleted file mode 100644 index d2ffe315618bd1fddc6647db53993cbf7b29390d..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_igqawv2h_wpftmp.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -06be5f1bb5b1abf8cb6f5e6e6ad37b7c40446f3b230e37cf3bf659b8fb4b695d diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_igqawv2h_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_igqawv2h_wpftmp.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index b9c20546310c6389fcfcfc1d5425a9708e6f371a..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_igqawv2h_wpftmp.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,13 +0,0 @@ -is_global = true -build_property.TargetFramework = net8.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 = InnoLabProjektDektopApp_igqawv2h_wpftmp -build_property.ProjectDir = C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_igqawv2h_wpftmp.GlobalUsings.g.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_igqawv2h_wpftmp.GlobalUsings.g.cs deleted file mode 100644 index 08bb19f98f92ddf9f0a40b2a35cc780abab2477f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_igqawv2h_wpftmp.GlobalUsings.g.cs +++ /dev/null @@ -1,6 +0,0 @@ -// <auto-generated/> -global using global::System; -global using global::System.Collections.Generic; -global using global::System.Linq; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_igqawv2h_wpftmp.assets.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_igqawv2h_wpftmp.assets.cache deleted file mode 100644 index 7e5eb31b07d26eaa98de4a898d778a1907f8c21f..0000000000000000000000000000000000000000 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_igqawv2h_wpftmp.assets.cache and /dev/null differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_igqawv2h_wpftmp.csproj.BuildWithSkipAnalyzers b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_igqawv2h_wpftmp.csproj.BuildWithSkipAnalyzers deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_jeeyxrho_wpftmp.AssemblyInfo.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_jeeyxrho_wpftmp.AssemblyInfo.cs deleted file mode 100644 index 3af44555a66c1ad12342ead37d0fa6bd02a4627f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_jeeyxrho_wpftmp.AssemblyInfo.cs +++ /dev/null @@ -1,25 +0,0 @@ -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+7d9fdc65b72f7cc8ea8104cf503e772444f3ebe7")] -[assembly: System.Reflection.AssemblyProductAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyTitleAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] -[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_jeeyxrho_wpftmp.AssemblyInfoInputs.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_jeeyxrho_wpftmp.AssemblyInfoInputs.cache deleted file mode 100644 index e53f172a5e43dae4e82cd22e0216ee2a440e3a7b..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_jeeyxrho_wpftmp.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -c91725249ea17b46ca8a7399dd416160bad06e59a0d84c3a3853cbe729a5e799 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_jeeyxrho_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_jeeyxrho_wpftmp.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index a9c7850f95ccd183375588f95a2857607b3ba1b5..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_jeeyxrho_wpftmp.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,13 +0,0 @@ -is_global = true -build_property.TargetFramework = net8.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 = InnoLabProjektDektopApp_jeeyxrho_wpftmp -build_property.ProjectDir = C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_jeeyxrho_wpftmp.GlobalUsings.g.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_jeeyxrho_wpftmp.GlobalUsings.g.cs deleted file mode 100644 index 08bb19f98f92ddf9f0a40b2a35cc780abab2477f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_jeeyxrho_wpftmp.GlobalUsings.g.cs +++ /dev/null @@ -1,6 +0,0 @@ -// <auto-generated/> -global using global::System; -global using global::System.Collections.Generic; -global using global::System.Linq; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_jeeyxrho_wpftmp.assets.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_jeeyxrho_wpftmp.assets.cache deleted file mode 100644 index 0e13cf8458629962113707f160b4a7a54d7c6369..0000000000000000000000000000000000000000 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_jeeyxrho_wpftmp.assets.cache and /dev/null differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_jeeyxrho_wpftmp.csproj.BuildWithSkipAnalyzers b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_jeeyxrho_wpftmp.csproj.BuildWithSkipAnalyzers deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_jobikm3u_wpftmp.AssemblyInfo.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_jobikm3u_wpftmp.AssemblyInfo.cs deleted file mode 100644 index f5396dbcec163bc8051d4d144b2370b0ca77aabf..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_jobikm3u_wpftmp.AssemblyInfo.cs +++ /dev/null @@ -1,25 +0,0 @@ -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+45b0308489b9a25e177645c2690d5b0da55ef8b5")] -[assembly: System.Reflection.AssemblyProductAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyTitleAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] -[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_jobikm3u_wpftmp.AssemblyInfoInputs.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_jobikm3u_wpftmp.AssemblyInfoInputs.cache deleted file mode 100644 index d2ffe315618bd1fddc6647db53993cbf7b29390d..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_jobikm3u_wpftmp.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -06be5f1bb5b1abf8cb6f5e6e6ad37b7c40446f3b230e37cf3bf659b8fb4b695d diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_jobikm3u_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_jobikm3u_wpftmp.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index a077e681d084451fa38c52e407de91dc719829d7..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_jobikm3u_wpftmp.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,13 +0,0 @@ -is_global = true -build_property.TargetFramework = net8.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 = InnoLabProjektDektopApp_jobikm3u_wpftmp -build_property.ProjectDir = C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_jobikm3u_wpftmp.GlobalUsings.g.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_jobikm3u_wpftmp.GlobalUsings.g.cs deleted file mode 100644 index 08bb19f98f92ddf9f0a40b2a35cc780abab2477f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_jobikm3u_wpftmp.GlobalUsings.g.cs +++ /dev/null @@ -1,6 +0,0 @@ -// <auto-generated/> -global using global::System; -global using global::System.Collections.Generic; -global using global::System.Linq; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_jobikm3u_wpftmp.assets.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_jobikm3u_wpftmp.assets.cache deleted file mode 100644 index 7ca1cb81289522d8580bd5365efeb32a7f862060..0000000000000000000000000000000000000000 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_jobikm3u_wpftmp.assets.cache and /dev/null differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_jobikm3u_wpftmp.csproj.BuildWithSkipAnalyzers b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_jobikm3u_wpftmp.csproj.BuildWithSkipAnalyzers deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_jqsewhgr_wpftmp.AssemblyInfo.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_jqsewhgr_wpftmp.AssemblyInfo.cs deleted file mode 100644 index 3af44555a66c1ad12342ead37d0fa6bd02a4627f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_jqsewhgr_wpftmp.AssemblyInfo.cs +++ /dev/null @@ -1,25 +0,0 @@ -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+7d9fdc65b72f7cc8ea8104cf503e772444f3ebe7")] -[assembly: System.Reflection.AssemblyProductAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyTitleAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] -[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_jqsewhgr_wpftmp.AssemblyInfoInputs.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_jqsewhgr_wpftmp.AssemblyInfoInputs.cache deleted file mode 100644 index e53f172a5e43dae4e82cd22e0216ee2a440e3a7b..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_jqsewhgr_wpftmp.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -c91725249ea17b46ca8a7399dd416160bad06e59a0d84c3a3853cbe729a5e799 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_jqsewhgr_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_jqsewhgr_wpftmp.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 245b09305c4b460d62058795c0d426e305c2cb50..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_jqsewhgr_wpftmp.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,13 +0,0 @@ -is_global = true -build_property.TargetFramework = net8.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 = InnoLabProjektDektopApp_jqsewhgr_wpftmp -build_property.ProjectDir = C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_jqsewhgr_wpftmp.GlobalUsings.g.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_jqsewhgr_wpftmp.GlobalUsings.g.cs deleted file mode 100644 index 08bb19f98f92ddf9f0a40b2a35cc780abab2477f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_jqsewhgr_wpftmp.GlobalUsings.g.cs +++ /dev/null @@ -1,6 +0,0 @@ -// <auto-generated/> -global using global::System; -global using global::System.Collections.Generic; -global using global::System.Linq; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_jqsewhgr_wpftmp.assets.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_jqsewhgr_wpftmp.assets.cache deleted file mode 100644 index 1418eddaa8a3a05d6e2a7940c1135f977bb6868f..0000000000000000000000000000000000000000 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_jqsewhgr_wpftmp.assets.cache and /dev/null differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_jqsewhgr_wpftmp.csproj.BuildWithSkipAnalyzers b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_jqsewhgr_wpftmp.csproj.BuildWithSkipAnalyzers deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ke33q4tu_wpftmp.AssemblyInfo.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ke33q4tu_wpftmp.AssemblyInfo.cs deleted file mode 100644 index f5396dbcec163bc8051d4d144b2370b0ca77aabf..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ke33q4tu_wpftmp.AssemblyInfo.cs +++ /dev/null @@ -1,25 +0,0 @@ -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+45b0308489b9a25e177645c2690d5b0da55ef8b5")] -[assembly: System.Reflection.AssemblyProductAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyTitleAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] -[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ke33q4tu_wpftmp.AssemblyInfoInputs.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ke33q4tu_wpftmp.AssemblyInfoInputs.cache deleted file mode 100644 index d2ffe315618bd1fddc6647db53993cbf7b29390d..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ke33q4tu_wpftmp.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -06be5f1bb5b1abf8cb6f5e6e6ad37b7c40446f3b230e37cf3bf659b8fb4b695d diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ke33q4tu_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ke33q4tu_wpftmp.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 0b064e71ba7ea8e413d13073b07b9367387a8a56..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ke33q4tu_wpftmp.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,13 +0,0 @@ -is_global = true -build_property.TargetFramework = net8.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 = InnoLabProjektDektopApp_ke33q4tu_wpftmp -build_property.ProjectDir = C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ke33q4tu_wpftmp.GlobalUsings.g.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ke33q4tu_wpftmp.GlobalUsings.g.cs deleted file mode 100644 index 08bb19f98f92ddf9f0a40b2a35cc780abab2477f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ke33q4tu_wpftmp.GlobalUsings.g.cs +++ /dev/null @@ -1,6 +0,0 @@ -// <auto-generated/> -global using global::System; -global using global::System.Collections.Generic; -global using global::System.Linq; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ke33q4tu_wpftmp.assets.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ke33q4tu_wpftmp.assets.cache deleted file mode 100644 index 478027ff6a9d881a8e2ebc57abee9d90bc8f6c67..0000000000000000000000000000000000000000 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ke33q4tu_wpftmp.assets.cache and /dev/null differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ke33q4tu_wpftmp.csproj.BuildWithSkipAnalyzers b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ke33q4tu_wpftmp.csproj.BuildWithSkipAnalyzers deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_kekbzn02_wpftmp.AssemblyInfo.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_kekbzn02_wpftmp.AssemblyInfo.cs deleted file mode 100644 index f5396dbcec163bc8051d4d144b2370b0ca77aabf..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_kekbzn02_wpftmp.AssemblyInfo.cs +++ /dev/null @@ -1,25 +0,0 @@ -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+45b0308489b9a25e177645c2690d5b0da55ef8b5")] -[assembly: System.Reflection.AssemblyProductAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyTitleAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] -[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_kekbzn02_wpftmp.AssemblyInfoInputs.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_kekbzn02_wpftmp.AssemblyInfoInputs.cache deleted file mode 100644 index d2ffe315618bd1fddc6647db53993cbf7b29390d..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_kekbzn02_wpftmp.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -06be5f1bb5b1abf8cb6f5e6e6ad37b7c40446f3b230e37cf3bf659b8fb4b695d diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_kekbzn02_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_kekbzn02_wpftmp.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index c731039c9e85a252bacceea149153ba1bbb24626..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_kekbzn02_wpftmp.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,13 +0,0 @@ -is_global = true -build_property.TargetFramework = net8.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 = InnoLabProjektDektopApp_kekbzn02_wpftmp -build_property.ProjectDir = C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_kekbzn02_wpftmp.GlobalUsings.g.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_kekbzn02_wpftmp.GlobalUsings.g.cs deleted file mode 100644 index 08bb19f98f92ddf9f0a40b2a35cc780abab2477f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_kekbzn02_wpftmp.GlobalUsings.g.cs +++ /dev/null @@ -1,6 +0,0 @@ -// <auto-generated/> -global using global::System; -global using global::System.Collections.Generic; -global using global::System.Linq; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_kekbzn02_wpftmp.assets.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_kekbzn02_wpftmp.assets.cache deleted file mode 100644 index 867501830d7b10b205cd524424910516e38ffb84..0000000000000000000000000000000000000000 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_kekbzn02_wpftmp.assets.cache and /dev/null differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_kekbzn02_wpftmp.csproj.BuildWithSkipAnalyzers b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_kekbzn02_wpftmp.csproj.BuildWithSkipAnalyzers deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_kh5afo3v_wpftmp.AssemblyInfo.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_kh5afo3v_wpftmp.AssemblyInfo.cs deleted file mode 100644 index f5396dbcec163bc8051d4d144b2370b0ca77aabf..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_kh5afo3v_wpftmp.AssemblyInfo.cs +++ /dev/null @@ -1,25 +0,0 @@ -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+45b0308489b9a25e177645c2690d5b0da55ef8b5")] -[assembly: System.Reflection.AssemblyProductAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyTitleAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] -[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_kh5afo3v_wpftmp.AssemblyInfoInputs.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_kh5afo3v_wpftmp.AssemblyInfoInputs.cache deleted file mode 100644 index d2ffe315618bd1fddc6647db53993cbf7b29390d..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_kh5afo3v_wpftmp.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -06be5f1bb5b1abf8cb6f5e6e6ad37b7c40446f3b230e37cf3bf659b8fb4b695d diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_kh5afo3v_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_kh5afo3v_wpftmp.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 3c1600b0bdf1b4a3c865a1e6372d795764ec7093..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_kh5afo3v_wpftmp.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,13 +0,0 @@ -is_global = true -build_property.TargetFramework = net8.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 = InnoLabProjektDektopApp_kh5afo3v_wpftmp -build_property.ProjectDir = C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_kh5afo3v_wpftmp.GlobalUsings.g.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_kh5afo3v_wpftmp.GlobalUsings.g.cs deleted file mode 100644 index 08bb19f98f92ddf9f0a40b2a35cc780abab2477f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_kh5afo3v_wpftmp.GlobalUsings.g.cs +++ /dev/null @@ -1,6 +0,0 @@ -// <auto-generated/> -global using global::System; -global using global::System.Collections.Generic; -global using global::System.Linq; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_kh5afo3v_wpftmp.assets.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_kh5afo3v_wpftmp.assets.cache deleted file mode 100644 index e8e2883c531ee5355938024f5da54714d7dff91f..0000000000000000000000000000000000000000 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_kh5afo3v_wpftmp.assets.cache and /dev/null differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_kh5afo3v_wpftmp.csproj.BuildWithSkipAnalyzers b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_kh5afo3v_wpftmp.csproj.BuildWithSkipAnalyzers deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_km34cwhf_wpftmp.AssemblyInfo.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_km34cwhf_wpftmp.AssemblyInfo.cs deleted file mode 100644 index f5396dbcec163bc8051d4d144b2370b0ca77aabf..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_km34cwhf_wpftmp.AssemblyInfo.cs +++ /dev/null @@ -1,25 +0,0 @@ -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+45b0308489b9a25e177645c2690d5b0da55ef8b5")] -[assembly: System.Reflection.AssemblyProductAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyTitleAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] -[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_km34cwhf_wpftmp.AssemblyInfoInputs.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_km34cwhf_wpftmp.AssemblyInfoInputs.cache deleted file mode 100644 index d2ffe315618bd1fddc6647db53993cbf7b29390d..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_km34cwhf_wpftmp.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -06be5f1bb5b1abf8cb6f5e6e6ad37b7c40446f3b230e37cf3bf659b8fb4b695d diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_km34cwhf_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_km34cwhf_wpftmp.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 0f888f9d375a0ff3fc33f01c26a8e56fe99e2211..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_km34cwhf_wpftmp.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,13 +0,0 @@ -is_global = true -build_property.TargetFramework = net8.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 = InnoLabProjektDektopApp_km34cwhf_wpftmp -build_property.ProjectDir = C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_km34cwhf_wpftmp.GlobalUsings.g.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_km34cwhf_wpftmp.GlobalUsings.g.cs deleted file mode 100644 index 08bb19f98f92ddf9f0a40b2a35cc780abab2477f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_km34cwhf_wpftmp.GlobalUsings.g.cs +++ /dev/null @@ -1,6 +0,0 @@ -// <auto-generated/> -global using global::System; -global using global::System.Collections.Generic; -global using global::System.Linq; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_km34cwhf_wpftmp.assets.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_km34cwhf_wpftmp.assets.cache deleted file mode 100644 index 843bda04df05c605066b058cf2ba5486f86a395f..0000000000000000000000000000000000000000 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_km34cwhf_wpftmp.assets.cache and /dev/null differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_km34cwhf_wpftmp.csproj.BuildWithSkipAnalyzers b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_km34cwhf_wpftmp.csproj.BuildWithSkipAnalyzers deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_krejul0a_wpftmp.AssemblyInfo.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_krejul0a_wpftmp.AssemblyInfo.cs deleted file mode 100644 index f5396dbcec163bc8051d4d144b2370b0ca77aabf..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_krejul0a_wpftmp.AssemblyInfo.cs +++ /dev/null @@ -1,25 +0,0 @@ -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+45b0308489b9a25e177645c2690d5b0da55ef8b5")] -[assembly: System.Reflection.AssemblyProductAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyTitleAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] -[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_krejul0a_wpftmp.AssemblyInfoInputs.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_krejul0a_wpftmp.AssemblyInfoInputs.cache deleted file mode 100644 index d2ffe315618bd1fddc6647db53993cbf7b29390d..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_krejul0a_wpftmp.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -06be5f1bb5b1abf8cb6f5e6e6ad37b7c40446f3b230e37cf3bf659b8fb4b695d diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_krejul0a_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_krejul0a_wpftmp.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index a33cfb98bf8b8c556b9d1379df78883fd974fb3b..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_krejul0a_wpftmp.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,13 +0,0 @@ -is_global = true -build_property.TargetFramework = net8.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 = InnoLabProjektDektopApp_krejul0a_wpftmp -build_property.ProjectDir = C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_krejul0a_wpftmp.GlobalUsings.g.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_krejul0a_wpftmp.GlobalUsings.g.cs deleted file mode 100644 index 08bb19f98f92ddf9f0a40b2a35cc780abab2477f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_krejul0a_wpftmp.GlobalUsings.g.cs +++ /dev/null @@ -1,6 +0,0 @@ -// <auto-generated/> -global using global::System; -global using global::System.Collections.Generic; -global using global::System.Linq; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_krejul0a_wpftmp.assets.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_krejul0a_wpftmp.assets.cache deleted file mode 100644 index 01648761ca7f517bb2a1971babddc42680c381f7..0000000000000000000000000000000000000000 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_krejul0a_wpftmp.assets.cache and /dev/null differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_krejul0a_wpftmp.csproj.BuildWithSkipAnalyzers b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_krejul0a_wpftmp.csproj.BuildWithSkipAnalyzers deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_lh2icntp_wpftmp.AssemblyInfo.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_lh2icntp_wpftmp.AssemblyInfo.cs deleted file mode 100644 index 3af44555a66c1ad12342ead37d0fa6bd02a4627f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_lh2icntp_wpftmp.AssemblyInfo.cs +++ /dev/null @@ -1,25 +0,0 @@ -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+7d9fdc65b72f7cc8ea8104cf503e772444f3ebe7")] -[assembly: System.Reflection.AssemblyProductAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyTitleAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] -[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_lh2icntp_wpftmp.AssemblyInfoInputs.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_lh2icntp_wpftmp.AssemblyInfoInputs.cache deleted file mode 100644 index e53f172a5e43dae4e82cd22e0216ee2a440e3a7b..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_lh2icntp_wpftmp.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -c91725249ea17b46ca8a7399dd416160bad06e59a0d84c3a3853cbe729a5e799 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_lh2icntp_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_lh2icntp_wpftmp.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 0d63ebf7cc520467831b72e37c7288ae1a9fad77..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_lh2icntp_wpftmp.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,13 +0,0 @@ -is_global = true -build_property.TargetFramework = net8.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 = InnoLabProjektDektopApp_lh2icntp_wpftmp -build_property.ProjectDir = C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_lh2icntp_wpftmp.GlobalUsings.g.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_lh2icntp_wpftmp.GlobalUsings.g.cs deleted file mode 100644 index 08bb19f98f92ddf9f0a40b2a35cc780abab2477f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_lh2icntp_wpftmp.GlobalUsings.g.cs +++ /dev/null @@ -1,6 +0,0 @@ -// <auto-generated/> -global using global::System; -global using global::System.Collections.Generic; -global using global::System.Linq; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_lh2icntp_wpftmp.assets.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_lh2icntp_wpftmp.assets.cache deleted file mode 100644 index 983b3041d87ee6a0931cbe1df4d927bdb19dc251..0000000000000000000000000000000000000000 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_lh2icntp_wpftmp.assets.cache and /dev/null differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_m51cvj4q_wpftmp.AssemblyInfo.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_m51cvj4q_wpftmp.AssemblyInfo.cs deleted file mode 100644 index f5396dbcec163bc8051d4d144b2370b0ca77aabf..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_m51cvj4q_wpftmp.AssemblyInfo.cs +++ /dev/null @@ -1,25 +0,0 @@ -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+45b0308489b9a25e177645c2690d5b0da55ef8b5")] -[assembly: System.Reflection.AssemblyProductAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyTitleAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] -[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_m51cvj4q_wpftmp.AssemblyInfoInputs.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_m51cvj4q_wpftmp.AssemblyInfoInputs.cache deleted file mode 100644 index d2ffe315618bd1fddc6647db53993cbf7b29390d..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_m51cvj4q_wpftmp.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -06be5f1bb5b1abf8cb6f5e6e6ad37b7c40446f3b230e37cf3bf659b8fb4b695d diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_m51cvj4q_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_m51cvj4q_wpftmp.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 36d1595f04165cd0b7d685663c670adf1d84e4e3..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_m51cvj4q_wpftmp.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,13 +0,0 @@ -is_global = true -build_property.TargetFramework = net8.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 = InnoLabProjektDektopApp_m51cvj4q_wpftmp -build_property.ProjectDir = C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_m51cvj4q_wpftmp.GlobalUsings.g.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_m51cvj4q_wpftmp.GlobalUsings.g.cs deleted file mode 100644 index 08bb19f98f92ddf9f0a40b2a35cc780abab2477f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_m51cvj4q_wpftmp.GlobalUsings.g.cs +++ /dev/null @@ -1,6 +0,0 @@ -// <auto-generated/> -global using global::System; -global using global::System.Collections.Generic; -global using global::System.Linq; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_m51cvj4q_wpftmp.assets.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_m51cvj4q_wpftmp.assets.cache deleted file mode 100644 index d4e0e65ed80acaf21e9c91849675a18d7294762c..0000000000000000000000000000000000000000 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_m51cvj4q_wpftmp.assets.cache and /dev/null differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_m51cvj4q_wpftmp.csproj.BuildWithSkipAnalyzers b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_m51cvj4q_wpftmp.csproj.BuildWithSkipAnalyzers deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_n4uncsqd_wpftmp.AssemblyInfo.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_n4uncsqd_wpftmp.AssemblyInfo.cs deleted file mode 100644 index f5396dbcec163bc8051d4d144b2370b0ca77aabf..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_n4uncsqd_wpftmp.AssemblyInfo.cs +++ /dev/null @@ -1,25 +0,0 @@ -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+45b0308489b9a25e177645c2690d5b0da55ef8b5")] -[assembly: System.Reflection.AssemblyProductAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyTitleAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] -[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_n4uncsqd_wpftmp.AssemblyInfoInputs.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_n4uncsqd_wpftmp.AssemblyInfoInputs.cache deleted file mode 100644 index d2ffe315618bd1fddc6647db53993cbf7b29390d..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_n4uncsqd_wpftmp.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -06be5f1bb5b1abf8cb6f5e6e6ad37b7c40446f3b230e37cf3bf659b8fb4b695d diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_n4uncsqd_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_n4uncsqd_wpftmp.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 8af29c8ee3e5726921256367b25f9e5a9faad0f3..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_n4uncsqd_wpftmp.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,13 +0,0 @@ -is_global = true -build_property.TargetFramework = net8.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 = InnoLabProjektDektopApp_n4uncsqd_wpftmp -build_property.ProjectDir = C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_n4uncsqd_wpftmp.GlobalUsings.g.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_n4uncsqd_wpftmp.GlobalUsings.g.cs deleted file mode 100644 index 08bb19f98f92ddf9f0a40b2a35cc780abab2477f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_n4uncsqd_wpftmp.GlobalUsings.g.cs +++ /dev/null @@ -1,6 +0,0 @@ -// <auto-generated/> -global using global::System; -global using global::System.Collections.Generic; -global using global::System.Linq; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_n4uncsqd_wpftmp.assets.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_n4uncsqd_wpftmp.assets.cache deleted file mode 100644 index 66c1d979f37fa615587f9b6e8958da202429eac4..0000000000000000000000000000000000000000 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_n4uncsqd_wpftmp.assets.cache and /dev/null differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_n4uncsqd_wpftmp.csproj.BuildWithSkipAnalyzers b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_n4uncsqd_wpftmp.csproj.BuildWithSkipAnalyzers deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ncnyrst0_wpftmp.AssemblyInfo.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ncnyrst0_wpftmp.AssemblyInfo.cs deleted file mode 100644 index 3af44555a66c1ad12342ead37d0fa6bd02a4627f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ncnyrst0_wpftmp.AssemblyInfo.cs +++ /dev/null @@ -1,25 +0,0 @@ -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+7d9fdc65b72f7cc8ea8104cf503e772444f3ebe7")] -[assembly: System.Reflection.AssemblyProductAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyTitleAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] -[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ncnyrst0_wpftmp.AssemblyInfoInputs.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ncnyrst0_wpftmp.AssemblyInfoInputs.cache deleted file mode 100644 index e53f172a5e43dae4e82cd22e0216ee2a440e3a7b..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ncnyrst0_wpftmp.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -c91725249ea17b46ca8a7399dd416160bad06e59a0d84c3a3853cbe729a5e799 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ncnyrst0_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ncnyrst0_wpftmp.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 3ae9e025f3a76a89df6de2714afc06310422140c..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ncnyrst0_wpftmp.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,13 +0,0 @@ -is_global = true -build_property.TargetFramework = net8.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 = InnoLabProjektDektopApp_ncnyrst0_wpftmp -build_property.ProjectDir = C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ncnyrst0_wpftmp.GlobalUsings.g.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ncnyrst0_wpftmp.GlobalUsings.g.cs deleted file mode 100644 index 08bb19f98f92ddf9f0a40b2a35cc780abab2477f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ncnyrst0_wpftmp.GlobalUsings.g.cs +++ /dev/null @@ -1,6 +0,0 @@ -// <auto-generated/> -global using global::System; -global using global::System.Collections.Generic; -global using global::System.Linq; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ncnyrst0_wpftmp.assets.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ncnyrst0_wpftmp.assets.cache deleted file mode 100644 index 2eb4f9dfca0137727207a3174cec69d46141753b..0000000000000000000000000000000000000000 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ncnyrst0_wpftmp.assets.cache and /dev/null differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ncnyrst0_wpftmp.csproj.BuildWithSkipAnalyzers b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ncnyrst0_wpftmp.csproj.BuildWithSkipAnalyzers deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_nyzvphqf_wpftmp.AssemblyInfo.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_nyzvphqf_wpftmp.AssemblyInfo.cs deleted file mode 100644 index f5396dbcec163bc8051d4d144b2370b0ca77aabf..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_nyzvphqf_wpftmp.AssemblyInfo.cs +++ /dev/null @@ -1,25 +0,0 @@ -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+45b0308489b9a25e177645c2690d5b0da55ef8b5")] -[assembly: System.Reflection.AssemblyProductAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyTitleAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] -[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_nyzvphqf_wpftmp.AssemblyInfoInputs.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_nyzvphqf_wpftmp.AssemblyInfoInputs.cache deleted file mode 100644 index d2ffe315618bd1fddc6647db53993cbf7b29390d..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_nyzvphqf_wpftmp.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -06be5f1bb5b1abf8cb6f5e6e6ad37b7c40446f3b230e37cf3bf659b8fb4b695d diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_nyzvphqf_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_nyzvphqf_wpftmp.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 5c83babefaae3e6a4d5a39d8a10b2460fc1ef4db..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_nyzvphqf_wpftmp.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,13 +0,0 @@ -is_global = true -build_property.TargetFramework = net8.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 = InnoLabProjektDektopApp_nyzvphqf_wpftmp -build_property.ProjectDir = C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_nyzvphqf_wpftmp.GlobalUsings.g.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_nyzvphqf_wpftmp.GlobalUsings.g.cs deleted file mode 100644 index 08bb19f98f92ddf9f0a40b2a35cc780abab2477f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_nyzvphqf_wpftmp.GlobalUsings.g.cs +++ /dev/null @@ -1,6 +0,0 @@ -// <auto-generated/> -global using global::System; -global using global::System.Collections.Generic; -global using global::System.Linq; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_nyzvphqf_wpftmp.assets.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_nyzvphqf_wpftmp.assets.cache deleted file mode 100644 index a1c8d76058d16ab2f61b040f0939e4b73601f43a..0000000000000000000000000000000000000000 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_nyzvphqf_wpftmp.assets.cache and /dev/null differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_nyzvphqf_wpftmp.csproj.BuildWithSkipAnalyzers b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_nyzvphqf_wpftmp.csproj.BuildWithSkipAnalyzers deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_nzsf31ja_wpftmp.AssemblyInfo.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_nzsf31ja_wpftmp.AssemblyInfo.cs deleted file mode 100644 index 3af44555a66c1ad12342ead37d0fa6bd02a4627f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_nzsf31ja_wpftmp.AssemblyInfo.cs +++ /dev/null @@ -1,25 +0,0 @@ -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+7d9fdc65b72f7cc8ea8104cf503e772444f3ebe7")] -[assembly: System.Reflection.AssemblyProductAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyTitleAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] -[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_nzsf31ja_wpftmp.AssemblyInfoInputs.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_nzsf31ja_wpftmp.AssemblyInfoInputs.cache deleted file mode 100644 index e53f172a5e43dae4e82cd22e0216ee2a440e3a7b..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_nzsf31ja_wpftmp.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -c91725249ea17b46ca8a7399dd416160bad06e59a0d84c3a3853cbe729a5e799 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_nzsf31ja_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_nzsf31ja_wpftmp.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 347d8c1434270a89859738403a0e9e1c9c320bc4..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_nzsf31ja_wpftmp.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,13 +0,0 @@ -is_global = true -build_property.TargetFramework = net8.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 = InnoLabProjektDektopApp_nzsf31ja_wpftmp -build_property.ProjectDir = C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_nzsf31ja_wpftmp.GlobalUsings.g.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_nzsf31ja_wpftmp.GlobalUsings.g.cs deleted file mode 100644 index 08bb19f98f92ddf9f0a40b2a35cc780abab2477f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_nzsf31ja_wpftmp.GlobalUsings.g.cs +++ /dev/null @@ -1,6 +0,0 @@ -// <auto-generated/> -global using global::System; -global using global::System.Collections.Generic; -global using global::System.Linq; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_nzsf31ja_wpftmp.assets.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_nzsf31ja_wpftmp.assets.cache deleted file mode 100644 index 9b5763a50316f4f70291491c49515f39f0199fc2..0000000000000000000000000000000000000000 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_nzsf31ja_wpftmp.assets.cache and /dev/null differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_o4w2zd2h_wpftmp.AssemblyInfo.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_o4w2zd2h_wpftmp.AssemblyInfo.cs deleted file mode 100644 index 3af44555a66c1ad12342ead37d0fa6bd02a4627f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_o4w2zd2h_wpftmp.AssemblyInfo.cs +++ /dev/null @@ -1,25 +0,0 @@ -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+7d9fdc65b72f7cc8ea8104cf503e772444f3ebe7")] -[assembly: System.Reflection.AssemblyProductAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyTitleAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] -[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_o4w2zd2h_wpftmp.AssemblyInfoInputs.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_o4w2zd2h_wpftmp.AssemblyInfoInputs.cache deleted file mode 100644 index e53f172a5e43dae4e82cd22e0216ee2a440e3a7b..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_o4w2zd2h_wpftmp.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -c91725249ea17b46ca8a7399dd416160bad06e59a0d84c3a3853cbe729a5e799 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_o4w2zd2h_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_o4w2zd2h_wpftmp.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 8bf5aa7b650ffd7bf28b38dacc37eecc529aa854..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_o4w2zd2h_wpftmp.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,13 +0,0 @@ -is_global = true -build_property.TargetFramework = net8.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 = InnoLabProjektDektopApp_o4w2zd2h_wpftmp -build_property.ProjectDir = C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_o4w2zd2h_wpftmp.GlobalUsings.g.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_o4w2zd2h_wpftmp.GlobalUsings.g.cs deleted file mode 100644 index 08bb19f98f92ddf9f0a40b2a35cc780abab2477f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_o4w2zd2h_wpftmp.GlobalUsings.g.cs +++ /dev/null @@ -1,6 +0,0 @@ -// <auto-generated/> -global using global::System; -global using global::System.Collections.Generic; -global using global::System.Linq; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_o4w2zd2h_wpftmp.assets.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_o4w2zd2h_wpftmp.assets.cache deleted file mode 100644 index a915de64b688dd4752bfab211c5e9fba2e071fbf..0000000000000000000000000000000000000000 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_o4w2zd2h_wpftmp.assets.cache and /dev/null differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ofufhlkd_wpftmp.AssemblyInfo.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ofufhlkd_wpftmp.AssemblyInfo.cs deleted file mode 100644 index 3af44555a66c1ad12342ead37d0fa6bd02a4627f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ofufhlkd_wpftmp.AssemblyInfo.cs +++ /dev/null @@ -1,25 +0,0 @@ -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+7d9fdc65b72f7cc8ea8104cf503e772444f3ebe7")] -[assembly: System.Reflection.AssemblyProductAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyTitleAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] -[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ofufhlkd_wpftmp.AssemblyInfoInputs.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ofufhlkd_wpftmp.AssemblyInfoInputs.cache deleted file mode 100644 index e53f172a5e43dae4e82cd22e0216ee2a440e3a7b..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ofufhlkd_wpftmp.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -c91725249ea17b46ca8a7399dd416160bad06e59a0d84c3a3853cbe729a5e799 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ofufhlkd_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ofufhlkd_wpftmp.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index dcbbe5b40f5d36cd17ed029ef8797f3488cb29d8..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ofufhlkd_wpftmp.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,13 +0,0 @@ -is_global = true -build_property.TargetFramework = net8.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 = InnoLabProjektDektopApp_ofufhlkd_wpftmp -build_property.ProjectDir = C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ofufhlkd_wpftmp.GlobalUsings.g.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ofufhlkd_wpftmp.GlobalUsings.g.cs deleted file mode 100644 index 08bb19f98f92ddf9f0a40b2a35cc780abab2477f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ofufhlkd_wpftmp.GlobalUsings.g.cs +++ /dev/null @@ -1,6 +0,0 @@ -// <auto-generated/> -global using global::System; -global using global::System.Collections.Generic; -global using global::System.Linq; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ofufhlkd_wpftmp.assets.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ofufhlkd_wpftmp.assets.cache deleted file mode 100644 index 62d28ad4a1ee39ed0e215299711104793ad465c5..0000000000000000000000000000000000000000 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ofufhlkd_wpftmp.assets.cache and /dev/null differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ofufhlkd_wpftmp.csproj.BuildWithSkipAnalyzers b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ofufhlkd_wpftmp.csproj.BuildWithSkipAnalyzers deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ov3ixfzm_wpftmp.AssemblyInfo.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ov3ixfzm_wpftmp.AssemblyInfo.cs deleted file mode 100644 index 3af44555a66c1ad12342ead37d0fa6bd02a4627f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ov3ixfzm_wpftmp.AssemblyInfo.cs +++ /dev/null @@ -1,25 +0,0 @@ -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+7d9fdc65b72f7cc8ea8104cf503e772444f3ebe7")] -[assembly: System.Reflection.AssemblyProductAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyTitleAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] -[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ov3ixfzm_wpftmp.AssemblyInfoInputs.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ov3ixfzm_wpftmp.AssemblyInfoInputs.cache deleted file mode 100644 index e53f172a5e43dae4e82cd22e0216ee2a440e3a7b..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ov3ixfzm_wpftmp.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -c91725249ea17b46ca8a7399dd416160bad06e59a0d84c3a3853cbe729a5e799 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ov3ixfzm_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ov3ixfzm_wpftmp.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 1fa860a72e989c7a847522972f3e7077e6a82250..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ov3ixfzm_wpftmp.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,13 +0,0 @@ -is_global = true -build_property.TargetFramework = net8.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 = InnoLabProjektDektopApp_ov3ixfzm_wpftmp -build_property.ProjectDir = C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ov3ixfzm_wpftmp.GlobalUsings.g.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ov3ixfzm_wpftmp.GlobalUsings.g.cs deleted file mode 100644 index 08bb19f98f92ddf9f0a40b2a35cc780abab2477f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ov3ixfzm_wpftmp.GlobalUsings.g.cs +++ /dev/null @@ -1,6 +0,0 @@ -// <auto-generated/> -global using global::System; -global using global::System.Collections.Generic; -global using global::System.Linq; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ov3ixfzm_wpftmp.assets.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ov3ixfzm_wpftmp.assets.cache deleted file mode 100644 index d260061aaee948399b49c6859c81de0e68d59ff6..0000000000000000000000000000000000000000 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ov3ixfzm_wpftmp.assets.cache and /dev/null differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ov3ixfzm_wpftmp.csproj.BuildWithSkipAnalyzers b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ov3ixfzm_wpftmp.csproj.BuildWithSkipAnalyzers deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_owhseiep_wpftmp.AssemblyInfo.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_owhseiep_wpftmp.AssemblyInfo.cs deleted file mode 100644 index f5396dbcec163bc8051d4d144b2370b0ca77aabf..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_owhseiep_wpftmp.AssemblyInfo.cs +++ /dev/null @@ -1,25 +0,0 @@ -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+45b0308489b9a25e177645c2690d5b0da55ef8b5")] -[assembly: System.Reflection.AssemblyProductAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyTitleAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] -[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_owhseiep_wpftmp.AssemblyInfoInputs.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_owhseiep_wpftmp.AssemblyInfoInputs.cache deleted file mode 100644 index d2ffe315618bd1fddc6647db53993cbf7b29390d..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_owhseiep_wpftmp.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -06be5f1bb5b1abf8cb6f5e6e6ad37b7c40446f3b230e37cf3bf659b8fb4b695d diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_owhseiep_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_owhseiep_wpftmp.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 8f6d1eef9f916ca1fe387e755c21344fe4c8ee4e..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_owhseiep_wpftmp.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,13 +0,0 @@ -is_global = true -build_property.TargetFramework = net8.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 = InnoLabProjektDektopApp_owhseiep_wpftmp -build_property.ProjectDir = C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_owhseiep_wpftmp.GlobalUsings.g.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_owhseiep_wpftmp.GlobalUsings.g.cs deleted file mode 100644 index 08bb19f98f92ddf9f0a40b2a35cc780abab2477f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_owhseiep_wpftmp.GlobalUsings.g.cs +++ /dev/null @@ -1,6 +0,0 @@ -// <auto-generated/> -global using global::System; -global using global::System.Collections.Generic; -global using global::System.Linq; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_owhseiep_wpftmp.assets.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_owhseiep_wpftmp.assets.cache deleted file mode 100644 index adf54047f09698aa62394abee97ad224310ffd07..0000000000000000000000000000000000000000 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_owhseiep_wpftmp.assets.cache and /dev/null differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_owhseiep_wpftmp.csproj.BuildWithSkipAnalyzers b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_owhseiep_wpftmp.csproj.BuildWithSkipAnalyzers deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ozdeflnp_wpftmp.AssemblyInfo.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ozdeflnp_wpftmp.AssemblyInfo.cs deleted file mode 100644 index 3af44555a66c1ad12342ead37d0fa6bd02a4627f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ozdeflnp_wpftmp.AssemblyInfo.cs +++ /dev/null @@ -1,25 +0,0 @@ -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+7d9fdc65b72f7cc8ea8104cf503e772444f3ebe7")] -[assembly: System.Reflection.AssemblyProductAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyTitleAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] -[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ozdeflnp_wpftmp.AssemblyInfoInputs.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ozdeflnp_wpftmp.AssemblyInfoInputs.cache deleted file mode 100644 index e53f172a5e43dae4e82cd22e0216ee2a440e3a7b..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ozdeflnp_wpftmp.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -c91725249ea17b46ca8a7399dd416160bad06e59a0d84c3a3853cbe729a5e799 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ozdeflnp_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ozdeflnp_wpftmp.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index ebd68422f248d41d2380ceb0840f0c187db49f58..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ozdeflnp_wpftmp.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,13 +0,0 @@ -is_global = true -build_property.TargetFramework = net8.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 = InnoLabProjektDektopApp_ozdeflnp_wpftmp -build_property.ProjectDir = C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ozdeflnp_wpftmp.GlobalUsings.g.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ozdeflnp_wpftmp.GlobalUsings.g.cs deleted file mode 100644 index 08bb19f98f92ddf9f0a40b2a35cc780abab2477f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ozdeflnp_wpftmp.GlobalUsings.g.cs +++ /dev/null @@ -1,6 +0,0 @@ -// <auto-generated/> -global using global::System; -global using global::System.Collections.Generic; -global using global::System.Linq; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ozdeflnp_wpftmp.assets.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ozdeflnp_wpftmp.assets.cache deleted file mode 100644 index 13a334a62a08bbad0f7b742bd4afb71a286da7e5..0000000000000000000000000000000000000000 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ozdeflnp_wpftmp.assets.cache and /dev/null differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ozdeflnp_wpftmp.csproj.BuildWithSkipAnalyzers b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ozdeflnp_wpftmp.csproj.BuildWithSkipAnalyzers deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ph1bjaef_wpftmp.AssemblyInfo.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ph1bjaef_wpftmp.AssemblyInfo.cs deleted file mode 100644 index 3af44555a66c1ad12342ead37d0fa6bd02a4627f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ph1bjaef_wpftmp.AssemblyInfo.cs +++ /dev/null @@ -1,25 +0,0 @@ -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+7d9fdc65b72f7cc8ea8104cf503e772444f3ebe7")] -[assembly: System.Reflection.AssemblyProductAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyTitleAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] -[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ph1bjaef_wpftmp.AssemblyInfoInputs.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ph1bjaef_wpftmp.AssemblyInfoInputs.cache deleted file mode 100644 index e53f172a5e43dae4e82cd22e0216ee2a440e3a7b..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ph1bjaef_wpftmp.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -c91725249ea17b46ca8a7399dd416160bad06e59a0d84c3a3853cbe729a5e799 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ph1bjaef_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ph1bjaef_wpftmp.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index c263e1f9b675f252169e4c024509f1de419c61d4..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ph1bjaef_wpftmp.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,13 +0,0 @@ -is_global = true -build_property.TargetFramework = net8.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 = InnoLabProjektDektopApp_ph1bjaef_wpftmp -build_property.ProjectDir = C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ph1bjaef_wpftmp.GlobalUsings.g.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ph1bjaef_wpftmp.GlobalUsings.g.cs deleted file mode 100644 index 08bb19f98f92ddf9f0a40b2a35cc780abab2477f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ph1bjaef_wpftmp.GlobalUsings.g.cs +++ /dev/null @@ -1,6 +0,0 @@ -// <auto-generated/> -global using global::System; -global using global::System.Collections.Generic; -global using global::System.Linq; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ph1bjaef_wpftmp.assets.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ph1bjaef_wpftmp.assets.cache deleted file mode 100644 index ce4458bf27fd1a94eaa9cf74f3754c7bfd10ceb8..0000000000000000000000000000000000000000 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ph1bjaef_wpftmp.assets.cache and /dev/null differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ph1bjaef_wpftmp.csproj.BuildWithSkipAnalyzers b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ph1bjaef_wpftmp.csproj.BuildWithSkipAnalyzers deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_psg1hw04_wpftmp.AssemblyInfo.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_psg1hw04_wpftmp.AssemblyInfo.cs deleted file mode 100644 index 3af44555a66c1ad12342ead37d0fa6bd02a4627f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_psg1hw04_wpftmp.AssemblyInfo.cs +++ /dev/null @@ -1,25 +0,0 @@ -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+7d9fdc65b72f7cc8ea8104cf503e772444f3ebe7")] -[assembly: System.Reflection.AssemblyProductAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyTitleAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] -[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_psg1hw04_wpftmp.AssemblyInfoInputs.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_psg1hw04_wpftmp.AssemblyInfoInputs.cache deleted file mode 100644 index e53f172a5e43dae4e82cd22e0216ee2a440e3a7b..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_psg1hw04_wpftmp.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -c91725249ea17b46ca8a7399dd416160bad06e59a0d84c3a3853cbe729a5e799 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_psg1hw04_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_psg1hw04_wpftmp.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index edaf088857e2128284cdcb3486ba8e40edb75fb7..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_psg1hw04_wpftmp.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,13 +0,0 @@ -is_global = true -build_property.TargetFramework = net8.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 = InnoLabProjektDektopApp_psg1hw04_wpftmp -build_property.ProjectDir = C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_psg1hw04_wpftmp.GlobalUsings.g.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_psg1hw04_wpftmp.GlobalUsings.g.cs deleted file mode 100644 index 08bb19f98f92ddf9f0a40b2a35cc780abab2477f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_psg1hw04_wpftmp.GlobalUsings.g.cs +++ /dev/null @@ -1,6 +0,0 @@ -// <auto-generated/> -global using global::System; -global using global::System.Collections.Generic; -global using global::System.Linq; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_psg1hw04_wpftmp.assets.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_psg1hw04_wpftmp.assets.cache deleted file mode 100644 index d28f326f43911b8513bebdc2bc02ba32079122ff..0000000000000000000000000000000000000000 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_psg1hw04_wpftmp.assets.cache and /dev/null differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_psg1hw04_wpftmp.csproj.BuildWithSkipAnalyzers b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_psg1hw04_wpftmp.csproj.BuildWithSkipAnalyzers deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_qgwrjhs4_wpftmp.AssemblyInfo.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_qgwrjhs4_wpftmp.AssemblyInfo.cs deleted file mode 100644 index f5396dbcec163bc8051d4d144b2370b0ca77aabf..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_qgwrjhs4_wpftmp.AssemblyInfo.cs +++ /dev/null @@ -1,25 +0,0 @@ -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+45b0308489b9a25e177645c2690d5b0da55ef8b5")] -[assembly: System.Reflection.AssemblyProductAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyTitleAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] -[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_qgwrjhs4_wpftmp.AssemblyInfoInputs.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_qgwrjhs4_wpftmp.AssemblyInfoInputs.cache deleted file mode 100644 index d2ffe315618bd1fddc6647db53993cbf7b29390d..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_qgwrjhs4_wpftmp.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -06be5f1bb5b1abf8cb6f5e6e6ad37b7c40446f3b230e37cf3bf659b8fb4b695d diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_qgwrjhs4_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_qgwrjhs4_wpftmp.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 5421535e1d4ce94912f278803143dff5046c9c51..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_qgwrjhs4_wpftmp.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,13 +0,0 @@ -is_global = true -build_property.TargetFramework = net8.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 = InnoLabProjektDektopApp_qgwrjhs4_wpftmp -build_property.ProjectDir = C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_qgwrjhs4_wpftmp.GlobalUsings.g.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_qgwrjhs4_wpftmp.GlobalUsings.g.cs deleted file mode 100644 index 08bb19f98f92ddf9f0a40b2a35cc780abab2477f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_qgwrjhs4_wpftmp.GlobalUsings.g.cs +++ /dev/null @@ -1,6 +0,0 @@ -// <auto-generated/> -global using global::System; -global using global::System.Collections.Generic; -global using global::System.Linq; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_qgwrjhs4_wpftmp.assets.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_qgwrjhs4_wpftmp.assets.cache deleted file mode 100644 index e4b9605d1b58797732b38c4cc05f7a0ea55147d5..0000000000000000000000000000000000000000 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_qgwrjhs4_wpftmp.assets.cache and /dev/null differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_qgwrjhs4_wpftmp.csproj.BuildWithSkipAnalyzers b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_qgwrjhs4_wpftmp.csproj.BuildWithSkipAnalyzers deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_qs52no1c_wpftmp.AssemblyInfo.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_qs52no1c_wpftmp.AssemblyInfo.cs deleted file mode 100644 index 3af44555a66c1ad12342ead37d0fa6bd02a4627f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_qs52no1c_wpftmp.AssemblyInfo.cs +++ /dev/null @@ -1,25 +0,0 @@ -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+7d9fdc65b72f7cc8ea8104cf503e772444f3ebe7")] -[assembly: System.Reflection.AssemblyProductAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyTitleAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] -[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_qs52no1c_wpftmp.AssemblyInfoInputs.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_qs52no1c_wpftmp.AssemblyInfoInputs.cache deleted file mode 100644 index e53f172a5e43dae4e82cd22e0216ee2a440e3a7b..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_qs52no1c_wpftmp.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -c91725249ea17b46ca8a7399dd416160bad06e59a0d84c3a3853cbe729a5e799 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_qs52no1c_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_qs52no1c_wpftmp.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index c938fb9f384f9dfb5bb0d7ed6a2f1da60877b10a..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_qs52no1c_wpftmp.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,13 +0,0 @@ -is_global = true -build_property.TargetFramework = net8.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 = InnoLabProjektDektopApp_qs52no1c_wpftmp -build_property.ProjectDir = C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_qs52no1c_wpftmp.GlobalUsings.g.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_qs52no1c_wpftmp.GlobalUsings.g.cs deleted file mode 100644 index 08bb19f98f92ddf9f0a40b2a35cc780abab2477f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_qs52no1c_wpftmp.GlobalUsings.g.cs +++ /dev/null @@ -1,6 +0,0 @@ -// <auto-generated/> -global using global::System; -global using global::System.Collections.Generic; -global using global::System.Linq; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_qs52no1c_wpftmp.assets.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_qs52no1c_wpftmp.assets.cache deleted file mode 100644 index a51097afa4174b5d38bfb9e86aeca4fc630e210f..0000000000000000000000000000000000000000 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_qs52no1c_wpftmp.assets.cache and /dev/null differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_rdg2xwfj_wpftmp.AssemblyInfo.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_rdg2xwfj_wpftmp.AssemblyInfo.cs deleted file mode 100644 index 3af44555a66c1ad12342ead37d0fa6bd02a4627f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_rdg2xwfj_wpftmp.AssemblyInfo.cs +++ /dev/null @@ -1,25 +0,0 @@ -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+7d9fdc65b72f7cc8ea8104cf503e772444f3ebe7")] -[assembly: System.Reflection.AssemblyProductAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyTitleAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] -[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_rdg2xwfj_wpftmp.AssemblyInfoInputs.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_rdg2xwfj_wpftmp.AssemblyInfoInputs.cache deleted file mode 100644 index e53f172a5e43dae4e82cd22e0216ee2a440e3a7b..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_rdg2xwfj_wpftmp.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -c91725249ea17b46ca8a7399dd416160bad06e59a0d84c3a3853cbe729a5e799 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_rdg2xwfj_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_rdg2xwfj_wpftmp.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index bf391bef41a3aedd673f0fa7360fcec2dfec168b..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_rdg2xwfj_wpftmp.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,13 +0,0 @@ -is_global = true -build_property.TargetFramework = net8.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 = InnoLabProjektDektopApp_rdg2xwfj_wpftmp -build_property.ProjectDir = C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_rdg2xwfj_wpftmp.GlobalUsings.g.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_rdg2xwfj_wpftmp.GlobalUsings.g.cs deleted file mode 100644 index 08bb19f98f92ddf9f0a40b2a35cc780abab2477f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_rdg2xwfj_wpftmp.GlobalUsings.g.cs +++ /dev/null @@ -1,6 +0,0 @@ -// <auto-generated/> -global using global::System; -global using global::System.Collections.Generic; -global using global::System.Linq; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_rdg2xwfj_wpftmp.assets.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_rdg2xwfj_wpftmp.assets.cache deleted file mode 100644 index 88cce7442a34f377555407d52604af9ca9ad76df..0000000000000000000000000000000000000000 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_rdg2xwfj_wpftmp.assets.cache and /dev/null differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_rdg2xwfj_wpftmp.csproj.BuildWithSkipAnalyzers b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_rdg2xwfj_wpftmp.csproj.BuildWithSkipAnalyzers deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_rgp3yzoh_wpftmp.AssemblyInfo.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_rgp3yzoh_wpftmp.AssemblyInfo.cs deleted file mode 100644 index 3af44555a66c1ad12342ead37d0fa6bd02a4627f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_rgp3yzoh_wpftmp.AssemblyInfo.cs +++ /dev/null @@ -1,25 +0,0 @@ -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+7d9fdc65b72f7cc8ea8104cf503e772444f3ebe7")] -[assembly: System.Reflection.AssemblyProductAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyTitleAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] -[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_rgp3yzoh_wpftmp.AssemblyInfoInputs.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_rgp3yzoh_wpftmp.AssemblyInfoInputs.cache deleted file mode 100644 index e53f172a5e43dae4e82cd22e0216ee2a440e3a7b..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_rgp3yzoh_wpftmp.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -c91725249ea17b46ca8a7399dd416160bad06e59a0d84c3a3853cbe729a5e799 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_rgp3yzoh_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_rgp3yzoh_wpftmp.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index f87f636fbb9c8d09c0e0aa31d0038fc13e7d6dec..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_rgp3yzoh_wpftmp.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,13 +0,0 @@ -is_global = true -build_property.TargetFramework = net8.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 = InnoLabProjektDektopApp_rgp3yzoh_wpftmp -build_property.ProjectDir = C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_rgp3yzoh_wpftmp.GlobalUsings.g.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_rgp3yzoh_wpftmp.GlobalUsings.g.cs deleted file mode 100644 index 08bb19f98f92ddf9f0a40b2a35cc780abab2477f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_rgp3yzoh_wpftmp.GlobalUsings.g.cs +++ /dev/null @@ -1,6 +0,0 @@ -// <auto-generated/> -global using global::System; -global using global::System.Collections.Generic; -global using global::System.Linq; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_rgp3yzoh_wpftmp.assets.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_rgp3yzoh_wpftmp.assets.cache deleted file mode 100644 index 5570bf695e6c598f0a761be4a06eeb02f866d498..0000000000000000000000000000000000000000 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_rgp3yzoh_wpftmp.assets.cache and /dev/null differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_rgp3yzoh_wpftmp.csproj.BuildWithSkipAnalyzers b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_rgp3yzoh_wpftmp.csproj.BuildWithSkipAnalyzers deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_salvjyue_wpftmp.AssemblyInfo.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_salvjyue_wpftmp.AssemblyInfo.cs deleted file mode 100644 index f5396dbcec163bc8051d4d144b2370b0ca77aabf..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_salvjyue_wpftmp.AssemblyInfo.cs +++ /dev/null @@ -1,25 +0,0 @@ -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+45b0308489b9a25e177645c2690d5b0da55ef8b5")] -[assembly: System.Reflection.AssemblyProductAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyTitleAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] -[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_salvjyue_wpftmp.AssemblyInfoInputs.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_salvjyue_wpftmp.AssemblyInfoInputs.cache deleted file mode 100644 index d2ffe315618bd1fddc6647db53993cbf7b29390d..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_salvjyue_wpftmp.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -06be5f1bb5b1abf8cb6f5e6e6ad37b7c40446f3b230e37cf3bf659b8fb4b695d diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_salvjyue_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_salvjyue_wpftmp.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 01675450e108ad55a7b27710edcadb2b01d05dd5..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_salvjyue_wpftmp.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,13 +0,0 @@ -is_global = true -build_property.TargetFramework = net8.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 = InnoLabProjektDektopApp_salvjyue_wpftmp -build_property.ProjectDir = C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_salvjyue_wpftmp.GlobalUsings.g.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_salvjyue_wpftmp.GlobalUsings.g.cs deleted file mode 100644 index 08bb19f98f92ddf9f0a40b2a35cc780abab2477f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_salvjyue_wpftmp.GlobalUsings.g.cs +++ /dev/null @@ -1,6 +0,0 @@ -// <auto-generated/> -global using global::System; -global using global::System.Collections.Generic; -global using global::System.Linq; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_salvjyue_wpftmp.assets.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_salvjyue_wpftmp.assets.cache deleted file mode 100644 index fdf67ec35854f9996d12b4865457f59f5dd87967..0000000000000000000000000000000000000000 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_salvjyue_wpftmp.assets.cache and /dev/null differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_salvjyue_wpftmp.csproj.BuildWithSkipAnalyzers b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_salvjyue_wpftmp.csproj.BuildWithSkipAnalyzers deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_sb4stkvn_wpftmp.AssemblyInfo.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_sb4stkvn_wpftmp.AssemblyInfo.cs deleted file mode 100644 index 3af44555a66c1ad12342ead37d0fa6bd02a4627f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_sb4stkvn_wpftmp.AssemblyInfo.cs +++ /dev/null @@ -1,25 +0,0 @@ -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+7d9fdc65b72f7cc8ea8104cf503e772444f3ebe7")] -[assembly: System.Reflection.AssemblyProductAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyTitleAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] -[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_sb4stkvn_wpftmp.AssemblyInfoInputs.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_sb4stkvn_wpftmp.AssemblyInfoInputs.cache deleted file mode 100644 index e53f172a5e43dae4e82cd22e0216ee2a440e3a7b..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_sb4stkvn_wpftmp.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -c91725249ea17b46ca8a7399dd416160bad06e59a0d84c3a3853cbe729a5e799 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_sb4stkvn_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_sb4stkvn_wpftmp.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 52e396bc4a03ab961ed4b37065e9afa63e229a72..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_sb4stkvn_wpftmp.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,13 +0,0 @@ -is_global = true -build_property.TargetFramework = net8.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 = InnoLabProjektDektopApp_sb4stkvn_wpftmp -build_property.ProjectDir = C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_sb4stkvn_wpftmp.GlobalUsings.g.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_sb4stkvn_wpftmp.GlobalUsings.g.cs deleted file mode 100644 index 08bb19f98f92ddf9f0a40b2a35cc780abab2477f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_sb4stkvn_wpftmp.GlobalUsings.g.cs +++ /dev/null @@ -1,6 +0,0 @@ -// <auto-generated/> -global using global::System; -global using global::System.Collections.Generic; -global using global::System.Linq; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_sb4stkvn_wpftmp.assets.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_sb4stkvn_wpftmp.assets.cache deleted file mode 100644 index 0081d506e8c53f168a3509e75e9548f01a3754ff..0000000000000000000000000000000000000000 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_sb4stkvn_wpftmp.assets.cache and /dev/null differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_sb4stkvn_wpftmp.csproj.BuildWithSkipAnalyzers b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_sb4stkvn_wpftmp.csproj.BuildWithSkipAnalyzers deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_sdxpzbga_wpftmp.AssemblyInfo.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_sdxpzbga_wpftmp.AssemblyInfo.cs deleted file mode 100644 index f5396dbcec163bc8051d4d144b2370b0ca77aabf..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_sdxpzbga_wpftmp.AssemblyInfo.cs +++ /dev/null @@ -1,25 +0,0 @@ -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+45b0308489b9a25e177645c2690d5b0da55ef8b5")] -[assembly: System.Reflection.AssemblyProductAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyTitleAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] -[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_sdxpzbga_wpftmp.AssemblyInfoInputs.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_sdxpzbga_wpftmp.AssemblyInfoInputs.cache deleted file mode 100644 index d2ffe315618bd1fddc6647db53993cbf7b29390d..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_sdxpzbga_wpftmp.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -06be5f1bb5b1abf8cb6f5e6e6ad37b7c40446f3b230e37cf3bf659b8fb4b695d diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_sdxpzbga_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_sdxpzbga_wpftmp.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index b37305c3ece1219dfa9152c15937e9fe1d79a1c1..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_sdxpzbga_wpftmp.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,13 +0,0 @@ -is_global = true -build_property.TargetFramework = net8.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 = InnoLabProjektDektopApp_sdxpzbga_wpftmp -build_property.ProjectDir = C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_sdxpzbga_wpftmp.GlobalUsings.g.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_sdxpzbga_wpftmp.GlobalUsings.g.cs deleted file mode 100644 index 08bb19f98f92ddf9f0a40b2a35cc780abab2477f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_sdxpzbga_wpftmp.GlobalUsings.g.cs +++ /dev/null @@ -1,6 +0,0 @@ -// <auto-generated/> -global using global::System; -global using global::System.Collections.Generic; -global using global::System.Linq; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_sdxpzbga_wpftmp.assets.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_sdxpzbga_wpftmp.assets.cache deleted file mode 100644 index d3983cf6e68bf3ed06ae484e2a1cf848f4ec0cf8..0000000000000000000000000000000000000000 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_sdxpzbga_wpftmp.assets.cache and /dev/null differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_sdxpzbga_wpftmp.csproj.BuildWithSkipAnalyzers b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_sdxpzbga_wpftmp.csproj.BuildWithSkipAnalyzers deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_slbra0bg_wpftmp.AssemblyInfo.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_slbra0bg_wpftmp.AssemblyInfo.cs deleted file mode 100644 index f5396dbcec163bc8051d4d144b2370b0ca77aabf..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_slbra0bg_wpftmp.AssemblyInfo.cs +++ /dev/null @@ -1,25 +0,0 @@ -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+45b0308489b9a25e177645c2690d5b0da55ef8b5")] -[assembly: System.Reflection.AssemblyProductAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyTitleAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] -[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_slbra0bg_wpftmp.AssemblyInfoInputs.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_slbra0bg_wpftmp.AssemblyInfoInputs.cache deleted file mode 100644 index d2ffe315618bd1fddc6647db53993cbf7b29390d..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_slbra0bg_wpftmp.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -06be5f1bb5b1abf8cb6f5e6e6ad37b7c40446f3b230e37cf3bf659b8fb4b695d diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_slbra0bg_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_slbra0bg_wpftmp.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 91d041cee761bdf5e9ea7201ac1479f691584571..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_slbra0bg_wpftmp.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,13 +0,0 @@ -is_global = true -build_property.TargetFramework = net8.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 = InnoLabProjektDektopApp_slbra0bg_wpftmp -build_property.ProjectDir = C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_slbra0bg_wpftmp.GlobalUsings.g.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_slbra0bg_wpftmp.GlobalUsings.g.cs deleted file mode 100644 index 08bb19f98f92ddf9f0a40b2a35cc780abab2477f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_slbra0bg_wpftmp.GlobalUsings.g.cs +++ /dev/null @@ -1,6 +0,0 @@ -// <auto-generated/> -global using global::System; -global using global::System.Collections.Generic; -global using global::System.Linq; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_slbra0bg_wpftmp.assets.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_slbra0bg_wpftmp.assets.cache deleted file mode 100644 index 35e569059287a749dffad112d2f2d6a818225e4e..0000000000000000000000000000000000000000 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_slbra0bg_wpftmp.assets.cache and /dev/null differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_slbra0bg_wpftmp.csproj.BuildWithSkipAnalyzers b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_slbra0bg_wpftmp.csproj.BuildWithSkipAnalyzers deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_t3l3kit1_wpftmp.AssemblyInfo.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_t3l3kit1_wpftmp.AssemblyInfo.cs deleted file mode 100644 index 3af44555a66c1ad12342ead37d0fa6bd02a4627f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_t3l3kit1_wpftmp.AssemblyInfo.cs +++ /dev/null @@ -1,25 +0,0 @@ -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+7d9fdc65b72f7cc8ea8104cf503e772444f3ebe7")] -[assembly: System.Reflection.AssemblyProductAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyTitleAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] -[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_t3l3kit1_wpftmp.AssemblyInfoInputs.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_t3l3kit1_wpftmp.AssemblyInfoInputs.cache deleted file mode 100644 index e53f172a5e43dae4e82cd22e0216ee2a440e3a7b..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_t3l3kit1_wpftmp.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -c91725249ea17b46ca8a7399dd416160bad06e59a0d84c3a3853cbe729a5e799 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_t3l3kit1_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_t3l3kit1_wpftmp.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 4834fd313a4baf51b2a3d0b3d86b72d31bed0e26..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_t3l3kit1_wpftmp.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,13 +0,0 @@ -is_global = true -build_property.TargetFramework = net8.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 = InnoLabProjektDektopApp_t3l3kit1_wpftmp -build_property.ProjectDir = C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_t3l3kit1_wpftmp.GlobalUsings.g.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_t3l3kit1_wpftmp.GlobalUsings.g.cs deleted file mode 100644 index 08bb19f98f92ddf9f0a40b2a35cc780abab2477f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_t3l3kit1_wpftmp.GlobalUsings.g.cs +++ /dev/null @@ -1,6 +0,0 @@ -// <auto-generated/> -global using global::System; -global using global::System.Collections.Generic; -global using global::System.Linq; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_t3l3kit1_wpftmp.assets.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_t3l3kit1_wpftmp.assets.cache deleted file mode 100644 index a07bfaaf948b62061e49791909b07328a7b9aa93..0000000000000000000000000000000000000000 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_t3l3kit1_wpftmp.assets.cache and /dev/null differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_tb3xpbcm_wpftmp.AssemblyInfo.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_tb3xpbcm_wpftmp.AssemblyInfo.cs deleted file mode 100644 index f5396dbcec163bc8051d4d144b2370b0ca77aabf..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_tb3xpbcm_wpftmp.AssemblyInfo.cs +++ /dev/null @@ -1,25 +0,0 @@ -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+45b0308489b9a25e177645c2690d5b0da55ef8b5")] -[assembly: System.Reflection.AssemblyProductAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyTitleAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] -[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_tb3xpbcm_wpftmp.AssemblyInfoInputs.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_tb3xpbcm_wpftmp.AssemblyInfoInputs.cache deleted file mode 100644 index d2ffe315618bd1fddc6647db53993cbf7b29390d..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_tb3xpbcm_wpftmp.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -06be5f1bb5b1abf8cb6f5e6e6ad37b7c40446f3b230e37cf3bf659b8fb4b695d diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_tb3xpbcm_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_tb3xpbcm_wpftmp.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index eee6ca0790f85cc0c4152c9f447fb530e8ff921f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_tb3xpbcm_wpftmp.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,13 +0,0 @@ -is_global = true -build_property.TargetFramework = net8.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 = InnoLabProjektDektopApp_tb3xpbcm_wpftmp -build_property.ProjectDir = C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_tb3xpbcm_wpftmp.GlobalUsings.g.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_tb3xpbcm_wpftmp.GlobalUsings.g.cs deleted file mode 100644 index 08bb19f98f92ddf9f0a40b2a35cc780abab2477f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_tb3xpbcm_wpftmp.GlobalUsings.g.cs +++ /dev/null @@ -1,6 +0,0 @@ -// <auto-generated/> -global using global::System; -global using global::System.Collections.Generic; -global using global::System.Linq; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_tb3xpbcm_wpftmp.assets.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_tb3xpbcm_wpftmp.assets.cache deleted file mode 100644 index 66ce7c672d7d095f0961eb657fcc7defbd6b9ef7..0000000000000000000000000000000000000000 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_tb3xpbcm_wpftmp.assets.cache and /dev/null differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_tb3xpbcm_wpftmp.csproj.BuildWithSkipAnalyzers b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_tb3xpbcm_wpftmp.csproj.BuildWithSkipAnalyzers deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_tficwtrk_wpftmp.AssemblyInfo.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_tficwtrk_wpftmp.AssemblyInfo.cs deleted file mode 100644 index 3af44555a66c1ad12342ead37d0fa6bd02a4627f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_tficwtrk_wpftmp.AssemblyInfo.cs +++ /dev/null @@ -1,25 +0,0 @@ -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+7d9fdc65b72f7cc8ea8104cf503e772444f3ebe7")] -[assembly: System.Reflection.AssemblyProductAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyTitleAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] -[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_tficwtrk_wpftmp.AssemblyInfoInputs.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_tficwtrk_wpftmp.AssemblyInfoInputs.cache deleted file mode 100644 index e53f172a5e43dae4e82cd22e0216ee2a440e3a7b..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_tficwtrk_wpftmp.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -c91725249ea17b46ca8a7399dd416160bad06e59a0d84c3a3853cbe729a5e799 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_tficwtrk_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_tficwtrk_wpftmp.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index f3b0ea6bebd8b6183594bf84b82b21efaa5b41c5..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_tficwtrk_wpftmp.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,13 +0,0 @@ -is_global = true -build_property.TargetFramework = net8.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 = InnoLabProjektDektopApp_tficwtrk_wpftmp -build_property.ProjectDir = C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_tficwtrk_wpftmp.GlobalUsings.g.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_tficwtrk_wpftmp.GlobalUsings.g.cs deleted file mode 100644 index 08bb19f98f92ddf9f0a40b2a35cc780abab2477f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_tficwtrk_wpftmp.GlobalUsings.g.cs +++ /dev/null @@ -1,6 +0,0 @@ -// <auto-generated/> -global using global::System; -global using global::System.Collections.Generic; -global using global::System.Linq; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_tficwtrk_wpftmp.assets.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_tficwtrk_wpftmp.assets.cache deleted file mode 100644 index 5fb53112530d3ebbb210e42918e5f7e56d0f85f6..0000000000000000000000000000000000000000 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_tficwtrk_wpftmp.assets.cache and /dev/null differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_tficwtrk_wpftmp.csproj.BuildWithSkipAnalyzers b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_tficwtrk_wpftmp.csproj.BuildWithSkipAnalyzers deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_tso5n0wl_wpftmp.AssemblyInfo.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_tso5n0wl_wpftmp.AssemblyInfo.cs deleted file mode 100644 index 3af44555a66c1ad12342ead37d0fa6bd02a4627f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_tso5n0wl_wpftmp.AssemblyInfo.cs +++ /dev/null @@ -1,25 +0,0 @@ -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+7d9fdc65b72f7cc8ea8104cf503e772444f3ebe7")] -[assembly: System.Reflection.AssemblyProductAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyTitleAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] -[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_tso5n0wl_wpftmp.AssemblyInfoInputs.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_tso5n0wl_wpftmp.AssemblyInfoInputs.cache deleted file mode 100644 index e53f172a5e43dae4e82cd22e0216ee2a440e3a7b..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_tso5n0wl_wpftmp.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -c91725249ea17b46ca8a7399dd416160bad06e59a0d84c3a3853cbe729a5e799 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_tso5n0wl_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_tso5n0wl_wpftmp.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 7151fdd7b952f3455ef27c9208f8b712e71c2a0e..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_tso5n0wl_wpftmp.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,13 +0,0 @@ -is_global = true -build_property.TargetFramework = net8.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 = InnoLabProjektDektopApp_tso5n0wl_wpftmp -build_property.ProjectDir = C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_tso5n0wl_wpftmp.GlobalUsings.g.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_tso5n0wl_wpftmp.GlobalUsings.g.cs deleted file mode 100644 index 08bb19f98f92ddf9f0a40b2a35cc780abab2477f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_tso5n0wl_wpftmp.GlobalUsings.g.cs +++ /dev/null @@ -1,6 +0,0 @@ -// <auto-generated/> -global using global::System; -global using global::System.Collections.Generic; -global using global::System.Linq; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_tso5n0wl_wpftmp.assets.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_tso5n0wl_wpftmp.assets.cache deleted file mode 100644 index dba4600aab5decadc64b365eeb4dfb105a0c4052..0000000000000000000000000000000000000000 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_tso5n0wl_wpftmp.assets.cache and /dev/null differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_tso5n0wl_wpftmp.csproj.BuildWithSkipAnalyzers b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_tso5n0wl_wpftmp.csproj.BuildWithSkipAnalyzers deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_udzzi4ko_wpftmp.AssemblyInfo.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_udzzi4ko_wpftmp.AssemblyInfo.cs deleted file mode 100644 index 3af44555a66c1ad12342ead37d0fa6bd02a4627f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_udzzi4ko_wpftmp.AssemblyInfo.cs +++ /dev/null @@ -1,25 +0,0 @@ -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+7d9fdc65b72f7cc8ea8104cf503e772444f3ebe7")] -[assembly: System.Reflection.AssemblyProductAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyTitleAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] -[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_udzzi4ko_wpftmp.AssemblyInfoInputs.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_udzzi4ko_wpftmp.AssemblyInfoInputs.cache deleted file mode 100644 index e53f172a5e43dae4e82cd22e0216ee2a440e3a7b..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_udzzi4ko_wpftmp.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -c91725249ea17b46ca8a7399dd416160bad06e59a0d84c3a3853cbe729a5e799 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_udzzi4ko_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_udzzi4ko_wpftmp.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index d547c4a9c00444e068ce4afc22c8e1104f553734..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_udzzi4ko_wpftmp.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,13 +0,0 @@ -is_global = true -build_property.TargetFramework = net8.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 = InnoLabProjektDektopApp_udzzi4ko_wpftmp -build_property.ProjectDir = C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_udzzi4ko_wpftmp.GlobalUsings.g.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_udzzi4ko_wpftmp.GlobalUsings.g.cs deleted file mode 100644 index 08bb19f98f92ddf9f0a40b2a35cc780abab2477f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_udzzi4ko_wpftmp.GlobalUsings.g.cs +++ /dev/null @@ -1,6 +0,0 @@ -// <auto-generated/> -global using global::System; -global using global::System.Collections.Generic; -global using global::System.Linq; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_udzzi4ko_wpftmp.assets.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_udzzi4ko_wpftmp.assets.cache deleted file mode 100644 index a2fd7ea0b94862deaacbcfc3a1d1fcaf79ec1225..0000000000000000000000000000000000000000 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_udzzi4ko_wpftmp.assets.cache and /dev/null differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_udzzi4ko_wpftmp.csproj.BuildWithSkipAnalyzers b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_udzzi4ko_wpftmp.csproj.BuildWithSkipAnalyzers deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_uqnndcf5_wpftmp.AssemblyInfo.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_uqnndcf5_wpftmp.AssemblyInfo.cs deleted file mode 100644 index 3af44555a66c1ad12342ead37d0fa6bd02a4627f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_uqnndcf5_wpftmp.AssemblyInfo.cs +++ /dev/null @@ -1,25 +0,0 @@ -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+7d9fdc65b72f7cc8ea8104cf503e772444f3ebe7")] -[assembly: System.Reflection.AssemblyProductAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyTitleAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] -[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_uqnndcf5_wpftmp.AssemblyInfoInputs.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_uqnndcf5_wpftmp.AssemblyInfoInputs.cache deleted file mode 100644 index e53f172a5e43dae4e82cd22e0216ee2a440e3a7b..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_uqnndcf5_wpftmp.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -c91725249ea17b46ca8a7399dd416160bad06e59a0d84c3a3853cbe729a5e799 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_uqnndcf5_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_uqnndcf5_wpftmp.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 12744a2d9174f56ede410e5800cdbbae7776a4f9..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_uqnndcf5_wpftmp.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,13 +0,0 @@ -is_global = true -build_property.TargetFramework = net8.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 = InnoLabProjektDektopApp_uqnndcf5_wpftmp -build_property.ProjectDir = C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_uqnndcf5_wpftmp.GlobalUsings.g.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_uqnndcf5_wpftmp.GlobalUsings.g.cs deleted file mode 100644 index 08bb19f98f92ddf9f0a40b2a35cc780abab2477f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_uqnndcf5_wpftmp.GlobalUsings.g.cs +++ /dev/null @@ -1,6 +0,0 @@ -// <auto-generated/> -global using global::System; -global using global::System.Collections.Generic; -global using global::System.Linq; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_uqnndcf5_wpftmp.assets.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_uqnndcf5_wpftmp.assets.cache deleted file mode 100644 index f1a5877a8729582aabd141d71b6c0cda283a59f6..0000000000000000000000000000000000000000 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_uqnndcf5_wpftmp.assets.cache and /dev/null differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_uyslvmgj_wpftmp.AssemblyInfo.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_uyslvmgj_wpftmp.AssemblyInfo.cs deleted file mode 100644 index f5396dbcec163bc8051d4d144b2370b0ca77aabf..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_uyslvmgj_wpftmp.AssemblyInfo.cs +++ /dev/null @@ -1,25 +0,0 @@ -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+45b0308489b9a25e177645c2690d5b0da55ef8b5")] -[assembly: System.Reflection.AssemblyProductAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyTitleAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] -[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_uyslvmgj_wpftmp.AssemblyInfoInputs.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_uyslvmgj_wpftmp.AssemblyInfoInputs.cache deleted file mode 100644 index d2ffe315618bd1fddc6647db53993cbf7b29390d..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_uyslvmgj_wpftmp.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -06be5f1bb5b1abf8cb6f5e6e6ad37b7c40446f3b230e37cf3bf659b8fb4b695d diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_uyslvmgj_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_uyslvmgj_wpftmp.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index b0fc796a9b1ce02c3a049d0b9c26ba4608691972..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_uyslvmgj_wpftmp.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,13 +0,0 @@ -is_global = true -build_property.TargetFramework = net8.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 = InnoLabProjektDektopApp_uyslvmgj_wpftmp -build_property.ProjectDir = C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_uyslvmgj_wpftmp.GlobalUsings.g.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_uyslvmgj_wpftmp.GlobalUsings.g.cs deleted file mode 100644 index 08bb19f98f92ddf9f0a40b2a35cc780abab2477f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_uyslvmgj_wpftmp.GlobalUsings.g.cs +++ /dev/null @@ -1,6 +0,0 @@ -// <auto-generated/> -global using global::System; -global using global::System.Collections.Generic; -global using global::System.Linq; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_uyslvmgj_wpftmp.assets.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_uyslvmgj_wpftmp.assets.cache deleted file mode 100644 index b09b7107597d40197557fb29ccc6a287c060fb2c..0000000000000000000000000000000000000000 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_uyslvmgj_wpftmp.assets.cache and /dev/null differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_uyslvmgj_wpftmp.csproj.BuildWithSkipAnalyzers b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_uyslvmgj_wpftmp.csproj.BuildWithSkipAnalyzers deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ver4inqq_wpftmp.AssemblyInfo.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ver4inqq_wpftmp.AssemblyInfo.cs deleted file mode 100644 index 3af44555a66c1ad12342ead37d0fa6bd02a4627f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ver4inqq_wpftmp.AssemblyInfo.cs +++ /dev/null @@ -1,25 +0,0 @@ -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+7d9fdc65b72f7cc8ea8104cf503e772444f3ebe7")] -[assembly: System.Reflection.AssemblyProductAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyTitleAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] -[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ver4inqq_wpftmp.AssemblyInfoInputs.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ver4inqq_wpftmp.AssemblyInfoInputs.cache deleted file mode 100644 index e53f172a5e43dae4e82cd22e0216ee2a440e3a7b..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ver4inqq_wpftmp.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -c91725249ea17b46ca8a7399dd416160bad06e59a0d84c3a3853cbe729a5e799 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ver4inqq_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ver4inqq_wpftmp.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 30b581339e23beb0ca01b95bc9b90f580f4cebc7..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ver4inqq_wpftmp.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,13 +0,0 @@ -is_global = true -build_property.TargetFramework = net8.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 = InnoLabProjektDektopApp_ver4inqq_wpftmp -build_property.ProjectDir = C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ver4inqq_wpftmp.GlobalUsings.g.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ver4inqq_wpftmp.GlobalUsings.g.cs deleted file mode 100644 index 08bb19f98f92ddf9f0a40b2a35cc780abab2477f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ver4inqq_wpftmp.GlobalUsings.g.cs +++ /dev/null @@ -1,6 +0,0 @@ -// <auto-generated/> -global using global::System; -global using global::System.Collections.Generic; -global using global::System.Linq; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ver4inqq_wpftmp.assets.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ver4inqq_wpftmp.assets.cache deleted file mode 100644 index 4d268fdb879301e499d0533d1c9bab0704c92c61..0000000000000000000000000000000000000000 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_ver4inqq_wpftmp.assets.cache and /dev/null differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_vspgkox0_wpftmp.AssemblyInfo.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_vspgkox0_wpftmp.AssemblyInfo.cs deleted file mode 100644 index 3af44555a66c1ad12342ead37d0fa6bd02a4627f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_vspgkox0_wpftmp.AssemblyInfo.cs +++ /dev/null @@ -1,25 +0,0 @@ -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+7d9fdc65b72f7cc8ea8104cf503e772444f3ebe7")] -[assembly: System.Reflection.AssemblyProductAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyTitleAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] -[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_vspgkox0_wpftmp.AssemblyInfoInputs.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_vspgkox0_wpftmp.AssemblyInfoInputs.cache deleted file mode 100644 index e53f172a5e43dae4e82cd22e0216ee2a440e3a7b..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_vspgkox0_wpftmp.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -c91725249ea17b46ca8a7399dd416160bad06e59a0d84c3a3853cbe729a5e799 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_vspgkox0_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_vspgkox0_wpftmp.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 1afd8838a970b9837a3621ed56fe3fc6bb3a2df2..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_vspgkox0_wpftmp.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,13 +0,0 @@ -is_global = true -build_property.TargetFramework = net8.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 = InnoLabProjektDektopApp_vspgkox0_wpftmp -build_property.ProjectDir = C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_vspgkox0_wpftmp.GlobalUsings.g.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_vspgkox0_wpftmp.GlobalUsings.g.cs deleted file mode 100644 index 08bb19f98f92ddf9f0a40b2a35cc780abab2477f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_vspgkox0_wpftmp.GlobalUsings.g.cs +++ /dev/null @@ -1,6 +0,0 @@ -// <auto-generated/> -global using global::System; -global using global::System.Collections.Generic; -global using global::System.Linq; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_vspgkox0_wpftmp.assets.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_vspgkox0_wpftmp.assets.cache deleted file mode 100644 index 9bb6d7e84554b881584d33a62c064a11ddb46143..0000000000000000000000000000000000000000 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_vspgkox0_wpftmp.assets.cache and /dev/null differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_vspgkox0_wpftmp.csproj.BuildWithSkipAnalyzers b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_vspgkox0_wpftmp.csproj.BuildWithSkipAnalyzers deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_wjh3qnzd_wpftmp.AssemblyInfo.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_wjh3qnzd_wpftmp.AssemblyInfo.cs deleted file mode 100644 index 3af44555a66c1ad12342ead37d0fa6bd02a4627f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_wjh3qnzd_wpftmp.AssemblyInfo.cs +++ /dev/null @@ -1,25 +0,0 @@ -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+7d9fdc65b72f7cc8ea8104cf503e772444f3ebe7")] -[assembly: System.Reflection.AssemblyProductAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyTitleAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] -[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_wjh3qnzd_wpftmp.AssemblyInfoInputs.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_wjh3qnzd_wpftmp.AssemblyInfoInputs.cache deleted file mode 100644 index e53f172a5e43dae4e82cd22e0216ee2a440e3a7b..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_wjh3qnzd_wpftmp.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -c91725249ea17b46ca8a7399dd416160bad06e59a0d84c3a3853cbe729a5e799 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_wjh3qnzd_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_wjh3qnzd_wpftmp.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 5da3ef38af27934b8240147219e938e055c04f83..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_wjh3qnzd_wpftmp.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,13 +0,0 @@ -is_global = true -build_property.TargetFramework = net8.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 = InnoLabProjektDektopApp_wjh3qnzd_wpftmp -build_property.ProjectDir = C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_wjh3qnzd_wpftmp.GlobalUsings.g.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_wjh3qnzd_wpftmp.GlobalUsings.g.cs deleted file mode 100644 index 08bb19f98f92ddf9f0a40b2a35cc780abab2477f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_wjh3qnzd_wpftmp.GlobalUsings.g.cs +++ /dev/null @@ -1,6 +0,0 @@ -// <auto-generated/> -global using global::System; -global using global::System.Collections.Generic; -global using global::System.Linq; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_wjh3qnzd_wpftmp.assets.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_wjh3qnzd_wpftmp.assets.cache deleted file mode 100644 index 7cb57073b978941bac946a60a34453fe6bebd1b7..0000000000000000000000000000000000000000 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_wjh3qnzd_wpftmp.assets.cache and /dev/null differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_wv1v4wpn_wpftmp.AssemblyInfo.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_wv1v4wpn_wpftmp.AssemblyInfo.cs deleted file mode 100644 index 3af44555a66c1ad12342ead37d0fa6bd02a4627f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_wv1v4wpn_wpftmp.AssemblyInfo.cs +++ /dev/null @@ -1,25 +0,0 @@ -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+7d9fdc65b72f7cc8ea8104cf503e772444f3ebe7")] -[assembly: System.Reflection.AssemblyProductAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyTitleAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] -[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_wv1v4wpn_wpftmp.AssemblyInfoInputs.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_wv1v4wpn_wpftmp.AssemblyInfoInputs.cache deleted file mode 100644 index e53f172a5e43dae4e82cd22e0216ee2a440e3a7b..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_wv1v4wpn_wpftmp.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -c91725249ea17b46ca8a7399dd416160bad06e59a0d84c3a3853cbe729a5e799 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_wv1v4wpn_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_wv1v4wpn_wpftmp.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index b6a4f28553b573aefc740fa00858b115b9bf465a..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_wv1v4wpn_wpftmp.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,13 +0,0 @@ -is_global = true -build_property.TargetFramework = net8.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 = InnoLabProjektDektopApp_wv1v4wpn_wpftmp -build_property.ProjectDir = C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_wv1v4wpn_wpftmp.GlobalUsings.g.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_wv1v4wpn_wpftmp.GlobalUsings.g.cs deleted file mode 100644 index 08bb19f98f92ddf9f0a40b2a35cc780abab2477f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_wv1v4wpn_wpftmp.GlobalUsings.g.cs +++ /dev/null @@ -1,6 +0,0 @@ -// <auto-generated/> -global using global::System; -global using global::System.Collections.Generic; -global using global::System.Linq; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_wv1v4wpn_wpftmp.assets.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_wv1v4wpn_wpftmp.assets.cache deleted file mode 100644 index 541e6fac2fc4217a47a3ea2e657429ccd2a965ac..0000000000000000000000000000000000000000 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_wv1v4wpn_wpftmp.assets.cache and /dev/null differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_wv1v4wpn_wpftmp.csproj.BuildWithSkipAnalyzers b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_wv1v4wpn_wpftmp.csproj.BuildWithSkipAnalyzers deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_wz1hsm2s_wpftmp.AssemblyInfo.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_wz1hsm2s_wpftmp.AssemblyInfo.cs deleted file mode 100644 index 3af44555a66c1ad12342ead37d0fa6bd02a4627f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_wz1hsm2s_wpftmp.AssemblyInfo.cs +++ /dev/null @@ -1,25 +0,0 @@ -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+7d9fdc65b72f7cc8ea8104cf503e772444f3ebe7")] -[assembly: System.Reflection.AssemblyProductAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyTitleAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] -[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_wz1hsm2s_wpftmp.AssemblyInfoInputs.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_wz1hsm2s_wpftmp.AssemblyInfoInputs.cache deleted file mode 100644 index e53f172a5e43dae4e82cd22e0216ee2a440e3a7b..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_wz1hsm2s_wpftmp.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -c91725249ea17b46ca8a7399dd416160bad06e59a0d84c3a3853cbe729a5e799 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_wz1hsm2s_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_wz1hsm2s_wpftmp.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index f01fb6f685360b75bf0e96ab267b31f61076787b..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_wz1hsm2s_wpftmp.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,13 +0,0 @@ -is_global = true -build_property.TargetFramework = net8.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 = InnoLabProjektDektopApp_wz1hsm2s_wpftmp -build_property.ProjectDir = C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_wz1hsm2s_wpftmp.GlobalUsings.g.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_wz1hsm2s_wpftmp.GlobalUsings.g.cs deleted file mode 100644 index 08bb19f98f92ddf9f0a40b2a35cc780abab2477f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_wz1hsm2s_wpftmp.GlobalUsings.g.cs +++ /dev/null @@ -1,6 +0,0 @@ -// <auto-generated/> -global using global::System; -global using global::System.Collections.Generic; -global using global::System.Linq; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_wz1hsm2s_wpftmp.assets.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_wz1hsm2s_wpftmp.assets.cache deleted file mode 100644 index 1440ab4b034c98344ebc0829df7595eec86c3c20..0000000000000000000000000000000000000000 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_wz1hsm2s_wpftmp.assets.cache and /dev/null differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_wz1hsm2s_wpftmp.csproj.BuildWithSkipAnalyzers b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_wz1hsm2s_wpftmp.csproj.BuildWithSkipAnalyzers deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_x1sqoqzs_wpftmp.AssemblyInfo.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_x1sqoqzs_wpftmp.AssemblyInfo.cs deleted file mode 100644 index 3af44555a66c1ad12342ead37d0fa6bd02a4627f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_x1sqoqzs_wpftmp.AssemblyInfo.cs +++ /dev/null @@ -1,25 +0,0 @@ -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+7d9fdc65b72f7cc8ea8104cf503e772444f3ebe7")] -[assembly: System.Reflection.AssemblyProductAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyTitleAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] -[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_x1sqoqzs_wpftmp.AssemblyInfoInputs.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_x1sqoqzs_wpftmp.AssemblyInfoInputs.cache deleted file mode 100644 index e53f172a5e43dae4e82cd22e0216ee2a440e3a7b..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_x1sqoqzs_wpftmp.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -c91725249ea17b46ca8a7399dd416160bad06e59a0d84c3a3853cbe729a5e799 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_x1sqoqzs_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_x1sqoqzs_wpftmp.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 55e3ff92ad3b3e68153e6fc7ed1e7daeee83aec4..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_x1sqoqzs_wpftmp.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,13 +0,0 @@ -is_global = true -build_property.TargetFramework = net8.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 = InnoLabProjektDektopApp_x1sqoqzs_wpftmp -build_property.ProjectDir = C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_x1sqoqzs_wpftmp.GlobalUsings.g.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_x1sqoqzs_wpftmp.GlobalUsings.g.cs deleted file mode 100644 index 08bb19f98f92ddf9f0a40b2a35cc780abab2477f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_x1sqoqzs_wpftmp.GlobalUsings.g.cs +++ /dev/null @@ -1,6 +0,0 @@ -// <auto-generated/> -global using global::System; -global using global::System.Collections.Generic; -global using global::System.Linq; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_x1sqoqzs_wpftmp.assets.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_x1sqoqzs_wpftmp.assets.cache deleted file mode 100644 index b4c3e5330c02397c6e6b93ed77fce33850ba915e..0000000000000000000000000000000000000000 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_x1sqoqzs_wpftmp.assets.cache and /dev/null differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_x1sqoqzs_wpftmp.csproj.BuildWithSkipAnalyzers b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_x1sqoqzs_wpftmp.csproj.BuildWithSkipAnalyzers deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_yyybjqlq_wpftmp.AssemblyInfo.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_yyybjqlq_wpftmp.AssemblyInfo.cs deleted file mode 100644 index f5396dbcec163bc8051d4d144b2370b0ca77aabf..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_yyybjqlq_wpftmp.AssemblyInfo.cs +++ /dev/null @@ -1,25 +0,0 @@ -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+45b0308489b9a25e177645c2690d5b0da55ef8b5")] -[assembly: System.Reflection.AssemblyProductAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyTitleAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] -[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_yyybjqlq_wpftmp.AssemblyInfoInputs.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_yyybjqlq_wpftmp.AssemblyInfoInputs.cache deleted file mode 100644 index d2ffe315618bd1fddc6647db53993cbf7b29390d..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_yyybjqlq_wpftmp.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -06be5f1bb5b1abf8cb6f5e6e6ad37b7c40446f3b230e37cf3bf659b8fb4b695d diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_yyybjqlq_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_yyybjqlq_wpftmp.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index d52742546184f1227125dddce9115186b1a7ce6b..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_yyybjqlq_wpftmp.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,13 +0,0 @@ -is_global = true -build_property.TargetFramework = net8.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 = InnoLabProjektDektopApp_yyybjqlq_wpftmp -build_property.ProjectDir = C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_yyybjqlq_wpftmp.GlobalUsings.g.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_yyybjqlq_wpftmp.GlobalUsings.g.cs deleted file mode 100644 index 08bb19f98f92ddf9f0a40b2a35cc780abab2477f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_yyybjqlq_wpftmp.GlobalUsings.g.cs +++ /dev/null @@ -1,6 +0,0 @@ -// <auto-generated/> -global using global::System; -global using global::System.Collections.Generic; -global using global::System.Linq; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_yyybjqlq_wpftmp.assets.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_yyybjqlq_wpftmp.assets.cache deleted file mode 100644 index c21ba0d83e15e42585ff570cada86865608839cc..0000000000000000000000000000000000000000 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_yyybjqlq_wpftmp.assets.cache and /dev/null differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_yyybjqlq_wpftmp.csproj.BuildWithSkipAnalyzers b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_yyybjqlq_wpftmp.csproj.BuildWithSkipAnalyzers deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_z2zjqegq_wpftmp.AssemblyInfo.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_z2zjqegq_wpftmp.AssemblyInfo.cs deleted file mode 100644 index f5396dbcec163bc8051d4d144b2370b0ca77aabf..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_z2zjqegq_wpftmp.AssemblyInfo.cs +++ /dev/null @@ -1,25 +0,0 @@ -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+45b0308489b9a25e177645c2690d5b0da55ef8b5")] -[assembly: System.Reflection.AssemblyProductAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyTitleAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] -[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_z2zjqegq_wpftmp.AssemblyInfoInputs.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_z2zjqegq_wpftmp.AssemblyInfoInputs.cache deleted file mode 100644 index d2ffe315618bd1fddc6647db53993cbf7b29390d..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_z2zjqegq_wpftmp.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -06be5f1bb5b1abf8cb6f5e6e6ad37b7c40446f3b230e37cf3bf659b8fb4b695d diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_z2zjqegq_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_z2zjqegq_wpftmp.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 98842c02bb5c6a3ab6e17c1d78d3855bc3cc3424..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_z2zjqegq_wpftmp.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,13 +0,0 @@ -is_global = true -build_property.TargetFramework = net8.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 = InnoLabProjektDektopApp_z2zjqegq_wpftmp -build_property.ProjectDir = C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_z2zjqegq_wpftmp.GlobalUsings.g.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_z2zjqegq_wpftmp.GlobalUsings.g.cs deleted file mode 100644 index 08bb19f98f92ddf9f0a40b2a35cc780abab2477f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_z2zjqegq_wpftmp.GlobalUsings.g.cs +++ /dev/null @@ -1,6 +0,0 @@ -// <auto-generated/> -global using global::System; -global using global::System.Collections.Generic; -global using global::System.Linq; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_z2zjqegq_wpftmp.assets.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_z2zjqegq_wpftmp.assets.cache deleted file mode 100644 index 4cfd8f6de1779c5bad4c294ad0753d9e6ebb0461..0000000000000000000000000000000000000000 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_z2zjqegq_wpftmp.assets.cache and /dev/null differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_z2zjqegq_wpftmp.csproj.BuildWithSkipAnalyzers b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_z2zjqegq_wpftmp.csproj.BuildWithSkipAnalyzers deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_zbexhac3_wpftmp.AssemblyInfo.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_zbexhac3_wpftmp.AssemblyInfo.cs deleted file mode 100644 index f5396dbcec163bc8051d4d144b2370b0ca77aabf..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_zbexhac3_wpftmp.AssemblyInfo.cs +++ /dev/null @@ -1,25 +0,0 @@ -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+45b0308489b9a25e177645c2690d5b0da55ef8b5")] -[assembly: System.Reflection.AssemblyProductAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyTitleAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] -[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_zbexhac3_wpftmp.AssemblyInfoInputs.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_zbexhac3_wpftmp.AssemblyInfoInputs.cache deleted file mode 100644 index d2ffe315618bd1fddc6647db53993cbf7b29390d..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_zbexhac3_wpftmp.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -06be5f1bb5b1abf8cb6f5e6e6ad37b7c40446f3b230e37cf3bf659b8fb4b695d diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_zbexhac3_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_zbexhac3_wpftmp.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 6b5b29dec246123b74efc3c881e046e3f6321603..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_zbexhac3_wpftmp.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,13 +0,0 @@ -is_global = true -build_property.TargetFramework = net8.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 = InnoLabProjektDektopApp_zbexhac3_wpftmp -build_property.ProjectDir = C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_zbexhac3_wpftmp.GlobalUsings.g.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_zbexhac3_wpftmp.GlobalUsings.g.cs deleted file mode 100644 index 08bb19f98f92ddf9f0a40b2a35cc780abab2477f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_zbexhac3_wpftmp.GlobalUsings.g.cs +++ /dev/null @@ -1,6 +0,0 @@ -// <auto-generated/> -global using global::System; -global using global::System.Collections.Generic; -global using global::System.Linq; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_zbexhac3_wpftmp.assets.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_zbexhac3_wpftmp.assets.cache deleted file mode 100644 index 4f4a2010555e70893812e937a7645ab524265188..0000000000000000000000000000000000000000 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_zbexhac3_wpftmp.assets.cache and /dev/null differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_zbexhac3_wpftmp.csproj.BuildWithSkipAnalyzers b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_zbexhac3_wpftmp.csproj.BuildWithSkipAnalyzers deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_zj3uay2m_wpftmp.AssemblyInfo.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_zj3uay2m_wpftmp.AssemblyInfo.cs deleted file mode 100644 index f5396dbcec163bc8051d4d144b2370b0ca77aabf..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_zj3uay2m_wpftmp.AssemblyInfo.cs +++ /dev/null @@ -1,25 +0,0 @@ -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+45b0308489b9a25e177645c2690d5b0da55ef8b5")] -[assembly: System.Reflection.AssemblyProductAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyTitleAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] -[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_zj3uay2m_wpftmp.AssemblyInfoInputs.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_zj3uay2m_wpftmp.AssemblyInfoInputs.cache deleted file mode 100644 index d2ffe315618bd1fddc6647db53993cbf7b29390d..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_zj3uay2m_wpftmp.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -06be5f1bb5b1abf8cb6f5e6e6ad37b7c40446f3b230e37cf3bf659b8fb4b695d diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_zj3uay2m_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_zj3uay2m_wpftmp.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index b96efaf199d33bf45739692b051cdcab108ed4f1..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_zj3uay2m_wpftmp.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,13 +0,0 @@ -is_global = true -build_property.TargetFramework = net8.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 = InnoLabProjektDektopApp_zj3uay2m_wpftmp -build_property.ProjectDir = C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_zj3uay2m_wpftmp.GlobalUsings.g.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_zj3uay2m_wpftmp.GlobalUsings.g.cs deleted file mode 100644 index 08bb19f98f92ddf9f0a40b2a35cc780abab2477f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_zj3uay2m_wpftmp.GlobalUsings.g.cs +++ /dev/null @@ -1,6 +0,0 @@ -// <auto-generated/> -global using global::System; -global using global::System.Collections.Generic; -global using global::System.Linq; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_zj3uay2m_wpftmp.assets.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_zj3uay2m_wpftmp.assets.cache deleted file mode 100644 index a9ff8757c66b7fb4c37b0c09fa8bfd68443ff189..0000000000000000000000000000000000000000 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_zj3uay2m_wpftmp.assets.cache and /dev/null differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_zj3uay2m_wpftmp.csproj.BuildWithSkipAnalyzers b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_zj3uay2m_wpftmp.csproj.BuildWithSkipAnalyzers deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_zolrp3cx_wpftmp.AssemblyInfo.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_zolrp3cx_wpftmp.AssemblyInfo.cs deleted file mode 100644 index 3af44555a66c1ad12342ead37d0fa6bd02a4627f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_zolrp3cx_wpftmp.AssemblyInfo.cs +++ /dev/null @@ -1,25 +0,0 @@ -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+7d9fdc65b72f7cc8ea8104cf503e772444f3ebe7")] -[assembly: System.Reflection.AssemblyProductAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyTitleAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] -[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_zolrp3cx_wpftmp.AssemblyInfoInputs.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_zolrp3cx_wpftmp.AssemblyInfoInputs.cache deleted file mode 100644 index e53f172a5e43dae4e82cd22e0216ee2a440e3a7b..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_zolrp3cx_wpftmp.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -c91725249ea17b46ca8a7399dd416160bad06e59a0d84c3a3853cbe729a5e799 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_zolrp3cx_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_zolrp3cx_wpftmp.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index d478582a8f2202f2825dbd81980b015670d34ca1..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_zolrp3cx_wpftmp.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,13 +0,0 @@ -is_global = true -build_property.TargetFramework = net8.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 = InnoLabProjektDektopApp_zolrp3cx_wpftmp -build_property.ProjectDir = C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_zolrp3cx_wpftmp.GlobalUsings.g.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_zolrp3cx_wpftmp.GlobalUsings.g.cs deleted file mode 100644 index 08bb19f98f92ddf9f0a40b2a35cc780abab2477f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_zolrp3cx_wpftmp.GlobalUsings.g.cs +++ /dev/null @@ -1,6 +0,0 @@ -// <auto-generated/> -global using global::System; -global using global::System.Collections.Generic; -global using global::System.Linq; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_zolrp3cx_wpftmp.assets.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_zolrp3cx_wpftmp.assets.cache deleted file mode 100644 index 93b01d8ca7fe07aa95225b74ce87b4ef21054130..0000000000000000000000000000000000000000 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_zolrp3cx_wpftmp.assets.cache and /dev/null differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_zuxunfbv_wpftmp.AssemblyInfo.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_zuxunfbv_wpftmp.AssemblyInfo.cs deleted file mode 100644 index 3af44555a66c1ad12342ead37d0fa6bd02a4627f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_zuxunfbv_wpftmp.AssemblyInfo.cs +++ /dev/null @@ -1,25 +0,0 @@ -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+7d9fdc65b72f7cc8ea8104cf503e772444f3ebe7")] -[assembly: System.Reflection.AssemblyProductAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyTitleAttribute("InnoLabProjektDektopApp")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] -[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_zuxunfbv_wpftmp.AssemblyInfoInputs.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_zuxunfbv_wpftmp.AssemblyInfoInputs.cache deleted file mode 100644 index e53f172a5e43dae4e82cd22e0216ee2a440e3a7b..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_zuxunfbv_wpftmp.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -c91725249ea17b46ca8a7399dd416160bad06e59a0d84c3a3853cbe729a5e799 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_zuxunfbv_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_zuxunfbv_wpftmp.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index cce619d370510b2f761b0b95361e9e5974b2072f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_zuxunfbv_wpftmp.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,13 +0,0 @@ -is_global = true -build_property.TargetFramework = net8.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 = InnoLabProjektDektopApp_zuxunfbv_wpftmp -build_property.ProjectDir = C:\Users\Windows sucks\Documents\Studium_2024\procrastinator\InnoLabProjektDektopApp\InnoLabProjektDektopApp\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_zuxunfbv_wpftmp.GlobalUsings.g.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_zuxunfbv_wpftmp.GlobalUsings.g.cs deleted file mode 100644 index 08bb19f98f92ddf9f0a40b2a35cc780abab2477f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_zuxunfbv_wpftmp.GlobalUsings.g.cs +++ /dev/null @@ -1,6 +0,0 @@ -// <auto-generated/> -global using global::System; -global using global::System.Collections.Generic; -global using global::System.Linq; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_zuxunfbv_wpftmp.assets.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_zuxunfbv_wpftmp.assets.cache deleted file mode 100644 index 9abc57bcc9170b6ca89f0e1f3ae58d0c37fbf208..0000000000000000000000000000000000000000 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_zuxunfbv_wpftmp.assets.cache and /dev/null differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_zuxunfbv_wpftmp.csproj.BuildWithSkipAnalyzers b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp_zuxunfbv_wpftmp.csproj.BuildWithSkipAnalyzers deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/MainWindow.g.i.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/MainWindow.g.i.cs deleted file mode 100644 index 66b58c0b0d784967ce928d5c2c856a618f15b1d4..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/MainWindow.g.i.cs +++ /dev/null @@ -1,76 +0,0 @@ -#pragma checksum "..\..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "F1FB7E9374C3817B675D56BFEEE20173BE833549" -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using InnoLabProjektDektopApp; -using System; -using System.Diagnostics; -using System.Windows; -using System.Windows.Automation; -using System.Windows.Controls; -using System.Windows.Controls.Primitives; -using System.Windows.Controls.Ribbon; -using System.Windows.Data; -using System.Windows.Documents; -using System.Windows.Ink; -using System.Windows.Input; -using System.Windows.Markup; -using System.Windows.Media; -using System.Windows.Media.Animation; -using System.Windows.Media.Effects; -using System.Windows.Media.Imaging; -using System.Windows.Media.Media3D; -using System.Windows.Media.TextFormatting; -using System.Windows.Navigation; -using System.Windows.Shapes; -using System.Windows.Shell; - - -namespace InnoLabProjektDektopApp { - - - /// <summary> - /// MainWindow - /// </summary> - public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector { - - private bool _contentLoaded; - - /// <summary> - /// InitializeComponent - /// </summary> - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.7.0")] - public void InitializeComponent() { - if (_contentLoaded) { - return; - } - _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/InnoLabProjektDektopApp;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", "8.0.7.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/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/AnotherWindow.g.i.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/AnotherWindow.g.i.cs deleted file mode 100644 index 82ad09cc1fa0c5d0e0647c8b1a05d5fbc9f52d61..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/AnotherWindow.g.i.cs +++ /dev/null @@ -1,76 +0,0 @@ -#pragma checksum "..\..\..\..\Screens\AnotherWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "CEA98DB0A69964122A1101044832C05BD7AEB159" -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using InnoLabProjektDektopApp.Windows; -using System; -using System.Diagnostics; -using System.Windows; -using System.Windows.Automation; -using System.Windows.Controls; -using System.Windows.Controls.Primitives; -using System.Windows.Controls.Ribbon; -using System.Windows.Data; -using System.Windows.Documents; -using System.Windows.Ink; -using System.Windows.Input; -using System.Windows.Markup; -using System.Windows.Media; -using System.Windows.Media.Animation; -using System.Windows.Media.Effects; -using System.Windows.Media.Imaging; -using System.Windows.Media.Media3D; -using System.Windows.Media.TextFormatting; -using System.Windows.Navigation; -using System.Windows.Shapes; -using System.Windows.Shell; - - -namespace InnoLabProjektDektopApp.Windows { - - - /// <summary> - /// AnotherWindow - /// </summary> - public partial class AnotherWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector { - - private bool _contentLoaded; - - /// <summary> - /// InitializeComponent - /// </summary> - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.7.0")] - public void InitializeComponent() { - if (_contentLoaded) { - return; - } - _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/InnoLabProjektDektopApp;V1.0.0.0;component/screens/anotherwindow.xaml", System.UriKind.Relative); - - #line 1 "..\..\..\..\Screens\AnotherWindow.xaml" - System.Windows.Application.LoadComponent(this, resourceLocater); - - #line default - #line hidden - } - - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.7.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/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/FirstLaunch/01S.g.i.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/FirstLaunch/01S.g.i.cs deleted file mode 100644 index cc3a79fd3023e0970e7af27a19eb78541b3760d3..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/FirstLaunch/01S.g.i.cs +++ /dev/null @@ -1,103 +0,0 @@ -#pragma checksum "..\..\..\..\..\Screens\FirstLaunch\01S.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "58E5123F7E08B1705D51E7F8F2BF386B29A20A6A" -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using InnoLabProjektDektopApp; -using InnoLabProjektDektopApp.Screens.Templates; -using System; -using System.Diagnostics; -using System.Windows; -using System.Windows.Automation; -using System.Windows.Controls; -using System.Windows.Controls.Primitives; -using System.Windows.Controls.Ribbon; -using System.Windows.Data; -using System.Windows.Documents; -using System.Windows.Ink; -using System.Windows.Input; -using System.Windows.Markup; -using System.Windows.Media; -using System.Windows.Media.Animation; -using System.Windows.Media.Effects; -using System.Windows.Media.Imaging; -using System.Windows.Media.Media3D; -using System.Windows.Media.TextFormatting; -using System.Windows.Navigation; -using System.Windows.Shapes; -using System.Windows.Shell; - - -namespace InnoLabProjektDektopApp { - - - /// <summary> - /// End - /// </summary> - public partial class End : System.Windows.Window, System.Windows.Markup.IComponentConnector { - - private bool _contentLoaded; - - /// <summary> - /// InitializeComponent - /// </summary> - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.7.0")] - public void InitializeComponent() { - if (_contentLoaded) { - return; - } - _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/InnoLabProjektDektopApp;V1.0.0.0;component/screens/firstlaunch/01s.xaml", System.UriKind.Relative); - - #line 1 "..\..\..\..\..\Screens\FirstLaunch\01S.xaml" - System.Windows.Application.LoadComponent(this, resourceLocater); - - #line default - #line hidden - } - - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.7.0")] - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] - internal System.Delegate _CreateDelegate(System.Type delegateType, string handler) { - return System.Delegate.CreateDelegate(delegateType, this, handler); - } - - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.7.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: - - #line 13 "..\..\..\..\..\Screens\FirstLaunch\01S.xaml" - ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Option2_Click); - - #line default - #line hidden - return; - case 2: - - #line 14 "..\..\..\..\..\Screens\FirstLaunch\01S.xaml" - ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Option3_Click); - - #line default - #line hidden - return; - } - this._contentLoaded = true; - } - } -} - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/FirstLaunch/01Startscreen - Copy (2).g.i.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/FirstLaunch/01Startscreen - Copy (2).g.i.cs deleted file mode 100644 index 1834620827be72d2cc5d52d5d9a80f4938244811..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/FirstLaunch/01Startscreen - Copy (2).g.i.cs +++ /dev/null @@ -1,104 +0,0 @@ -#pragma checksum "..\..\..\..\..\Screens\FirstLaunch\01Startscreen - Copy (2).xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "0560E0A73F5A1A30887223D2E5AB612B4DDDEF16" -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using InnoLabProjektDektopApp; -using InnoLabProjektDektopApp.Screens.Templates; -using System; -using System.Diagnostics; -using System.Windows; -using System.Windows.Automation; -using System.Windows.Controls; -using System.Windows.Controls.Primitives; -using System.Windows.Controls.Ribbon; -using System.Windows.Data; -using System.Windows.Documents; -using System.Windows.Ink; -using System.Windows.Input; -using System.Windows.Markup; -using System.Windows.Media; -using System.Windows.Media.Animation; -using System.Windows.Media.Effects; -using System.Windows.Media.Imaging; -using System.Windows.Media.Media3D; -using System.Windows.Media.TextFormatting; -using System.Windows.Navigation; -using System.Windows.Shapes; -using System.Windows.Shell; - - -namespace InnoLabProjektDektopApp { - - - /// <summary> - /// Startscreen - /// </summary> - public partial class Startscreen : System.Windows.Window, System.Windows.Markup.IComponentConnector { - - private bool _contentLoaded; - - /// <summary> - /// InitializeComponent - /// </summary> - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.7.0")] - public void InitializeComponent() { - if (_contentLoaded) { - return; - } - _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/InnoLabProjektDektopApp;V1.0.0.0;component/screens/firstlaunch/01startscreen%20-" + - "%20copy%20(2).xaml", System.UriKind.Relative); - - #line 1 "..\..\..\..\..\Screens\FirstLaunch\01Startscreen - Copy (2).xaml" - System.Windows.Application.LoadComponent(this, resourceLocater); - - #line default - #line hidden - } - - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.7.0")] - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] - internal System.Delegate _CreateDelegate(System.Type delegateType, string handler) { - return System.Delegate.CreateDelegate(delegateType, this, handler); - } - - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.7.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: - - #line 13 "..\..\..\..\..\Screens\FirstLaunch\01Startscreen - Copy (2).xaml" - ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Option2_Click); - - #line default - #line hidden - return; - case 2: - - #line 14 "..\..\..\..\..\Screens\FirstLaunch\01Startscreen - Copy (2).xaml" - ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Option3_Click); - - #line default - #line hidden - return; - } - this._contentLoaded = true; - } - } -} - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/FirstLaunch/01Startscreen - Copy (3).g.i.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/FirstLaunch/01Startscreen - Copy (3).g.i.cs deleted file mode 100644 index 3b4ee83bd0c48b4c6336210d8d680a7e161238e5..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/FirstLaunch/01Startscreen - Copy (3).g.i.cs +++ /dev/null @@ -1,104 +0,0 @@ -#pragma checksum "..\..\..\..\..\Screens\FirstLaunch\01Startscreen - Copy (3).xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "0560E0A73F5A1A30887223D2E5AB612B4DDDEF16" -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using InnoLabProjektDektopApp; -using InnoLabProjektDektopApp.Screens.Templates; -using System; -using System.Diagnostics; -using System.Windows; -using System.Windows.Automation; -using System.Windows.Controls; -using System.Windows.Controls.Primitives; -using System.Windows.Controls.Ribbon; -using System.Windows.Data; -using System.Windows.Documents; -using System.Windows.Ink; -using System.Windows.Input; -using System.Windows.Markup; -using System.Windows.Media; -using System.Windows.Media.Animation; -using System.Windows.Media.Effects; -using System.Windows.Media.Imaging; -using System.Windows.Media.Media3D; -using System.Windows.Media.TextFormatting; -using System.Windows.Navigation; -using System.Windows.Shapes; -using System.Windows.Shell; - - -namespace InnoLabProjektDektopApp { - - - /// <summary> - /// Startscreen - /// </summary> - public partial class Startscreen : System.Windows.Window, System.Windows.Markup.IComponentConnector { - - private bool _contentLoaded; - - /// <summary> - /// InitializeComponent - /// </summary> - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.7.0")] - public void InitializeComponent() { - if (_contentLoaded) { - return; - } - _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/InnoLabProjektDektopApp;V1.0.0.0;component/screens/firstlaunch/01startscreen%20-" + - "%20copy%20(3).xaml", System.UriKind.Relative); - - #line 1 "..\..\..\..\..\Screens\FirstLaunch\01Startscreen - Copy (3).xaml" - System.Windows.Application.LoadComponent(this, resourceLocater); - - #line default - #line hidden - } - - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.7.0")] - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] - internal System.Delegate _CreateDelegate(System.Type delegateType, string handler) { - return System.Delegate.CreateDelegate(delegateType, this, handler); - } - - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.7.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: - - #line 13 "..\..\..\..\..\Screens\FirstLaunch\01Startscreen - Copy (3).xaml" - ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Option2_Click); - - #line default - #line hidden - return; - case 2: - - #line 14 "..\..\..\..\..\Screens\FirstLaunch\01Startscreen - Copy (3).xaml" - ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Option3_Click); - - #line default - #line hidden - return; - } - this._contentLoaded = true; - } - } -} - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/FirstLaunch/01Startscreen - Copy (4).g.i.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/FirstLaunch/01Startscreen - Copy (4).g.i.cs deleted file mode 100644 index fe96955657beb5b4278970d00c80488dc835b2cd..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/FirstLaunch/01Startscreen - Copy (4).g.i.cs +++ /dev/null @@ -1,104 +0,0 @@ -#pragma checksum "..\..\..\..\..\Screens\FirstLaunch\01Startscreen - Copy (4).xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "0560E0A73F5A1A30887223D2E5AB612B4DDDEF16" -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using InnoLabProjektDektopApp; -using InnoLabProjektDektopApp.Screens.Templates; -using System; -using System.Diagnostics; -using System.Windows; -using System.Windows.Automation; -using System.Windows.Controls; -using System.Windows.Controls.Primitives; -using System.Windows.Controls.Ribbon; -using System.Windows.Data; -using System.Windows.Documents; -using System.Windows.Ink; -using System.Windows.Input; -using System.Windows.Markup; -using System.Windows.Media; -using System.Windows.Media.Animation; -using System.Windows.Media.Effects; -using System.Windows.Media.Imaging; -using System.Windows.Media.Media3D; -using System.Windows.Media.TextFormatting; -using System.Windows.Navigation; -using System.Windows.Shapes; -using System.Windows.Shell; - - -namespace InnoLabProjektDektopApp { - - - /// <summary> - /// Startscreen - /// </summary> - public partial class Startscreen : System.Windows.Window, System.Windows.Markup.IComponentConnector { - - private bool _contentLoaded; - - /// <summary> - /// InitializeComponent - /// </summary> - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.7.0")] - public void InitializeComponent() { - if (_contentLoaded) { - return; - } - _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/InnoLabProjektDektopApp;V1.0.0.0;component/screens/firstlaunch/01startscreen%20-" + - "%20copy%20(4).xaml", System.UriKind.Relative); - - #line 1 "..\..\..\..\..\Screens\FirstLaunch\01Startscreen - Copy (4).xaml" - System.Windows.Application.LoadComponent(this, resourceLocater); - - #line default - #line hidden - } - - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.7.0")] - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] - internal System.Delegate _CreateDelegate(System.Type delegateType, string handler) { - return System.Delegate.CreateDelegate(delegateType, this, handler); - } - - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.7.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: - - #line 13 "..\..\..\..\..\Screens\FirstLaunch\01Startscreen - Copy (4).xaml" - ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Option2_Click); - - #line default - #line hidden - return; - case 2: - - #line 14 "..\..\..\..\..\Screens\FirstLaunch\01Startscreen - Copy (4).xaml" - ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Option3_Click); - - #line default - #line hidden - return; - } - this._contentLoaded = true; - } - } -} - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/FirstLaunch/01Startscreen - Copy (5).g.i.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/FirstLaunch/01Startscreen - Copy (5).g.i.cs deleted file mode 100644 index c6c77896928d701ead397f46a452b05a89a45761..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/FirstLaunch/01Startscreen - Copy (5).g.i.cs +++ /dev/null @@ -1,104 +0,0 @@ -#pragma checksum "..\..\..\..\..\Screens\FirstLaunch\01Startscreen - Copy (5).xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "0560E0A73F5A1A30887223D2E5AB612B4DDDEF16" -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using InnoLabProjektDektopApp; -using InnoLabProjektDektopApp.Screens.Templates; -using System; -using System.Diagnostics; -using System.Windows; -using System.Windows.Automation; -using System.Windows.Controls; -using System.Windows.Controls.Primitives; -using System.Windows.Controls.Ribbon; -using System.Windows.Data; -using System.Windows.Documents; -using System.Windows.Ink; -using System.Windows.Input; -using System.Windows.Markup; -using System.Windows.Media; -using System.Windows.Media.Animation; -using System.Windows.Media.Effects; -using System.Windows.Media.Imaging; -using System.Windows.Media.Media3D; -using System.Windows.Media.TextFormatting; -using System.Windows.Navigation; -using System.Windows.Shapes; -using System.Windows.Shell; - - -namespace InnoLabProjektDektopApp { - - - /// <summary> - /// Startscreen - /// </summary> - public partial class Startscreen : System.Windows.Window, System.Windows.Markup.IComponentConnector { - - private bool _contentLoaded; - - /// <summary> - /// InitializeComponent - /// </summary> - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.7.0")] - public void InitializeComponent() { - if (_contentLoaded) { - return; - } - _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/InnoLabProjektDektopApp;V1.0.0.0;component/screens/firstlaunch/01startscreen%20-" + - "%20copy%20(5).xaml", System.UriKind.Relative); - - #line 1 "..\..\..\..\..\Screens\FirstLaunch\01Startscreen - Copy (5).xaml" - System.Windows.Application.LoadComponent(this, resourceLocater); - - #line default - #line hidden - } - - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.7.0")] - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] - internal System.Delegate _CreateDelegate(System.Type delegateType, string handler) { - return System.Delegate.CreateDelegate(delegateType, this, handler); - } - - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.7.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: - - #line 13 "..\..\..\..\..\Screens\FirstLaunch\01Startscreen - Copy (5).xaml" - ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Option2_Click); - - #line default - #line hidden - return; - case 2: - - #line 14 "..\..\..\..\..\Screens\FirstLaunch\01Startscreen - Copy (5).xaml" - ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Option3_Click); - - #line default - #line hidden - return; - } - this._contentLoaded = true; - } - } -} - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/FirstLaunch/01Startscreen - Copy.g.i.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/FirstLaunch/01Startscreen - Copy.g.i.cs deleted file mode 100644 index b2c663b45b1f9661bafebe45df0f67b1ac53a4f0..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/FirstLaunch/01Startscreen - Copy.g.i.cs +++ /dev/null @@ -1,104 +0,0 @@ -#pragma checksum "..\..\..\..\..\Screens\FirstLaunch\01Startscreen - Copy.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "0560E0A73F5A1A30887223D2E5AB612B4DDDEF16" -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using InnoLabProjektDektopApp; -using InnoLabProjektDektopApp.Screens.Templates; -using System; -using System.Diagnostics; -using System.Windows; -using System.Windows.Automation; -using System.Windows.Controls; -using System.Windows.Controls.Primitives; -using System.Windows.Controls.Ribbon; -using System.Windows.Data; -using System.Windows.Documents; -using System.Windows.Ink; -using System.Windows.Input; -using System.Windows.Markup; -using System.Windows.Media; -using System.Windows.Media.Animation; -using System.Windows.Media.Effects; -using System.Windows.Media.Imaging; -using System.Windows.Media.Media3D; -using System.Windows.Media.TextFormatting; -using System.Windows.Navigation; -using System.Windows.Shapes; -using System.Windows.Shell; - - -namespace InnoLabProjektDektopApp { - - - /// <summary> - /// Startscreen - /// </summary> - public partial class Startscreen : System.Windows.Window, System.Windows.Markup.IComponentConnector { - - private bool _contentLoaded; - - /// <summary> - /// InitializeComponent - /// </summary> - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.7.0")] - public void InitializeComponent() { - if (_contentLoaded) { - return; - } - _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/InnoLabProjektDektopApp;V1.0.0.0;component/screens/firstlaunch/01startscreen%20-" + - "%20copy.xaml", System.UriKind.Relative); - - #line 1 "..\..\..\..\..\Screens\FirstLaunch\01Startscreen - Copy.xaml" - System.Windows.Application.LoadComponent(this, resourceLocater); - - #line default - #line hidden - } - - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.7.0")] - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] - internal System.Delegate _CreateDelegate(System.Type delegateType, string handler) { - return System.Delegate.CreateDelegate(delegateType, this, handler); - } - - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.7.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: - - #line 13 "..\..\..\..\..\Screens\FirstLaunch\01Startscreen - Copy.xaml" - ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Option2_Click); - - #line default - #line hidden - return; - case 2: - - #line 14 "..\..\..\..\..\Screens\FirstLaunch\01Startscreen - Copy.xaml" - ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Option3_Click); - - #line default - #line hidden - return; - } - this._contentLoaded = true; - } - } -} - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/FirstLaunch/01Startscreen.g.i.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/FirstLaunch/01Startscreen.g.i.cs index c25474cba3a46a8c5833ff326d7c69bff5b42829..50511ebbdc86da6cf0872e1b71042e48c5a7700e 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/FirstLaunch/01Startscreen.g.i.cs +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/FirstLaunch/01Startscreen.g.i.cs @@ -1,4 +1,4 @@ -#pragma checksum "..\..\..\..\..\Screens\FirstLaunch\01Startscreen.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "36C0AE432AB2B51E75A5CC1B4D3A3625806DE022" +#pragma checksum "..\..\..\..\..\Screens\FirstLaunch\01Startscreen.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "52D38387AE7C10AE2B702C18286866184F19398F" //------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. @@ -20,6 +20,7 @@ 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; @@ -40,7 +41,7 @@ namespace InnoLabProjektDektopApp { /// <summary> /// Startscreen /// </summary> - public partial class Startscreen : System.Windows.Window, System.Windows.Markup.IComponentConnector { + public partial class Startscreen : System.Windows.Controls.Page, System.Windows.Markup.IComponentConnector { private bool _contentLoaded; @@ -54,7 +55,7 @@ namespace InnoLabProjektDektopApp { return; } _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/CoFlow;V1.0.0.0;component/screens/firstlaunch/01startscreen.xaml", System.UriKind.Relative); + System.Uri resourceLocater = new System.Uri("/CoFlow;component/screens/firstlaunch/01startscreen.xaml", System.UriKind.Relative); #line 1 "..\..\..\..\..\Screens\FirstLaunch\01Startscreen.xaml" System.Windows.Application.LoadComponent(this, resourceLocater); @@ -74,7 +75,7 @@ namespace InnoLabProjektDektopApp { { case 1: - #line 13 "..\..\..\..\..\Screens\FirstLaunch\01Startscreen.xaml" + #line 14 "..\..\..\..\..\Screens\FirstLaunch\01Startscreen.xaml" ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click); #line default diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/FirstLaunch/02Progress.g.i.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/FirstLaunch/02Progress.g.i.cs index 328ee9f7c0e4fcc5dd21db86c25170c98e551c66..4b254ef883bca7f78e9722a5a0e07fc688501429 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/FirstLaunch/02Progress.g.i.cs +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/FirstLaunch/02Progress.g.i.cs @@ -1,4 +1,4 @@ -#pragma checksum "..\..\..\..\..\Screens\FirstLaunch\02Progress.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "178E95093EF485EDF590E8871B8E4E6D3DC7E167" +#pragma checksum "..\..\..\..\..\Screens\FirstLaunch\02Progress.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "900BD8C5B70D63CD5FCB9C1D1918F74C16010069" //------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. @@ -20,6 +20,7 @@ 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; @@ -40,7 +41,7 @@ namespace InnoLabProjektDektopApp { /// <summary> /// Progress /// </summary> - public partial class Progress : System.Windows.Window, System.Windows.Markup.IComponentConnector { + public partial class Progress : System.Windows.Controls.Page, System.Windows.Markup.IComponentConnector { private bool _contentLoaded; @@ -54,7 +55,7 @@ namespace InnoLabProjektDektopApp { return; } _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/CoFlow;V1.0.0.0;component/screens/firstlaunch/02progress.xaml", System.UriKind.Relative); + System.Uri resourceLocater = new System.Uri("/CoFlow;component/screens/firstlaunch/02progress.xaml", System.UriKind.Relative); #line 1 "..\..\..\..\..\Screens\FirstLaunch\02Progress.xaml" System.Windows.Application.LoadComponent(this, resourceLocater); @@ -74,7 +75,7 @@ namespace InnoLabProjektDektopApp { { case 1: - #line 20 "..\..\..\..\..\Screens\FirstLaunch\02Progress.xaml" + #line 19 "..\..\..\..\..\Screens\FirstLaunch\02Progress.xaml" ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click1); #line default @@ -82,7 +83,7 @@ namespace InnoLabProjektDektopApp { return; case 2: - #line 21 "..\..\..\..\..\Screens\FirstLaunch\02Progress.xaml" + #line 20 "..\..\..\..\..\Screens\FirstLaunch\02Progress.xaml" ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click2); #line default @@ -90,7 +91,7 @@ namespace InnoLabProjektDektopApp { return; case 3: - #line 22 "..\..\..\..\..\Screens\FirstLaunch\02Progress.xaml" + #line 21 "..\..\..\..\..\Screens\FirstLaunch\02Progress.xaml" ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click2); #line default diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/FirstLaunch/03Distractions.g.i.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/FirstLaunch/03Distractions.g.i.cs deleted file mode 100644 index 2a27010ca90dbe5dacf6b2e9fec565ec5560b627..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/FirstLaunch/03Distractions.g.i.cs +++ /dev/null @@ -1,104 +0,0 @@ -#pragma checksum "..\..\..\..\..\Screens\FirstLaunch\03Distractions.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "D032D2D9484158408DD379057162D92B8D5B0243" -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using InnoLabProjektDektopApp; -using InnoLabProjektDektopApp.Screens.Templates; -using System; -using System.Diagnostics; -using System.Windows; -using System.Windows.Automation; -using System.Windows.Controls; -using System.Windows.Controls.Primitives; -using System.Windows.Controls.Ribbon; -using System.Windows.Data; -using System.Windows.Documents; -using System.Windows.Ink; -using System.Windows.Input; -using System.Windows.Markup; -using System.Windows.Media; -using System.Windows.Media.Animation; -using System.Windows.Media.Effects; -using System.Windows.Media.Imaging; -using System.Windows.Media.Media3D; -using System.Windows.Media.TextFormatting; -using System.Windows.Navigation; -using System.Windows.Shapes; -using System.Windows.Shell; - - -namespace InnoLabProjektDektopApp { - - - /// <summary> - /// Distractions - /// </summary> - public partial class Distractions : System.Windows.Window, System.Windows.Markup.IComponentConnector { - - private bool _contentLoaded; - - /// <summary> - /// InitializeComponent - /// </summary> - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.7.0")] - public void InitializeComponent() { - if (_contentLoaded) { - return; - } - _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/InnoLabProjektDektopApp;V1.0.0.0;component/screens/firstlaunch/03distractions.xa" + - "ml", System.UriKind.Relative); - - #line 1 "..\..\..\..\..\Screens\FirstLaunch\03Distractions.xaml" - System.Windows.Application.LoadComponent(this, resourceLocater); - - #line default - #line hidden - } - - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.7.0")] - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] - internal System.Delegate _CreateDelegate(System.Type delegateType, string handler) { - return System.Delegate.CreateDelegate(delegateType, this, handler); - } - - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.7.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: - - #line 13 "..\..\..\..\..\Screens\FirstLaunch\03Distractions.xaml" - ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Option2_Click); - - #line default - #line hidden - return; - case 2: - - #line 14 "..\..\..\..\..\Screens\FirstLaunch\03Distractions.xaml" - ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Option3_Click); - - #line default - #line hidden - return; - } - this._contentLoaded = true; - } - } -} - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/FirstLaunch/03End.g.i.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/FirstLaunch/03End.g.i.cs deleted file mode 100644 index 3d1991c28e7d50d923b7b76e58e13d2fd9df7423..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/FirstLaunch/03End.g.i.cs +++ /dev/null @@ -1,103 +0,0 @@ -#pragma checksum "..\..\..\..\..\Screens\FirstLaunch\03End.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "58E5123F7E08B1705D51E7F8F2BF386B29A20A6A" -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using InnoLabProjektDektopApp; -using InnoLabProjektDektopApp.Screens.Templates; -using System; -using System.Diagnostics; -using System.Windows; -using System.Windows.Automation; -using System.Windows.Controls; -using System.Windows.Controls.Primitives; -using System.Windows.Controls.Ribbon; -using System.Windows.Data; -using System.Windows.Documents; -using System.Windows.Ink; -using System.Windows.Input; -using System.Windows.Markup; -using System.Windows.Media; -using System.Windows.Media.Animation; -using System.Windows.Media.Effects; -using System.Windows.Media.Imaging; -using System.Windows.Media.Media3D; -using System.Windows.Media.TextFormatting; -using System.Windows.Navigation; -using System.Windows.Shapes; -using System.Windows.Shell; - - -namespace InnoLabProjektDektopApp { - - - /// <summary> - /// End - /// </summary> - public partial class End : System.Windows.Window, System.Windows.Markup.IComponentConnector { - - private bool _contentLoaded; - - /// <summary> - /// InitializeComponent - /// </summary> - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.7.0")] - public void InitializeComponent() { - if (_contentLoaded) { - return; - } - _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/InnoLabProjektDektopApp;V1.0.0.0;component/screens/firstlaunch/03end.xaml", System.UriKind.Relative); - - #line 1 "..\..\..\..\..\Screens\FirstLaunch\03End.xaml" - System.Windows.Application.LoadComponent(this, resourceLocater); - - #line default - #line hidden - } - - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.7.0")] - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] - internal System.Delegate _CreateDelegate(System.Type delegateType, string handler) { - return System.Delegate.CreateDelegate(delegateType, this, handler); - } - - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.7.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: - - #line 13 "..\..\..\..\..\Screens\FirstLaunch\03End.xaml" - ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Option2_Click); - - #line default - #line hidden - return; - case 2: - - #line 14 "..\..\..\..\..\Screens\FirstLaunch\03End.xaml" - ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Option3_Click); - - #line default - #line hidden - return; - } - this._contentLoaded = true; - } - } -} - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/FirstLaunch/03_0Distractions.g.i.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/FirstLaunch/03_0Distractions.g.i.cs index bf3b45b42703f609edce62b634a6b8b06c8c2100..18244ec7bb1d1770c2b59c6ad909b6dac74e2171 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/FirstLaunch/03_0Distractions.g.i.cs +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/FirstLaunch/03_0Distractions.g.i.cs @@ -1,4 +1,4 @@ -#pragma checksum "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "AD375DC9D639CF1B001DB990B29EE5D4D495D019" +#pragma checksum "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "6F8FBE11B667B2F0E7CB7507D08B2E3CA7D460B3" //------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. @@ -20,6 +20,7 @@ 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; @@ -40,10 +41,10 @@ namespace InnoLabProjektDektopApp { /// <summary> /// Distractions /// </summary> - public partial class Distractions : System.Windows.Window, System.Windows.Markup.IComponentConnector { + public partial class Distractions : System.Windows.Controls.Page, System.Windows.Markup.IComponentConnector { - #line 32 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" + #line 31 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBox SearchBox; @@ -51,7 +52,7 @@ namespace InnoLabProjektDektopApp { #line hidden - #line 44 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" + #line 43 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock SearchPlaceholder; @@ -59,7 +60,7 @@ namespace InnoLabProjektDektopApp { #line hidden - #line 73 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" + #line 72 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.StackPanel SearchResultsPanel; @@ -67,7 +68,7 @@ namespace InnoLabProjektDektopApp { #line hidden - #line 100 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" + #line 99 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBox UrlInputBox; @@ -75,7 +76,7 @@ namespace InnoLabProjektDektopApp { #line hidden - #line 109 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" + #line 108 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock UrlPlaceholder; @@ -83,7 +84,7 @@ namespace InnoLabProjektDektopApp { #line hidden - #line 129 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" + #line 128 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.ComboBox CategoryComboBox; @@ -91,7 +92,7 @@ namespace InnoLabProjektDektopApp { #line hidden - #line 175 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" + #line 174 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.CheckBox SocialMediaCheckBox; @@ -99,7 +100,7 @@ namespace InnoLabProjektDektopApp { #line hidden - #line 191 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" + #line 190 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.CheckBox ShoppingCheckBox; @@ -107,7 +108,7 @@ namespace InnoLabProjektDektopApp { #line hidden - #line 207 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" + #line 206 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.CheckBox GamesCheckBox; @@ -115,7 +116,7 @@ namespace InnoLabProjektDektopApp { #line hidden - #line 224 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" + #line 223 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.CheckBox PornCheckBox; @@ -123,7 +124,7 @@ namespace InnoLabProjektDektopApp { #line hidden - #line 240 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" + #line 239 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.CheckBox OtherWebsitesCheckBox; @@ -131,7 +132,7 @@ namespace InnoLabProjektDektopApp { #line hidden - #line 256 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" + #line 255 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.CheckBox OtherProgramsCheckBox; @@ -150,7 +151,7 @@ namespace InnoLabProjektDektopApp { return; } _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/CoFlow;V1.0.0.0;component/screens/firstlaunch/03_0distractions.xaml", System.UriKind.Relative); + System.Uri resourceLocater = new System.Uri("/CoFlow;component/screens/firstlaunch/03_0distractions.xaml", System.UriKind.Relative); #line 1 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" System.Windows.Application.LoadComponent(this, resourceLocater); @@ -171,7 +172,7 @@ namespace InnoLabProjektDektopApp { case 1: this.SearchBox = ((System.Windows.Controls.TextBox)(target)); - #line 43 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" + #line 42 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" this.SearchBox.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.SearchBox_TextChanged); #line default @@ -182,7 +183,7 @@ namespace InnoLabProjektDektopApp { return; case 3: - #line 61 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" + #line 60 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.SearchButton_Click); #line default @@ -194,7 +195,7 @@ namespace InnoLabProjektDektopApp { case 5: this.UrlInputBox = ((System.Windows.Controls.TextBox)(target)); - #line 108 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" + #line 107 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" this.UrlInputBox.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.UrlInputBox_TextChanged); #line default @@ -208,7 +209,7 @@ namespace InnoLabProjektDektopApp { return; case 8: - #line 154 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" + #line 153 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.AddButton_Click); #line default @@ -216,7 +217,7 @@ namespace InnoLabProjektDektopApp { return; case 9: - #line 173 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" + #line 172 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" ((System.Windows.Controls.Grid)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Grid_MouseDown); #line default @@ -227,7 +228,7 @@ namespace InnoLabProjektDektopApp { return; case 11: - #line 178 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" + #line 177 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NavigateToDistractionList); #line default @@ -235,7 +236,7 @@ namespace InnoLabProjektDektopApp { return; case 12: - #line 181 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" + #line 180 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NavigateToDistractionList); #line default @@ -243,7 +244,7 @@ namespace InnoLabProjektDektopApp { return; case 13: - #line 189 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" + #line 188 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" ((System.Windows.Controls.Grid)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Grid_MouseDown); #line default @@ -254,7 +255,7 @@ namespace InnoLabProjektDektopApp { return; case 15: - #line 194 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" + #line 193 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NavigateToDistractionList); #line default @@ -262,7 +263,7 @@ namespace InnoLabProjektDektopApp { return; case 16: - #line 197 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" + #line 196 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NavigateToDistractionList); #line default @@ -270,7 +271,7 @@ namespace InnoLabProjektDektopApp { return; case 17: - #line 205 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" + #line 204 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" ((System.Windows.Controls.Grid)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Grid_MouseDown); #line default @@ -281,7 +282,7 @@ namespace InnoLabProjektDektopApp { return; case 19: - #line 210 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" + #line 209 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NavigateToDistractionList); #line default @@ -289,7 +290,7 @@ namespace InnoLabProjektDektopApp { return; case 20: - #line 213 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" + #line 212 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NavigateToDistractionList); #line default @@ -297,7 +298,7 @@ namespace InnoLabProjektDektopApp { return; case 21: - #line 222 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" + #line 221 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" ((System.Windows.Controls.Grid)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Grid_MouseDown); #line default @@ -308,7 +309,7 @@ namespace InnoLabProjektDektopApp { return; case 23: - #line 227 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" + #line 226 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NavigateToDistractionList); #line default @@ -316,7 +317,7 @@ namespace InnoLabProjektDektopApp { return; case 24: - #line 230 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" + #line 229 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NavigateToDistractionList); #line default @@ -324,7 +325,7 @@ namespace InnoLabProjektDektopApp { return; case 25: - #line 238 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" + #line 237 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" ((System.Windows.Controls.Grid)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Grid_MouseDown); #line default @@ -335,7 +336,7 @@ namespace InnoLabProjektDektopApp { return; case 27: - #line 243 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" + #line 242 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NavigateToDistractionList); #line default @@ -343,7 +344,7 @@ namespace InnoLabProjektDektopApp { return; case 28: - #line 246 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" + #line 245 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NavigateToDistractionList); #line default @@ -351,7 +352,7 @@ namespace InnoLabProjektDektopApp { return; case 29: - #line 254 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" + #line 253 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" ((System.Windows.Controls.Grid)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Grid_MouseDown); #line default @@ -362,7 +363,7 @@ namespace InnoLabProjektDektopApp { return; case 31: - #line 259 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" + #line 258 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NavigateToDistractionList); #line default @@ -370,7 +371,7 @@ namespace InnoLabProjektDektopApp { return; case 32: - #line 262 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" + #line 261 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NavigateToDistractionList); #line default diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/FirstLaunch/03_1DistractionsList.g.i.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/FirstLaunch/03_1DistractionsList.g.i.cs index fc166a692a6cd4de8c9ea0caabcc00022466e9af..6159a83c8b889f8581a19715596a255cba0802d1 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/FirstLaunch/03_1DistractionsList.g.i.cs +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/FirstLaunch/03_1DistractionsList.g.i.cs @@ -1,4 +1,4 @@ -#pragma checksum "..\..\..\..\..\Screens\FirstLaunch\03_1DistractionsList.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "6427519979F3F202CA8F5EEC078F8D3C47D55C21" +#pragma checksum "..\..\..\..\..\Screens\FirstLaunch\03_1DistractionsList.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "6FB8719C167CB0D4E9BDCA03028F63807217B979" //------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. @@ -20,6 +20,7 @@ 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; @@ -40,10 +41,10 @@ namespace InnoLabProjektDektopApp { /// <summary> /// DistractionsList /// </summary> - public partial class DistractionsList : System.Windows.Window, System.Windows.Markup.IComponentConnector { + public partial class DistractionsList : System.Windows.Controls.Page, System.Windows.Markup.IComponentConnector { - #line 50 "..\..\..\..\..\Screens\FirstLaunch\03_1DistractionsList.xaml" + #line 49 "..\..\..\..\..\Screens\FirstLaunch\03_1DistractionsList.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBox SearchBox; @@ -51,7 +52,7 @@ namespace InnoLabProjektDektopApp { #line hidden - #line 63 "..\..\..\..\..\Screens\FirstLaunch\03_1DistractionsList.xaml" + #line 62 "..\..\..\..\..\Screens\FirstLaunch\03_1DistractionsList.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock SearchPlaceholder; @@ -59,7 +60,7 @@ namespace InnoLabProjektDektopApp { #line hidden - #line 110 "..\..\..\..\..\Screens\FirstLaunch\03_1DistractionsList.xaml" + #line 109 "..\..\..\..\..\Screens\FirstLaunch\03_1DistractionsList.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBox UrlInputBox; @@ -67,7 +68,7 @@ namespace InnoLabProjektDektopApp { #line hidden - #line 119 "..\..\..\..\..\Screens\FirstLaunch\03_1DistractionsList.xaml" + #line 118 "..\..\..\..\..\Screens\FirstLaunch\03_1DistractionsList.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock UrlPlaceholder; @@ -75,7 +76,7 @@ namespace InnoLabProjektDektopApp { #line hidden - #line 151 "..\..\..\..\..\Screens\FirstLaunch\03_1DistractionsList.xaml" + #line 150 "..\..\..\..\..\Screens\FirstLaunch\03_1DistractionsList.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.CheckBox OtherProgramsCheckBox; @@ -83,7 +84,7 @@ namespace InnoLabProjektDektopApp { #line hidden - #line 152 "..\..\..\..\..\Screens\FirstLaunch\03_1DistractionsList.xaml" + #line 151 "..\..\..\..\..\Screens\FirstLaunch\03_1DistractionsList.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock HeaderTextBlock; @@ -91,7 +92,7 @@ namespace InnoLabProjektDektopApp { #line hidden - #line 158 "..\..\..\..\..\Screens\FirstLaunch\03_1DistractionsList.xaml" + #line 157 "..\..\..\..\..\Screens\FirstLaunch\03_1DistractionsList.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.StackPanel ItemsPanel; @@ -110,7 +111,7 @@ namespace InnoLabProjektDektopApp { return; } _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/CoFlow;V1.0.0.0;component/screens/firstlaunch/03_1distractionslist.xaml", System.UriKind.Relative); + System.Uri resourceLocater = new System.Uri("/CoFlow;component/screens/firstlaunch/03_1distractionslist.xaml", System.UriKind.Relative); #line 1 "..\..\..\..\..\Screens\FirstLaunch\03_1DistractionsList.xaml" System.Windows.Application.LoadComponent(this, resourceLocater); @@ -130,7 +131,7 @@ namespace InnoLabProjektDektopApp { { case 1: - #line 25 "..\..\..\..\..\Screens\FirstLaunch\03_1DistractionsList.xaml" + #line 24 "..\..\..\..\..\Screens\FirstLaunch\03_1DistractionsList.xaml" ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.BackButton_Click); #line default @@ -139,7 +140,7 @@ namespace InnoLabProjektDektopApp { case 2: this.SearchBox = ((System.Windows.Controls.TextBox)(target)); - #line 61 "..\..\..\..\..\Screens\FirstLaunch\03_1DistractionsList.xaml" + #line 60 "..\..\..\..\..\Screens\FirstLaunch\03_1DistractionsList.xaml" this.SearchBox.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.SearchBox_TextChanged); #line default @@ -151,7 +152,7 @@ namespace InnoLabProjektDektopApp { case 4: this.UrlInputBox = ((System.Windows.Controls.TextBox)(target)); - #line 118 "..\..\..\..\..\Screens\FirstLaunch\03_1DistractionsList.xaml" + #line 117 "..\..\..\..\..\Screens\FirstLaunch\03_1DistractionsList.xaml" this.UrlInputBox.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.UrlInputBox_TextChanged); #line default @@ -162,7 +163,7 @@ namespace InnoLabProjektDektopApp { return; case 6: - #line 138 "..\..\..\..\..\Screens\FirstLaunch\03_1DistractionsList.xaml" + #line 137 "..\..\..\..\..\Screens\FirstLaunch\03_1DistractionsList.xaml" ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.AddButton_Click); #line default diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/FirstLaunch/04Settings.g.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/FirstLaunch/04Settings.g.cs index d1e57d7bb6030559bb3fb5ea2773678317d62bbb..1eefdebaa400d4393ddb512161306e7786dcf6c1 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/FirstLaunch/04Settings.g.cs +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/FirstLaunch/04Settings.g.cs @@ -1,4 +1,4 @@ -#pragma checksum "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "1F10F7816B98A4217B59F374663F778C8C3E559E" +#pragma checksum "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "6A6E9F17EF133C51B69A3E2A34235F9D27A49DA9" //------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. @@ -20,6 +20,7 @@ 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; @@ -40,10 +41,10 @@ namespace InnoLabProjektDektopApp { /// <summary> /// Settings /// </summary> - public partial class Settings : System.Windows.Window, System.Windows.Markup.IComponentConnector { + public partial class Settings : System.Windows.Controls.Page, System.Windows.Markup.IComponentConnector { - #line 32 "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml" + #line 31 "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.RadioButton DistractionModeFullBlocking; @@ -51,7 +52,7 @@ namespace InnoLabProjektDektopApp { #line hidden - #line 33 "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml" + #line 32 "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.RadioButton DistractionModeMascotFeedback; @@ -59,7 +60,7 @@ namespace InnoLabProjektDektopApp { #line hidden - #line 40 "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml" + #line 39 "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.ComboBox SecondsComboBox; @@ -67,7 +68,7 @@ namespace InnoLabProjektDektopApp { #line hidden - #line 67 "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml" + #line 66 "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.RadioButton MascotVisibleYes; @@ -75,7 +76,7 @@ namespace InnoLabProjektDektopApp { #line hidden - #line 68 "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml" + #line 67 "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.RadioButton MascotVisibleNo; @@ -83,7 +84,7 @@ namespace InnoLabProjektDektopApp { #line hidden - #line 71 "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml" + #line 70 "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.StackPanel MotivationSection; @@ -91,7 +92,7 @@ namespace InnoLabProjektDektopApp { #line hidden - #line 85 "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml" + #line 84 "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.CheckBox WordsOfAffirmationCheckBox; @@ -99,7 +100,7 @@ namespace InnoLabProjektDektopApp { #line hidden - #line 91 "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml" + #line 90 "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.CheckBox InsultingWordsCheckBox; @@ -115,7 +116,7 @@ namespace InnoLabProjektDektopApp { #line hidden - #line 141 "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml" + #line 144 "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.ComboBox BreakPeriodComboBox; @@ -123,7 +124,7 @@ namespace InnoLabProjektDektopApp { #line hidden - #line 156 "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml" + #line 161 "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.ComboBox CyclesComboBox; @@ -172,7 +173,7 @@ namespace InnoLabProjektDektopApp { case 4: this.MascotVisibleYes = ((System.Windows.Controls.RadioButton)(target)); - #line 67 "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml" + #line 66 "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml" this.MascotVisibleYes.Checked += new System.Windows.RoutedEventHandler(this.MascotVisibilityChanged); #line default @@ -181,7 +182,7 @@ namespace InnoLabProjektDektopApp { case 5: this.MascotVisibleNo = ((System.Windows.Controls.RadioButton)(target)); - #line 68 "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml" + #line 67 "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml" this.MascotVisibleNo.Checked += new System.Windows.RoutedEventHandler(this.MascotVisibilityChanged); #line default @@ -202,18 +203,36 @@ namespace InnoLabProjektDektopApp { #line 125 "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml" this.FocusPeriodComboBox.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.ComboBox_SelectionChanged); + #line default + #line hidden + + #line 125 "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml" + this.FocusPeriodComboBox.PreviewTextInput += new System.Windows.Input.TextCompositionEventHandler(this.ComboBox_PreviewTextInput); + #line default #line hidden return; case 10: this.BreakPeriodComboBox = ((System.Windows.Controls.ComboBox)(target)); + + #line 144 "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml" + this.BreakPeriodComboBox.PreviewTextInput += new System.Windows.Input.TextCompositionEventHandler(this.ComboBox_PreviewTextInput); + + #line default + #line hidden return; case 11: this.CyclesComboBox = ((System.Windows.Controls.ComboBox)(target)); + + #line 161 "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml" + this.CyclesComboBox.PreviewTextInput += new System.Windows.Input.TextCompositionEventHandler(this.ComboBox_PreviewTextInput); + + #line default + #line hidden return; case 12: - #line 169 "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml" + #line 174 "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml" ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.SaveSettingsButton_Click); #line default @@ -221,7 +240,7 @@ namespace InnoLabProjektDektopApp { return; case 13: - #line 172 "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml" + #line 177 "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml" ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NavigateToOverviewButton_Click); #line default diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/FirstLaunch/04Settings.g.i.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/FirstLaunch/04Settings.g.i.cs index 754d4028ffda5e1c22e8ec6962b42e78f4ae61fc..1eefdebaa400d4393ddb512161306e7786dcf6c1 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/FirstLaunch/04Settings.g.i.cs +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/FirstLaunch/04Settings.g.i.cs @@ -1,4 +1,4 @@ -#pragma checksum "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "1F10F7816B98A4217B59F374663F778C8C3E559E" +#pragma checksum "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "6A6E9F17EF133C51B69A3E2A34235F9D27A49DA9" //------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. @@ -20,6 +20,7 @@ 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; @@ -40,10 +41,10 @@ namespace InnoLabProjektDektopApp { /// <summary> /// Settings /// </summary> - public partial class Settings : System.Windows.Window, System.Windows.Markup.IComponentConnector { + public partial class Settings : System.Windows.Controls.Page, System.Windows.Markup.IComponentConnector { - #line 32 "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml" + #line 31 "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.RadioButton DistractionModeFullBlocking; @@ -51,7 +52,7 @@ namespace InnoLabProjektDektopApp { #line hidden - #line 33 "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml" + #line 32 "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.RadioButton DistractionModeMascotFeedback; @@ -59,7 +60,7 @@ namespace InnoLabProjektDektopApp { #line hidden - #line 40 "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml" + #line 39 "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.ComboBox SecondsComboBox; @@ -67,7 +68,7 @@ namespace InnoLabProjektDektopApp { #line hidden - #line 67 "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml" + #line 66 "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.RadioButton MascotVisibleYes; @@ -75,7 +76,7 @@ namespace InnoLabProjektDektopApp { #line hidden - #line 68 "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml" + #line 67 "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.RadioButton MascotVisibleNo; @@ -83,7 +84,7 @@ namespace InnoLabProjektDektopApp { #line hidden - #line 71 "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml" + #line 70 "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.StackPanel MotivationSection; @@ -91,7 +92,7 @@ namespace InnoLabProjektDektopApp { #line hidden - #line 85 "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml" + #line 84 "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.CheckBox WordsOfAffirmationCheckBox; @@ -99,7 +100,7 @@ namespace InnoLabProjektDektopApp { #line hidden - #line 91 "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml" + #line 90 "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.CheckBox InsultingWordsCheckBox; @@ -115,7 +116,7 @@ namespace InnoLabProjektDektopApp { #line hidden - #line 141 "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml" + #line 144 "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.ComboBox BreakPeriodComboBox; @@ -123,7 +124,7 @@ namespace InnoLabProjektDektopApp { #line hidden - #line 156 "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml" + #line 161 "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.ComboBox CyclesComboBox; @@ -142,7 +143,7 @@ namespace InnoLabProjektDektopApp { return; } _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/CoFlow;V1.0.0.0;component/screens/firstlaunch/04settings.xaml", System.UriKind.Relative); + System.Uri resourceLocater = new System.Uri("/CoFlow;component/screens/firstlaunch/04settings.xaml", System.UriKind.Relative); #line 1 "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml" System.Windows.Application.LoadComponent(this, resourceLocater); @@ -172,7 +173,7 @@ namespace InnoLabProjektDektopApp { case 4: this.MascotVisibleYes = ((System.Windows.Controls.RadioButton)(target)); - #line 67 "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml" + #line 66 "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml" this.MascotVisibleYes.Checked += new System.Windows.RoutedEventHandler(this.MascotVisibilityChanged); #line default @@ -181,7 +182,7 @@ namespace InnoLabProjektDektopApp { case 5: this.MascotVisibleNo = ((System.Windows.Controls.RadioButton)(target)); - #line 68 "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml" + #line 67 "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml" this.MascotVisibleNo.Checked += new System.Windows.RoutedEventHandler(this.MascotVisibilityChanged); #line default @@ -202,18 +203,36 @@ namespace InnoLabProjektDektopApp { #line 125 "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml" this.FocusPeriodComboBox.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.ComboBox_SelectionChanged); + #line default + #line hidden + + #line 125 "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml" + this.FocusPeriodComboBox.PreviewTextInput += new System.Windows.Input.TextCompositionEventHandler(this.ComboBox_PreviewTextInput); + #line default #line hidden return; case 10: this.BreakPeriodComboBox = ((System.Windows.Controls.ComboBox)(target)); + + #line 144 "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml" + this.BreakPeriodComboBox.PreviewTextInput += new System.Windows.Input.TextCompositionEventHandler(this.ComboBox_PreviewTextInput); + + #line default + #line hidden return; case 11: this.CyclesComboBox = ((System.Windows.Controls.ComboBox)(target)); + + #line 161 "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml" + this.CyclesComboBox.PreviewTextInput += new System.Windows.Input.TextCompositionEventHandler(this.ComboBox_PreviewTextInput); + + #line default + #line hidden return; case 12: - #line 169 "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml" + #line 174 "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml" ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.SaveSettingsButton_Click); #line default @@ -221,7 +240,7 @@ namespace InnoLabProjektDektopApp { return; case 13: - #line 172 "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml" + #line 177 "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml" ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NavigateToOverviewButton_Click); #line default diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/MainWindow.g.i.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/MainWindow.g.i.cs deleted file mode 100644 index 26f44a82acc4c710e3171019f3ec331169733262..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/MainWindow.g.i.cs +++ /dev/null @@ -1,87 +0,0 @@ -#pragma checksum "..\..\..\..\Screens\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "42228F448CBE4C6ADAE0D751E94BB7AEF1665113" -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using InnoLabProjektDektopApp; -using System; -using System.Diagnostics; -using System.Windows; -using System.Windows.Automation; -using System.Windows.Controls; -using System.Windows.Controls.Primitives; -using System.Windows.Controls.Ribbon; -using System.Windows.Data; -using System.Windows.Documents; -using System.Windows.Ink; -using System.Windows.Input; -using System.Windows.Markup; -using System.Windows.Media; -using System.Windows.Media.Animation; -using System.Windows.Media.Effects; -using System.Windows.Media.Imaging; -using System.Windows.Media.Media3D; -using System.Windows.Media.TextFormatting; -using System.Windows.Navigation; -using System.Windows.Shapes; -using System.Windows.Shell; - - -namespace InnoLabProjektDektopApp { - - - /// <summary> - /// MainWindow - /// </summary> - public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector { - - private bool _contentLoaded; - - /// <summary> - /// InitializeComponent - /// </summary> - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.7.0")] - public void InitializeComponent() { - if (_contentLoaded) { - return; - } - _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/InnoLabProjektDektopApp;V1.0.0.0;component/screens/mainwindow.xaml", System.UriKind.Relative); - - #line 1 "..\..\..\..\Screens\MainWindow.xaml" - System.Windows.Application.LoadComponent(this, resourceLocater); - - #line default - #line hidden - } - - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.7.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: - - #line 10 "..\..\..\..\Screens\MainWindow.xaml" - ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click); - - #line default - #line hidden - return; - } - this._contentLoaded = true; - } - } -} - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Regulaer/01Overview - Copy.g.i.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Regulaer/01Overview - Copy.g.i.cs deleted file mode 100644 index bf2cbe964abeb247c57a267c115c38689a017aa4..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Regulaer/01Overview - Copy.g.i.cs +++ /dev/null @@ -1,104 +0,0 @@ -#pragma checksum "..\..\..\..\..\Screens\Regulaer\01Overview - Copy.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "A01B5A1A0D9DD2CB3EAA7F37A1BC328005331F87" -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using InnoLabProjektDektopApp; -using System; -using System.Diagnostics; -using System.Windows; -using System.Windows.Automation; -using System.Windows.Controls; -using System.Windows.Controls.Primitives; -using System.Windows.Controls.Ribbon; -using System.Windows.Data; -using System.Windows.Documents; -using System.Windows.Ink; -using System.Windows.Input; -using System.Windows.Markup; -using System.Windows.Media; -using System.Windows.Media.Animation; -using System.Windows.Media.Effects; -using System.Windows.Media.Imaging; -using System.Windows.Media.Media3D; -using System.Windows.Media.TextFormatting; -using System.Windows.Navigation; -using System.Windows.Shapes; -using System.Windows.Shell; - - -namespace InnoLabProjektDektopApp { - - - /// <summary> - /// MainWindow - /// </summary> - public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector { - - private bool _contentLoaded; - - /// <summary> - /// InitializeComponent - /// </summary> - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.7.0")] - public void InitializeComponent() { - if (_contentLoaded) { - return; - } - _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/InnoLabProjektDektopApp;V1.0.0.0;component/screens/regulaer/01overview%20-%20cop" + - "y.xaml", System.UriKind.Relative); - - #line 1 "..\..\..\..\..\Screens\Regulaer\01Overview - Copy.xaml" - System.Windows.Application.LoadComponent(this, resourceLocater); - - #line default - #line hidden - } - - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.7.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: - - #line 14 "..\..\..\..\..\Screens\Regulaer\01Overview - Copy.xaml" - ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Option1_Click); - - #line default - #line hidden - return; - case 2: - - #line 15 "..\..\..\..\..\Screens\Regulaer\01Overview - Copy.xaml" - ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Option2_Click); - - #line default - #line hidden - return; - case 3: - - #line 16 "..\..\..\..\..\Screens\Regulaer\01Overview - Copy.xaml" - ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Option3_Click); - - #line default - #line hidden - return; - } - this._contentLoaded = true; - } - } -} - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Regulaer/01Overview.g.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Regulaer/01Overview.g.cs index 3138a1ededb05d8f953db23d9759fff8472e52c6..fa689cc7876934f65e33afea8a18804e53dbd5a6 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Regulaer/01Overview.g.cs +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Regulaer/01Overview.g.cs @@ -1,4 +1,4 @@ -#pragma checksum "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "1EFCB88867CB021DF28247EC6D36F821FD4A0742" +#pragma checksum "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "455C6EF69FB9B51C9247D43B3EE496D7D697FBAC" //------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. @@ -20,6 +20,7 @@ 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; @@ -40,10 +41,10 @@ namespace InnoLabProjektDektopApp { /// <summary> /// Overview /// </summary> - public partial class Overview : System.Windows.Window, System.Windows.Markup.IComponentConnector { + public partial class Overview : System.Windows.Controls.Page, System.Windows.Markup.IComponentConnector { - #line 83 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" + #line 78 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.ComboBox FocusPeriodComboBox; @@ -51,7 +52,7 @@ namespace InnoLabProjektDektopApp { #line hidden - #line 99 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" + #line 96 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.ComboBox BreakPeriodComboBox; @@ -59,7 +60,7 @@ namespace InnoLabProjektDektopApp { #line hidden - #line 114 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" + #line 112 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.ComboBox CyclesComboBox; @@ -67,7 +68,23 @@ namespace InnoLabProjektDektopApp { #line hidden - #line 127 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" + #line 123 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] + internal System.Windows.Controls.StackPanel SecondsWarningPanel; + + #line default + #line hidden + + + #line 125 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] + internal System.Windows.Controls.ComboBox SecondsWarningComboBox; + + #line default + #line hidden + + + #line 136 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.ComboBox DistractionModeComboBox; @@ -75,7 +92,7 @@ namespace InnoLabProjektDektopApp { #line hidden - #line 137 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" + #line 145 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.ComboBox MascotVisibilityComboBox; @@ -83,7 +100,15 @@ namespace InnoLabProjektDektopApp { #line hidden - #line 147 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" + #line 151 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] + internal System.Windows.Controls.StackPanel MotivationOptionsPanel; + + #line default + #line hidden + + + #line 154 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.CheckBox WordsOfAffirmationCheckBox; @@ -91,7 +116,7 @@ namespace InnoLabProjektDektopApp { #line hidden - #line 153 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" + #line 158 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.CheckBox InsultingWordsCheckBox; @@ -99,7 +124,7 @@ namespace InnoLabProjektDektopApp { #line hidden - #line 167 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" + #line 171 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBox FocusTopicInputBox; @@ -107,7 +132,7 @@ namespace InnoLabProjektDektopApp { #line hidden - #line 176 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" + #line 180 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock FocusTopicPlaceholder; @@ -146,7 +171,7 @@ namespace InnoLabProjektDektopApp { { case 1: - #line 34 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" + #line 36 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.EditProfile_Click); #line default @@ -154,7 +179,7 @@ namespace InnoLabProjektDektopApp { return; case 2: - #line 49 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" + #line 51 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.AddProfile_Click); #line default @@ -162,40 +187,85 @@ namespace InnoLabProjektDektopApp { return; case 3: this.FocusPeriodComboBox = ((System.Windows.Controls.ComboBox)(target)); + + #line 78 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" + this.FocusPeriodComboBox.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.ComboBox_SelectionChanged); + + #line default + #line hidden + + #line 78 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" + this.FocusPeriodComboBox.PreviewTextInput += new System.Windows.Input.TextCompositionEventHandler(this.ComboBox_PreviewTextInput); + + #line default + #line hidden return; case 4: this.BreakPeriodComboBox = ((System.Windows.Controls.ComboBox)(target)); + + #line 96 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" + this.BreakPeriodComboBox.PreviewTextInput += new System.Windows.Input.TextCompositionEventHandler(this.ComboBox_PreviewTextInput); + + #line default + #line hidden return; case 5: this.CyclesComboBox = ((System.Windows.Controls.ComboBox)(target)); + + #line 112 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" + this.CyclesComboBox.PreviewTextInput += new System.Windows.Input.TextCompositionEventHandler(this.ComboBox_PreviewTextInput); + + #line default + #line hidden return; case 6: - this.DistractionModeComboBox = ((System.Windows.Controls.ComboBox)(target)); + this.SecondsWarningPanel = ((System.Windows.Controls.StackPanel)(target)); return; case 7: - this.MascotVisibilityComboBox = ((System.Windows.Controls.ComboBox)(target)); + this.SecondsWarningComboBox = ((System.Windows.Controls.ComboBox)(target)); return; case 8: - this.WordsOfAffirmationCheckBox = ((System.Windows.Controls.CheckBox)(target)); + this.DistractionModeComboBox = ((System.Windows.Controls.ComboBox)(target)); + + #line 136 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" + this.DistractionModeComboBox.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.DistractionMode_SelectionChanged); + + #line default + #line hidden return; case 9: - this.InsultingWordsCheckBox = ((System.Windows.Controls.CheckBox)(target)); + this.MascotVisibilityComboBox = ((System.Windows.Controls.ComboBox)(target)); + + #line 145 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" + this.MascotVisibilityComboBox.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.MascotVisibilityComboBox_SelectionChanged); + + #line default + #line hidden return; case 10: + this.MotivationOptionsPanel = ((System.Windows.Controls.StackPanel)(target)); + return; + case 11: + this.WordsOfAffirmationCheckBox = ((System.Windows.Controls.CheckBox)(target)); + return; + case 12: + this.InsultingWordsCheckBox = ((System.Windows.Controls.CheckBox)(target)); + return; + case 13: this.FocusTopicInputBox = ((System.Windows.Controls.TextBox)(target)); - #line 175 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" + #line 179 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" this.FocusTopicInputBox.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.FocusTopicInputBox_TextChanged); #line default #line hidden return; - case 11: + case 14: this.FocusTopicPlaceholder = ((System.Windows.Controls.TextBlock)(target)); return; - case 12: + case 15: - #line 188 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" + #line 192 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.StartButton_Click); #line default diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Regulaer/01Overview.g.i.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Regulaer/01Overview.g.i.cs index b0f67fa52bd811ca1f537cee772ba31fc700adab..fa689cc7876934f65e33afea8a18804e53dbd5a6 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Regulaer/01Overview.g.i.cs +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Regulaer/01Overview.g.i.cs @@ -1,4 +1,4 @@ -#pragma checksum "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "1EFCB88867CB021DF28247EC6D36F821FD4A0742" +#pragma checksum "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "455C6EF69FB9B51C9247D43B3EE496D7D697FBAC" //------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. @@ -20,6 +20,7 @@ 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; @@ -40,10 +41,10 @@ namespace InnoLabProjektDektopApp { /// <summary> /// Overview /// </summary> - public partial class Overview : System.Windows.Window, System.Windows.Markup.IComponentConnector { + public partial class Overview : System.Windows.Controls.Page, System.Windows.Markup.IComponentConnector { - #line 83 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" + #line 78 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.ComboBox FocusPeriodComboBox; @@ -51,7 +52,7 @@ namespace InnoLabProjektDektopApp { #line hidden - #line 99 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" + #line 96 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.ComboBox BreakPeriodComboBox; @@ -59,7 +60,7 @@ namespace InnoLabProjektDektopApp { #line hidden - #line 114 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" + #line 112 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.ComboBox CyclesComboBox; @@ -67,7 +68,23 @@ namespace InnoLabProjektDektopApp { #line hidden - #line 127 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" + #line 123 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] + internal System.Windows.Controls.StackPanel SecondsWarningPanel; + + #line default + #line hidden + + + #line 125 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] + internal System.Windows.Controls.ComboBox SecondsWarningComboBox; + + #line default + #line hidden + + + #line 136 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.ComboBox DistractionModeComboBox; @@ -75,7 +92,7 @@ namespace InnoLabProjektDektopApp { #line hidden - #line 137 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" + #line 145 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.ComboBox MascotVisibilityComboBox; @@ -83,7 +100,15 @@ namespace InnoLabProjektDektopApp { #line hidden - #line 147 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" + #line 151 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] + internal System.Windows.Controls.StackPanel MotivationOptionsPanel; + + #line default + #line hidden + + + #line 154 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.CheckBox WordsOfAffirmationCheckBox; @@ -91,7 +116,7 @@ namespace InnoLabProjektDektopApp { #line hidden - #line 153 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" + #line 158 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.CheckBox InsultingWordsCheckBox; @@ -99,7 +124,7 @@ namespace InnoLabProjektDektopApp { #line hidden - #line 167 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" + #line 171 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBox FocusTopicInputBox; @@ -107,7 +132,7 @@ namespace InnoLabProjektDektopApp { #line hidden - #line 176 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" + #line 180 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.TextBlock FocusTopicPlaceholder; @@ -126,7 +151,7 @@ namespace InnoLabProjektDektopApp { return; } _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/CoFlow;V1.0.0.0;component/screens/regulaer/01overview.xaml", System.UriKind.Relative); + System.Uri resourceLocater = new System.Uri("/CoFlow;component/screens/regulaer/01overview.xaml", System.UriKind.Relative); #line 1 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" System.Windows.Application.LoadComponent(this, resourceLocater); @@ -146,7 +171,7 @@ namespace InnoLabProjektDektopApp { { case 1: - #line 34 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" + #line 36 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.EditProfile_Click); #line default @@ -154,7 +179,7 @@ namespace InnoLabProjektDektopApp { return; case 2: - #line 49 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" + #line 51 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.AddProfile_Click); #line default @@ -162,40 +187,85 @@ namespace InnoLabProjektDektopApp { return; case 3: this.FocusPeriodComboBox = ((System.Windows.Controls.ComboBox)(target)); + + #line 78 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" + this.FocusPeriodComboBox.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.ComboBox_SelectionChanged); + + #line default + #line hidden + + #line 78 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" + this.FocusPeriodComboBox.PreviewTextInput += new System.Windows.Input.TextCompositionEventHandler(this.ComboBox_PreviewTextInput); + + #line default + #line hidden return; case 4: this.BreakPeriodComboBox = ((System.Windows.Controls.ComboBox)(target)); + + #line 96 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" + this.BreakPeriodComboBox.PreviewTextInput += new System.Windows.Input.TextCompositionEventHandler(this.ComboBox_PreviewTextInput); + + #line default + #line hidden return; case 5: this.CyclesComboBox = ((System.Windows.Controls.ComboBox)(target)); + + #line 112 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" + this.CyclesComboBox.PreviewTextInput += new System.Windows.Input.TextCompositionEventHandler(this.ComboBox_PreviewTextInput); + + #line default + #line hidden return; case 6: - this.DistractionModeComboBox = ((System.Windows.Controls.ComboBox)(target)); + this.SecondsWarningPanel = ((System.Windows.Controls.StackPanel)(target)); return; case 7: - this.MascotVisibilityComboBox = ((System.Windows.Controls.ComboBox)(target)); + this.SecondsWarningComboBox = ((System.Windows.Controls.ComboBox)(target)); return; case 8: - this.WordsOfAffirmationCheckBox = ((System.Windows.Controls.CheckBox)(target)); + this.DistractionModeComboBox = ((System.Windows.Controls.ComboBox)(target)); + + #line 136 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" + this.DistractionModeComboBox.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.DistractionMode_SelectionChanged); + + #line default + #line hidden return; case 9: - this.InsultingWordsCheckBox = ((System.Windows.Controls.CheckBox)(target)); + this.MascotVisibilityComboBox = ((System.Windows.Controls.ComboBox)(target)); + + #line 145 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" + this.MascotVisibilityComboBox.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.MascotVisibilityComboBox_SelectionChanged); + + #line default + #line hidden return; case 10: + this.MotivationOptionsPanel = ((System.Windows.Controls.StackPanel)(target)); + return; + case 11: + this.WordsOfAffirmationCheckBox = ((System.Windows.Controls.CheckBox)(target)); + return; + case 12: + this.InsultingWordsCheckBox = ((System.Windows.Controls.CheckBox)(target)); + return; + case 13: this.FocusTopicInputBox = ((System.Windows.Controls.TextBox)(target)); - #line 175 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" + #line 179 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" this.FocusTopicInputBox.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.FocusTopicInputBox_TextChanged); #line default #line hidden return; - case 11: + case 14: this.FocusTopicPlaceholder = ((System.Windows.Controls.TextBlock)(target)); return; - case 12: + case 15: - #line 188 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" + #line 192 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.StartButton_Click); #line default diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Regulaer/02Session - Copy.g.i.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Regulaer/02Session - Copy.g.i.cs deleted file mode 100644 index b56c6b83472600bc88515644ca906c34fc6c0e53..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Regulaer/02Session - Copy.g.i.cs +++ /dev/null @@ -1,104 +0,0 @@ -#pragma checksum "..\..\..\..\..\Screens\Regulaer\02Session - Copy.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "A01B5A1A0D9DD2CB3EAA7F37A1BC328005331F87" -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using InnoLabProjektDektopApp; -using System; -using System.Diagnostics; -using System.Windows; -using System.Windows.Automation; -using System.Windows.Controls; -using System.Windows.Controls.Primitives; -using System.Windows.Controls.Ribbon; -using System.Windows.Data; -using System.Windows.Documents; -using System.Windows.Ink; -using System.Windows.Input; -using System.Windows.Markup; -using System.Windows.Media; -using System.Windows.Media.Animation; -using System.Windows.Media.Effects; -using System.Windows.Media.Imaging; -using System.Windows.Media.Media3D; -using System.Windows.Media.TextFormatting; -using System.Windows.Navigation; -using System.Windows.Shapes; -using System.Windows.Shell; - - -namespace InnoLabProjektDektopApp { - - - /// <summary> - /// MainWindow - /// </summary> - public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector { - - private bool _contentLoaded; - - /// <summary> - /// InitializeComponent - /// </summary> - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.7.0")] - public void InitializeComponent() { - if (_contentLoaded) { - return; - } - _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/InnoLabProjektDektopApp;V1.0.0.0;component/screens/regulaer/02session%20-%20copy" + - ".xaml", System.UriKind.Relative); - - #line 1 "..\..\..\..\..\Screens\Regulaer\02Session - Copy.xaml" - System.Windows.Application.LoadComponent(this, resourceLocater); - - #line default - #line hidden - } - - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.7.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: - - #line 14 "..\..\..\..\..\Screens\Regulaer\02Session - Copy.xaml" - ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Option1_Click); - - #line default - #line hidden - return; - case 2: - - #line 15 "..\..\..\..\..\Screens\Regulaer\02Session - Copy.xaml" - ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Option2_Click); - - #line default - #line hidden - return; - case 3: - - #line 16 "..\..\..\..\..\Screens\Regulaer\02Session - Copy.xaml" - ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Option3_Click); - - #line default - #line hidden - return; - } - this._contentLoaded = true; - } - } -} - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Regulaer/02Session.g.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Regulaer/02Session.g.cs index 4333bda5eb0ff96dd4dca8891932485d7a70e326..fd72e9731f7934080830a449040bda8d693cd347 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Regulaer/02Session.g.cs +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Regulaer/02Session.g.cs @@ -1,4 +1,4 @@ -#pragma checksum "..\..\..\..\..\Screens\Regulaer\02Session.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "9C01DC90FEAC6C4CC3F67E1273C32A4E6EC492C3" +#pragma checksum "..\..\..\..\..\Screens\Regulaer\02Session.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "54CE3573272E9AF937EC240183ED59FCEBFA510B" //------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. @@ -20,6 +20,7 @@ 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; @@ -40,7 +41,7 @@ namespace InnoLabProjektDektopApp { /// <summary> /// Session /// </summary> - public partial class Session : System.Windows.Window, System.Windows.Markup.IComponentConnector { + public partial class Session : System.Windows.Controls.Page, System.Windows.Markup.IComponentConnector { #line 19 "..\..\..\..\..\Screens\Regulaer\02Session.xaml" @@ -95,13 +96,6 @@ namespace InnoLabProjektDektopApp { #line hidden } - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.2.0")] - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] - internal System.Delegate _CreateDelegate(System.Type delegateType, string handler) { - return System.Delegate.CreateDelegate(delegateType, this, handler); - } - [System.Diagnostics.DebuggerNonUserCodeAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.2.0")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] @@ -114,7 +108,7 @@ namespace InnoLabProjektDektopApp { case 1: #line 9 "..\..\..\..\..\Screens\Regulaer\02Session.xaml" - ((InnoLabProjektDektopApp.Session)(target)).Closing += new System.ComponentModel.CancelEventHandler(this.Window_Closing); + ((InnoLabProjektDektopApp.Session)(target)).ContextMenuClosing += new System.Windows.Controls.ContextMenuEventHandler(this.Page_ContextMenuClosing); #line default #line hidden diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Regulaer/02Session.g.i.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Regulaer/02Session.g.i.cs index 62e1ec16251e7f820d8622fb26923b850033baff..fd72e9731f7934080830a449040bda8d693cd347 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Regulaer/02Session.g.i.cs +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Regulaer/02Session.g.i.cs @@ -1,4 +1,4 @@ -#pragma checksum "..\..\..\..\..\Screens\Regulaer\02Session.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "9C01DC90FEAC6C4CC3F67E1273C32A4E6EC492C3" +#pragma checksum "..\..\..\..\..\Screens\Regulaer\02Session.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "54CE3573272E9AF937EC240183ED59FCEBFA510B" //------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. @@ -20,6 +20,7 @@ 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; @@ -40,7 +41,7 @@ namespace InnoLabProjektDektopApp { /// <summary> /// Session /// </summary> - public partial class Session : System.Windows.Window, System.Windows.Markup.IComponentConnector { + public partial class Session : System.Windows.Controls.Page, System.Windows.Markup.IComponentConnector { #line 19 "..\..\..\..\..\Screens\Regulaer\02Session.xaml" @@ -86,7 +87,7 @@ namespace InnoLabProjektDektopApp { return; } _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/CoFlow;V1.0.0.0;component/screens/regulaer/02session.xaml", System.UriKind.Relative); + System.Uri resourceLocater = new System.Uri("/CoFlow;component/screens/regulaer/02session.xaml", System.UriKind.Relative); #line 1 "..\..\..\..\..\Screens\Regulaer\02Session.xaml" System.Windows.Application.LoadComponent(this, resourceLocater); @@ -95,13 +96,6 @@ namespace InnoLabProjektDektopApp { #line hidden } - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.2.0")] - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] - internal System.Delegate _CreateDelegate(System.Type delegateType, string handler) { - return System.Delegate.CreateDelegate(delegateType, this, handler); - } - [System.Diagnostics.DebuggerNonUserCodeAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.2.0")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] @@ -114,7 +108,7 @@ namespace InnoLabProjektDektopApp { case 1: #line 9 "..\..\..\..\..\Screens\Regulaer\02Session.xaml" - ((InnoLabProjektDektopApp.Session)(target)).Closing += new System.ComponentModel.CancelEventHandler(this.Window_Closing); + ((InnoLabProjektDektopApp.Session)(target)).ContextMenuClosing += new System.Windows.Controls.ContextMenuEventHandler(this.Page_ContextMenuClosing); #line default #line hidden diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Regulaer/03End - Copy.g.i.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Regulaer/03End - Copy.g.i.cs deleted file mode 100644 index c81b4b96acc5c8175403a0c50fc125d2ac93fd3c..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Regulaer/03End - Copy.g.i.cs +++ /dev/null @@ -1,104 +0,0 @@ -#pragma checksum "..\..\..\..\..\Screens\Regulaer\03End - Copy.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "A01B5A1A0D9DD2CB3EAA7F37A1BC328005331F87" -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using InnoLabProjektDektopApp; -using System; -using System.Diagnostics; -using System.Windows; -using System.Windows.Automation; -using System.Windows.Controls; -using System.Windows.Controls.Primitives; -using System.Windows.Controls.Ribbon; -using System.Windows.Data; -using System.Windows.Documents; -using System.Windows.Ink; -using System.Windows.Input; -using System.Windows.Markup; -using System.Windows.Media; -using System.Windows.Media.Animation; -using System.Windows.Media.Effects; -using System.Windows.Media.Imaging; -using System.Windows.Media.Media3D; -using System.Windows.Media.TextFormatting; -using System.Windows.Navigation; -using System.Windows.Shapes; -using System.Windows.Shell; - - -namespace InnoLabProjektDektopApp { - - - /// <summary> - /// MainWindow - /// </summary> - public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector { - - private bool _contentLoaded; - - /// <summary> - /// InitializeComponent - /// </summary> - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.7.0")] - public void InitializeComponent() { - if (_contentLoaded) { - return; - } - _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/InnoLabProjektDektopApp;V1.0.0.0;component/screens/regulaer/03end%20-%20copy.xam" + - "l", System.UriKind.Relative); - - #line 1 "..\..\..\..\..\Screens\Regulaer\03End - Copy.xaml" - System.Windows.Application.LoadComponent(this, resourceLocater); - - #line default - #line hidden - } - - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.7.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: - - #line 14 "..\..\..\..\..\Screens\Regulaer\03End - Copy.xaml" - ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Option1_Click); - - #line default - #line hidden - return; - case 2: - - #line 15 "..\..\..\..\..\Screens\Regulaer\03End - Copy.xaml" - ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Option2_Click); - - #line default - #line hidden - return; - case 3: - - #line 16 "..\..\..\..\..\Screens\Regulaer\03End - Copy.xaml" - ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Option3_Click); - - #line default - #line hidden - return; - } - this._contentLoaded = true; - } - } -} - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Regulaer/03End.g.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Regulaer/03End.g.cs index 940eb5ea9ce650ee301c990c04712d3005f52485..7fe280cf5aeac7b40f5767e2c460a4909a7dd52d 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Regulaer/03End.g.cs +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Regulaer/03End.g.cs @@ -1,4 +1,4 @@ -#pragma checksum "..\..\..\..\..\Screens\Regulaer\03End.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "16A774735AFFF594D835EF08249963B0FE20FF84" +#pragma checksum "..\..\..\..\..\Screens\Regulaer\03End.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "C99F67108FD04036B98DA69729D4719C05443A7F" //------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. @@ -20,6 +20,7 @@ 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; @@ -40,7 +41,7 @@ namespace InnoLabProjektDektopApp { /// <summary> /// End /// </summary> - public partial class End : System.Windows.Window, System.Windows.Markup.IComponentConnector { + public partial class End : System.Windows.Navigation.NavigationWindow, System.Windows.Markup.IComponentConnector { private bool _contentLoaded; @@ -63,13 +64,6 @@ namespace InnoLabProjektDektopApp { #line hidden } - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.2.0")] - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] - internal System.Delegate _CreateDelegate(System.Type delegateType, string handler) { - return System.Delegate.CreateDelegate(delegateType, this, handler); - } - [System.Diagnostics.DebuggerNonUserCodeAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.2.0")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] @@ -77,25 +71,6 @@ namespace InnoLabProjektDektopApp { [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: - - #line 13 "..\..\..\..\..\Screens\Regulaer\03End.xaml" - ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Option2_Click); - - #line default - #line hidden - return; - case 2: - - #line 14 "..\..\..\..\..\Screens\Regulaer\03End.xaml" - ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Option3_Click); - - #line default - #line hidden - return; - } this._contentLoaded = true; } } diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Regulaer/03End.g.i.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Regulaer/03End.g.i.cs index 717bc6c7ad777a4db9a3cefb16c6826d86d57864..7fe280cf5aeac7b40f5767e2c460a4909a7dd52d 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Regulaer/03End.g.i.cs +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Regulaer/03End.g.i.cs @@ -1,4 +1,4 @@ -#pragma checksum "..\..\..\..\..\Screens\Regulaer\03End.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "16A774735AFFF594D835EF08249963B0FE20FF84" +#pragma checksum "..\..\..\..\..\Screens\Regulaer\03End.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "C99F67108FD04036B98DA69729D4719C05443A7F" //------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. @@ -20,6 +20,7 @@ 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; @@ -40,7 +41,7 @@ namespace InnoLabProjektDektopApp { /// <summary> /// End /// </summary> - public partial class End : System.Windows.Window, System.Windows.Markup.IComponentConnector { + public partial class End : System.Windows.Navigation.NavigationWindow, System.Windows.Markup.IComponentConnector { private bool _contentLoaded; @@ -54,7 +55,7 @@ namespace InnoLabProjektDektopApp { return; } _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/CoFlow;V1.0.0.0;component/screens/regulaer/03end.xaml", System.UriKind.Relative); + System.Uri resourceLocater = new System.Uri("/CoFlow;component/screens/regulaer/03end.xaml", System.UriKind.Relative); #line 1 "..\..\..\..\..\Screens\Regulaer\03End.xaml" System.Windows.Application.LoadComponent(this, resourceLocater); @@ -63,13 +64,6 @@ namespace InnoLabProjektDektopApp { #line hidden } - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.2.0")] - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] - internal System.Delegate _CreateDelegate(System.Type delegateType, string handler) { - return System.Delegate.CreateDelegate(delegateType, this, handler); - } - [System.Diagnostics.DebuggerNonUserCodeAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.2.0")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] @@ -77,25 +71,6 @@ namespace InnoLabProjektDektopApp { [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: - - #line 13 "..\..\..\..\..\Screens\Regulaer\03End.xaml" - ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Option2_Click); - - #line default - #line hidden - return; - case 2: - - #line 14 "..\..\..\..\..\Screens\Regulaer\03End.xaml" - ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Option3_Click); - - #line default - #line hidden - return; - } this._contentLoaded = true; } } diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Regulaer/04Statistics.g.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Regulaer/04Statistics.g.cs index 4fd0dcd53ab0a686bfb43426cc7acc5dd3b02c8d..c61961d86231ba5eab9b79e540aea522f975401b 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Regulaer/04Statistics.g.cs +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Regulaer/04Statistics.g.cs @@ -1,4 +1,4 @@ -#pragma checksum "..\..\..\..\..\Screens\Regulaer\04Statistics.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "090ECFC8E77AFD0E3E7CDB280240AC2AEA811D91" +#pragma checksum "..\..\..\..\..\Screens\Regulaer\04Statistics.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "01B55004193E3CC05C4C67CFCD081BC8DD5D338C" //------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. @@ -20,6 +20,7 @@ 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; @@ -40,7 +41,7 @@ namespace InnoLabProjektDektopApp { /// <summary> /// Statistics /// </summary> - public partial class Statistics : System.Windows.Window, System.Windows.Markup.IComponentConnector { + public partial class Statistics : System.Windows.Controls.Page, System.Windows.Markup.IComponentConnector { private bool _contentLoaded; @@ -63,13 +64,6 @@ namespace InnoLabProjektDektopApp { #line hidden } - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.2.0")] - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] - internal System.Delegate _CreateDelegate(System.Type delegateType, string handler) { - return System.Delegate.CreateDelegate(delegateType, this, handler); - } - [System.Diagnostics.DebuggerNonUserCodeAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.2.0")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] @@ -81,16 +75,8 @@ namespace InnoLabProjektDektopApp { { case 1: - #line 13 "..\..\..\..\..\Screens\Regulaer\04Statistics.xaml" - ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Option2_Click); - - #line default - #line hidden - return; - case 2: - - #line 14 "..\..\..\..\..\Screens\Regulaer\04Statistics.xaml" - ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Option3_Click); + #line 12 "..\..\..\..\..\Screens\Regulaer\04Statistics.xaml" + ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NavigateToOverview_Click); #line default #line hidden diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Regulaer/04Statistics.g.i.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Regulaer/04Statistics.g.i.cs index 36da5b3bcbfadcbb73af1fe3c7b0f066500ef255..c61961d86231ba5eab9b79e540aea522f975401b 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Regulaer/04Statistics.g.i.cs +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Regulaer/04Statistics.g.i.cs @@ -1,4 +1,4 @@ -#pragma checksum "..\..\..\..\..\Screens\Regulaer\04Statistics.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "090ECFC8E77AFD0E3E7CDB280240AC2AEA811D91" +#pragma checksum "..\..\..\..\..\Screens\Regulaer\04Statistics.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "01B55004193E3CC05C4C67CFCD081BC8DD5D338C" //------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. @@ -20,6 +20,7 @@ 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; @@ -40,7 +41,7 @@ namespace InnoLabProjektDektopApp { /// <summary> /// Statistics /// </summary> - public partial class Statistics : System.Windows.Window, System.Windows.Markup.IComponentConnector { + public partial class Statistics : System.Windows.Controls.Page, System.Windows.Markup.IComponentConnector { private bool _contentLoaded; @@ -54,7 +55,7 @@ namespace InnoLabProjektDektopApp { return; } _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/CoFlow;V1.0.0.0;component/screens/regulaer/04statistics.xaml", System.UriKind.Relative); + System.Uri resourceLocater = new System.Uri("/CoFlow;component/screens/regulaer/04statistics.xaml", System.UriKind.Relative); #line 1 "..\..\..\..\..\Screens\Regulaer\04Statistics.xaml" System.Windows.Application.LoadComponent(this, resourceLocater); @@ -63,13 +64,6 @@ namespace InnoLabProjektDektopApp { #line hidden } - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.2.0")] - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] - internal System.Delegate _CreateDelegate(System.Type delegateType, string handler) { - return System.Delegate.CreateDelegate(delegateType, this, handler); - } - [System.Diagnostics.DebuggerNonUserCodeAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.2.0")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] @@ -81,16 +75,8 @@ namespace InnoLabProjektDektopApp { { case 1: - #line 13 "..\..\..\..\..\Screens\Regulaer\04Statistics.xaml" - ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Option2_Click); - - #line default - #line hidden - return; - case 2: - - #line 14 "..\..\..\..\..\Screens\Regulaer\04Statistics.xaml" - ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Option3_Click); + #line 12 "..\..\..\..\..\Screens\Regulaer\04Statistics.xaml" + ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NavigateToOverview_Click); #line default #line hidden diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Regulaer/AnotherWindow.g.i.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Regulaer/AnotherWindow.g.i.cs deleted file mode 100644 index 246108c241b967956a1b803dba6b930a5bf6f3d1..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Regulaer/AnotherWindow.g.i.cs +++ /dev/null @@ -1,76 +0,0 @@ -#pragma checksum "..\..\..\..\..\Screens\Regulaer\AnotherWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "CEA98DB0A69964122A1101044832C05BD7AEB159" -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using InnoLabProjektDektopApp.Windows; -using System; -using System.Diagnostics; -using System.Windows; -using System.Windows.Automation; -using System.Windows.Controls; -using System.Windows.Controls.Primitives; -using System.Windows.Controls.Ribbon; -using System.Windows.Data; -using System.Windows.Documents; -using System.Windows.Ink; -using System.Windows.Input; -using System.Windows.Markup; -using System.Windows.Media; -using System.Windows.Media.Animation; -using System.Windows.Media.Effects; -using System.Windows.Media.Imaging; -using System.Windows.Media.Media3D; -using System.Windows.Media.TextFormatting; -using System.Windows.Navigation; -using System.Windows.Shapes; -using System.Windows.Shell; - - -namespace InnoLabProjektDektopApp.Windows { - - - /// <summary> - /// AnotherWindow - /// </summary> - public partial class AnotherWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector { - - private bool _contentLoaded; - - /// <summary> - /// InitializeComponent - /// </summary> - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.7.0")] - public void InitializeComponent() { - if (_contentLoaded) { - return; - } - _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/InnoLabProjektDektopApp;V1.0.0.0;component/screens/regulaer/anotherwindow.xaml", System.UriKind.Relative); - - #line 1 "..\..\..\..\..\Screens\Regulaer\AnotherWindow.xaml" - System.Windows.Application.LoadComponent(this, resourceLocater); - - #line default - #line hidden - } - - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.7.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/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Regulaer/MainWindow.g.i.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Regulaer/MainWindow.g.i.cs deleted file mode 100644 index 13b64a51218a238d1b6e34071be760665f338f8d..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Regulaer/MainWindow.g.i.cs +++ /dev/null @@ -1,87 +0,0 @@ -#pragma checksum "..\..\..\..\..\Screens\Regulaer\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "42228F448CBE4C6ADAE0D751E94BB7AEF1665113" -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using InnoLabProjektDektopApp; -using System; -using System.Diagnostics; -using System.Windows; -using System.Windows.Automation; -using System.Windows.Controls; -using System.Windows.Controls.Primitives; -using System.Windows.Controls.Ribbon; -using System.Windows.Data; -using System.Windows.Documents; -using System.Windows.Ink; -using System.Windows.Input; -using System.Windows.Markup; -using System.Windows.Media; -using System.Windows.Media.Animation; -using System.Windows.Media.Effects; -using System.Windows.Media.Imaging; -using System.Windows.Media.Media3D; -using System.Windows.Media.TextFormatting; -using System.Windows.Navigation; -using System.Windows.Shapes; -using System.Windows.Shell; - - -namespace InnoLabProjektDektopApp { - - - /// <summary> - /// MainWindow - /// </summary> - public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector { - - private bool _contentLoaded; - - /// <summary> - /// InitializeComponent - /// </summary> - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.7.0")] - public void InitializeComponent() { - if (_contentLoaded) { - return; - } - _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/InnoLabProjektDektopApp;V1.0.0.0;component/screens/regulaer/mainwindow.xaml", System.UriKind.Relative); - - #line 1 "..\..\..\..\..\Screens\Regulaer\MainWindow.xaml" - System.Windows.Application.LoadComponent(this, resourceLocater); - - #line default - #line hidden - } - - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.7.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: - - #line 10 "..\..\..\..\..\Screens\Regulaer\MainWindow.xaml" - ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click); - - #line default - #line hidden - return; - } - this._contentLoaded = true; - } - } -} - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Regulaer/Overview.g.i.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Regulaer/Overview.g.i.cs deleted file mode 100644 index 3b11462502482e36ad2a8d20b0450caa243b22a5..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Regulaer/Overview.g.i.cs +++ /dev/null @@ -1,87 +0,0 @@ -#pragma checksum "..\..\..\..\..\Screens\Regulaer\Overview.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "42228F448CBE4C6ADAE0D751E94BB7AEF1665113" -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using InnoLabProjektDektopApp; -using System; -using System.Diagnostics; -using System.Windows; -using System.Windows.Automation; -using System.Windows.Controls; -using System.Windows.Controls.Primitives; -using System.Windows.Controls.Ribbon; -using System.Windows.Data; -using System.Windows.Documents; -using System.Windows.Ink; -using System.Windows.Input; -using System.Windows.Markup; -using System.Windows.Media; -using System.Windows.Media.Animation; -using System.Windows.Media.Effects; -using System.Windows.Media.Imaging; -using System.Windows.Media.Media3D; -using System.Windows.Media.TextFormatting; -using System.Windows.Navigation; -using System.Windows.Shapes; -using System.Windows.Shell; - - -namespace InnoLabProjektDektopApp { - - - /// <summary> - /// MainWindow - /// </summary> - public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector { - - private bool _contentLoaded; - - /// <summary> - /// InitializeComponent - /// </summary> - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.7.0")] - public void InitializeComponent() { - if (_contentLoaded) { - return; - } - _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/InnoLabProjektDektopApp;V1.0.0.0;component/screens/regulaer/overview.xaml", System.UriKind.Relative); - - #line 1 "..\..\..\..\..\Screens\Regulaer\Overview.xaml" - System.Windows.Application.LoadComponent(this, resourceLocater); - - #line default - #line hidden - } - - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.7.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: - - #line 10 "..\..\..\..\..\Screens\Regulaer\Overview.xaml" - ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click); - - #line default - #line hidden - return; - } - this._contentLoaded = true; - } - } -} - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Templates/HeaderTemplate.g.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Templates/HeaderTemplate.g.cs index 940a83bad15cd821cd2f305fe85c4d9d7e175d14..6be8dca5b5b5fa72d277bbd2ce072bead18c0553 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Templates/HeaderTemplate.g.cs +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Templates/HeaderTemplate.g.cs @@ -1,4 +1,4 @@ -#pragma checksum "..\..\..\..\..\Screens\Templates\HeaderTemplate.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "0A59D4BF1EE0422454A4376DB24DEB7E62D82D5F" +#pragma checksum "..\..\..\..\..\Screens\Templates\HeaderTemplate.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "9D675B7C3E744B9892E0CAF57F20C8144829D96D" //------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. @@ -19,6 +19,7 @@ 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; @@ -101,7 +102,7 @@ namespace InnoLabProjektDektopApp.Screens.Templates { return; case 3: - #line 12 "..\..\..\..\..\Screens\Templates\HeaderTemplate.xaml" + #line 18 "..\..\..\..\..\Screens\Templates\HeaderTemplate.xaml" ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.OverviewButton_Click); #line default @@ -109,7 +110,7 @@ namespace InnoLabProjektDektopApp.Screens.Templates { return; case 4: - #line 13 "..\..\..\..\..\Screens\Templates\HeaderTemplate.xaml" + #line 21 "..\..\..\..\..\Screens\Templates\HeaderTemplate.xaml" ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.SessionButton_Click); #line default @@ -117,7 +118,7 @@ namespace InnoLabProjektDektopApp.Screens.Templates { return; case 5: - #line 14 "..\..\..\..\..\Screens\Templates\HeaderTemplate.xaml" + #line 24 "..\..\..\..\..\Screens\Templates\HeaderTemplate.xaml" ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.EndButton_Click); #line default @@ -125,7 +126,7 @@ namespace InnoLabProjektDektopApp.Screens.Templates { return; case 6: - #line 15 "..\..\..\..\..\Screens\Templates\HeaderTemplate.xaml" + #line 27 "..\..\..\..\..\Screens\Templates\HeaderTemplate.xaml" ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.StatisticsButton_Click); #line default diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Templates/HeaderTemplate.g.i.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Templates/HeaderTemplate.g.i.cs index b3ea89c09ebda345d3d573feec91fcaf92595cb7..6be8dca5b5b5fa72d277bbd2ce072bead18c0553 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Templates/HeaderTemplate.g.i.cs +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/Templates/HeaderTemplate.g.i.cs @@ -1,4 +1,4 @@ -#pragma checksum "..\..\..\..\..\Screens\Templates\HeaderTemplate.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "0A59D4BF1EE0422454A4376DB24DEB7E62D82D5F" +#pragma checksum "..\..\..\..\..\Screens\Templates\HeaderTemplate.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "9D675B7C3E744B9892E0CAF57F20C8144829D96D" //------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. @@ -19,6 +19,7 @@ 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; @@ -69,7 +70,7 @@ namespace InnoLabProjektDektopApp.Screens.Templates { return; } _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/CoFlow;V1.0.0.0;component/screens/templates/headertemplate.xaml", System.UriKind.Relative); + System.Uri resourceLocater = new System.Uri("/CoFlow;component/screens/templates/headertemplate.xaml", System.UriKind.Relative); #line 1 "..\..\..\..\..\Screens\Templates\HeaderTemplate.xaml" System.Windows.Application.LoadComponent(this, resourceLocater); @@ -101,7 +102,7 @@ namespace InnoLabProjektDektopApp.Screens.Templates { return; case 3: - #line 12 "..\..\..\..\..\Screens\Templates\HeaderTemplate.xaml" + #line 18 "..\..\..\..\..\Screens\Templates\HeaderTemplate.xaml" ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.OverviewButton_Click); #line default @@ -109,7 +110,7 @@ namespace InnoLabProjektDektopApp.Screens.Templates { return; case 4: - #line 13 "..\..\..\..\..\Screens\Templates\HeaderTemplate.xaml" + #line 21 "..\..\..\..\..\Screens\Templates\HeaderTemplate.xaml" ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.SessionButton_Click); #line default @@ -117,7 +118,7 @@ namespace InnoLabProjektDektopApp.Screens.Templates { return; case 5: - #line 14 "..\..\..\..\..\Screens\Templates\HeaderTemplate.xaml" + #line 24 "..\..\..\..\..\Screens\Templates\HeaderTemplate.xaml" ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.EndButton_Click); #line default @@ -125,7 +126,7 @@ namespace InnoLabProjektDektopApp.Screens.Templates { return; case 6: - #line 15 "..\..\..\..\..\Screens\Templates\HeaderTemplate.xaml" + #line 27 "..\..\..\..\..\Screens\Templates\HeaderTemplate.xaml" ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.StatisticsButton_Click); #line default diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/regular/01Overview.g.i.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/regular/01Overview.g.i.cs deleted file mode 100644 index 1cf3d9a9ebbfe37ace2102133cfcbbce4ddf0238..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/regular/01Overview.g.i.cs +++ /dev/null @@ -1,103 +0,0 @@ -#pragma checksum "..\..\..\..\..\Screens\Regular\01Overview.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "47A235FF502F575E0C85477E1FEEDD27F4A33DD1" -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using InnoLabProjektDektopApp; -using System; -using System.Diagnostics; -using System.Windows; -using System.Windows.Automation; -using System.Windows.Controls; -using System.Windows.Controls.Primitives; -using System.Windows.Controls.Ribbon; -using System.Windows.Data; -using System.Windows.Documents; -using System.Windows.Ink; -using System.Windows.Input; -using System.Windows.Markup; -using System.Windows.Media; -using System.Windows.Media.Animation; -using System.Windows.Media.Effects; -using System.Windows.Media.Imaging; -using System.Windows.Media.Media3D; -using System.Windows.Media.TextFormatting; -using System.Windows.Navigation; -using System.Windows.Shapes; -using System.Windows.Shell; - - -namespace InnoLabProjektDektopApp { - - - /// <summary> - /// Overview - /// </summary> - public partial class Overview : System.Windows.Window, System.Windows.Markup.IComponentConnector { - - private bool _contentLoaded; - - /// <summary> - /// InitializeComponent - /// </summary> - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.7.0")] - public void InitializeComponent() { - if (_contentLoaded) { - return; - } - _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/InnoLabProjektDektopApp;V1.0.0.0;component/screens/regular/01overview.xaml", System.UriKind.Relative); - - #line 1 "..\..\..\..\..\Screens\Regular\01Overview.xaml" - System.Windows.Application.LoadComponent(this, resourceLocater); - - #line default - #line hidden - } - - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.7.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: - - #line 14 "..\..\..\..\..\Screens\Regular\01Overview.xaml" - ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Option1_Click); - - #line default - #line hidden - return; - case 2: - - #line 15 "..\..\..\..\..\Screens\Regular\01Overview.xaml" - ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Option2_Click); - - #line default - #line hidden - return; - case 3: - - #line 16 "..\..\..\..\..\Screens\Regular\01Overview.xaml" - ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Option3_Click); - - #line default - #line hidden - return; - } - this._contentLoaded = true; - } - } -} - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/regular/02Session.g.i.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/regular/02Session.g.i.cs deleted file mode 100644 index 13c0fea1a929baec9e457cec73f6ae1ef9da05e4..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/regular/02Session.g.i.cs +++ /dev/null @@ -1,103 +0,0 @@ -#pragma checksum "..\..\..\..\..\Screens\Regular\02Session.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "D1BC3CA820F62243AB8614D6A0E6B903A486FA3F" -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using InnoLabProjektDektopApp; -using System; -using System.Diagnostics; -using System.Windows; -using System.Windows.Automation; -using System.Windows.Controls; -using System.Windows.Controls.Primitives; -using System.Windows.Controls.Ribbon; -using System.Windows.Data; -using System.Windows.Documents; -using System.Windows.Ink; -using System.Windows.Input; -using System.Windows.Markup; -using System.Windows.Media; -using System.Windows.Media.Animation; -using System.Windows.Media.Effects; -using System.Windows.Media.Imaging; -using System.Windows.Media.Media3D; -using System.Windows.Media.TextFormatting; -using System.Windows.Navigation; -using System.Windows.Shapes; -using System.Windows.Shell; - - -namespace InnoLabProjektDektopApp { - - - /// <summary> - /// Session - /// </summary> - public partial class Session : System.Windows.Window, System.Windows.Markup.IComponentConnector { - - private bool _contentLoaded; - - /// <summary> - /// InitializeComponent - /// </summary> - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.7.0")] - public void InitializeComponent() { - if (_contentLoaded) { - return; - } - _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/InnoLabProjektDektopApp;V1.0.0.0;component/screens/regular/02session.xaml", System.UriKind.Relative); - - #line 1 "..\..\..\..\..\Screens\Regular\02Session.xaml" - System.Windows.Application.LoadComponent(this, resourceLocater); - - #line default - #line hidden - } - - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.7.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: - - #line 14 "..\..\..\..\..\Screens\Regular\02Session.xaml" - ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Option1_Click); - - #line default - #line hidden - return; - case 2: - - #line 15 "..\..\..\..\..\Screens\Regular\02Session.xaml" - ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Option2_Click); - - #line default - #line hidden - return; - case 3: - - #line 16 "..\..\..\..\..\Screens\Regular\02Session.xaml" - ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Option3_Click); - - #line default - #line hidden - return; - } - this._contentLoaded = true; - } - } -} - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/regular/03End.g.i.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/regular/03End.g.i.cs deleted file mode 100644 index f5222e7b82c1470e442b2dbeff838338d3dd9546..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/regular/03End.g.i.cs +++ /dev/null @@ -1,103 +0,0 @@ -#pragma checksum "..\..\..\..\..\Screens\Regular\03End.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "72002043234C76AC32F37586C2AFFA9D55A8908F" -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using InnoLabProjektDektopApp; -using System; -using System.Diagnostics; -using System.Windows; -using System.Windows.Automation; -using System.Windows.Controls; -using System.Windows.Controls.Primitives; -using System.Windows.Controls.Ribbon; -using System.Windows.Data; -using System.Windows.Documents; -using System.Windows.Ink; -using System.Windows.Input; -using System.Windows.Markup; -using System.Windows.Media; -using System.Windows.Media.Animation; -using System.Windows.Media.Effects; -using System.Windows.Media.Imaging; -using System.Windows.Media.Media3D; -using System.Windows.Media.TextFormatting; -using System.Windows.Navigation; -using System.Windows.Shapes; -using System.Windows.Shell; - - -namespace InnoLabProjektDektopApp { - - - /// <summary> - /// End - /// </summary> - public partial class End : System.Windows.Window, System.Windows.Markup.IComponentConnector { - - private bool _contentLoaded; - - /// <summary> - /// InitializeComponent - /// </summary> - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.7.0")] - public void InitializeComponent() { - if (_contentLoaded) { - return; - } - _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/InnoLabProjektDektopApp;V1.0.0.0;component/screens/regular/03end.xaml", System.UriKind.Relative); - - #line 1 "..\..\..\..\..\Screens\Regular\03End.xaml" - System.Windows.Application.LoadComponent(this, resourceLocater); - - #line default - #line hidden - } - - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.7.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: - - #line 14 "..\..\..\..\..\Screens\Regular\03End.xaml" - ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Option1_Click); - - #line default - #line hidden - return; - case 2: - - #line 15 "..\..\..\..\..\Screens\Regular\03End.xaml" - ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Option2_Click); - - #line default - #line hidden - return; - case 3: - - #line 16 "..\..\..\..\..\Screens\Regular\03End.xaml" - ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Option3_Click); - - #line default - #line hidden - return; - } - this._contentLoaded = true; - } - } -} - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/regular/04Statistics.g.i.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/regular/04Statistics.g.i.cs deleted file mode 100644 index 45bd22260946c93c03d437493429c8f677cf171f..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Screens/regular/04Statistics.g.i.cs +++ /dev/null @@ -1,103 +0,0 @@ -#pragma checksum "..\..\..\..\..\Screens\Regular\04Statistics.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "782BF7082C8E3390DA046DA8EB09E4AD8A9ED175" -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using InnoLabProjektDektopApp; -using System; -using System.Diagnostics; -using System.Windows; -using System.Windows.Automation; -using System.Windows.Controls; -using System.Windows.Controls.Primitives; -using System.Windows.Controls.Ribbon; -using System.Windows.Data; -using System.Windows.Documents; -using System.Windows.Ink; -using System.Windows.Input; -using System.Windows.Markup; -using System.Windows.Media; -using System.Windows.Media.Animation; -using System.Windows.Media.Effects; -using System.Windows.Media.Imaging; -using System.Windows.Media.Media3D; -using System.Windows.Media.TextFormatting; -using System.Windows.Navigation; -using System.Windows.Shapes; -using System.Windows.Shell; - - -namespace InnoLabProjektDektopApp { - - - /// <summary> - /// Statistics - /// </summary> - public partial class Statistics : System.Windows.Window, System.Windows.Markup.IComponentConnector { - - private bool _contentLoaded; - - /// <summary> - /// InitializeComponent - /// </summary> - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.7.0")] - public void InitializeComponent() { - if (_contentLoaded) { - return; - } - _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/InnoLabProjektDektopApp;V1.0.0.0;component/screens/regular/04statistics.xaml", System.UriKind.Relative); - - #line 1 "..\..\..\..\..\Screens\Regular\04Statistics.xaml" - System.Windows.Application.LoadComponent(this, resourceLocater); - - #line default - #line hidden - } - - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.7.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: - - #line 14 "..\..\..\..\..\Screens\Regular\04Statistics.xaml" - ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Option1_Click); - - #line default - #line hidden - return; - case 2: - - #line 15 "..\..\..\..\..\Screens\Regular\04Statistics.xaml" - ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Option2_Click); - - #line default - #line hidden - return; - case 3: - - #line 16 "..\..\..\..\..\Screens\Regular\04Statistics.xaml" - ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Option3_Click); - - #line default - #line hidden - return; - } - this._contentLoaded = true; - } - } -} - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Styles/Styles.baml b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Styles/Styles.baml index 11e982a4a6d12327da781ccb8bbf3a2d032c85c8..6f2631c6f9eb81c147b63d984cf0c6392226e45b 100644 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Styles/Styles.baml and b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Styles/Styles.baml differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Windows/AnotherWindow.g.i.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Windows/AnotherWindow.g.i.cs deleted file mode 100644 index c4abee16b820e137a5104691efb31f64e3d84c12..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Windows/AnotherWindow.g.i.cs +++ /dev/null @@ -1,76 +0,0 @@ -#pragma checksum "..\..\..\..\Windows\AnotherWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "CEA98DB0A69964122A1101044832C05BD7AEB159" -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using InnoLabProjektDektopApp.Windows; -using System; -using System.Diagnostics; -using System.Windows; -using System.Windows.Automation; -using System.Windows.Controls; -using System.Windows.Controls.Primitives; -using System.Windows.Controls.Ribbon; -using System.Windows.Data; -using System.Windows.Documents; -using System.Windows.Ink; -using System.Windows.Input; -using System.Windows.Markup; -using System.Windows.Media; -using System.Windows.Media.Animation; -using System.Windows.Media.Effects; -using System.Windows.Media.Imaging; -using System.Windows.Media.Media3D; -using System.Windows.Media.TextFormatting; -using System.Windows.Navigation; -using System.Windows.Shapes; -using System.Windows.Shell; - - -namespace InnoLabProjektDektopApp.Windows { - - - /// <summary> - /// AnotherWindow - /// </summary> - public partial class AnotherWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector { - - private bool _contentLoaded; - - /// <summary> - /// InitializeComponent - /// </summary> - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.7.0")] - public void InitializeComponent() { - if (_contentLoaded) { - return; - } - _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/InnoLabProjektDektopApp;component/windows/anotherwindow.xaml", System.UriKind.Relative); - - #line 1 "..\..\..\..\Windows\AnotherWindow.xaml" - System.Windows.Application.LoadComponent(this, resourceLocater); - - #line default - #line hidden - } - - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.7.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/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Windows/MainWindow.g.i.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Windows/MainWindow.g.i.cs deleted file mode 100644 index 7a95c7dd1cff079b66982e2422013ae6f4be0db7..0000000000000000000000000000000000000000 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/Windows/MainWindow.g.i.cs +++ /dev/null @@ -1,87 +0,0 @@ -#pragma checksum "..\..\..\..\Windows\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "42228F448CBE4C6ADAE0D751E94BB7AEF1665113" -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -using InnoLabProjektDektopApp; -using System; -using System.Diagnostics; -using System.Windows; -using System.Windows.Automation; -using System.Windows.Controls; -using System.Windows.Controls.Primitives; -using System.Windows.Controls.Ribbon; -using System.Windows.Data; -using System.Windows.Documents; -using System.Windows.Ink; -using System.Windows.Input; -using System.Windows.Markup; -using System.Windows.Media; -using System.Windows.Media.Animation; -using System.Windows.Media.Effects; -using System.Windows.Media.Imaging; -using System.Windows.Media.Media3D; -using System.Windows.Media.TextFormatting; -using System.Windows.Navigation; -using System.Windows.Shapes; -using System.Windows.Shell; - - -namespace InnoLabProjektDektopApp { - - - /// <summary> - /// MainWindow - /// </summary> - public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector { - - private bool _contentLoaded; - - /// <summary> - /// InitializeComponent - /// </summary> - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.7.0")] - public void InitializeComponent() { - if (_contentLoaded) { - return; - } - _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/InnoLabProjektDektopApp;component/windows/mainwindow.xaml", System.UriKind.Relative); - - #line 1 "..\..\..\..\Windows\MainWindow.xaml" - System.Windows.Application.LoadComponent(this, resourceLocater); - - #line default - #line hidden - } - - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.7.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: - - #line 10 "..\..\..\..\Windows\MainWindow.xaml" - ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click); - - #line default - #line hidden - return; - } - this._contentLoaded = true; - } - } -} - diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/apphost.exe b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/apphost.exe index 1eaba63a41121517619625e6929e51c1ce76950e..d4a804e46d285bf02f0f48a7cc69cab26643949d 100644 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/apphost.exe and b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/apphost.exe differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/ref/InnoLabProjektDektopApp.dll b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/ref/InnoLabProjektDektopApp.dll deleted file mode 100644 index fe653823cb788d672b37813d8519634ee2562aba..0000000000000000000000000000000000000000 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/ref/InnoLabProjektDektopApp.dll and /dev/null differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/refint/InnoLabProjektDektopApp.dll b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/refint/InnoLabProjektDektopApp.dll deleted file mode 100644 index fe653823cb788d672b37813d8519634ee2562aba..0000000000000000000000000000000000000000 Binary files a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/refint/InnoLabProjektDektopApp.dll and /dev/null differ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/InnoLabProjektDektopApp.csproj.nuget.dgspec.json b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/InnoLabProjektDektopApp.csproj.nuget.dgspec.json index c5b58bf6d915a3001ab3b468fe4545abc49441ae..3e1abade5d110567f8faf9e5f1dbfc879cea87f0 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/InnoLabProjektDektopApp.csproj.nuget.dgspec.json +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/InnoLabProjektDektopApp.csproj.nuget.dgspec.json @@ -50,13 +50,21 @@ "net8.0-windows7.0": { "targetAlias": "net8.0-windows", "dependencies": { + "Hardcodet.NotifyIcon.Wpf": { + "target": "Package", + "version": "[2.0.1, )" + }, "Newtonsoft.Json": { "target": "Package", "version": "[13.0.3, )" }, + "Newtonsoft.Json.Bson": { + "target": "Package", + "version": "[1.0.3, )" + }, "System.Management": { "target": "Package", - "version": "[9.0.0, )" + "version": "[9.0.1, )" } }, "imports": [ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/project.assets.json b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/project.assets.json index 8e3829647d53ebd70e700dac0cc5bb58af1c1394..9b5e008a5914571bdc882dd2d998683811559c04 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/project.assets.json +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/project.assets.json @@ -2,6 +2,22 @@ "version": 3, "targets": { "net8.0-windows7.0": { + "Hardcodet.NotifyIcon.Wpf/2.0.1": { + "type": "package", + "compile": { + "lib/net8.0-windows7.0/Hardcodet.NotifyIcon.Wpf.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0-windows7.0/Hardcodet.NotifyIcon.Wpf.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.WindowsDesktop.App" + ] + }, "Newtonsoft.Json/13.0.3": { "type": "package", "compile": { @@ -15,7 +31,23 @@ } } }, - "System.CodeDom/9.0.0": { + "Newtonsoft.Json.Bson/1.0.3": { + "type": "package", + "dependencies": { + "Newtonsoft.Json": "13.0.1" + }, + "compile": { + "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": { + "related": ".pdb;.xml" + } + } + }, + "System.CodeDom/9.0.1": { "type": "package", "compile": { "lib/net8.0/System.CodeDom.dll": { @@ -31,10 +63,10 @@ "buildTransitive/net8.0/_._": {} } }, - "System.Management/9.0.0": { + "System.Management/9.0.1": { "type": "package", "dependencies": { - "System.CodeDom": "9.0.0" + "System.CodeDom": "9.0.1" }, "compile": { "lib/net8.0/System.Management.dll": { @@ -59,6 +91,27 @@ } }, "libraries": { + "Hardcodet.NotifyIcon.Wpf/2.0.1": { + "sha512": "dtxmeZXzV2GzSm91aZ3hqzgoeVoARSkDPVCYfhVUNyyKBWYxMgNC0EcLiSYxD4Uc4alq/2qb3SmV8DgAENLRLQ==", + "type": "package", + "path": "hardcodet.notifyicon.wpf/2.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE", + "hardcodet.notifyicon.wpf.2.0.1.nupkg.sha512", + "hardcodet.notifyicon.wpf.nuspec", + "icon.png", + "lib/net462/Hardcodet.NotifyIcon.Wpf.dll", + "lib/net462/Hardcodet.NotifyIcon.Wpf.xml", + "lib/net472/Hardcodet.NotifyIcon.Wpf.dll", + "lib/net472/Hardcodet.NotifyIcon.Wpf.xml", + "lib/net6.0-windows7.0/Hardcodet.NotifyIcon.Wpf.dll", + "lib/net6.0-windows7.0/Hardcodet.NotifyIcon.Wpf.xml", + "lib/net8.0-windows7.0/Hardcodet.NotifyIcon.Wpf.dll", + "lib/net8.0-windows7.0/Hardcodet.NotifyIcon.Wpf.xml" + ] + }, "Newtonsoft.Json/13.0.3": { "sha512": "HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==", "type": "package", @@ -89,10 +142,32 @@ "packageIcon.png" ] }, - "System.CodeDom/9.0.0": { - "sha512": "oTE5IfuMoET8yaZP/vdvy9xO47guAv/rOhe4DODuFBN3ySprcQOlXqO3j+e/H/YpKKR5sglrxRaZ2HYOhNJrqA==", + "Newtonsoft.Json.Bson/1.0.3": { + "sha512": "bCcwagnHfYnhwQfY1criEcn6Hy9PtBuVnZu0pA8hmRhuR3jI/8WxVgoVAdNw9BJ3JHkxmWJzpj/AQy+PMMLqxg==", + "type": "package", + "path": "newtonsoft.json.bson/1.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "lib/net45/Newtonsoft.Json.Bson.dll", + "lib/net45/Newtonsoft.Json.Bson.pdb", + "lib/net45/Newtonsoft.Json.Bson.xml", + "lib/netstandard1.3/Newtonsoft.Json.Bson.dll", + "lib/netstandard1.3/Newtonsoft.Json.Bson.pdb", + "lib/netstandard1.3/Newtonsoft.Json.Bson.xml", + "lib/netstandard2.0/Newtonsoft.Json.Bson.dll", + "lib/netstandard2.0/Newtonsoft.Json.Bson.pdb", + "lib/netstandard2.0/Newtonsoft.Json.Bson.xml", + "newtonsoft.json.bson.1.0.3.nupkg.sha512", + "newtonsoft.json.bson.nuspec", + "packageIcon.png" + ] + }, + "System.CodeDom/9.0.1": { + "sha512": "2J5uq+2smnj+u1jlyVJ6BGGqaK9fHcK/EwN7mbsuPqTI6dZr86br8Cg6o/5B+icQ9ANTvTDpJjnhDNtYYZijHQ==", "type": "package", - "path": "system.codedom/9.0.0", + "path": "system.codedom/9.0.1", "files": [ ".nupkg.metadata", ".signature.p7s", @@ -112,15 +187,15 @@ "lib/net9.0/System.CodeDom.xml", "lib/netstandard2.0/System.CodeDom.dll", "lib/netstandard2.0/System.CodeDom.xml", - "system.codedom.9.0.0.nupkg.sha512", + "system.codedom.9.0.1.nupkg.sha512", "system.codedom.nuspec", "useSharedDesignerContext.txt" ] }, - "System.Management/9.0.0": { - "sha512": "bVh4xAMI5grY5GZoklKcMBLirhC8Lqzp63Ft3zXJacwGAlLyFdF4k0qz4pnKIlO6HyL2Z4zqmHm9UkzEo6FFsA==", + "System.Management/9.0.1": { + "sha512": "CLEo9O6FuO4GQ3ZQkGssg9CJ2w2TN7GMFf3wHTc7YVWJV4xoyJRPw+XIDQnCcSUJCrHhrAWOO60cAX29EV5LFQ==", "type": "package", - "path": "system.management/9.0.0", + "path": "system.management/9.0.1", "files": [ ".nupkg.metadata", ".signature.p7s", @@ -141,7 +216,7 @@ "runtimes/win/lib/net8.0/System.Management.xml", "runtimes/win/lib/net9.0/System.Management.dll", "runtimes/win/lib/net9.0/System.Management.xml", - "system.management.9.0.0.nupkg.sha512", + "system.management.9.0.1.nupkg.sha512", "system.management.nuspec", "useSharedDesignerContext.txt" ] @@ -149,8 +224,10 @@ }, "projectFileDependencyGroups": { "net8.0-windows7.0": [ + "Hardcodet.NotifyIcon.Wpf >= 2.0.1", "Newtonsoft.Json >= 13.0.3", - "System.Management >= 9.0.0" + "Newtonsoft.Json.Bson >= 1.0.3", + "System.Management >= 9.0.1" ] }, "packageFolders": { @@ -166,6 +243,9 @@ "packagesPath": "C:\\Users\\mhustoles\\.nuget\\packages\\", "outputPath": "C:\\Users\\mhustoles\\Documents\\CoFlow\\InnoLabProjektDektopApp\\InnoLabProjektDektopApp\\obj\\", "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], "configFilePaths": [ "C:\\Users\\mhustoles\\AppData\\Roaming\\NuGet\\NuGet.Config", "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", @@ -200,13 +280,21 @@ "net8.0-windows7.0": { "targetAlias": "net8.0-windows", "dependencies": { + "Hardcodet.NotifyIcon.Wpf": { + "target": "Package", + "version": "[2.0.1, )" + }, "Newtonsoft.Json": { "target": "Package", "version": "[13.0.3, )" }, + "Newtonsoft.Json.Bson": { + "target": "Package", + "version": "[1.0.3, )" + }, "System.Management": { "target": "Package", - "version": "[9.0.0, )" + "version": "[9.0.1, )" } }, "imports": [ diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/project.nuget.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/project.nuget.cache index 4b2c8d9e98b68cdaa3b30549e735b4e4b32ea655..a5e76b66f2da2600e28b70b5e4dd36e586ef93dd 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/project.nuget.cache +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/project.nuget.cache @@ -1,12 +1,14 @@ { "version": 2, - "dgSpecHash": "1e10NCoJVAY=", + "dgSpecHash": "D26kEE1zr0o=", "success": true, "projectFilePath": "C:\\Users\\mhustoles\\Documents\\CoFlow\\InnoLabProjektDektopApp\\InnoLabProjektDektopApp\\InnoLabProjektDektopApp.csproj", "expectedPackageFiles": [ + "C:\\Users\\mhustoles\\.nuget\\packages\\hardcodet.notifyicon.wpf\\2.0.1\\hardcodet.notifyicon.wpf.2.0.1.nupkg.sha512", "C:\\Users\\mhustoles\\.nuget\\packages\\newtonsoft.json\\13.0.3\\newtonsoft.json.13.0.3.nupkg.sha512", - "C:\\Users\\mhustoles\\.nuget\\packages\\system.codedom\\9.0.0\\system.codedom.9.0.0.nupkg.sha512", - "C:\\Users\\mhustoles\\.nuget\\packages\\system.management\\9.0.0\\system.management.9.0.0.nupkg.sha512" + "C:\\Users\\mhustoles\\.nuget\\packages\\newtonsoft.json.bson\\1.0.3\\newtonsoft.json.bson.1.0.3.nupkg.sha512", + "C:\\Users\\mhustoles\\.nuget\\packages\\system.codedom\\9.0.1\\system.codedom.9.0.1.nupkg.sha512", + "C:\\Users\\mhustoles\\.nuget\\packages\\system.management\\9.0.1\\system.management.9.0.1.nupkg.sha512" ], "logs": [] } \ No newline at end of file