diff --git a/InnoLabProjektDektopApp/.vs/InnoLabProjektDektopApp/DesignTimeBuild/.dtbcache.v2 b/InnoLabProjektDektopApp/.vs/InnoLabProjektDektopApp/DesignTimeBuild/.dtbcache.v2 index d2ab2ed8568e51dac13c16dad60ec62496e80a18..b112d470abb679ed9348b5366571a543ad767027 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/.suo b/InnoLabProjektDektopApp/.vs/InnoLabProjektDektopApp/v17/.suo index 6944e43672530d865a548e8f43aa0d80b0725592..cfa7dce173f710ab10b580f780dcd2eee660c42c 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 244eb5d768db93aedf6c1405522b1d40151bb3d2..a308c3156a79eacbabf9bd36fe27d0820487e7d5 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\Regulaer\03End.xaml"> + StartupUri="Screens\Regulaer\Abonnement.xaml"> <Application.Resources> <ResourceDictionary> <ResourceDictionary.MergedDictionaries> diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/InnoLabProjektDektopApp.csproj.user b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/InnoLabProjektDektopApp.csproj.user index 92b7ce65cc46375f291131fc7d5d03ffb956158d..d72162b78e8173b4b60d653c7ad762da26e87f06 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/InnoLabProjektDektopApp.csproj.user +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/InnoLabProjektDektopApp.csproj.user @@ -7,6 +7,9 @@ </None> </ItemGroup> <ItemGroup> + <Compile Update="Screens\Regulaer\Abonnement.xaml.cs"> + <SubType>Code</SubType> + </Compile> <Compile Update="Screens\Templates\HeaderTemplate.xaml.cs"> <SubType>Code</SubType> </Compile> @@ -45,6 +48,9 @@ <Page Update="Screens\Regulaer\01Overview.xaml"> <SubType>Designer</SubType> </Page> + <Page Update="Screens\Regulaer\Abonnement.xaml"> + <SubType>Designer</SubType> + </Page> <Page Update="Screens\Templates\HeaderTemplate.xaml"> <SubType>Designer</SubType> </Page> diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/Regulaer/Abonnement.xaml b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/Regulaer/Abonnement.xaml new file mode 100644 index 0000000000000000000000000000000000000000..f50cb096abd066155e95e4046b9064891d406f5b --- /dev/null +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/Regulaer/Abonnement.xaml @@ -0,0 +1,146 @@ +<Page x:Class="InnoLabProjektDektopApp.Screens.Regulaer.Abonnement" + xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" + xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" + xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" + xmlns:d="http://schemas.microsoft.com/expression/blend/2008" + xmlns:local="clr-namespace:InnoLabProjektDektopApp.Screens.Regulaer" + mc:Ignorable="d" + d:DesignHeight="450" d:DesignWidth="800" + Title="Abonnement"> + + + + <Border Background="#1E1E1E" Padding="20"> + <Grid> + <Grid.RowDefinitions> + <RowDefinition Height="Auto" /> + <RowDefinition Height="*" /> + <RowDefinition Height="Auto" /> + </Grid.RowDefinitions> + + + <!-- Titel & Beschreibung --> + <StackPanel Grid.Row="0" Margin="0,0,0,80"> + <TextBlock Text="Available subscription plans" FontSize="24" Foreground="White" FontWeight="Bold"/> + <TextBlock TextWrapping="Wrap" Text="Become a premium member for even more features! With the free version, you already have great tools to stay focused and work better. But with Premium, you’ll unlock extra features to work even smarter and make it more personal." FontSize="14" Foreground="Gray"/> + </StackPanel> + + <Border Background="#2A2A2A" Padding="10" CornerRadius="5" Margin="0,80,0,34"> + <TextBlock> + <Run Text="Your current membership: " Foreground="LightGray" FontWeight="Bold"/> + <Run Text="Free" Foreground="White"/> + </TextBlock> + </Border> + + + + <!-- Feature Tabelle --> + <Border Background="#2A2A2A" Padding="10" CornerRadius="10" Margin="0,126,0,27" Grid.RowSpan="3"> + <Grid> + <Grid.RowDefinitions> + <RowDefinition Height="Auto"/> + <RowDefinition Height="*"/> + </Grid.RowDefinitions> + + <!-- Header --> + <Grid Margin="0,0,0,10"> + <Grid.ColumnDefinitions> + <ColumnDefinition Width="3*"/> + <ColumnDefinition Width="2*"/> + <ColumnDefinition Width="2*"/> + </Grid.ColumnDefinitions> + <TextBlock Text="Feature" Foreground="White" FontWeight="Bold" Grid.Column="0"/> + <TextBlock Text="Free" Foreground="White" FontWeight="Bold" HorizontalAlignment="Center" Grid.Column="1"/> + <TextBlock Text="Premium (€4,99/month or €20/year)" Foreground="White" FontWeight="Bold" HorizontalAlignment="Center" Grid.Column="2"/> + </Grid> + + <!-- Feature Liste --> + <StackPanel Grid.Row="1"> + <Border BorderBrush="#444" BorderThickness="0,0,0,1" Padding="5" Margin="0,0,0,5"> + <Grid> + <Grid.ColumnDefinitions> + <ColumnDefinition Width="3*"/> + <ColumnDefinition Width="2*"/> + <ColumnDefinition Width="2*"/> + </Grid.ColumnDefinitions> + <TextBlock Text="Start and manage focus session" Foreground="White" Grid.Column="0"/> + <TextBlock Text="✔" Foreground="Green" FontSize="16" HorizontalAlignment="Center" Grid.Column="1"/> + <TextBlock Text="✔" Foreground="Green" FontSize="16" HorizontalAlignment="Center" Grid.Column="2"/> + </Grid> + </Border> + + <Border BorderBrush="#444" BorderThickness="0,0,0,1" Padding="5" Margin="0,0,0,5"> + <Grid> + <Grid.ColumnDefinitions> + <ColumnDefinition Width="3*"/> + <ColumnDefinition Width="2*"/> + <ColumnDefinition Width="2*"/> + </Grid.ColumnDefinitions> + <TextBlock Text="View today’s session stats after it ends" Foreground="White" Grid.Column="0"/> + <TextBlock Text="✔" Foreground="Green" FontSize="16" HorizontalAlignment="Center" Grid.Column="1"/> + <TextBlock Text="✔" Foreground="Green" FontSize="16" HorizontalAlignment="Center" Grid.Column="2"/> + </Grid> + </Border> + + <Border BorderBrush="#444" BorderThickness="0,0,0,1" Padding="5" Margin="0,0,0,5"> + <Grid> + <Grid.ColumnDefinitions> + <ColumnDefinition Width="3*"/> + <ColumnDefinition Width="2*"/> + <ColumnDefinition Width="2*"/> + </Grid.ColumnDefinitions> + <TextBlock Text="Detailed stats (days, weeks, months)" Foreground="White" Grid.Column="0"/> + <TextBlock Text="✖" Foreground="Red" FontSize="16" HorizontalAlignment="Center" Grid.Column="1"/> + <TextBlock Text="✔" Foreground="Green" FontSize="16" HorizontalAlignment="Center" Grid.Column="2"/> + </Grid> + </Border> + + <Border BorderBrush="#444" BorderThickness="0,0,0,1" Padding="5" Margin="0,0,0,5"> + <Grid> + <Grid.ColumnDefinitions> + <ColumnDefinition Width="3*"/> + <ColumnDefinition Width="2*"/> + <ColumnDefinition Width="2*"/> + </Grid.ColumnDefinitions> + <TextBlock Text="Specify work sessions" Foreground="White" Grid.Column="0"/> + <TextBlock Text="✖" Foreground="Red" FontSize="16" HorizontalAlignment="Center" Grid.Column="1"/> + <TextBlock Text="✔" Foreground="Green" FontSize="16" HorizontalAlignment="Center" Grid.Column="2"/> + </Grid> + </Border> + + <Border BorderBrush="#444" BorderThickness="0,0,0,1" Padding="5" Margin="0,0,0,5"> + <Grid> + <Grid.ColumnDefinitions> + <ColumnDefinition Width="3*"/> + <ColumnDefinition Width="2*"/> + <ColumnDefinition Width="2*"/> + </Grid.ColumnDefinitions> + <TextBlock Text="Analyze peak productivity times" Foreground="White" Grid.Column="0"/> + <TextBlock Text="✖" Foreground="Red" FontSize="16" HorizontalAlignment="Center" Grid.Column="1"/> + <TextBlock Text="✔" Foreground="Green" FontSize="16" HorizontalAlignment="Center" Grid.Column="2"/> + </Grid> + </Border> + + <Border BorderBrush="#444" BorderThickness="0,0,0,1" Padding="5" Margin="0,0,0,5"> + <Grid> + <Grid.ColumnDefinitions> + <ColumnDefinition Width="3*"/> + <ColumnDefinition Width="2*"/> + <ColumnDefinition Width="2*"/> + </Grid.ColumnDefinitions> + <TextBlock Text="Customize mascot (accessories, skins)" Foreground="White" Grid.Column="0"/> + <TextBlock Text="✖" Foreground="Red" FontSize="16" HorizontalAlignment="Center" Grid.Column="1"/> + <TextBlock Text="✔" Foreground="Green" FontSize="16" HorizontalAlignment="Center" Grid.Column="2"/> + </Grid> + </Border> + + <!-- Weitere Features nach demselben Muster hinzufügen --> + </StackPanel> + </Grid> + </Border> + + <!-- Premium Button --> + <Button Content="Try premium now" Grid.Row="2" Background="#4CAF50" Foreground="White" FontSize="16" Padding="10,5" HorizontalAlignment="Left" Margin="0,20,0,-11" Cursor="Hand"/> + </Grid> + </Border> +</Page> diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/Regulaer/Abonnement.xaml.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/Regulaer/Abonnement.xaml.cs new file mode 100644 index 0000000000000000000000000000000000000000..40a1282c1bda80d930e20fda9707ae8d9f2f9db6 --- /dev/null +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/Regulaer/Abonnement.xaml.cs @@ -0,0 +1,28 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows; +using System.Windows.Controls; +using System.Windows.Data; +using System.Windows.Documents; +using System.Windows.Input; +using System.Windows.Media; +using System.Windows.Media.Imaging; +using System.Windows.Navigation; +using System.Windows.Shapes; + +namespace InnoLabProjektDektopApp.Screens.Regulaer +{ + /// <summary> + /// Interaction logic for Abonnement.xaml + /// </summary> + public partial class Abonnement : Page + { + public Abonnement() + { + InitializeComponent(); + } + } +} 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 543037f33b79012c6fca81b457dcc7d7ef7d6aa0..0af4f646da5e4b582a56208f67881a971404e92b 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}" "7D74CC56137BF813041AB27EB36F34CDC24CEC07" +#pragma checksum "..\..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "C678DA19B9727F0EBE6ED0EFBA0641FF9E082226" //------------------------------------------------------------------------------ // <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\\Regulaer\\03End.xaml", System.UriKind.Relative); + this.StartupUri = new System.Uri("Screens\\Regulaer\\Abonnement.xaml", System.UriKind.Relative); #line default #line hidden - System.Uri resourceLocater = new System.Uri("/CoFlow;component/app.xaml", System.UriKind.Relative); + System.Uri resourceLocater = new System.Uri("/CoFlow;V1.0.0.0;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/InnoLabProjektDektopApp.AssemblyInfo.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/InnoLabProjektDektopApp.AssemblyInfo.cs index c56ac4d6536d82d450cb5ff521b84f748651a13a..64d31345ac4e014f9d879e61b49ea4f5d1fb4fcc 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+b8199ce351b70646617289c7b40d7b08cb30f644")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+104779a2ea9d59e79f1e33b3e7fb1af7be7394be")] [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 d687c0cd2372193f119f3140f2102453f7910c70..01b42c9c2419cf7527cc4d02a237e2b21798ed19 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 @@ -eb30c911c9974992b249d2c54f3e85084a8fbc7155b8da806798b1d8a9572e4d +b82b2ceb77e6f0db3a7f7d9673cc8f5aad56419d8e007d6528390a7a2222fe89 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 0b256af44726d772127a16f380559c070afab4c1..09766fada507688a9e6d9a87384433e645de8ecc 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 47c40a3c0e0ebd358efb874e76931fe320233318..598bf0e0eb3aae07f324e53f0e3c199a92738173 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 @@ -cd11af8fd3e4bdd4a64b2f26dbbf918699fc6753590d3e7a9432bff4f3ea24de +4f5c9b0fdb5d7773403dd783a16a5a286ed410dca84f26f3962da7a55a30f595 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 ac981fd1557adbbc67081f29eacd7ada3f1c9aa4..dd18f0ad9ed0f8f30381fd497049b0b394a92801 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 @@ -391,3 +391,16 @@ D:\Studium\7. Semester\InnoLab\CoFlowCURRENT\CoFlow\InnoLabProjektDektopApp\Inno 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 +D:\Studium\7. Semester\InnoLab\CoFlowCURRENT\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\Assets\distractingPrograms.json +D:\Studium\7. Semester\InnoLab\CoFlowCURRENT\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\Assets\end.png +D:\Studium\7. Semester\InnoLab\CoFlowCURRENT\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\Assets\pause.png +D:\Studium\7. Semester\InnoLab\CoFlowCURRENT\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\Assets\skip.png +D:\Studium\7. Semester\InnoLab\CoFlowCURRENT\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\Assets\icon.ico +D:\Studium\7. Semester\InnoLab\CoFlowCURRENT\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\Assets\start.png +D:\Studium\7. Semester\InnoLab\CoFlowCURRENT\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\bin\Debug\net8.0-windows\Hardcodet.NotifyIcon.Wpf.dll +D:\Studium\7. Semester\InnoLab\CoFlowCURRENT\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Utils\InputDialog.baml +D:\Studium\7. Semester\InnoLab\CoFlowCURRENT\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\03_2ProgramsList.g.cs +D:\Studium\7. Semester\InnoLab\CoFlowCURRENT\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Utils\InputDialog.g.cs +D:\Studium\7. Semester\InnoLab\CoFlowCURRENT\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\FirstLaunch\03_2ProgramsList.baml +D:\Studium\7. Semester\InnoLab\CoFlowCURRENT\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\Abonnement.g.cs +D:\Studium\7. Semester\InnoLab\CoFlowCURRENT\CoFlow\InnoLabProjektDektopApp\InnoLabProjektDektopApp\obj\Debug\net8.0-windows\Screens\Regulaer\Abonnement.baml 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 77c8460e9468c98cbf926d622005a5df4392cc94..8e256c86fbe4849e587e088ae6c8a229ccd63006 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 @@ -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; @@ -54,7 +55,7 @@ namespace InnoLabProjektDektopApp { return; } _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/CoFlow;component/screens/firstlaunch/01startscreen.xaml", System.UriKind.Relative); + System.Uri resourceLocater = new System.Uri("/CoFlow;V1.0.0.0;component/screens/firstlaunch/01startscreen.xaml", System.UriKind.Relative); #line 1 "..\..\..\..\..\Screens\FirstLaunch\01Startscreen.xaml" System.Windows.Application.LoadComponent(this, resourceLocater); 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 c1686d9c95a735de9a928ab580f6934a4c9dadfb..13348a238ba85b0e841f52b85670471d57b7fbd1 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 @@ -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; @@ -54,7 +55,7 @@ namespace InnoLabProjektDektopApp { return; } _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/CoFlow;component/screens/firstlaunch/02progress.xaml", System.UriKind.Relative); + System.Uri resourceLocater = new System.Uri("/CoFlow;V1.0.0.0;component/screens/firstlaunch/02progress.xaml", System.UriKind.Relative); #line 1 "..\..\..\..\..\Screens\FirstLaunch\02Progress.xaml" System.Windows.Application.LoadComponent(this, resourceLocater); 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 a83481097509abefa573b860202fb38707613a20..b7f3f2642cd03871a7096de060cc131220219c54 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}" "F7A27CAD47B9A1471DDE22716C07F66AAF02ED67" +#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; @@ -150,7 +151,7 @@ namespace InnoLabProjektDektopApp { return; } _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/CoFlow;component/screens/firstlaunch/03_0distractions.xaml", System.UriKind.Relative); + System.Uri resourceLocater = new System.Uri("/CoFlow;V1.0.0.0;component/screens/firstlaunch/03_0distractions.xaml", System.UriKind.Relative); #line 1 "..\..\..\..\..\Screens\FirstLaunch\03_0Distractions.xaml" System.Windows.Application.LoadComponent(this, resourceLocater); 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 bd799aed75b1fa64f0d913792170b385ddd6b651..a7516533417f43b1fbe8c7c878940cd50a42aeca 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 @@ -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; @@ -110,7 +111,7 @@ namespace InnoLabProjektDektopApp { return; } _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/CoFlow;component/screens/firstlaunch/03_1distractionslist.xaml", System.UriKind.Relative); + System.Uri resourceLocater = new System.Uri("/CoFlow;V1.0.0.0;component/screens/firstlaunch/03_1distractionslist.xaml", System.UriKind.Relative); #line 1 "..\..\..\..\..\Screens\FirstLaunch\03_1DistractionsList.xaml" System.Windows.Application.LoadComponent(this, resourceLocater); 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 af4bf9eed0bcb34a00a96d13f17fa17bf8c89bb4..7ae08224671b6079c0f6d92f83a80908c40b8e92 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}" "52D23A0064CD987DE513B625A2CB3D7A7294BC6C" +#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; 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 af4bf9eed0bcb34a00a96d13f17fa17bf8c89bb4..f2283149830dd56dc63f5f7b73fbc4e4e3d846d9 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}" "52D23A0064CD987DE513B625A2CB3D7A7294BC6C" +#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; @@ -142,7 +143,7 @@ namespace InnoLabProjektDektopApp { return; } _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/CoFlow;component/screens/firstlaunch/04settings.xaml", System.UriKind.Relative); + System.Uri resourceLocater = new System.Uri("/CoFlow;V1.0.0.0;component/screens/firstlaunch/04settings.xaml", System.UriKind.Relative); #line 1 "..\..\..\..\..\Screens\FirstLaunch\04Settings.xaml" System.Windows.Application.LoadComponent(this, resourceLocater); 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 05fdd91486dd58554d892174dc1e4ed9988ba558..b81b99ed6eb1838f430d166768cba3cd6fe6193d 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 @@ -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; 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 05fdd91486dd58554d892174dc1e4ed9988ba558..d6eebacd260451df7fa958b9a6dd63a90d95ba4c 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 @@ -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; @@ -150,7 +151,7 @@ namespace InnoLabProjektDektopApp { return; } _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/CoFlow;component/screens/regulaer/01overview.xaml", System.UriKind.Relative); + System.Uri resourceLocater = new System.Uri("/CoFlow;V1.0.0.0;component/screens/regulaer/01overview.xaml", System.UriKind.Relative); #line 1 "..\..\..\..\..\Screens\Regulaer\01Overview.xaml" System.Windows.Application.LoadComponent(this, resourceLocater); 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 74ccdd9304f72c6aaca14818eea754f57cdc2364..ecdd585b316520eb687d8e9615c778e1c0fb0ad4 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 @@ -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; 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 74ccdd9304f72c6aaca14818eea754f57cdc2364..685ace4f695e95944221a3ef9f1354b6ad04c20b 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 @@ -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; @@ -86,7 +87,7 @@ namespace InnoLabProjektDektopApp { return; } _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/CoFlow;component/screens/regulaer/02session.xaml", System.UriKind.Relative); + System.Uri resourceLocater = new System.Uri("/CoFlow;V1.0.0.0;component/screens/regulaer/02session.xaml", System.UriKind.Relative); #line 1 "..\..\..\..\..\Screens\Regulaer\02Session.xaml" System.Windows.Application.LoadComponent(this, resourceLocater); 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 05b719a988b4783dde33332d257c6a327a4ac120..a9dc4e154bce38c137656d8b3ddfbe995daa6bc9 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 @@ -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; 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 05b719a988b4783dde33332d257c6a327a4ac120..a1d35bdc3d74e2cb652a06999ccfbed0ef81a871 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 @@ -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; @@ -54,7 +55,7 @@ namespace InnoLabProjektDektopApp { return; } _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/CoFlow;component/screens/regulaer/03end.xaml", System.UriKind.Relative); + System.Uri resourceLocater = new System.Uri("/CoFlow;V1.0.0.0;component/screens/regulaer/03end.xaml", System.UriKind.Relative); #line 1 "..\..\..\..\..\Screens\Regulaer\03End.xaml" System.Windows.Application.LoadComponent(this, resourceLocater); 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 11f232608ab147fef0af19e8fb263cba40fb5dc3..a16a5f0de8b8e22ad38544f8955b4c84b14274e9 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 @@ -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; 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 11f232608ab147fef0af19e8fb263cba40fb5dc3..998887aa2b0edbff2ffd9f18733342278718f7b0 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 @@ -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; @@ -54,7 +55,7 @@ namespace InnoLabProjektDektopApp { return; } _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/CoFlow;component/screens/regulaer/04statistics.xaml", System.UriKind.Relative); + System.Uri resourceLocater = new System.Uri("/CoFlow;V1.0.0.0;component/screens/regulaer/04statistics.xaml", System.UriKind.Relative); #line 1 "..\..\..\..\..\Screens\Regulaer\04Statistics.xaml" System.Windows.Application.LoadComponent(this, resourceLocater); 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 c17a4076b45bf28cc48bb05938e3c1e3af2c535b..ab2951c3a8c98ccdfd7a7d37e4e3039f0383215e 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 @@ -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; 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 c17a4076b45bf28cc48bb05938e3c1e3af2c535b..d2b5ba24a4eb97347142079f3ac5cf93828e6b39 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 @@ -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; @@ -53,7 +54,7 @@ namespace InnoLabProjektDektopApp.Screens.Templates { return; } _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/CoFlow;component/screens/templates/headertemplate.xaml", System.UriKind.Relative); + System.Uri resourceLocater = new System.Uri("/CoFlow;V1.0.0.0;component/screens/templates/headertemplate.xaml", System.UriKind.Relative); #line 1 "..\..\..\..\..\Screens\Templates\HeaderTemplate.xaml" System.Windows.Application.LoadComponent(this, resourceLocater); 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..9644df672bd57278e25d8ba400c72ae3fb881639 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/apphost.exe b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/Debug/net8.0-windows/apphost.exe index 2498a476f362f84331e9f6f8eb5ccf99f50fb54f..c0530ca1c968986cb537a46e692b18ebaae99507 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/InnoLabProjektDektopApp.csproj.nuget.dgspec.json b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/InnoLabProjektDektopApp.csproj.nuget.dgspec.json index d38387295cebdc4ca7b74b52ebebfae1d3e03df2..8b96480d88b7ad97c7c27ad6267aa4c4a06d5e51 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/InnoLabProjektDektopApp.csproj.nuget.dgspec.json +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/InnoLabProjektDektopApp.csproj.nuget.dgspec.json @@ -45,13 +45,17 @@ "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, )" }, "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 1d3f3fad55aa85d1539c503dedb9195f0e40267f..18c65248f4cd60d3d113b50f10adde9971a4cfd3 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/project.assets.json +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/project.assets.json @@ -192,24 +192,19 @@ ] }, "packageFolders": { - "C:\\Users\\Phil\\.nuget\\packages\\": {}, - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} + "C:\\Users\\Sandra\\.nuget\\packages\\": {} }, "project": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\Phil\\Source\\Repos\\CoFlow\\InnoLabProjektDektopApp\\InnoLabProjektDektopApp\\InnoLabProjektDektopApp.csproj", + "projectUniqueName": "D:\\Studium\\7. Semester\\InnoLab\\CoFlowCURRENT\\CoFlow\\InnoLabProjektDektopApp\\InnoLabProjektDektopApp\\InnoLabProjektDektopApp.csproj", "projectName": "CoFlow", - "projectPath": "C:\\Users\\Phil\\Source\\Repos\\CoFlow\\InnoLabProjektDektopApp\\InnoLabProjektDektopApp\\InnoLabProjektDektopApp.csproj", - "packagesPath": "C:\\Users\\Phil\\.nuget\\packages\\", - "outputPath": "C:\\Users\\Phil\\Source\\Repos\\CoFlow\\InnoLabProjektDektopApp\\InnoLabProjektDektopApp\\obj\\", + "projectPath": "D:\\Studium\\7. Semester\\InnoLab\\CoFlowCURRENT\\CoFlow\\InnoLabProjektDektopApp\\InnoLabProjektDektopApp\\InnoLabProjektDektopApp.csproj", + "packagesPath": "C:\\Users\\Sandra\\.nuget\\packages\\", + "outputPath": "D:\\Studium\\7. Semester\\InnoLab\\CoFlowCURRENT\\CoFlow\\InnoLabProjektDektopApp\\InnoLabProjektDektopApp\\obj\\", "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], "configFilePaths": [ - "C:\\Users\\Phil\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Users\\Sandra\\AppData\\Roaming\\NuGet\\NuGet.Config", "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [ @@ -234,8 +229,7 @@ "enableAudit": "true", "auditLevel": "low", "auditMode": "direct" - }, - "SdkAnalysisLevel": "9.0.100" + } }, "frameworks": { "net8.0-windows7.0": { @@ -273,7 +267,7 @@ "privateAssets": "none" } }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.103/PortableRuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.204/PortableRuntimeIdentifierGraph.json" } } } diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/project.nuget.cache b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/project.nuget.cache index c87dae4ed7571f46d0a6628965053ff5cd68ef59..29b3dd06697b7f174fa4094c5396ff226a8db9d3 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/project.nuget.cache +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/obj/project.nuget.cache @@ -1,12 +1,13 @@ { "version": 2, - "dgSpecHash": "Kmy9okVA0ycUSqwGQryy3ZTkTmkuXt8C1YtXwYWrqeeHz13Ta0KvST9u1skCApovxIhHqE9KXzSMxQ/eZ3nJqg==", + "dgSpecHash": "stmpZUXTy/InqH/ouy+8Brc2zyynKpe8wETh+jRCbNPhCYh4cCO7AOHZYD6oht6YIXD2hc2Fd7xz8HII437amA==", "success": true, "projectFilePath": "D:\\Studium\\7. Semester\\InnoLab\\CoFlowCURRENT\\CoFlow\\InnoLabProjektDektopApp\\InnoLabProjektDektopApp\\InnoLabProjektDektopApp.csproj", "expectedPackageFiles": [ + "C:\\Users\\Sandra\\.nuget\\packages\\hardcodet.notifyicon.wpf\\2.0.1\\hardcodet.notifyicon.wpf.2.0.1.nupkg.sha512", "C:\\Users\\Sandra\\.nuget\\packages\\newtonsoft.json\\13.0.3\\newtonsoft.json.13.0.3.nupkg.sha512", - "C:\\Users\\Sandra\\.nuget\\packages\\system.codedom\\9.0.0\\system.codedom.9.0.0.nupkg.sha512", - "C:\\Users\\Sandra\\.nuget\\packages\\system.management\\9.0.0\\system.management.9.0.0.nupkg.sha512" + "C:\\Users\\Sandra\\.nuget\\packages\\system.codedom\\9.0.1\\system.codedom.9.0.1.nupkg.sha512", + "C:\\Users\\Sandra\\.nuget\\packages\\system.management\\9.0.1\\system.management.9.0.1.nupkg.sha512" ], "logs": [] } \ No newline at end of file