diff --git a/App2/App2.sln b/App2/App2.sln
new file mode 100644
index 0000000..ba7ffa7
--- /dev/null
+++ b/App2/App2.sln
@@ -0,0 +1,43 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio Version 17
+VisualStudioVersion = 17.3.32811.315
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "App2", "App2\App2.csproj", "{13E91B67-37DB-4DF3-B7D7-4D1BE197ED08}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|arm64 = Debug|arm64
+ Debug|x64 = Debug|x64
+ Debug|x86 = Debug|x86
+ Release|arm64 = Release|arm64
+ Release|x64 = Release|x64
+ Release|x86 = Release|x86
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {13E91B67-37DB-4DF3-B7D7-4D1BE197ED08}.Debug|arm64.ActiveCfg = Debug|arm64
+ {13E91B67-37DB-4DF3-B7D7-4D1BE197ED08}.Debug|arm64.Build.0 = Debug|arm64
+ {13E91B67-37DB-4DF3-B7D7-4D1BE197ED08}.Debug|arm64.Deploy.0 = Debug|arm64
+ {13E91B67-37DB-4DF3-B7D7-4D1BE197ED08}.Debug|x64.ActiveCfg = Debug|x64
+ {13E91B67-37DB-4DF3-B7D7-4D1BE197ED08}.Debug|x64.Build.0 = Debug|x64
+ {13E91B67-37DB-4DF3-B7D7-4D1BE197ED08}.Debug|x64.Deploy.0 = Debug|x64
+ {13E91B67-37DB-4DF3-B7D7-4D1BE197ED08}.Debug|x86.ActiveCfg = Debug|x86
+ {13E91B67-37DB-4DF3-B7D7-4D1BE197ED08}.Debug|x86.Build.0 = Debug|x86
+ {13E91B67-37DB-4DF3-B7D7-4D1BE197ED08}.Debug|x86.Deploy.0 = Debug|x86
+ {13E91B67-37DB-4DF3-B7D7-4D1BE197ED08}.Release|arm64.ActiveCfg = Release|arm64
+ {13E91B67-37DB-4DF3-B7D7-4D1BE197ED08}.Release|arm64.Build.0 = Release|arm64
+ {13E91B67-37DB-4DF3-B7D7-4D1BE197ED08}.Release|arm64.Deploy.0 = Release|arm64
+ {13E91B67-37DB-4DF3-B7D7-4D1BE197ED08}.Release|x64.ActiveCfg = Release|x64
+ {13E91B67-37DB-4DF3-B7D7-4D1BE197ED08}.Release|x64.Build.0 = Release|x64
+ {13E91B67-37DB-4DF3-B7D7-4D1BE197ED08}.Release|x64.Deploy.0 = Release|x64
+ {13E91B67-37DB-4DF3-B7D7-4D1BE197ED08}.Release|x86.ActiveCfg = Release|x86
+ {13E91B67-37DB-4DF3-B7D7-4D1BE197ED08}.Release|x86.Build.0 = Release|x86
+ {13E91B67-37DB-4DF3-B7D7-4D1BE197ED08}.Release|x86.Deploy.0 = Release|x86
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+ GlobalSection(ExtensibilityGlobals) = postSolution
+ SolutionGuid = {8FB8702A-19D1-48F5-845A-CEF083ECB08E}
+ EndGlobalSection
+EndGlobal
diff --git a/App2/App2/Activite.cs b/App2/App2/Activite.cs
new file mode 100644
index 0000000..ef384cc
--- /dev/null
+++ b/App2/App2/Activite.cs
@@ -0,0 +1,21 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace App2
+{
+ public class Activite {
+ public int IdActivite { get; set; }
+ public string Nom { get; set; }
+ public double CoutOrganisation { get; set; }
+ public double PrixParticipation { get; set; }
+ public int IdType { get; set; }
+ public string TypeName { get; set; }
+ public double AvgRating { get; set; }
+ public string FCoutOrganisation => $"{CoutOrganisation:0.00} $";
+ public string FPrixParticipation => $"{PrixParticipation:0.00} $";
+
+ }
+}
diff --git a/App2/App2/Adherent.cs b/App2/App2/Adherent.cs
new file mode 100644
index 0000000..8b9821f
--- /dev/null
+++ b/App2/App2/Adherent.cs
@@ -0,0 +1,19 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace App2
+{
+ public class Adherent
+ {
+ public string Num_identification { get; set; }
+ public string Nom { get; set; }
+ public string Prenom { get; set; }
+ public string Adresse { get; set; }
+ public string Date_naissance { get; set; }
+ public int Age { get; set; }
+ public string Nom_complet { get { return Nom+" "+Prenom; } }
+ }
+}
diff --git a/App2/App2/App.xaml b/App2/App2/App.xaml
new file mode 100644
index 0000000..5a02bf1
--- /dev/null
+++ b/App2/App2/App.xaml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/App2/App2/App.xaml.cs b/App2/App2/App.xaml.cs
new file mode 100644
index 0000000..7dcef5c
--- /dev/null
+++ b/App2/App2/App.xaml.cs
@@ -0,0 +1,51 @@
+using Microsoft.UI.Xaml;
+using Microsoft.UI.Xaml.Controls;
+using Microsoft.UI.Xaml.Controls.Primitives;
+using Microsoft.UI.Xaml.Data;
+using Microsoft.UI.Xaml.Input;
+using Microsoft.UI.Xaml.Media;
+using Microsoft.UI.Xaml.Navigation;
+using Microsoft.UI.Xaml.Shapes;
+using System;
+using System.Collections.Generic;
+using System.IO;
+using System.Linq;
+using System.Runtime.InteropServices.WindowsRuntime;
+using Windows.ApplicationModel;
+using Windows.ApplicationModel.Activation;
+using Windows.Foundation;
+using Windows.Foundation.Collections;
+
+// To learn more about WinUI, the WinUI project structure,
+// and more about our project templates, see: http://aka.ms/winui-project-info.
+
+namespace App2
+{
+ ///
+ /// Provides application-specific behavior to supplement the default Application class.
+ ///
+ public partial class App : Application
+ {
+ ///
+ /// Initializes the singleton application object. This is the first line of authored code
+ /// executed, and as such is the logical equivalent of main() or WinMain().
+ ///
+ public App()
+ {
+ this.InitializeComponent();
+ }
+
+ ///
+ /// Invoked when the application is launched normally by the end user. Other entry points
+ /// will be used such as when the application is launched to open a specific file.
+ ///
+ /// Details about the launch request and process.
+ protected override void OnLaunched(Microsoft.UI.Xaml.LaunchActivatedEventArgs args)
+ {
+ m_window = new MainWindow();
+ m_window.Activate();
+ }
+
+ private Window m_window;
+ }
+}
diff --git a/App2/App2/App2.csproj b/App2/App2/App2.csproj
new file mode 100644
index 0000000..47d71d5
--- /dev/null
+++ b/App2/App2/App2.csproj
@@ -0,0 +1,87 @@
+
+
+ WinExe
+ net6.0-windows10.0.19041.0
+ 10.0.17763.0
+ App2
+ app.manifest
+ x86;x64;arm64
+ win10-x86;win10-x64;win10-arm64
+ win10-$(Platform).pubxml
+ true
+ true
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ MSBuild:Compile
+
+
+
+
+ MSBuild:Compile
+
+
+
+
+ MSBuild:Compile
+
+
+
+
+ MSBuild:Compile
+
+
+
+
+ MSBuild:Compile
+
+
+
+
+ MSBuild:Compile
+
+
+
+
+
+ true
+
+
diff --git a/App2/App2/App2.csproj.user b/App2/App2/App2.csproj.user
new file mode 100644
index 0000000..5efc1fb
--- /dev/null
+++ b/App2/App2/App2.csproj.user
@@ -0,0 +1,33 @@
+
+
+
+
+
+ Designer
+
+
+ Designer
+
+
+ Designer
+
+
+ Designer
+
+
+ Designer
+
+
+ Designer
+
+
+ Designer
+
+
+ Designer
+
+
+ Designer
+
+
+
\ No newline at end of file
diff --git a/App2/App2/Assets/LockScreenLogo.scale-200.png b/App2/App2/Assets/LockScreenLogo.scale-200.png
new file mode 100644
index 0000000..7440f0d
Binary files /dev/null and b/App2/App2/Assets/LockScreenLogo.scale-200.png differ
diff --git a/App2/App2/Assets/SplashScreen.scale-200.png b/App2/App2/Assets/SplashScreen.scale-200.png
new file mode 100644
index 0000000..32f486a
Binary files /dev/null and b/App2/App2/Assets/SplashScreen.scale-200.png differ
diff --git a/App2/App2/Assets/Square150x150Logo.scale-200.png b/App2/App2/Assets/Square150x150Logo.scale-200.png
new file mode 100644
index 0000000..53ee377
Binary files /dev/null and b/App2/App2/Assets/Square150x150Logo.scale-200.png differ
diff --git a/App2/App2/Assets/Square44x44Logo.scale-200.png b/App2/App2/Assets/Square44x44Logo.scale-200.png
new file mode 100644
index 0000000..f713bba
Binary files /dev/null and b/App2/App2/Assets/Square44x44Logo.scale-200.png differ
diff --git a/App2/App2/Assets/Square44x44Logo.targetsize-24_altform-unplated.png b/App2/App2/Assets/Square44x44Logo.targetsize-24_altform-unplated.png
new file mode 100644
index 0000000..dc9f5be
Binary files /dev/null and b/App2/App2/Assets/Square44x44Logo.targetsize-24_altform-unplated.png differ
diff --git a/App2/App2/Assets/StoreLogo.png b/App2/App2/Assets/StoreLogo.png
new file mode 100644
index 0000000..a4586f2
Binary files /dev/null and b/App2/App2/Assets/StoreLogo.png differ
diff --git a/App2/App2/Assets/Wide310x150Logo.scale-200.png b/App2/App2/Assets/Wide310x150Logo.scale-200.png
new file mode 100644
index 0000000..8b4a5d0
Binary files /dev/null and b/App2/App2/Assets/Wide310x150Logo.scale-200.png differ
diff --git a/App2/App2/GestionAdherents.xaml b/App2/App2/GestionAdherents.xaml
new file mode 100644
index 0000000..0863dcd
--- /dev/null
+++ b/App2/App2/GestionAdherents.xaml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
diff --git a/App2/App2/GestionAdherents.xaml.cs b/App2/App2/GestionAdherents.xaml.cs
new file mode 100644
index 0000000..8ce3cb9
--- /dev/null
+++ b/App2/App2/GestionAdherents.xaml.cs
@@ -0,0 +1,31 @@
+using Microsoft.UI.Xaml;
+using Microsoft.UI.Xaml.Controls;
+using Microsoft.UI.Xaml.Controls.Primitives;
+using Microsoft.UI.Xaml.Data;
+using Microsoft.UI.Xaml.Input;
+using Microsoft.UI.Xaml.Media;
+using Microsoft.UI.Xaml.Navigation;
+using System;
+using System.Collections.Generic;
+using System.IO;
+using System.Linq;
+using System.Runtime.InteropServices.WindowsRuntime;
+using Windows.Foundation;
+using Windows.Foundation.Collections;
+
+// To learn more about WinUI, the WinUI project structure,
+// and more about our project templates, see: http://aka.ms/winui-project-info.
+
+namespace App2
+{
+ ///
+ /// An empty page that can be used on its own or navigated to within a Frame.
+ ///
+ public sealed partial class GestionAdherents : Page
+ {
+ public GestionAdherents()
+ {
+ this.InitializeComponent();
+ }
+ }
+}
diff --git a/App2/App2/ListeActivitees.xaml b/App2/App2/ListeActivitees.xaml
new file mode 100644
index 0000000..4e4446c
--- /dev/null
+++ b/App2/App2/ListeActivitees.xaml
@@ -0,0 +1,72 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/App2/App2/ListeActivitees.xaml.cs b/App2/App2/ListeActivitees.xaml.cs
new file mode 100644
index 0000000..d2431d0
--- /dev/null
+++ b/App2/App2/ListeActivitees.xaml.cs
@@ -0,0 +1,72 @@
+using Microsoft.UI.Xaml;
+using Microsoft.UI.Xaml.Controls;
+using Microsoft.UI.Xaml.Navigation;
+using Windows.Storage;
+using System;
+
+using System.Collections.Generic;
+using System.IO;
+using System.Linq;
+using System.Runtime.InteropServices.WindowsRuntime;
+using Windows.Foundation;
+using Windows.Foundation.Collections;
+using Microsoft.UI.Xaml.Controls.Primitives;
+using Microsoft.UI.Xaml.Data;
+using Microsoft.UI.Xaml.Input;
+using Microsoft.UI.Xaml.Media;
+using Windows.Storage.Pickers;
+using System.Text;
+using System.Threading.Tasks;
+using Windows.Storage.Pickers.Provider;
+using Windows.UI.ViewManagement;
+using static Microsoft.UI.Win32Interop;
+
+
+namespace App2
+{
+ public sealed partial class ListeActivitees : Page
+ {
+ public List ListeActivites { get; set; }
+
+ public ListeActivitees()
+ {
+ this.InitializeComponent();
+ ListeActivites = Singleton.Instance.GetAllActivites();
+ ActivitesListView.ItemsSource = ListeActivites;
+ }
+
+ private void ActivitesListView_SelectionChanged(object sender, SelectionChangedEventArgs e)
+ {
+ if (ActivitesListView.SelectedItem is Activite selectedActivite)
+ {
+ this.Frame.Navigate(typeof(PageActivite), selectedActivite);
+ }
+ }
+
+ private async void ExporterButton_Click(object sender, RoutedEventArgs e)
+ {
+ // Call the ExportActivitesToCsv method and get the returned result
+ var result = await Singleton.Instance.ExportActivitesToCsv(ListeActivites);
+
+ // Update the TextBlock with the message
+ err.Text = result.message;
+
+ // Set the color based on the success value
+ if (result.success)
+ {
+ err.Foreground = new SolidColorBrush(Microsoft.UI.Colors.Green); // Success (green)
+ }
+ else
+ {
+ err.Foreground = new SolidColorBrush(Microsoft.UI.Colors.Red); // Failure (red)
+ }
+ }
+
+
+
+ }
+
+
+
+}
+
diff --git a/App2/App2/ListeAdherents.xaml b/App2/App2/ListeAdherents.xaml
new file mode 100644
index 0000000..f50ef06
--- /dev/null
+++ b/App2/App2/ListeAdherents.xaml
@@ -0,0 +1,65 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/App2/App2/ListeAdherents.xaml.cs b/App2/App2/ListeAdherents.xaml.cs
new file mode 100644
index 0000000..6a2c21c
--- /dev/null
+++ b/App2/App2/ListeAdherents.xaml.cs
@@ -0,0 +1,54 @@
+
+using System;
+using System.Collections.Generic;
+using System.IO;
+using System.Linq;
+using System.Runtime.InteropServices.WindowsRuntime;
+using Windows.Foundation;
+using Windows.Foundation.Collections;
+using Microsoft.UI.Xaml;
+using Microsoft.UI.Xaml.Controls;
+using Microsoft.UI.Xaml.Controls.Primitives;
+using Microsoft.UI.Xaml.Data;
+using Microsoft.UI.Xaml.Input;
+using Microsoft.UI.Xaml.Media;
+using Microsoft.UI.Xaml.Navigation;
+
+// To learn more about WinUI, the WinUI project structure,
+// and more about our project templates, see: http://aka.ms/winui-project-info.
+
+namespace App2
+{
+ ///
+ /// An empty page that can be used on its own or navigated to within a Frame.
+ ///
+ public sealed partial class ListeAdherents : Page
+ {
+ public List ListeAdherent { get; set; }
+
+ public ListeAdherents()
+ {
+ this.InitializeComponent();
+ ListeAdherent = Singleton.Instance.GetAllAdherents();
+ ActivitesListView.ItemsSource = ListeAdherent;
+ }
+ private async void ExporterButton_Click(object sender, RoutedEventArgs e)
+ {
+ // Call the ExportActivitesToCsv method and get the returned result
+ var result = await Singleton.Instance.ExportAdherentToCsv(ListeAdherent);
+
+ // Update the TextBlock with the message
+ err.Text = result.message;
+
+ // Set the color based on the success value
+ if (result.success)
+ {
+ err.Foreground = new SolidColorBrush(Microsoft.UI.Colors.Green); // Success (green)
+ }
+ else
+ {
+ err.Foreground = new SolidColorBrush(Microsoft.UI.Colors.Red); // Failure (red)
+ }
+ }
+ }
+}
diff --git a/App2/App2/LoginPage.xaml b/App2/App2/LoginPage.xaml
new file mode 100644
index 0000000..af725de
--- /dev/null
+++ b/App2/App2/LoginPage.xaml
@@ -0,0 +1,43 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/App2/App2/LoginPage.xaml.cs b/App2/App2/LoginPage.xaml.cs
new file mode 100644
index 0000000..3e53ec9
--- /dev/null
+++ b/App2/App2/LoginPage.xaml.cs
@@ -0,0 +1,57 @@
+using Microsoft.UI.Xaml;
+using Microsoft.UI.Xaml.Controls;
+using MySql.Data.MySqlClient;
+using System;
+
+namespace App2
+{
+ public sealed partial class LoginPage : Page
+ {
+ public LoginPage()
+ {
+ this.InitializeComponent();
+ }
+
+ private void LoginButton_Click(object sender, RoutedEventArgs e)
+ {
+ string username = UsernameTextBox.Text.Trim();
+ string password = PasswordBox.Password.Trim();
+
+ if (AuthenticateUser(username, password))
+ {
+ // Navigation vers la page principale
+ this.Frame.Navigate(typeof(MainWindow));
+ }
+ else
+ {
+ // Affichage d'un message d'erreur
+ ErrorTextBlock.Visibility = Visibility.Visible;
+ }
+ }
+
+ private bool AuthenticateUser(string username, string password)
+ {
+ try
+ {
+ string query = "SELECT COUNT(*) FROM administrateur WHERE nom_usager = @username AND mot_de_passe = @password";
+
+ using (MySqlConnection connection = Singleton.Instance.connection)
+ {
+ MySqlCommand command = new MySqlCommand(query, connection);
+ command.Parameters.AddWithValue("@username", username);
+ command.Parameters.AddWithValue("@password", password);
+
+ connection.Open();
+ int result = Convert.ToInt32(command.ExecuteScalar());
+ connection.Close();
+
+ return result > 0;
+ }
+ }
+ catch
+ {
+ return false;
+ }
+ }
+ }
+}
diff --git a/App2/App2/MainWindow.xaml b/App2/App2/MainWindow.xaml
new file mode 100644
index 0000000..1001ff2
--- /dev/null
+++ b/App2/App2/MainWindow.xaml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/App2/App2/MainWindow.xaml.cs b/App2/App2/MainWindow.xaml.cs
new file mode 100644
index 0000000..96800fe
--- /dev/null
+++ b/App2/App2/MainWindow.xaml.cs
@@ -0,0 +1,59 @@
+using Microsoft.UI.Xaml;
+using Microsoft.UI.Xaml.Controls;
+using Microsoft.UI.Xaml.Controls.Primitives;
+using Microsoft.UI.Xaml.Data;
+using Microsoft.UI.Xaml.Input;
+using Microsoft.UI.Xaml.Media;
+using Microsoft.UI.Xaml.Navigation;
+using System;
+using System.Collections.Generic;
+using System.IO;
+using System.Linq;
+using System.Runtime.InteropServices.WindowsRuntime;
+using Windows.Foundation;
+using Windows.Foundation.Collections;
+
+// To learn more about WinUI, the WinUI project structure,
+// and more about our project templates, see: http://aka.ms/winui-project-info.
+
+namespace App2
+{
+ ///
+ /// An empty window that can be used on its own or navigated to within a Frame.
+ ///
+ public sealed partial class MainWindow : Window
+ {
+ public MainWindow()
+ {
+ this.InitializeComponent();
+
+ // Naviguer vers la page de connexion au démarrage
+ mainFrame.Navigate(typeof(LoginPage));
+ }
+
+
+
+ private void nav_SelectionChanged(NavigationView sender, NavigationViewSelectionChangedEventArgs args)
+ {
+ if (args.SelectedItem != null)
+ {
+ var item = (NavigationViewItem)args.SelectedItem;
+
+ switch (item.Name)
+ {
+ case "listeAc":
+ mainFrame.Navigate(typeof(ListeActivitees));
+ break;
+ case "listeAd":
+ mainFrame.Navigate(typeof(ListeAdherents));
+ break;
+ case "Stat":
+ mainFrame.Navigate(typeof(PageStatistique));
+ break;
+ default:
+ break;
+ }
+ }
+ }
+ }
+}
diff --git a/App2/App2/Package.appxmanifest b/App2/App2/Package.appxmanifest
new file mode 100644
index 0000000..d929ebf
--- /dev/null
+++ b/App2/App2/Package.appxmanifest
@@ -0,0 +1,48 @@
+
+
+
+
+
+
+
+ App2
+ 2121088
+ Assets\StoreLogo.png
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/App2/App2/PageActivite.xaml b/App2/App2/PageActivite.xaml
new file mode 100644
index 0000000..43c4970
--- /dev/null
+++ b/App2/App2/PageActivite.xaml
@@ -0,0 +1,160 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/App2/App2/PageActivite.xaml.cs b/App2/App2/PageActivite.xaml.cs
new file mode 100644
index 0000000..91f7195
--- /dev/null
+++ b/App2/App2/PageActivite.xaml.cs
@@ -0,0 +1,70 @@
+using Microsoft.UI.Xaml;
+using Microsoft.UI.Xaml.Controls;
+using Microsoft.UI.Xaml.Navigation;
+using System;
+
+namespace App2
+{
+ public sealed partial class PageActivite : Page
+ {
+ public Activite SelectedActivite { get; set; }
+ public double AverageRating { get; set; }
+
+ public PageActivite()
+ {
+ this.InitializeComponent();
+ }
+
+ protected override void OnNavigatedTo(NavigationEventArgs e)
+ {
+ base.OnNavigatedTo(e);
+
+ if (e.Parameter is Activite activite)
+ {
+ SelectedActivite = activite;
+ }
+ }
+
+ private void GoBackButton_Click(object sender, RoutedEventArgs e)
+ {
+ this.Frame.GoBack();
+ }
+
+ private void Button_Click(object sender, RoutedEventArgs e)
+ {
+ string numIdentification = "AB-1977-727"; // Ensure this is a valid ID from the adherent table
+ int idSeance = 3; // Ensure this is a valid ID from the seance table (replace 1 with a valid value)
+ double noteAppreciation = Math.Round(slider.Value, 2); // Round the slider value to 2 decimals
+
+ string errorMessage = string.Empty;
+
+ bool isSuccess = Singleton.Instance.SubmitRating(numIdentification, idSeance, noteAppreciation, out errorMessage);
+
+ if (!isSuccess)
+ {
+ StatusTextBlock.Text = errorMessage; // Show error message
+ StatusTextBlock.Foreground = new Microsoft.UI.Xaml.Media.SolidColorBrush(Microsoft.UI.Colors.Red);
+ }
+ else
+ {
+ StatusTextBlock.Text = "Note soumise avec succès";
+ StatusTextBlock.Foreground = new Microsoft.UI.Xaml.Media.SolidColorBrush(Microsoft.UI.Colors.Green);
+ }
+ }
+
+
+
+
+
+
+
+ private void RatingSlider_ValueChanged(object sender, Microsoft.UI.Xaml.Controls.Primitives.RangeBaseValueChangedEventArgs e)
+ {
+ if (SliderValueText != null)
+ SliderValueText.Text = slider.Value.ToString("F1");
+ }
+ }
+
+
+
+}
diff --git a/App2/App2/PageStatistique.xaml b/App2/App2/PageStatistique.xaml
new file mode 100644
index 0000000..2b44bb1
--- /dev/null
+++ b/App2/App2/PageStatistique.xaml
@@ -0,0 +1,74 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/App2/App2/PageStatistique.xaml.cs b/App2/App2/PageStatistique.xaml.cs
new file mode 100644
index 0000000..9b9bd57
--- /dev/null
+++ b/App2/App2/PageStatistique.xaml.cs
@@ -0,0 +1,37 @@
+using System;
+using System.Collections.Generic;
+using Microsoft.UI.Xaml.Controls;
+
+namespace App2
+{
+ public sealed partial class PageStatistique : Page
+ {
+ public int TotalMembers { get; set; }
+ public int TotalActivities { get; set; }
+ public List MembersPerActivity { get; set; } // Changed to List
+ public List AverageRatings { get; set; } // Changed to List
+ public int TotalSessions { get; set; }
+ public int TotalParticipants { get; set; }
+ public List AverageSessionsPerActivity { get; set; } // Changed to List
+
+ public PageStatistique()
+ {
+ this.InitializeComponent();
+ LoadStatistics();
+ }
+
+ private void LoadStatistics()
+ {
+ var (totalMembers, totalActivities, membersPerActivity, averageRatings, totalSessions, totalParticipants, averageSessionsPerActivity) =
+ Singleton.Instance.GetAllStatistics();
+
+ TotalMembers = totalMembers;
+ TotalActivities = totalActivities;
+ MembersPerActivity = membersPerActivity; // Directly assign the list
+ AverageRatings = averageRatings; // Directly assign the list
+ TotalSessions = totalSessions;
+ TotalParticipants = totalParticipants;
+ AverageSessionsPerActivity = averageSessionsPerActivity; // Directly assign the list
+ }
+ }
+}
diff --git a/App2/App2/Properties/PublishProfiles/win10-arm64.pubxml b/App2/App2/Properties/PublishProfiles/win10-arm64.pubxml
new file mode 100644
index 0000000..70f6a2b
--- /dev/null
+++ b/App2/App2/Properties/PublishProfiles/win10-arm64.pubxml
@@ -0,0 +1,20 @@
+
+
+
+
+ FileSystem
+ arm64
+ win10-arm64
+ bin\$(Configuration)\$(TargetFramework)\$(RuntimeIdentifier)\publish\
+ true
+ False
+ False
+ True
+
+
+
\ No newline at end of file
diff --git a/App2/App2/Properties/PublishProfiles/win10-x64.pubxml b/App2/App2/Properties/PublishProfiles/win10-x64.pubxml
new file mode 100644
index 0000000..837e565
--- /dev/null
+++ b/App2/App2/Properties/PublishProfiles/win10-x64.pubxml
@@ -0,0 +1,20 @@
+
+
+
+
+ FileSystem
+ x64
+ win10-x64
+ bin\$(Configuration)\$(TargetFramework)\$(RuntimeIdentifier)\publish\
+ true
+ False
+ False
+ True
+
+
+
\ No newline at end of file
diff --git a/App2/App2/Properties/PublishProfiles/win10-x86.pubxml b/App2/App2/Properties/PublishProfiles/win10-x86.pubxml
new file mode 100644
index 0000000..b72b73f
--- /dev/null
+++ b/App2/App2/Properties/PublishProfiles/win10-x86.pubxml
@@ -0,0 +1,20 @@
+
+
+
+
+ FileSystem
+ x86
+ win10-x86
+ bin\$(Configuration)\$(TargetFramework)\$(RuntimeIdentifier)\publish\
+ true
+ False
+ False
+ True
+
+
+
\ No newline at end of file
diff --git a/App2/App2/Properties/launchSettings.json b/App2/App2/Properties/launchSettings.json
new file mode 100644
index 0000000..1aa7479
--- /dev/null
+++ b/App2/App2/Properties/launchSettings.json
@@ -0,0 +1,10 @@
+{
+ "profiles": {
+ "App2 (Package)": {
+ "commandName": "MsixPackage"
+ },
+ "App2 (Unpackaged)": {
+ "commandName": "Project"
+ }
+ }
+}
\ No newline at end of file
diff --git a/App2/App2/Singleton.cs b/App2/App2/Singleton.cs
new file mode 100644
index 0000000..033c428
--- /dev/null
+++ b/App2/App2/Singleton.cs
@@ -0,0 +1,439 @@
+using Microsoft.UI.Xaml.Controls;
+using MySql.Data.MySqlClient;
+using System;
+using System.Collections.Generic;
+using System.Text;
+using System.Text.RegularExpressions;
+using System.Threading.Tasks;
+using Windows.Storage.Pickers;
+using Windows.Storage;
+using Microsoft.UI.Xaml;
+using System.Linq;
+using WinRT.Interop;
+using Windows.UI;
+using Windows.UI.Popups;
+using System.IO;
+using System.Reflection;
+using Microsoft.UI.Xaml.Media;
+using Microsoft.UI;
+
+
+namespace App2
+{
+ public class Singleton
+ {
+ private static Singleton instance;
+ public MySqlConnection connection { get; }
+
+
+
+ private Singleton()
+ {
+ connection = new MySqlConnection("Server=cours.cegep3r.info;Database=a2024_420335ri_eq17;Uid=6221863;Pwd=6221863;");
+ }
+
+
+
+
+ public static Singleton Instance
+ {
+ get
+ {
+ if (instance == null)
+ {
+ instance = new Singleton();
+ }
+ return instance;
+ }
+ }
+
+
+ // Retained GetAllActivities method
+ public List GetAllActivites()
+ {
+ List activites = new List();
+
+ // SQL query to get all activities with their average ratings
+ string query = "SELECT a.id_activite, a.nom, a.cout_organisation, a.prix_participation, t.nom AS type_name, " +
+ "AVG(p.note_appreciation) AS avg_rating " +
+ "FROM activite a " +
+ "JOIN type t ON a.id_type = t.id_type " +
+ "LEFT JOIN seance s ON a.id_activite = s.id_activite " +
+ "LEFT JOIN participer p ON s.id_seance = p.id_seance " +
+ "GROUP BY a.id_activite";
+
+ MySqlCommand command = new MySqlCommand(query, connection);
+
+ if (connection.State != System.Data.ConnectionState.Open)
+ {
+ connection.Open();
+ }
+
+ MySqlDataReader reader = command.ExecuteReader();
+ while (reader.Read())
+ {
+ Activite activite = new Activite
+ {
+ IdActivite = reader.GetInt32("id_activite"),
+ Nom = reader.GetString("nom"),
+ CoutOrganisation = reader.GetDouble("cout_organisation"),
+ PrixParticipation = reader.GetDouble("prix_participation"),
+ TypeName = reader.GetString("type_name"),
+ AvgRating = Math.Round(reader.IsDBNull(reader.GetOrdinal("avg_rating")) ? 0 : reader.GetDouble("avg_rating"),2) // Default to 0 if null
+ };
+ activites.Add(activite);
+ }
+
+ connection.Close();
+ return activites;
+ }
+
+ public List GetAllAdherents()
+ {
+ List adherents = new List();
+
+ // SQL query to get all adherents
+ string query = "SELECT * FROM adherent";
+
+ MySqlCommand command = new MySqlCommand(query, connection);
+
+ if (connection.State != System.Data.ConnectionState.Open)
+ {
+ connection.Open();
+ }
+
+ MySqlDataReader reader = command.ExecuteReader();
+ while (reader.Read())
+ {
+ Adherent adherent = new Adherent
+ {
+ Num_identification = reader.GetString("num_identification"),
+ Nom = reader.GetString("nom"),
+ Prenom = reader.GetString("prenom"),
+ Adresse = reader.GetString("adresse"),
+ Date_naissance = reader.GetDateTime("date_naissance").ToString(),
+ Age = reader.GetInt32("age")
+ };
+ adherents.Add(adherent);
+ }
+
+ if (connection.State == System.Data.ConnectionState.Open)
+ {
+ connection.Close();
+ }
+
+ return adherents;
+ }
+
+
+ public async Task<(bool success, string message)> ExportActivitesToCsv(List activites)
+ {
+ StringBuilder csvContent = new StringBuilder();
+
+ // Add each activity to the CSV content
+ foreach (var activite in activites)
+ {
+ csvContent.AppendLine($"{activite.IdActivite};{activite.Nom};{activite.CoutOrganisation};{activite.PrixParticipation};{activite.IdType};{activite.TypeName};{activite.AvgRating}");
+ }
+
+ // Define the manual path (e.g., in the project's root directory)
+ string projectDirectory = @"C:\Users\avada\source\repos\WinUI3Project2\App2\App2\Assets";
+ string exportFolder = Path.Combine(projectDirectory, "ExportedFiles");
+
+ // Ensure the folder exists
+ if (!Directory.Exists(exportFolder))
+ {
+ Directory.CreateDirectory(exportFolder);
+ }
+
+ // Define the full file path (activites.csv will be saved in the "ExportedFiles" folder)
+ string filePath = Path.Combine(exportFolder, "activites.csv");
+
+ try
+ {
+ // Write CSV content to the file asynchronously
+ await File.WriteAllTextAsync(filePath, csvContent.ToString());
+ return (true, "Fichier Exporté !");
+ }
+ catch (Exception ex)
+ {
+ return (false, "Erreur !!");
+ }
+ }
+
+ public async Task<(bool success, string message)> ExportAdherentToCsv(List adherents)
+ {
+ StringBuilder csvContent = new StringBuilder();
+
+ // Add each activity to the CSV content
+ foreach (var adherent in adherents)
+ {
+ csvContent.AppendLine($"{adherent.Num_identification};{adherent.Nom},{adherent.Prenom};{adherent.Adresse};{adherent.Date_naissance};{adherent.Age}");
+ }
+
+ // Define the manual path (e.g., in the project's root directory)
+ string projectDirectory = @"C:\Users\avada\source\repos\WinUI3Project2\App2\App2\Assets";
+ string exportFolder = Path.Combine(projectDirectory, "ExportedFiles");
+
+ // Ensure the folder exists
+ if (!Directory.Exists(exportFolder))
+ {
+ Directory.CreateDirectory(exportFolder);
+ }
+
+ // Define the full file path (activites.csv will be saved in the "ExportedFiles" folder)
+ string filePath = Path.Combine(exportFolder, "adherent.csv");
+
+ try
+ {
+ // Write CSV content to the file asynchronously
+ await File.WriteAllTextAsync(filePath, csvContent.ToString());
+ return (true, "Fichier Exporté !");
+ }
+ catch (Exception ex)
+ {
+ return (false, "Erreur !!");
+ }
+ }
+
+
+
+
+
+
+
+
+ // Consolidated statistics method
+ public (int TotalMembers, int TotalActivities, List MembersPerActivity, List AverageRatings,
+ int TotalSessions, int TotalParticipants, List AverageSessionsPerActivity) GetAllStatistics()
+ {
+ int totalMembers = Convert.ToInt32(ExecuteScalar("SELECT COUNT(*) FROM adherent"));
+ int totalActivities = Convert.ToInt32(ExecuteScalar("SELECT COUNT(*) FROM activite"));
+
+ List membersPerActivity = new List();
+ string membersPerActivityQuery = "SELECT a.nom, COUNT(p.id_adherent) AS member_count " +
+ "FROM activite a " +
+ "JOIN participer p ON a.id_activite = p.id_seance " +
+ "GROUP BY a.nom";
+ using (var reader = ExecuteReader(membersPerActivityQuery))
+ {
+ while (reader.Read())
+ {
+ string activity = reader.GetString("nom");
+ int count = reader.GetInt32("member_count");
+ membersPerActivity.Add($"{activity} contient {count} adhérents");
+ }
+ }
+
+ List averageRatings = new List();
+ string averageRatingsQuery = "SELECT a.nom, AVG(CAST(p.note_appreciation AS DECIMAL(10,2))) AS avg_rating " +
+ "FROM activite a " +
+ "JOIN participer p ON a.id_activite = p.id_seance " +
+ "GROUP BY a.nom";
+ using (var reader = ExecuteReader(averageRatingsQuery))
+ {
+ while (reader.Read())
+ {
+ string activity = reader.GetString("nom");
+ double avgRating = reader.GetDouble("avg_rating");
+ averageRatings.Add($"La note moyenne de {activity} est : {avgRating:F2}");
+ }
+ }
+
+ int totalSessions = Convert.ToInt32(ExecuteScalar("SELECT COUNT(*) FROM seance"));
+ int totalParticipants = Convert.ToInt32(ExecuteScalar("SELECT COUNT(*) FROM participer"));
+
+ List averageSessionsPerActivity = new List();
+ string avgSessionsQuery = "SELECT a.nom AS activite_nom, " +
+ "COUNT(s.id_seance) AS total_seances " +
+ "FROM activite a " +
+ "LEFT JOIN seance s ON a.id_activite = s.id_activite " +
+ "GROUP BY a.id_activite;";
+
+ using (var reader = Singleton.Instance.ExecuteReader(avgSessionsQuery))
+ {
+ while (reader.Read())
+ {
+ string activityName = reader.GetString("activite_nom");
+ int sessionCount = reader.GetInt32("total_seances"); // Renamed variable to avoid conflict
+ averageSessionsPerActivity.Add($"{activityName} Ã {sessionCount} seances");
+ }
+ }
+
+
+ return (totalMembers, totalActivities, membersPerActivity, averageRatings, totalSessions, totalParticipants, averageSessionsPerActivity);
+ }
+ public bool SubmitRating(string numIdentification, int idSeance, double noteAppreciation, out string errorMessage)
+ {
+ try
+ {
+ // Check if the user has already rated this activity
+ string checkQuery = "SELECT COUNT(*) FROM participer WHERE id_adherent = @id_adherent AND id_seance = @id_seance";
+ MySqlCommand checkCommand = new MySqlCommand(checkQuery, connection);
+ checkCommand.Parameters.AddWithValue("@id_adherent", numIdentification);
+ checkCommand.Parameters.AddWithValue("@id_seance", idSeance);
+
+ if (connection.State != System.Data.ConnectionState.Open)
+ {
+ connection.Open();
+ }
+
+ int count = Convert.ToInt32(checkCommand.ExecuteScalar());
+ if (count > 0)
+ {
+ // If the user already rated, set error message and return false
+ errorMessage = "Vous avez déjà noté cette activité";
+ return false;
+ }
+
+ // Proceed to insert new rating
+ string query = "INSERT INTO participer (id_adherent, id_seance, note_appreciation) " +
+ "VALUES (@id_adherent, @id_seance, @note_appreciation)";
+
+ MySqlCommand command = new MySqlCommand(query, connection);
+ command.Parameters.AddWithValue("@id_adherent", numIdentification);
+ command.Parameters.AddWithValue("@id_seance", idSeance);
+ command.Parameters.AddWithValue("@note_appreciation", noteAppreciation);
+
+ int result = command.ExecuteNonQuery();
+ if (result > 0)
+ {
+ errorMessage = string.Empty; // No error
+ return true; // Successful insertion
+ }
+ else
+ {
+ errorMessage = "Erreur lors de la soumission de la note.";
+ return false;
+ }
+ }
+ catch (Exception ex)
+ {
+ errorMessage = $"Erreur lors de la soumission de la note : {ex.Message}";
+ return false;
+ }
+ finally
+ {
+ connection.Close();
+ }
+ }
+
+
+
+
+
+ // Helper methods: ExecuteScalar and ExecuteReader (unchanged)
+ public object ExecuteScalar(string query)
+ {
+ MySqlCommand command = new MySqlCommand(query, connection);
+
+ if (connection.State != System.Data.ConnectionState.Open)
+ {
+ connection.Open();
+ }
+
+ object result = command.ExecuteScalar();
+ connection.Close();
+ return result;
+ }
+
+ public MySqlDataReader ExecuteReader(string query)
+ {
+ MySqlCommand command = new MySqlCommand(query, connection);
+
+ if (connection.State != System.Data.ConnectionState.Open)
+ {
+ connection.Open();
+ }
+
+ return command.ExecuteReader();
+ }
+
+ public void CloseConnection()
+ {
+ if (connection != null && connection.State == System.Data.ConnectionState.Open)
+ {
+ connection.Close();
+ Console.WriteLine("Connexion MySQL fermée avec succès.");
+ }
+ }
+
+
+ private bool AuthenticateUser(string username, string password)
+ {
+ try
+ {
+ string query = "SELECT COUNT(*) FROM administrateur WHERE nom_usager = @username AND mot_de_passe = @password";
+
+ using (MySqlCommand command = new MySqlCommand(query, Singleton.Instance.connection))
+ {
+ command.Parameters.AddWithValue("@username", username);
+ command.Parameters.AddWithValue("@password", password);
+
+ int result = Convert.ToInt32(command.ExecuteScalar());
+ Singleton.Instance.CloseConnection();
+ return result > 0;
+ }
+ }
+ catch (Exception ex)
+ {
+ Console.WriteLine($"Erreur d'authentification : {ex.Message}");
+ return false;
+ }
+ }
+
+ public bool AddAdherent(Adherent adherent)
+ {
+ string query = "INSERT INTO adherent (num_identification, nom, prenom, adresse, date_naissance, age) " +
+ "VALUES (@numId, @nom, @prenom, @adresse, @dateNaissance, @age)";
+ MySqlCommand command = new MySqlCommand(query, connection);
+ command.Parameters.AddWithValue("@numId", adherent.Num_identification);
+ command.Parameters.AddWithValue("@nom", adherent.Nom);
+ command.Parameters.AddWithValue("@prenom", adherent.Prenom);
+ command.Parameters.AddWithValue("@adresse", adherent.Adresse);
+ command.Parameters.AddWithValue("@dateNaissance", adherent.Date_naissance);
+ command.Parameters.AddWithValue("@age", adherent.Age);
+
+ connection.Open();
+ int result = command.ExecuteNonQuery();
+ connection.Close();
+
+ return result > 0;
+ }
+
+ public bool UpdateAdherent(Adherent adherent)
+ {
+ string query = "UPDATE adherent SET nom = @nom, prenom = @prenom, adresse = @adresse, " +
+ "date_naissance = @dateNaissance, age = @age WHERE num_identification = @numId";
+ MySqlCommand command = new MySqlCommand(query, connection);
+ command.Parameters.AddWithValue("@numId", adherent.Num_identification);
+ command.Parameters.AddWithValue("@nom", adherent.Nom);
+ command.Parameters.AddWithValue("@prenom", adherent.Prenom);
+ command.Parameters.AddWithValue("@adresse", adherent.Adresse);
+ command.Parameters.AddWithValue("@dateNaissance", adherent.Date_naissance);
+ command.Parameters.AddWithValue("@age", adherent.Age);
+
+ connection.Open();
+ int result = command.ExecuteNonQuery();
+ connection.Close();
+
+ return result > 0;
+ }
+
+ public bool DeleteAdherent(string numId)
+ {
+ string query = "DELETE FROM adherent WHERE num_identification = @numId";
+ MySqlCommand command = new MySqlCommand(query, connection);
+ command.Parameters.AddWithValue("@numId", numId);
+
+ connection.Open();
+ int result = command.ExecuteNonQuery();
+ connection.Close();
+
+ return result > 0;
+ }
+
+
+
+ }
+}
diff --git a/App2/App2/app.manifest b/App2/App2/app.manifest
new file mode 100644
index 0000000..d6dddeb
--- /dev/null
+++ b/App2/App2/app.manifest
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+ true/PM
+ PerMonitorV2, PerMonitor
+
+
+
diff --git a/App2/App2/obj/App2.csproj.nuget.dgspec.json b/App2/App2/obj/App2.csproj.nuget.dgspec.json
new file mode 100644
index 0000000..e1e50ca
--- /dev/null
+++ b/App2/App2/obj/App2.csproj.nuget.dgspec.json
@@ -0,0 +1,138 @@
+{
+ "format": 1,
+ "restore": {
+ "C:\\Users\\2121088\\source\\repos\\WinUI3Project\\App2\\App2\\App2.csproj": {}
+ },
+ "projects": {
+ "C:\\Users\\2121088\\source\\repos\\WinUI3Project\\App2\\App2\\App2.csproj": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "C:\\Users\\2121088\\source\\repos\\WinUI3Project\\App2\\App2\\App2.csproj",
+ "projectName": "App2",
+ "projectPath": "C:\\Users\\2121088\\source\\repos\\WinUI3Project\\App2\\App2\\App2.csproj",
+ "packagesPath": "C:\\Users\\2121088\\.nuget\\packages\\",
+ "outputPath": "C:\\Users\\2121088\\source\\repos\\WinUI3Project\\App2\\App2\\obj\\",
+ "projectStyle": "PackageReference",
+ "fallbackFolders": [
+ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
+ ],
+ "configFilePaths": [
+ "C:\\Users\\2121088\\AppData\\Roaming\\NuGet\\NuGet.Config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
+ ],
+ "originalTargetFrameworks": [
+ "net6.0-windows10.0.19041.0"
+ ],
+ "sources": {
+ "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
+ "C:\\Program Files\\dotnet\\library-packs": {},
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "net6.0-windows10.0.19041": {
+ "targetAlias": "net6.0-windows10.0.19041.0",
+ "projectReferences": {}
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ }
+ },
+ "frameworks": {
+ "net6.0-windows10.0.19041": {
+ "targetAlias": "net6.0-windows10.0.19041.0",
+ "dependencies": {
+ "Microsoft.Windows.SDK.BuildTools": {
+ "target": "Package",
+ "version": "[10.0.22000.194, )"
+ },
+ "Microsoft.WindowsAppSDK": {
+ "target": "Package",
+ "version": "[1.1.3, )"
+ },
+ "MySql.Data": {
+ "target": "Package",
+ "version": "[9.1.0, )"
+ }
+ },
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48",
+ "net481"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "downloadDependencies": [
+ {
+ "name": "Microsoft.AspNetCore.App.Runtime.win-arm64",
+ "version": "[6.0.8, 6.0.8]"
+ },
+ {
+ "name": "Microsoft.AspNetCore.App.Runtime.win-x64",
+ "version": "[6.0.8, 6.0.8]"
+ },
+ {
+ "name": "Microsoft.AspNetCore.App.Runtime.win-x86",
+ "version": "[6.0.8, 6.0.8]"
+ },
+ {
+ "name": "Microsoft.NETCore.App.Runtime.win-arm64",
+ "version": "[6.0.8, 6.0.8]"
+ },
+ {
+ "name": "Microsoft.NETCore.App.Runtime.win-x64",
+ "version": "[6.0.8, 6.0.8]"
+ },
+ {
+ "name": "Microsoft.NETCore.App.Runtime.win-x86",
+ "version": "[6.0.8, 6.0.8]"
+ },
+ {
+ "name": "Microsoft.Windows.SDK.NET.Ref",
+ "version": "[10.0.19041.26, 10.0.19041.26]"
+ },
+ {
+ "name": "Microsoft.WindowsDesktop.App.Runtime.win-arm64",
+ "version": "[6.0.8, 6.0.8]"
+ },
+ {
+ "name": "Microsoft.WindowsDesktop.App.Runtime.win-x64",
+ "version": "[6.0.8, 6.0.8]"
+ },
+ {
+ "name": "Microsoft.WindowsDesktop.App.Runtime.win-x86",
+ "version": "[6.0.8, 6.0.8]"
+ }
+ ],
+ "frameworkReferences": {
+ "Microsoft.NETCore.App": {
+ "privateAssets": "all"
+ },
+ "Microsoft.Windows.SDK.NET.Ref": {
+ "privateAssets": "all"
+ }
+ },
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.400\\RuntimeIdentifierGraph.json"
+ }
+ },
+ "runtimes": {
+ "win10-arm64": {
+ "#import": []
+ },
+ "win10-x64": {
+ "#import": []
+ },
+ "win10-x86": {
+ "#import": []
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/App2/App2/obj/App2.csproj.nuget.g.props b/App2/App2/obj/App2.csproj.nuget.g.props
new file mode 100644
index 0000000..0a989b2
--- /dev/null
+++ b/App2/App2/obj/App2.csproj.nuget.g.props
@@ -0,0 +1,23 @@
+
+
+
+ True
+ NuGet
+ $(MSBuildThisFileDirectory)project.assets.json
+ $(UserProfile)\.nuget\packages\
+ C:\Users\2121088\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages
+ PackageReference
+ 6.3.0
+
+
+
+
+
+
+
+
+
+
+ C:\Users\2121088\.nuget\packages\microsoft.windowsappsdk\1.1.3
+
+
\ No newline at end of file
diff --git a/App2/App2/obj/App2.csproj.nuget.g.targets b/App2/App2/obj/App2.csproj.nuget.g.targets
new file mode 100644
index 0000000..eff3ad8
--- /dev/null
+++ b/App2/App2/obj/App2.csproj.nuget.g.targets
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/App2/App2/obj/Debug/net6.0-windows10.0.19041.0/App.g.cs b/App2/App2/obj/Debug/net6.0-windows10.0.19041.0/App.g.cs
new file mode 100644
index 0000000..e69de29
diff --git a/App2/App2/obj/Debug/net6.0-windows10.0.19041.0/App.g.i.cs b/App2/App2/obj/Debug/net6.0-windows10.0.19041.0/App.g.i.cs
new file mode 100644
index 0000000..06dd654
--- /dev/null
+++ b/App2/App2/obj/Debug/net6.0-windows10.0.19041.0/App.g.i.cs
@@ -0,0 +1,74 @@
+#pragma checksum "C:\Users\2121088\source\repos\App2\App2\App.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "880A1BD3AC378572B7EB067944B65BC032A8E5C400009AA03B7E1C64C0B75032"
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+
+namespace App2
+{
+#if !DISABLE_XAML_GENERATED_MAIN
+ ///
+ /// Program class
+ ///
+ public static class Program
+ {
+ [global::System.Runtime.InteropServices.DllImport("Microsoft.ui.xaml.dll")]
+ private static extern void XamlCheckProcessRequirements();
+
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 1.0.0.0")]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.STAThreadAttribute]
+ static void Main(string[] args)
+ {
+ XamlCheckProcessRequirements();
+
+ global::WinRT.ComWrappersSupport.InitializeComWrappers();
+ global::Microsoft.UI.Xaml.Application.Start((p) => {
+ var context = new global::Microsoft.UI.Dispatching.DispatcherQueueSynchronizationContext(global::Microsoft.UI.Dispatching.DispatcherQueue.GetForCurrentThread());
+ global::System.Threading.SynchronizationContext.SetSynchronizationContext(context);
+ new App();
+ });
+ }
+ }
+#endif
+
+ partial class App : global::Microsoft.UI.Xaml.Application
+ {
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 1.0.0.0")]
+ private bool _contentLoaded;
+ ///
+ /// InitializeComponent()
+ ///
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 1.0.0.0")]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public void InitializeComponent()
+ {
+ if (_contentLoaded)
+ return;
+
+ _contentLoaded = true;
+
+ global::System.Uri resourceLocator = new global::System.Uri("ms-appx:///App.xaml");
+ global::Microsoft.UI.Xaml.Application.LoadComponent(this, resourceLocator);
+
+#if DEBUG && !DISABLE_XAML_GENERATED_BINDING_DEBUG_OUTPUT
+ DebugSettings.BindingFailed += (sender, args) =>
+ {
+ global::System.Diagnostics.Debug.WriteLine(args.Message);
+ };
+#endif
+#if DEBUG && !DISABLE_XAML_GENERATED_BREAK_ON_UNHANDLED_EXCEPTION
+ UnhandledException += (sender, e) =>
+ {
+ if (global::System.Diagnostics.Debugger.IsAttached) global::System.Diagnostics.Debugger.Break();
+ };
+#endif
+ }
+ }
+}
+
diff --git a/App2/App2/obj/Debug/net6.0-windows10.0.19041.0/App2.AssemblyInfo.cs b/App2/App2/obj/Debug/net6.0-windows10.0.19041.0/App2.AssemblyInfo.cs
new file mode 100644
index 0000000..5b2de5c
--- /dev/null
+++ b/App2/App2/obj/Debug/net6.0-windows10.0.19041.0/App2.AssemblyInfo.cs
@@ -0,0 +1,25 @@
+//------------------------------------------------------------------------------
+//
+// Ce code a été généré par un outil.
+// Version du runtime :4.0.30319.42000
+//
+// Les modifications apportées à ce fichier peuvent provoquer un comportement incorrect et seront perdues si
+// le code est régénéré.
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Reflection;
+
+[assembly: System.Reflection.AssemblyCompanyAttribute("App2")]
+[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
+[assembly: System.Reflection.AssemblyProductAttribute("App2")]
+[assembly: System.Reflection.AssemblyTitleAttribute("App2")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
+[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows10.0.19041.0")]
+[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows10.0.17763.0")]
+
+// Généré par la classe MSBuild WriteCodeFragment.
+
diff --git a/App2/App2/obj/Debug/net6.0-windows10.0.19041.0/App2.AssemblyInfoInputs.cache b/App2/App2/obj/Debug/net6.0-windows10.0.19041.0/App2.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..2c6f2db
--- /dev/null
+++ b/App2/App2/obj/Debug/net6.0-windows10.0.19041.0/App2.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+56f956f1671a31a5c5e8eef5cb7f481c0fbc595924154f732df0b444443eb9b0
diff --git a/App2/App2/obj/Debug/net6.0-windows10.0.19041.0/App2.GeneratedMSBuildEditorConfig.editorconfig b/App2/App2/obj/Debug/net6.0-windows10.0.19041.0/App2.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..18f500b
--- /dev/null
+++ b/App2/App2/obj/Debug/net6.0-windows10.0.19041.0/App2.GeneratedMSBuildEditorConfig.editorconfig
@@ -0,0 +1,23 @@
+is_global = true
+build_property.TargetFramework = net6.0-windows10.0.19041.0
+build_property.TargetPlatformMinVersion = 10.0.17763.0
+build_property.UsingMicrosoftNETSdkWeb =
+build_property.ProjectTypeGuids = 9A19103F-16F7-4668-BE54-9A1E7A4F7556
+build_property.InvariantGlobalization =
+build_property.PlatformNeutralAssembly =
+build_property.EnforceExtendedAnalyzerRules =
+build_property._SupportedPlatformList = Linux,macOS,Windows
+build_property.RootNamespace = App2
+build_property.ProjectDir = C:\Users\2121088\source\repos\App2\App2\
+build_property.EnableComHosting =
+build_property.EnableGeneratedComInterfaceComImportInterop =
+build_property.CsWinRTAotOptimizerEnabled = true
+build_property.CsWinRTAotExportsEnabled =
+build_property.CsWinRTRcwFactoryFallbackGeneratorForceOptIn =
+build_property.CsWinRTRcwFactoryFallbackGeneratorForceOptOut =
+build_property.CsWinRTCcwLookupTableGeneratorEnabled = true
+build_property.CsWinRTMergeReferencedActivationFactories =
+build_property.CsWinRTAotWarningLevel =
+build_property.CsWinRTUseWindowsUIXamlProjections = false
+build_property.EffectiveAnalysisLevelStyle = 6.0
+build_property.EnableCodeStyleSeverity =
diff --git a/App2/App2/obj/Debug/net6.0-windows10.0.19041.0/App2.assets.cache b/App2/App2/obj/Debug/net6.0-windows10.0.19041.0/App2.assets.cache
new file mode 100644
index 0000000..bcf9c18
Binary files /dev/null and b/App2/App2/obj/Debug/net6.0-windows10.0.19041.0/App2.assets.cache differ
diff --git a/App2/App2/obj/Debug/net6.0-windows10.0.19041.0/App2.csproj.AssemblyReference.cache b/App2/App2/obj/Debug/net6.0-windows10.0.19041.0/App2.csproj.AssemblyReference.cache
new file mode 100644
index 0000000..ff44d00
Binary files /dev/null and b/App2/App2/obj/Debug/net6.0-windows10.0.19041.0/App2.csproj.AssemblyReference.cache differ
diff --git a/App2/App2/obj/Debug/net6.0-windows10.0.19041.0/MainWindow.g.cs b/App2/App2/obj/Debug/net6.0-windows10.0.19041.0/MainWindow.g.cs
new file mode 100644
index 0000000..e69de29
diff --git a/App2/App2/obj/Debug/net6.0-windows10.0.19041.0/MainWindow.g.i.cs b/App2/App2/obj/Debug/net6.0-windows10.0.19041.0/MainWindow.g.i.cs
new file mode 100644
index 0000000..2631c15
--- /dev/null
+++ b/App2/App2/obj/Debug/net6.0-windows10.0.19041.0/MainWindow.g.i.cs
@@ -0,0 +1,47 @@
+#pragma checksum "C:\Users\2121088\source\repos\App2\App2\MainWindow.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "159CC1E15A9B4A46A9B649C061DAE702C1A013A2E8E83F520CD87779AB5B1DB8"
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+namespace App2
+{
+ partial class MainWindow : global::Microsoft.UI.Xaml.Window
+ {
+
+
+#pragma warning disable 0169 // Proactively suppress unused/uninitialized field warning in case they aren't used, for things like x:Name
+#pragma warning disable 0649
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 1.0.0.0")]
+ private global::Microsoft.UI.Xaml.Controls.Button myButton;
+#pragma warning restore 0649
+#pragma warning restore 0169
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 1.0.0.0")]
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent()
+ ///
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 1.0.0.0")]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public void InitializeComponent()
+ {
+ if (_contentLoaded)
+ return;
+
+ _contentLoaded = true;
+
+ global::System.Uri resourceLocator = new global::System.Uri("ms-appx:///MainWindow.xaml");
+ global::Microsoft.UI.Xaml.Application.LoadComponent(this, resourceLocator, global::Microsoft.UI.Xaml.Controls.Primitives.ComponentResourceLocation.Application);
+ }
+
+ partial void UnloadObject(global::Microsoft.UI.Xaml.DependencyObject unloadableObject);
+
+ }
+}
+
+
diff --git a/App2/App2/obj/Debug/net6.0-windows10.0.19041.0/XamlSaveStateFile.xml b/App2/App2/obj/Debug/net6.0-windows10.0.19041.0/XamlSaveStateFile.xml
new file mode 100644
index 0000000..bbcb559
--- /dev/null
+++ b/App2/App2/obj/Debug/net6.0-windows10.0.19041.0/XamlSaveStateFile.xml
@@ -0,0 +1 @@
+EnableXBindDiagnostics, EnableDefaultValidationContextGeneration, EnableWin32Codegen, UsingCSWinRT
\ No newline at end of file
diff --git a/App2/App2/obj/Debug/net6.0-windows10.0.19041.0/XamlTypeInfo.g.cs b/App2/App2/obj/Debug/net6.0-windows10.0.19041.0/XamlTypeInfo.g.cs
new file mode 100644
index 0000000..e69de29
diff --git a/App2/App2/obj/Release/net6.0-windows10.0.19041.0/App.g.cs b/App2/App2/obj/Release/net6.0-windows10.0.19041.0/App.g.cs
new file mode 100644
index 0000000..e69de29
diff --git a/App2/App2/obj/Release/net6.0-windows10.0.19041.0/App.g.i.cs b/App2/App2/obj/Release/net6.0-windows10.0.19041.0/App.g.i.cs
new file mode 100644
index 0000000..06dd654
--- /dev/null
+++ b/App2/App2/obj/Release/net6.0-windows10.0.19041.0/App.g.i.cs
@@ -0,0 +1,74 @@
+#pragma checksum "C:\Users\2121088\source\repos\App2\App2\App.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "880A1BD3AC378572B7EB067944B65BC032A8E5C400009AA03B7E1C64C0B75032"
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+
+namespace App2
+{
+#if !DISABLE_XAML_GENERATED_MAIN
+ ///
+ /// Program class
+ ///
+ public static class Program
+ {
+ [global::System.Runtime.InteropServices.DllImport("Microsoft.ui.xaml.dll")]
+ private static extern void XamlCheckProcessRequirements();
+
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 1.0.0.0")]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.STAThreadAttribute]
+ static void Main(string[] args)
+ {
+ XamlCheckProcessRequirements();
+
+ global::WinRT.ComWrappersSupport.InitializeComWrappers();
+ global::Microsoft.UI.Xaml.Application.Start((p) => {
+ var context = new global::Microsoft.UI.Dispatching.DispatcherQueueSynchronizationContext(global::Microsoft.UI.Dispatching.DispatcherQueue.GetForCurrentThread());
+ global::System.Threading.SynchronizationContext.SetSynchronizationContext(context);
+ new App();
+ });
+ }
+ }
+#endif
+
+ partial class App : global::Microsoft.UI.Xaml.Application
+ {
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 1.0.0.0")]
+ private bool _contentLoaded;
+ ///
+ /// InitializeComponent()
+ ///
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 1.0.0.0")]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public void InitializeComponent()
+ {
+ if (_contentLoaded)
+ return;
+
+ _contentLoaded = true;
+
+ global::System.Uri resourceLocator = new global::System.Uri("ms-appx:///App.xaml");
+ global::Microsoft.UI.Xaml.Application.LoadComponent(this, resourceLocator);
+
+#if DEBUG && !DISABLE_XAML_GENERATED_BINDING_DEBUG_OUTPUT
+ DebugSettings.BindingFailed += (sender, args) =>
+ {
+ global::System.Diagnostics.Debug.WriteLine(args.Message);
+ };
+#endif
+#if DEBUG && !DISABLE_XAML_GENERATED_BREAK_ON_UNHANDLED_EXCEPTION
+ UnhandledException += (sender, e) =>
+ {
+ if (global::System.Diagnostics.Debugger.IsAttached) global::System.Diagnostics.Debugger.Break();
+ };
+#endif
+ }
+ }
+}
+
diff --git a/App2/App2/obj/Release/net6.0-windows10.0.19041.0/App2.AssemblyInfo.cs b/App2/App2/obj/Release/net6.0-windows10.0.19041.0/App2.AssemblyInfo.cs
new file mode 100644
index 0000000..6b91a9b
--- /dev/null
+++ b/App2/App2/obj/Release/net6.0-windows10.0.19041.0/App2.AssemblyInfo.cs
@@ -0,0 +1,25 @@
+//------------------------------------------------------------------------------
+//
+// Ce code a été généré par un outil.
+// Version du runtime :4.0.30319.42000
+//
+// Les modifications apportées à ce fichier peuvent provoquer un comportement incorrect et seront perdues si
+// le code est régénéré.
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Reflection;
+
+[assembly: System.Reflection.AssemblyCompanyAttribute("App2")]
+[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
+[assembly: System.Reflection.AssemblyProductAttribute("App2")]
+[assembly: System.Reflection.AssemblyTitleAttribute("App2")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
+[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows10.0.19041.0")]
+[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows10.0.17763.0")]
+
+// Généré par la classe MSBuild WriteCodeFragment.
+
diff --git a/App2/App2/obj/Release/net6.0-windows10.0.19041.0/App2.AssemblyInfoInputs.cache b/App2/App2/obj/Release/net6.0-windows10.0.19041.0/App2.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..37dbd43
--- /dev/null
+++ b/App2/App2/obj/Release/net6.0-windows10.0.19041.0/App2.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+928f7ac63eb8c124d4a9d8feb722146f53bd544c6cf503f5314bde9cffd14ecd
diff --git a/App2/App2/obj/Release/net6.0-windows10.0.19041.0/App2.GeneratedMSBuildEditorConfig.editorconfig b/App2/App2/obj/Release/net6.0-windows10.0.19041.0/App2.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..18f500b
--- /dev/null
+++ b/App2/App2/obj/Release/net6.0-windows10.0.19041.0/App2.GeneratedMSBuildEditorConfig.editorconfig
@@ -0,0 +1,23 @@
+is_global = true
+build_property.TargetFramework = net6.0-windows10.0.19041.0
+build_property.TargetPlatformMinVersion = 10.0.17763.0
+build_property.UsingMicrosoftNETSdkWeb =
+build_property.ProjectTypeGuids = 9A19103F-16F7-4668-BE54-9A1E7A4F7556
+build_property.InvariantGlobalization =
+build_property.PlatformNeutralAssembly =
+build_property.EnforceExtendedAnalyzerRules =
+build_property._SupportedPlatformList = Linux,macOS,Windows
+build_property.RootNamespace = App2
+build_property.ProjectDir = C:\Users\2121088\source\repos\App2\App2\
+build_property.EnableComHosting =
+build_property.EnableGeneratedComInterfaceComImportInterop =
+build_property.CsWinRTAotOptimizerEnabled = true
+build_property.CsWinRTAotExportsEnabled =
+build_property.CsWinRTRcwFactoryFallbackGeneratorForceOptIn =
+build_property.CsWinRTRcwFactoryFallbackGeneratorForceOptOut =
+build_property.CsWinRTCcwLookupTableGeneratorEnabled = true
+build_property.CsWinRTMergeReferencedActivationFactories =
+build_property.CsWinRTAotWarningLevel =
+build_property.CsWinRTUseWindowsUIXamlProjections = false
+build_property.EffectiveAnalysisLevelStyle = 6.0
+build_property.EnableCodeStyleSeverity =
diff --git a/App2/App2/obj/Release/net6.0-windows10.0.19041.0/App2.assets.cache b/App2/App2/obj/Release/net6.0-windows10.0.19041.0/App2.assets.cache
new file mode 100644
index 0000000..05ebc77
Binary files /dev/null and b/App2/App2/obj/Release/net6.0-windows10.0.19041.0/App2.assets.cache differ
diff --git a/App2/App2/obj/Release/net6.0-windows10.0.19041.0/App2.csproj.AssemblyReference.cache b/App2/App2/obj/Release/net6.0-windows10.0.19041.0/App2.csproj.AssemblyReference.cache
new file mode 100644
index 0000000..ff44d00
Binary files /dev/null and b/App2/App2/obj/Release/net6.0-windows10.0.19041.0/App2.csproj.AssemblyReference.cache differ
diff --git a/App2/App2/obj/Release/net6.0-windows10.0.19041.0/MainWindow.g.cs b/App2/App2/obj/Release/net6.0-windows10.0.19041.0/MainWindow.g.cs
new file mode 100644
index 0000000..e69de29
diff --git a/App2/App2/obj/Release/net6.0-windows10.0.19041.0/MainWindow.g.i.cs b/App2/App2/obj/Release/net6.0-windows10.0.19041.0/MainWindow.g.i.cs
new file mode 100644
index 0000000..2631c15
--- /dev/null
+++ b/App2/App2/obj/Release/net6.0-windows10.0.19041.0/MainWindow.g.i.cs
@@ -0,0 +1,47 @@
+#pragma checksum "C:\Users\2121088\source\repos\App2\App2\MainWindow.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "159CC1E15A9B4A46A9B649C061DAE702C1A013A2E8E83F520CD87779AB5B1DB8"
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+namespace App2
+{
+ partial class MainWindow : global::Microsoft.UI.Xaml.Window
+ {
+
+
+#pragma warning disable 0169 // Proactively suppress unused/uninitialized field warning in case they aren't used, for things like x:Name
+#pragma warning disable 0649
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 1.0.0.0")]
+ private global::Microsoft.UI.Xaml.Controls.Button myButton;
+#pragma warning restore 0649
+#pragma warning restore 0169
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 1.0.0.0")]
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent()
+ ///
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 1.0.0.0")]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public void InitializeComponent()
+ {
+ if (_contentLoaded)
+ return;
+
+ _contentLoaded = true;
+
+ global::System.Uri resourceLocator = new global::System.Uri("ms-appx:///MainWindow.xaml");
+ global::Microsoft.UI.Xaml.Application.LoadComponent(this, resourceLocator, global::Microsoft.UI.Xaml.Controls.Primitives.ComponentResourceLocation.Application);
+ }
+
+ partial void UnloadObject(global::Microsoft.UI.Xaml.DependencyObject unloadableObject);
+
+ }
+}
+
+
diff --git a/App2/App2/obj/Release/net6.0-windows10.0.19041.0/XamlSaveStateFile.xml b/App2/App2/obj/Release/net6.0-windows10.0.19041.0/XamlSaveStateFile.xml
new file mode 100644
index 0000000..e4db1f4
--- /dev/null
+++ b/App2/App2/obj/Release/net6.0-windows10.0.19041.0/XamlSaveStateFile.xml
@@ -0,0 +1 @@
+EnableDefaultValidationContextGeneration, EnableWin32Codegen, UsingCSWinRT
\ No newline at end of file
diff --git a/App2/App2/obj/Release/net6.0-windows10.0.19041.0/XamlTypeInfo.g.cs b/App2/App2/obj/Release/net6.0-windows10.0.19041.0/XamlTypeInfo.g.cs
new file mode 100644
index 0000000..e69de29
diff --git a/App2/App2/obj/Win32/Debug/net6.0-windows10.0.19041.0/App.g.cs b/App2/App2/obj/Win32/Debug/net6.0-windows10.0.19041.0/App.g.cs
new file mode 100644
index 0000000..e69de29
diff --git a/App2/App2/obj/Win32/Debug/net6.0-windows10.0.19041.0/App.g.i.cs b/App2/App2/obj/Win32/Debug/net6.0-windows10.0.19041.0/App.g.i.cs
new file mode 100644
index 0000000..06dd654
--- /dev/null
+++ b/App2/App2/obj/Win32/Debug/net6.0-windows10.0.19041.0/App.g.i.cs
@@ -0,0 +1,74 @@
+#pragma checksum "C:\Users\2121088\source\repos\App2\App2\App.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "880A1BD3AC378572B7EB067944B65BC032A8E5C400009AA03B7E1C64C0B75032"
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+
+namespace App2
+{
+#if !DISABLE_XAML_GENERATED_MAIN
+ ///
+ /// Program class
+ ///
+ public static class Program
+ {
+ [global::System.Runtime.InteropServices.DllImport("Microsoft.ui.xaml.dll")]
+ private static extern void XamlCheckProcessRequirements();
+
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 1.0.0.0")]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.STAThreadAttribute]
+ static void Main(string[] args)
+ {
+ XamlCheckProcessRequirements();
+
+ global::WinRT.ComWrappersSupport.InitializeComWrappers();
+ global::Microsoft.UI.Xaml.Application.Start((p) => {
+ var context = new global::Microsoft.UI.Dispatching.DispatcherQueueSynchronizationContext(global::Microsoft.UI.Dispatching.DispatcherQueue.GetForCurrentThread());
+ global::System.Threading.SynchronizationContext.SetSynchronizationContext(context);
+ new App();
+ });
+ }
+ }
+#endif
+
+ partial class App : global::Microsoft.UI.Xaml.Application
+ {
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 1.0.0.0")]
+ private bool _contentLoaded;
+ ///
+ /// InitializeComponent()
+ ///
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 1.0.0.0")]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public void InitializeComponent()
+ {
+ if (_contentLoaded)
+ return;
+
+ _contentLoaded = true;
+
+ global::System.Uri resourceLocator = new global::System.Uri("ms-appx:///App.xaml");
+ global::Microsoft.UI.Xaml.Application.LoadComponent(this, resourceLocator);
+
+#if DEBUG && !DISABLE_XAML_GENERATED_BINDING_DEBUG_OUTPUT
+ DebugSettings.BindingFailed += (sender, args) =>
+ {
+ global::System.Diagnostics.Debug.WriteLine(args.Message);
+ };
+#endif
+#if DEBUG && !DISABLE_XAML_GENERATED_BREAK_ON_UNHANDLED_EXCEPTION
+ UnhandledException += (sender, e) =>
+ {
+ if (global::System.Diagnostics.Debugger.IsAttached) global::System.Diagnostics.Debugger.Break();
+ };
+#endif
+ }
+ }
+}
+
diff --git a/App2/App2/obj/Win32/Debug/net6.0-windows10.0.19041.0/App2.AssemblyInfo.cs b/App2/App2/obj/Win32/Debug/net6.0-windows10.0.19041.0/App2.AssemblyInfo.cs
new file mode 100644
index 0000000..5b2de5c
--- /dev/null
+++ b/App2/App2/obj/Win32/Debug/net6.0-windows10.0.19041.0/App2.AssemblyInfo.cs
@@ -0,0 +1,25 @@
+//------------------------------------------------------------------------------
+//
+// Ce code a été généré par un outil.
+// Version du runtime :4.0.30319.42000
+//
+// Les modifications apportées à ce fichier peuvent provoquer un comportement incorrect et seront perdues si
+// le code est régénéré.
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Reflection;
+
+[assembly: System.Reflection.AssemblyCompanyAttribute("App2")]
+[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
+[assembly: System.Reflection.AssemblyProductAttribute("App2")]
+[assembly: System.Reflection.AssemblyTitleAttribute("App2")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
+[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows10.0.19041.0")]
+[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows10.0.17763.0")]
+
+// Généré par la classe MSBuild WriteCodeFragment.
+
diff --git a/App2/App2/obj/Win32/Debug/net6.0-windows10.0.19041.0/App2.AssemblyInfoInputs.cache b/App2/App2/obj/Win32/Debug/net6.0-windows10.0.19041.0/App2.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..2c6f2db
--- /dev/null
+++ b/App2/App2/obj/Win32/Debug/net6.0-windows10.0.19041.0/App2.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+56f956f1671a31a5c5e8eef5cb7f481c0fbc595924154f732df0b444443eb9b0
diff --git a/App2/App2/obj/Win32/Debug/net6.0-windows10.0.19041.0/App2.GeneratedMSBuildEditorConfig.editorconfig b/App2/App2/obj/Win32/Debug/net6.0-windows10.0.19041.0/App2.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..18f500b
--- /dev/null
+++ b/App2/App2/obj/Win32/Debug/net6.0-windows10.0.19041.0/App2.GeneratedMSBuildEditorConfig.editorconfig
@@ -0,0 +1,23 @@
+is_global = true
+build_property.TargetFramework = net6.0-windows10.0.19041.0
+build_property.TargetPlatformMinVersion = 10.0.17763.0
+build_property.UsingMicrosoftNETSdkWeb =
+build_property.ProjectTypeGuids = 9A19103F-16F7-4668-BE54-9A1E7A4F7556
+build_property.InvariantGlobalization =
+build_property.PlatformNeutralAssembly =
+build_property.EnforceExtendedAnalyzerRules =
+build_property._SupportedPlatformList = Linux,macOS,Windows
+build_property.RootNamespace = App2
+build_property.ProjectDir = C:\Users\2121088\source\repos\App2\App2\
+build_property.EnableComHosting =
+build_property.EnableGeneratedComInterfaceComImportInterop =
+build_property.CsWinRTAotOptimizerEnabled = true
+build_property.CsWinRTAotExportsEnabled =
+build_property.CsWinRTRcwFactoryFallbackGeneratorForceOptIn =
+build_property.CsWinRTRcwFactoryFallbackGeneratorForceOptOut =
+build_property.CsWinRTCcwLookupTableGeneratorEnabled = true
+build_property.CsWinRTMergeReferencedActivationFactories =
+build_property.CsWinRTAotWarningLevel =
+build_property.CsWinRTUseWindowsUIXamlProjections = false
+build_property.EffectiveAnalysisLevelStyle = 6.0
+build_property.EnableCodeStyleSeverity =
diff --git a/App2/App2/obj/Win32/Debug/net6.0-windows10.0.19041.0/App2.assets.cache b/App2/App2/obj/Win32/Debug/net6.0-windows10.0.19041.0/App2.assets.cache
new file mode 100644
index 0000000..1636f86
Binary files /dev/null and b/App2/App2/obj/Win32/Debug/net6.0-windows10.0.19041.0/App2.assets.cache differ
diff --git a/App2/App2/obj/Win32/Debug/net6.0-windows10.0.19041.0/App2.csproj.AssemblyReference.cache b/App2/App2/obj/Win32/Debug/net6.0-windows10.0.19041.0/App2.csproj.AssemblyReference.cache
new file mode 100644
index 0000000..ff44d00
Binary files /dev/null and b/App2/App2/obj/Win32/Debug/net6.0-windows10.0.19041.0/App2.csproj.AssemblyReference.cache differ
diff --git a/App2/App2/obj/Win32/Debug/net6.0-windows10.0.19041.0/MainWindow.g.cs b/App2/App2/obj/Win32/Debug/net6.0-windows10.0.19041.0/MainWindow.g.cs
new file mode 100644
index 0000000..e69de29
diff --git a/App2/App2/obj/Win32/Debug/net6.0-windows10.0.19041.0/MainWindow.g.i.cs b/App2/App2/obj/Win32/Debug/net6.0-windows10.0.19041.0/MainWindow.g.i.cs
new file mode 100644
index 0000000..2631c15
--- /dev/null
+++ b/App2/App2/obj/Win32/Debug/net6.0-windows10.0.19041.0/MainWindow.g.i.cs
@@ -0,0 +1,47 @@
+#pragma checksum "C:\Users\2121088\source\repos\App2\App2\MainWindow.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "159CC1E15A9B4A46A9B649C061DAE702C1A013A2E8E83F520CD87779AB5B1DB8"
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+namespace App2
+{
+ partial class MainWindow : global::Microsoft.UI.Xaml.Window
+ {
+
+
+#pragma warning disable 0169 // Proactively suppress unused/uninitialized field warning in case they aren't used, for things like x:Name
+#pragma warning disable 0649
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 1.0.0.0")]
+ private global::Microsoft.UI.Xaml.Controls.Button myButton;
+#pragma warning restore 0649
+#pragma warning restore 0169
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 1.0.0.0")]
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent()
+ ///
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 1.0.0.0")]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public void InitializeComponent()
+ {
+ if (_contentLoaded)
+ return;
+
+ _contentLoaded = true;
+
+ global::System.Uri resourceLocator = new global::System.Uri("ms-appx:///MainWindow.xaml");
+ global::Microsoft.UI.Xaml.Application.LoadComponent(this, resourceLocator, global::Microsoft.UI.Xaml.Controls.Primitives.ComponentResourceLocation.Application);
+ }
+
+ partial void UnloadObject(global::Microsoft.UI.Xaml.DependencyObject unloadableObject);
+
+ }
+}
+
+
diff --git a/App2/App2/obj/Win32/Debug/net6.0-windows10.0.19041.0/XamlSaveStateFile.xml b/App2/App2/obj/Win32/Debug/net6.0-windows10.0.19041.0/XamlSaveStateFile.xml
new file mode 100644
index 0000000..2b5f0be
--- /dev/null
+++ b/App2/App2/obj/Win32/Debug/net6.0-windows10.0.19041.0/XamlSaveStateFile.xml
@@ -0,0 +1 @@
+EnableXBindDiagnostics, EnableDefaultValidationContextGeneration, EnableWin32Codegen, UsingCSWinRT
\ No newline at end of file
diff --git a/App2/App2/obj/Win32/Debug/net6.0-windows10.0.19041.0/XamlTypeInfo.g.cs b/App2/App2/obj/Win32/Debug/net6.0-windows10.0.19041.0/XamlTypeInfo.g.cs
new file mode 100644
index 0000000..e69de29
diff --git a/App2/App2/obj/Win32/Release/net6.0-windows10.0.19041.0/App.g.cs b/App2/App2/obj/Win32/Release/net6.0-windows10.0.19041.0/App.g.cs
new file mode 100644
index 0000000..e69de29
diff --git a/App2/App2/obj/Win32/Release/net6.0-windows10.0.19041.0/App.g.i.cs b/App2/App2/obj/Win32/Release/net6.0-windows10.0.19041.0/App.g.i.cs
new file mode 100644
index 0000000..06dd654
--- /dev/null
+++ b/App2/App2/obj/Win32/Release/net6.0-windows10.0.19041.0/App.g.i.cs
@@ -0,0 +1,74 @@
+#pragma checksum "C:\Users\2121088\source\repos\App2\App2\App.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "880A1BD3AC378572B7EB067944B65BC032A8E5C400009AA03B7E1C64C0B75032"
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+
+namespace App2
+{
+#if !DISABLE_XAML_GENERATED_MAIN
+ ///
+ /// Program class
+ ///
+ public static class Program
+ {
+ [global::System.Runtime.InteropServices.DllImport("Microsoft.ui.xaml.dll")]
+ private static extern void XamlCheckProcessRequirements();
+
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 1.0.0.0")]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.STAThreadAttribute]
+ static void Main(string[] args)
+ {
+ XamlCheckProcessRequirements();
+
+ global::WinRT.ComWrappersSupport.InitializeComWrappers();
+ global::Microsoft.UI.Xaml.Application.Start((p) => {
+ var context = new global::Microsoft.UI.Dispatching.DispatcherQueueSynchronizationContext(global::Microsoft.UI.Dispatching.DispatcherQueue.GetForCurrentThread());
+ global::System.Threading.SynchronizationContext.SetSynchronizationContext(context);
+ new App();
+ });
+ }
+ }
+#endif
+
+ partial class App : global::Microsoft.UI.Xaml.Application
+ {
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 1.0.0.0")]
+ private bool _contentLoaded;
+ ///
+ /// InitializeComponent()
+ ///
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 1.0.0.0")]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public void InitializeComponent()
+ {
+ if (_contentLoaded)
+ return;
+
+ _contentLoaded = true;
+
+ global::System.Uri resourceLocator = new global::System.Uri("ms-appx:///App.xaml");
+ global::Microsoft.UI.Xaml.Application.LoadComponent(this, resourceLocator);
+
+#if DEBUG && !DISABLE_XAML_GENERATED_BINDING_DEBUG_OUTPUT
+ DebugSettings.BindingFailed += (sender, args) =>
+ {
+ global::System.Diagnostics.Debug.WriteLine(args.Message);
+ };
+#endif
+#if DEBUG && !DISABLE_XAML_GENERATED_BREAK_ON_UNHANDLED_EXCEPTION
+ UnhandledException += (sender, e) =>
+ {
+ if (global::System.Diagnostics.Debugger.IsAttached) global::System.Diagnostics.Debugger.Break();
+ };
+#endif
+ }
+ }
+}
+
diff --git a/App2/App2/obj/Win32/Release/net6.0-windows10.0.19041.0/App2.AssemblyInfo.cs b/App2/App2/obj/Win32/Release/net6.0-windows10.0.19041.0/App2.AssemblyInfo.cs
new file mode 100644
index 0000000..6b91a9b
--- /dev/null
+++ b/App2/App2/obj/Win32/Release/net6.0-windows10.0.19041.0/App2.AssemblyInfo.cs
@@ -0,0 +1,25 @@
+//------------------------------------------------------------------------------
+//
+// Ce code a été généré par un outil.
+// Version du runtime :4.0.30319.42000
+//
+// Les modifications apportées à ce fichier peuvent provoquer un comportement incorrect et seront perdues si
+// le code est régénéré.
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Reflection;
+
+[assembly: System.Reflection.AssemblyCompanyAttribute("App2")]
+[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
+[assembly: System.Reflection.AssemblyProductAttribute("App2")]
+[assembly: System.Reflection.AssemblyTitleAttribute("App2")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
+[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows10.0.19041.0")]
+[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows10.0.17763.0")]
+
+// Généré par la classe MSBuild WriteCodeFragment.
+
diff --git a/App2/App2/obj/Win32/Release/net6.0-windows10.0.19041.0/App2.AssemblyInfoInputs.cache b/App2/App2/obj/Win32/Release/net6.0-windows10.0.19041.0/App2.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..37dbd43
--- /dev/null
+++ b/App2/App2/obj/Win32/Release/net6.0-windows10.0.19041.0/App2.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+928f7ac63eb8c124d4a9d8feb722146f53bd544c6cf503f5314bde9cffd14ecd
diff --git a/App2/App2/obj/Win32/Release/net6.0-windows10.0.19041.0/App2.GeneratedMSBuildEditorConfig.editorconfig b/App2/App2/obj/Win32/Release/net6.0-windows10.0.19041.0/App2.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..18f500b
--- /dev/null
+++ b/App2/App2/obj/Win32/Release/net6.0-windows10.0.19041.0/App2.GeneratedMSBuildEditorConfig.editorconfig
@@ -0,0 +1,23 @@
+is_global = true
+build_property.TargetFramework = net6.0-windows10.0.19041.0
+build_property.TargetPlatformMinVersion = 10.0.17763.0
+build_property.UsingMicrosoftNETSdkWeb =
+build_property.ProjectTypeGuids = 9A19103F-16F7-4668-BE54-9A1E7A4F7556
+build_property.InvariantGlobalization =
+build_property.PlatformNeutralAssembly =
+build_property.EnforceExtendedAnalyzerRules =
+build_property._SupportedPlatformList = Linux,macOS,Windows
+build_property.RootNamespace = App2
+build_property.ProjectDir = C:\Users\2121088\source\repos\App2\App2\
+build_property.EnableComHosting =
+build_property.EnableGeneratedComInterfaceComImportInterop =
+build_property.CsWinRTAotOptimizerEnabled = true
+build_property.CsWinRTAotExportsEnabled =
+build_property.CsWinRTRcwFactoryFallbackGeneratorForceOptIn =
+build_property.CsWinRTRcwFactoryFallbackGeneratorForceOptOut =
+build_property.CsWinRTCcwLookupTableGeneratorEnabled = true
+build_property.CsWinRTMergeReferencedActivationFactories =
+build_property.CsWinRTAotWarningLevel =
+build_property.CsWinRTUseWindowsUIXamlProjections = false
+build_property.EffectiveAnalysisLevelStyle = 6.0
+build_property.EnableCodeStyleSeverity =
diff --git a/App2/App2/obj/Win32/Release/net6.0-windows10.0.19041.0/App2.assets.cache b/App2/App2/obj/Win32/Release/net6.0-windows10.0.19041.0/App2.assets.cache
new file mode 100644
index 0000000..173d389
Binary files /dev/null and b/App2/App2/obj/Win32/Release/net6.0-windows10.0.19041.0/App2.assets.cache differ
diff --git a/App2/App2/obj/Win32/Release/net6.0-windows10.0.19041.0/App2.csproj.AssemblyReference.cache b/App2/App2/obj/Win32/Release/net6.0-windows10.0.19041.0/App2.csproj.AssemblyReference.cache
new file mode 100644
index 0000000..ff44d00
Binary files /dev/null and b/App2/App2/obj/Win32/Release/net6.0-windows10.0.19041.0/App2.csproj.AssemblyReference.cache differ
diff --git a/App2/App2/obj/Win32/Release/net6.0-windows10.0.19041.0/MainWindow.g.cs b/App2/App2/obj/Win32/Release/net6.0-windows10.0.19041.0/MainWindow.g.cs
new file mode 100644
index 0000000..e69de29
diff --git a/App2/App2/obj/Win32/Release/net6.0-windows10.0.19041.0/MainWindow.g.i.cs b/App2/App2/obj/Win32/Release/net6.0-windows10.0.19041.0/MainWindow.g.i.cs
new file mode 100644
index 0000000..2631c15
--- /dev/null
+++ b/App2/App2/obj/Win32/Release/net6.0-windows10.0.19041.0/MainWindow.g.i.cs
@@ -0,0 +1,47 @@
+#pragma checksum "C:\Users\2121088\source\repos\App2\App2\MainWindow.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "159CC1E15A9B4A46A9B649C061DAE702C1A013A2E8E83F520CD87779AB5B1DB8"
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+namespace App2
+{
+ partial class MainWindow : global::Microsoft.UI.Xaml.Window
+ {
+
+
+#pragma warning disable 0169 // Proactively suppress unused/uninitialized field warning in case they aren't used, for things like x:Name
+#pragma warning disable 0649
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 1.0.0.0")]
+ private global::Microsoft.UI.Xaml.Controls.Button myButton;
+#pragma warning restore 0649
+#pragma warning restore 0169
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 1.0.0.0")]
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent()
+ ///
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 1.0.0.0")]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public void InitializeComponent()
+ {
+ if (_contentLoaded)
+ return;
+
+ _contentLoaded = true;
+
+ global::System.Uri resourceLocator = new global::System.Uri("ms-appx:///MainWindow.xaml");
+ global::Microsoft.UI.Xaml.Application.LoadComponent(this, resourceLocator, global::Microsoft.UI.Xaml.Controls.Primitives.ComponentResourceLocation.Application);
+ }
+
+ partial void UnloadObject(global::Microsoft.UI.Xaml.DependencyObject unloadableObject);
+
+ }
+}
+
+
diff --git a/App2/App2/obj/Win32/Release/net6.0-windows10.0.19041.0/XamlSaveStateFile.xml b/App2/App2/obj/Win32/Release/net6.0-windows10.0.19041.0/XamlSaveStateFile.xml
new file mode 100644
index 0000000..fa14687
--- /dev/null
+++ b/App2/App2/obj/Win32/Release/net6.0-windows10.0.19041.0/XamlSaveStateFile.xml
@@ -0,0 +1 @@
+EnableDefaultValidationContextGeneration, EnableWin32Codegen, UsingCSWinRT
\ No newline at end of file
diff --git a/App2/App2/obj/Win32/Release/net6.0-windows10.0.19041.0/XamlTypeInfo.g.cs b/App2/App2/obj/Win32/Release/net6.0-windows10.0.19041.0/XamlTypeInfo.g.cs
new file mode 100644
index 0000000..e69de29
diff --git a/App2/App2/obj/project.assets.json b/App2/App2/obj/project.assets.json
new file mode 100644
index 0000000..789c798
--- /dev/null
+++ b/App2/App2/obj/project.assets.json
@@ -0,0 +1,4451 @@
+{
+ "version": 3,
+ "targets": {
+ "net6.0-windows10.0.19041": {
+ "BouncyCastle.Cryptography/2.3.1": {
+ "type": "package",
+ "compile": {
+ "lib/net6.0/BouncyCastle.Cryptography.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/BouncyCastle.Cryptography.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Google.Protobuf/3.26.1": {
+ "type": "package",
+ "compile": {
+ "lib/net5.0/Google.Protobuf.dll": {
+ "related": ".pdb;.xml"
+ }
+ },
+ "runtime": {
+ "lib/net5.0/Google.Protobuf.dll": {
+ "related": ".pdb;.xml"
+ }
+ }
+ },
+ "K4os.Compression.LZ4/1.3.8": {
+ "type": "package",
+ "compile": {
+ "lib/net6.0/K4os.Compression.LZ4.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/K4os.Compression.LZ4.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "K4os.Compression.LZ4.Streams/1.3.8": {
+ "type": "package",
+ "dependencies": {
+ "K4os.Compression.LZ4": "1.3.8",
+ "K4os.Hash.xxHash": "1.0.8",
+ "System.IO.Pipelines": "6.0.3"
+ },
+ "compile": {
+ "lib/net6.0/K4os.Compression.LZ4.Streams.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/K4os.Compression.LZ4.Streams.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "K4os.Hash.xxHash/1.0.8": {
+ "type": "package",
+ "compile": {
+ "lib/net6.0/K4os.Hash.xxHash.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/K4os.Hash.xxHash.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Microsoft.NETCore.Platforms/1.1.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/_._": {}
+ }
+ },
+ "Microsoft.NETCore.Targets/1.1.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/_._": {}
+ }
+ },
+ "Microsoft.Windows.SDK.BuildTools/10.0.22000.194": {
+ "type": "package",
+ "build": {
+ "build/Microsoft.Windows.SDK.BuildTools.props": {},
+ "build/Microsoft.Windows.SDK.BuildTools.targets": {}
+ }
+ },
+ "Microsoft.WindowsAppSDK/1.1.3": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Windows.SDK.BuildTools": "10.0.22000.194"
+ },
+ "compile": {
+ "lib/net5.0-windows10.0.18362.0/Microsoft.InteractiveExperiences.Projection.dll": {
+ "related": ".xml"
+ },
+ "lib/net5.0-windows10.0.18362.0/Microsoft.WinUI.dll": {
+ "related": ".xml"
+ },
+ "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.AppLifecycle.Projection.dll": {
+ "related": ".xml"
+ },
+ "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Projection.dll": {},
+ "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.DynamicDependency.Projection.dll": {
+ "related": ".xml"
+ },
+ "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.Resources.Projection.dll": {
+ "related": ".xml"
+ },
+ "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.WindowsAppRuntime.Projection.dll": {
+ "related": ".xml"
+ },
+ "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.PushNotifications.Projection.dll": {},
+ "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.System.Power.Projection.dll": {
+ "related": ".xml"
+ },
+ "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.System.Projection.dll": {},
+ "lib/net5.0-windows10.0.18362.0/Microsoft.WindowsAppRuntime.Bootstrap.Net.dll": {}
+ },
+ "runtime": {
+ "lib/net5.0-windows10.0.18362.0/Microsoft.InteractiveExperiences.Projection.dll": {
+ "related": ".xml"
+ },
+ "lib/net5.0-windows10.0.18362.0/Microsoft.WinUI.dll": {
+ "related": ".xml"
+ },
+ "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.AppLifecycle.Projection.dll": {
+ "related": ".xml"
+ },
+ "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Projection.dll": {},
+ "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.DynamicDependency.Projection.dll": {
+ "related": ".xml"
+ },
+ "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.Resources.Projection.dll": {
+ "related": ".xml"
+ },
+ "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.WindowsAppRuntime.Projection.dll": {
+ "related": ".xml"
+ },
+ "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.PushNotifications.Projection.dll": {},
+ "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.System.Power.Projection.dll": {
+ "related": ".xml"
+ },
+ "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.System.Projection.dll": {},
+ "lib/net5.0-windows10.0.18362.0/Microsoft.WindowsAppRuntime.Bootstrap.Net.dll": {}
+ },
+ "build": {
+ "buildTransitive/Microsoft.WindowsAppSDK.props": {},
+ "buildTransitive/Microsoft.WindowsAppSDK.targets": {}
+ },
+ "runtimeTargets": {
+ "runtimes/win10-arm64/native/Microsoft.WindowsAppRuntime.Bootstrap.dll": {
+ "assetType": "native",
+ "rid": "win10-arm64"
+ },
+ "runtimes/win10-x64/native/Microsoft.WindowsAppRuntime.Bootstrap.dll": {
+ "assetType": "native",
+ "rid": "win10-x64"
+ },
+ "runtimes/win10-x86/native/Microsoft.WindowsAppRuntime.Bootstrap.dll": {
+ "assetType": "native",
+ "rid": "win10-x86"
+ }
+ }
+ },
+ "MySql.Data/9.1.0": {
+ "type": "package",
+ "dependencies": {
+ "BouncyCastle.Cryptography": "2.3.1",
+ "Google.Protobuf": "3.26.1",
+ "K4os.Compression.LZ4.Streams": "1.3.8",
+ "System.Buffers": "4.5.1",
+ "System.Configuration.ConfigurationManager": "8.0.0",
+ "System.Diagnostics.DiagnosticSource": "8.0.1",
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0",
+ "System.Runtime.Loader": "4.3.0",
+ "System.Security.Permissions": "8.0.0",
+ "System.Text.Encoding.CodePages": "8.0.0",
+ "System.Text.Json": "8.0.4",
+ "System.Threading.Tasks.Extensions": "4.5.4",
+ "ZstdSharp.Port": "0.8.0"
+ },
+ "compile": {
+ "lib/net6.0/MySql.Data.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/MySql.Data.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/win-x64/native/comerr64.dll": {
+ "assetType": "native",
+ "rid": "win-x64"
+ },
+ "runtimes/win-x64/native/gssapi64.dll": {
+ "assetType": "native",
+ "rid": "win-x64"
+ },
+ "runtimes/win-x64/native/k5sprt64.dll": {
+ "assetType": "native",
+ "rid": "win-x64"
+ },
+ "runtimes/win-x64/native/krb5_64.dll": {
+ "assetType": "native",
+ "rid": "win-x64"
+ },
+ "runtimes/win-x64/native/krbcc64.dll": {
+ "assetType": "native",
+ "rid": "win-x64"
+ }
+ }
+ },
+ "System.Buffers/4.5.1": {
+ "type": "package",
+ "compile": {
+ "ref/netcoreapp2.0/_._": {}
+ },
+ "runtime": {
+ "lib/netcoreapp2.0/_._": {}
+ }
+ },
+ "System.Configuration.ConfigurationManager/8.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Security.Cryptography.ProtectedData": "8.0.0"
+ },
+ "compile": {
+ "lib/net6.0/System.Configuration.ConfigurationManager.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/System.Configuration.ConfigurationManager.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "System.Diagnostics.DiagnosticSource/8.0.1": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0"
+ },
+ "compile": {
+ "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "System.IO/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/System.IO.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.IO.Pipelines/6.0.3": {
+ "type": "package",
+ "compile": {
+ "lib/net6.0/System.IO.Pipelines.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/System.IO.Pipelines.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/netcoreapp3.1/_._": {}
+ }
+ },
+ "System.Reflection/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/System.Reflection.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Reflection.Primitives/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.0/System.Reflection.Primitives.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Runtime/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/System.Runtime.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Runtime.CompilerServices.Unsafe/6.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/netcoreapp3.1/_._": {}
+ }
+ },
+ "System.Runtime.Loader/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/System.Runtime.Loader.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard1.5/System.Runtime.Loader.dll": {}
+ }
+ },
+ "System.Security.Cryptography.ProtectedData/8.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "System.Security.Permissions/8.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Windows.Extensions": "8.0.0"
+ },
+ "compile": {
+ "lib/net6.0/System.Security.Permissions.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/System.Security.Permissions.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "System.Text.Encoding/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Text.Encoding.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Text.Encoding.CodePages/8.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0"
+ },
+ "compile": {
+ "lib/net6.0/System.Text.Encoding.CodePages.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/System.Text.Encoding.CodePages.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ },
+ "runtimeTargets": {
+ "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
+ "System.Text.Encodings.Web/8.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0"
+ },
+ "compile": {
+ "lib/net6.0/System.Text.Encodings.Web.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/System.Text.Encodings.Web.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ },
+ "runtimeTargets": {
+ "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll": {
+ "assetType": "runtime",
+ "rid": "browser"
+ }
+ }
+ },
+ "System.Text.Json/8.0.4": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0",
+ "System.Text.Encodings.Web": "8.0.0"
+ },
+ "compile": {
+ "lib/net6.0/System.Text.Json.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/System.Text.Json.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/System.Text.Json.targets": {}
+ }
+ },
+ "System.Threading.Tasks/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Threading.Tasks.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Threading.Tasks.Extensions/4.5.4": {
+ "type": "package",
+ "compile": {
+ "ref/netcoreapp2.1/_._": {}
+ },
+ "runtime": {
+ "lib/netcoreapp2.1/_._": {}
+ }
+ },
+ "System.Windows.Extensions/8.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/net6.0/System.Windows.Extensions.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/System.Windows.Extensions.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
+ "ZstdSharp.Port/0.8.0": {
+ "type": "package",
+ "compile": {
+ "lib/net6.0/ZstdSharp.dll": {}
+ },
+ "runtime": {
+ "lib/net6.0/ZstdSharp.dll": {}
+ }
+ }
+ },
+ "net6.0-windows10.0.19041/win10-arm64": {
+ "BouncyCastle.Cryptography/2.3.1": {
+ "type": "package",
+ "compile": {
+ "lib/net6.0/BouncyCastle.Cryptography.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/BouncyCastle.Cryptography.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Google.Protobuf/3.26.1": {
+ "type": "package",
+ "compile": {
+ "lib/net5.0/Google.Protobuf.dll": {
+ "related": ".pdb;.xml"
+ }
+ },
+ "runtime": {
+ "lib/net5.0/Google.Protobuf.dll": {
+ "related": ".pdb;.xml"
+ }
+ }
+ },
+ "K4os.Compression.LZ4/1.3.8": {
+ "type": "package",
+ "compile": {
+ "lib/net6.0/K4os.Compression.LZ4.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/K4os.Compression.LZ4.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "K4os.Compression.LZ4.Streams/1.3.8": {
+ "type": "package",
+ "dependencies": {
+ "K4os.Compression.LZ4": "1.3.8",
+ "K4os.Hash.xxHash": "1.0.8",
+ "System.IO.Pipelines": "6.0.3"
+ },
+ "compile": {
+ "lib/net6.0/K4os.Compression.LZ4.Streams.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/K4os.Compression.LZ4.Streams.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "K4os.Hash.xxHash/1.0.8": {
+ "type": "package",
+ "compile": {
+ "lib/net6.0/K4os.Hash.xxHash.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/K4os.Hash.xxHash.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Microsoft.NETCore.Platforms/1.1.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/_._": {}
+ }
+ },
+ "Microsoft.NETCore.Targets/1.1.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/_._": {}
+ }
+ },
+ "Microsoft.Windows.SDK.BuildTools/10.0.22000.194": {
+ "type": "package",
+ "build": {
+ "build/Microsoft.Windows.SDK.BuildTools.props": {},
+ "build/Microsoft.Windows.SDK.BuildTools.targets": {}
+ }
+ },
+ "Microsoft.WindowsAppSDK/1.1.3": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Windows.SDK.BuildTools": "10.0.22000.194"
+ },
+ "compile": {
+ "lib/net5.0-windows10.0.18362.0/Microsoft.InteractiveExperiences.Projection.dll": {
+ "related": ".xml"
+ },
+ "lib/net5.0-windows10.0.18362.0/Microsoft.WinUI.dll": {
+ "related": ".xml"
+ },
+ "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.AppLifecycle.Projection.dll": {
+ "related": ".xml"
+ },
+ "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Projection.dll": {},
+ "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.DynamicDependency.Projection.dll": {
+ "related": ".xml"
+ },
+ "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.Resources.Projection.dll": {
+ "related": ".xml"
+ },
+ "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.WindowsAppRuntime.Projection.dll": {
+ "related": ".xml"
+ },
+ "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.PushNotifications.Projection.dll": {},
+ "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.System.Power.Projection.dll": {
+ "related": ".xml"
+ },
+ "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.System.Projection.dll": {},
+ "lib/net5.0-windows10.0.18362.0/Microsoft.WindowsAppRuntime.Bootstrap.Net.dll": {}
+ },
+ "runtime": {
+ "lib/net5.0-windows10.0.18362.0/Microsoft.InteractiveExperiences.Projection.dll": {
+ "related": ".xml"
+ },
+ "lib/net5.0-windows10.0.18362.0/Microsoft.WinUI.dll": {
+ "related": ".xml"
+ },
+ "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.AppLifecycle.Projection.dll": {
+ "related": ".xml"
+ },
+ "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Projection.dll": {},
+ "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.DynamicDependency.Projection.dll": {
+ "related": ".xml"
+ },
+ "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.Resources.Projection.dll": {
+ "related": ".xml"
+ },
+ "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.WindowsAppRuntime.Projection.dll": {
+ "related": ".xml"
+ },
+ "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.PushNotifications.Projection.dll": {},
+ "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.System.Power.Projection.dll": {
+ "related": ".xml"
+ },
+ "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.System.Projection.dll": {},
+ "lib/net5.0-windows10.0.18362.0/Microsoft.WindowsAppRuntime.Bootstrap.Net.dll": {}
+ },
+ "native": {
+ "runtimes/win10-arm64/native/Microsoft.WindowsAppRuntime.Bootstrap.dll": {}
+ },
+ "build": {
+ "buildTransitive/Microsoft.WindowsAppSDK.props": {},
+ "buildTransitive/Microsoft.WindowsAppSDK.targets": {}
+ }
+ },
+ "MySql.Data/9.1.0": {
+ "type": "package",
+ "dependencies": {
+ "BouncyCastle.Cryptography": "2.3.1",
+ "Google.Protobuf": "3.26.1",
+ "K4os.Compression.LZ4.Streams": "1.3.8",
+ "System.Buffers": "4.5.1",
+ "System.Configuration.ConfigurationManager": "8.0.0",
+ "System.Diagnostics.DiagnosticSource": "8.0.1",
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0",
+ "System.Runtime.Loader": "4.3.0",
+ "System.Security.Permissions": "8.0.0",
+ "System.Text.Encoding.CodePages": "8.0.0",
+ "System.Text.Json": "8.0.4",
+ "System.Threading.Tasks.Extensions": "4.5.4",
+ "ZstdSharp.Port": "0.8.0"
+ },
+ "compile": {
+ "lib/net6.0/MySql.Data.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/MySql.Data.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "runtime.any.System.IO/4.3.0": {
+ "type": "package",
+ "compile": {
+ "ref/netstandard/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.5/System.IO.dll": {}
+ }
+ },
+ "runtime.any.System.Reflection/4.3.0": {
+ "type": "package",
+ "compile": {
+ "ref/netstandard/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.5/System.Reflection.dll": {}
+ }
+ },
+ "runtime.any.System.Reflection.Primitives/4.3.0": {
+ "type": "package",
+ "compile": {
+ "ref/netstandard/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Reflection.Primitives.dll": {}
+ }
+ },
+ "runtime.any.System.Runtime/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Private.Uri": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.5/System.Runtime.dll": {}
+ }
+ },
+ "runtime.any.System.Text.Encoding/4.3.0": {
+ "type": "package",
+ "compile": {
+ "ref/netstandard/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Text.Encoding.dll": {}
+ }
+ },
+ "runtime.any.System.Threading.Tasks/4.3.0": {
+ "type": "package",
+ "compile": {
+ "ref/netstandard/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Threading.Tasks.dll": {}
+ }
+ },
+ "runtime.win7.System.Private.Uri/4.3.0": {
+ "type": "package",
+ "compile": {
+ "ref/netstandard/_._": {}
+ },
+ "runtime": {
+ "runtimes/win/lib/netstandard1.0/System.Private.Uri.dll": {}
+ }
+ },
+ "System.Buffers/4.5.1": {
+ "type": "package",
+ "compile": {
+ "ref/netcoreapp2.0/_._": {}
+ },
+ "runtime": {
+ "lib/netcoreapp2.0/_._": {}
+ }
+ },
+ "System.Configuration.ConfigurationManager/8.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Security.Cryptography.ProtectedData": "8.0.0"
+ },
+ "compile": {
+ "lib/net6.0/System.Configuration.ConfigurationManager.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/System.Configuration.ConfigurationManager.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "System.Diagnostics.DiagnosticSource/8.0.1": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0"
+ },
+ "compile": {
+ "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "System.IO/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "runtime.any.System.IO": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/System.IO.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.IO.Pipelines/6.0.3": {
+ "type": "package",
+ "compile": {
+ "lib/net6.0/System.IO.Pipelines.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/System.IO.Pipelines.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/netcoreapp3.1/_._": {}
+ }
+ },
+ "System.Private.Uri/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "runtime.win7.System.Private.Uri": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard/_._": {}
+ }
+ },
+ "System.Reflection/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "runtime.any.System.Reflection": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/System.Reflection.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Reflection.Primitives/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "runtime.any.System.Reflection.Primitives": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.0/System.Reflection.Primitives.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Runtime/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "runtime.any.System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/System.Runtime.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Runtime.CompilerServices.Unsafe/6.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/netcoreapp3.1/_._": {}
+ }
+ },
+ "System.Runtime.Loader/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/System.Runtime.Loader.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard1.5/System.Runtime.Loader.dll": {}
+ }
+ },
+ "System.Security.Cryptography.ProtectedData/8.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "System.Security.Permissions/8.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Windows.Extensions": "8.0.0"
+ },
+ "compile": {
+ "lib/net6.0/System.Security.Permissions.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/System.Security.Permissions.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "System.Text.Encoding/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "runtime.any.System.Text.Encoding": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Text.Encoding.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Text.Encoding.CodePages/8.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0"
+ },
+ "compile": {
+ "lib/net6.0/System.Text.Encoding.CodePages.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "System.Text.Encodings.Web/8.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0"
+ },
+ "compile": {
+ "lib/net6.0/System.Text.Encodings.Web.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/System.Text.Encodings.Web.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "System.Text.Json/8.0.4": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0",
+ "System.Text.Encodings.Web": "8.0.0"
+ },
+ "compile": {
+ "lib/net6.0/System.Text.Json.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/System.Text.Json.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/System.Text.Json.targets": {}
+ }
+ },
+ "System.Threading.Tasks/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "runtime.any.System.Threading.Tasks": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Threading.Tasks.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Threading.Tasks.Extensions/4.5.4": {
+ "type": "package",
+ "compile": {
+ "ref/netcoreapp2.1/_._": {}
+ },
+ "runtime": {
+ "lib/netcoreapp2.1/_._": {}
+ }
+ },
+ "System.Windows.Extensions/8.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/net6.0/System.Windows.Extensions.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "ZstdSharp.Port/0.8.0": {
+ "type": "package",
+ "compile": {
+ "lib/net6.0/ZstdSharp.dll": {}
+ },
+ "runtime": {
+ "lib/net6.0/ZstdSharp.dll": {}
+ }
+ }
+ },
+ "net6.0-windows10.0.19041/win10-x64": {
+ "BouncyCastle.Cryptography/2.3.1": {
+ "type": "package",
+ "compile": {
+ "lib/net6.0/BouncyCastle.Cryptography.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/BouncyCastle.Cryptography.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Google.Protobuf/3.26.1": {
+ "type": "package",
+ "compile": {
+ "lib/net5.0/Google.Protobuf.dll": {
+ "related": ".pdb;.xml"
+ }
+ },
+ "runtime": {
+ "lib/net5.0/Google.Protobuf.dll": {
+ "related": ".pdb;.xml"
+ }
+ }
+ },
+ "K4os.Compression.LZ4/1.3.8": {
+ "type": "package",
+ "compile": {
+ "lib/net6.0/K4os.Compression.LZ4.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/K4os.Compression.LZ4.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "K4os.Compression.LZ4.Streams/1.3.8": {
+ "type": "package",
+ "dependencies": {
+ "K4os.Compression.LZ4": "1.3.8",
+ "K4os.Hash.xxHash": "1.0.8",
+ "System.IO.Pipelines": "6.0.3"
+ },
+ "compile": {
+ "lib/net6.0/K4os.Compression.LZ4.Streams.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/K4os.Compression.LZ4.Streams.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "K4os.Hash.xxHash/1.0.8": {
+ "type": "package",
+ "compile": {
+ "lib/net6.0/K4os.Hash.xxHash.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/K4os.Hash.xxHash.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Microsoft.NETCore.Platforms/1.1.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/_._": {}
+ }
+ },
+ "Microsoft.NETCore.Targets/1.1.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/_._": {}
+ }
+ },
+ "Microsoft.Windows.SDK.BuildTools/10.0.22000.194": {
+ "type": "package",
+ "build": {
+ "build/Microsoft.Windows.SDK.BuildTools.props": {},
+ "build/Microsoft.Windows.SDK.BuildTools.targets": {}
+ }
+ },
+ "Microsoft.WindowsAppSDK/1.1.3": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Windows.SDK.BuildTools": "10.0.22000.194"
+ },
+ "compile": {
+ "lib/net5.0-windows10.0.18362.0/Microsoft.InteractiveExperiences.Projection.dll": {
+ "related": ".xml"
+ },
+ "lib/net5.0-windows10.0.18362.0/Microsoft.WinUI.dll": {
+ "related": ".xml"
+ },
+ "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.AppLifecycle.Projection.dll": {
+ "related": ".xml"
+ },
+ "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Projection.dll": {},
+ "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.DynamicDependency.Projection.dll": {
+ "related": ".xml"
+ },
+ "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.Resources.Projection.dll": {
+ "related": ".xml"
+ },
+ "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.WindowsAppRuntime.Projection.dll": {
+ "related": ".xml"
+ },
+ "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.PushNotifications.Projection.dll": {},
+ "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.System.Power.Projection.dll": {
+ "related": ".xml"
+ },
+ "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.System.Projection.dll": {},
+ "lib/net5.0-windows10.0.18362.0/Microsoft.WindowsAppRuntime.Bootstrap.Net.dll": {}
+ },
+ "runtime": {
+ "lib/net5.0-windows10.0.18362.0/Microsoft.InteractiveExperiences.Projection.dll": {
+ "related": ".xml"
+ },
+ "lib/net5.0-windows10.0.18362.0/Microsoft.WinUI.dll": {
+ "related": ".xml"
+ },
+ "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.AppLifecycle.Projection.dll": {
+ "related": ".xml"
+ },
+ "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Projection.dll": {},
+ "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.DynamicDependency.Projection.dll": {
+ "related": ".xml"
+ },
+ "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.Resources.Projection.dll": {
+ "related": ".xml"
+ },
+ "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.WindowsAppRuntime.Projection.dll": {
+ "related": ".xml"
+ },
+ "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.PushNotifications.Projection.dll": {},
+ "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.System.Power.Projection.dll": {
+ "related": ".xml"
+ },
+ "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.System.Projection.dll": {},
+ "lib/net5.0-windows10.0.18362.0/Microsoft.WindowsAppRuntime.Bootstrap.Net.dll": {}
+ },
+ "native": {
+ "runtimes/win10-x64/native/Microsoft.WindowsAppRuntime.Bootstrap.dll": {}
+ },
+ "build": {
+ "buildTransitive/Microsoft.WindowsAppSDK.props": {},
+ "buildTransitive/Microsoft.WindowsAppSDK.targets": {}
+ }
+ },
+ "MySql.Data/9.1.0": {
+ "type": "package",
+ "dependencies": {
+ "BouncyCastle.Cryptography": "2.3.1",
+ "Google.Protobuf": "3.26.1",
+ "K4os.Compression.LZ4.Streams": "1.3.8",
+ "System.Buffers": "4.5.1",
+ "System.Configuration.ConfigurationManager": "8.0.0",
+ "System.Diagnostics.DiagnosticSource": "8.0.1",
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0",
+ "System.Runtime.Loader": "4.3.0",
+ "System.Security.Permissions": "8.0.0",
+ "System.Text.Encoding.CodePages": "8.0.0",
+ "System.Text.Json": "8.0.4",
+ "System.Threading.Tasks.Extensions": "4.5.4",
+ "ZstdSharp.Port": "0.8.0"
+ },
+ "compile": {
+ "lib/net6.0/MySql.Data.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/MySql.Data.dll": {
+ "related": ".xml"
+ }
+ },
+ "native": {
+ "runtimes/win-x64/native/comerr64.dll": {},
+ "runtimes/win-x64/native/gssapi64.dll": {},
+ "runtimes/win-x64/native/k5sprt64.dll": {},
+ "runtimes/win-x64/native/krb5_64.dll": {},
+ "runtimes/win-x64/native/krbcc64.dll": {}
+ }
+ },
+ "runtime.any.System.IO/4.3.0": {
+ "type": "package",
+ "compile": {
+ "ref/netstandard/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.5/System.IO.dll": {}
+ }
+ },
+ "runtime.any.System.Reflection/4.3.0": {
+ "type": "package",
+ "compile": {
+ "ref/netstandard/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.5/System.Reflection.dll": {}
+ }
+ },
+ "runtime.any.System.Reflection.Primitives/4.3.0": {
+ "type": "package",
+ "compile": {
+ "ref/netstandard/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Reflection.Primitives.dll": {}
+ }
+ },
+ "runtime.any.System.Runtime/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Private.Uri": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.5/System.Runtime.dll": {}
+ }
+ },
+ "runtime.any.System.Text.Encoding/4.3.0": {
+ "type": "package",
+ "compile": {
+ "ref/netstandard/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Text.Encoding.dll": {}
+ }
+ },
+ "runtime.any.System.Threading.Tasks/4.3.0": {
+ "type": "package",
+ "compile": {
+ "ref/netstandard/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Threading.Tasks.dll": {}
+ }
+ },
+ "runtime.win7.System.Private.Uri/4.3.0": {
+ "type": "package",
+ "compile": {
+ "ref/netstandard/_._": {}
+ },
+ "runtime": {
+ "runtimes/win/lib/netstandard1.0/System.Private.Uri.dll": {}
+ }
+ },
+ "System.Buffers/4.5.1": {
+ "type": "package",
+ "compile": {
+ "ref/netcoreapp2.0/_._": {}
+ },
+ "runtime": {
+ "lib/netcoreapp2.0/_._": {}
+ }
+ },
+ "System.Configuration.ConfigurationManager/8.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Security.Cryptography.ProtectedData": "8.0.0"
+ },
+ "compile": {
+ "lib/net6.0/System.Configuration.ConfigurationManager.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/System.Configuration.ConfigurationManager.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "System.Diagnostics.DiagnosticSource/8.0.1": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0"
+ },
+ "compile": {
+ "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "System.IO/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "runtime.any.System.IO": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/System.IO.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.IO.Pipelines/6.0.3": {
+ "type": "package",
+ "compile": {
+ "lib/net6.0/System.IO.Pipelines.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/System.IO.Pipelines.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/netcoreapp3.1/_._": {}
+ }
+ },
+ "System.Private.Uri/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "runtime.win7.System.Private.Uri": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard/_._": {}
+ }
+ },
+ "System.Reflection/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "runtime.any.System.Reflection": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/System.Reflection.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Reflection.Primitives/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "runtime.any.System.Reflection.Primitives": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.0/System.Reflection.Primitives.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Runtime/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "runtime.any.System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/System.Runtime.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Runtime.CompilerServices.Unsafe/6.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/netcoreapp3.1/_._": {}
+ }
+ },
+ "System.Runtime.Loader/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/System.Runtime.Loader.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard1.5/System.Runtime.Loader.dll": {}
+ }
+ },
+ "System.Security.Cryptography.ProtectedData/8.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "System.Security.Permissions/8.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Windows.Extensions": "8.0.0"
+ },
+ "compile": {
+ "lib/net6.0/System.Security.Permissions.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/System.Security.Permissions.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "System.Text.Encoding/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "runtime.any.System.Text.Encoding": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Text.Encoding.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Text.Encoding.CodePages/8.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0"
+ },
+ "compile": {
+ "lib/net6.0/System.Text.Encoding.CodePages.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "System.Text.Encodings.Web/8.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0"
+ },
+ "compile": {
+ "lib/net6.0/System.Text.Encodings.Web.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/System.Text.Encodings.Web.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "System.Text.Json/8.0.4": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0",
+ "System.Text.Encodings.Web": "8.0.0"
+ },
+ "compile": {
+ "lib/net6.0/System.Text.Json.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/System.Text.Json.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/System.Text.Json.targets": {}
+ }
+ },
+ "System.Threading.Tasks/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "runtime.any.System.Threading.Tasks": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Threading.Tasks.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Threading.Tasks.Extensions/4.5.4": {
+ "type": "package",
+ "compile": {
+ "ref/netcoreapp2.1/_._": {}
+ },
+ "runtime": {
+ "lib/netcoreapp2.1/_._": {}
+ }
+ },
+ "System.Windows.Extensions/8.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/net6.0/System.Windows.Extensions.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "ZstdSharp.Port/0.8.0": {
+ "type": "package",
+ "compile": {
+ "lib/net6.0/ZstdSharp.dll": {}
+ },
+ "runtime": {
+ "lib/net6.0/ZstdSharp.dll": {}
+ }
+ }
+ },
+ "net6.0-windows10.0.19041/win10-x86": {
+ "BouncyCastle.Cryptography/2.3.1": {
+ "type": "package",
+ "compile": {
+ "lib/net6.0/BouncyCastle.Cryptography.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/BouncyCastle.Cryptography.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Google.Protobuf/3.26.1": {
+ "type": "package",
+ "compile": {
+ "lib/net5.0/Google.Protobuf.dll": {
+ "related": ".pdb;.xml"
+ }
+ },
+ "runtime": {
+ "lib/net5.0/Google.Protobuf.dll": {
+ "related": ".pdb;.xml"
+ }
+ }
+ },
+ "K4os.Compression.LZ4/1.3.8": {
+ "type": "package",
+ "compile": {
+ "lib/net6.0/K4os.Compression.LZ4.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/K4os.Compression.LZ4.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "K4os.Compression.LZ4.Streams/1.3.8": {
+ "type": "package",
+ "dependencies": {
+ "K4os.Compression.LZ4": "1.3.8",
+ "K4os.Hash.xxHash": "1.0.8",
+ "System.IO.Pipelines": "6.0.3"
+ },
+ "compile": {
+ "lib/net6.0/K4os.Compression.LZ4.Streams.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/K4os.Compression.LZ4.Streams.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "K4os.Hash.xxHash/1.0.8": {
+ "type": "package",
+ "compile": {
+ "lib/net6.0/K4os.Hash.xxHash.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/K4os.Hash.xxHash.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Microsoft.NETCore.Platforms/1.1.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/_._": {}
+ }
+ },
+ "Microsoft.NETCore.Targets/1.1.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/_._": {}
+ }
+ },
+ "Microsoft.Windows.SDK.BuildTools/10.0.22000.194": {
+ "type": "package",
+ "build": {
+ "build/Microsoft.Windows.SDK.BuildTools.props": {},
+ "build/Microsoft.Windows.SDK.BuildTools.targets": {}
+ }
+ },
+ "Microsoft.WindowsAppSDK/1.1.3": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Windows.SDK.BuildTools": "10.0.22000.194"
+ },
+ "compile": {
+ "lib/net5.0-windows10.0.18362.0/Microsoft.InteractiveExperiences.Projection.dll": {
+ "related": ".xml"
+ },
+ "lib/net5.0-windows10.0.18362.0/Microsoft.WinUI.dll": {
+ "related": ".xml"
+ },
+ "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.AppLifecycle.Projection.dll": {
+ "related": ".xml"
+ },
+ "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Projection.dll": {},
+ "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.DynamicDependency.Projection.dll": {
+ "related": ".xml"
+ },
+ "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.Resources.Projection.dll": {
+ "related": ".xml"
+ },
+ "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.WindowsAppRuntime.Projection.dll": {
+ "related": ".xml"
+ },
+ "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.PushNotifications.Projection.dll": {},
+ "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.System.Power.Projection.dll": {
+ "related": ".xml"
+ },
+ "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.System.Projection.dll": {},
+ "lib/net5.0-windows10.0.18362.0/Microsoft.WindowsAppRuntime.Bootstrap.Net.dll": {}
+ },
+ "runtime": {
+ "lib/net5.0-windows10.0.18362.0/Microsoft.InteractiveExperiences.Projection.dll": {
+ "related": ".xml"
+ },
+ "lib/net5.0-windows10.0.18362.0/Microsoft.WinUI.dll": {
+ "related": ".xml"
+ },
+ "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.AppLifecycle.Projection.dll": {
+ "related": ".xml"
+ },
+ "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Projection.dll": {},
+ "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.DynamicDependency.Projection.dll": {
+ "related": ".xml"
+ },
+ "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.Resources.Projection.dll": {
+ "related": ".xml"
+ },
+ "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.WindowsAppRuntime.Projection.dll": {
+ "related": ".xml"
+ },
+ "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.PushNotifications.Projection.dll": {},
+ "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.System.Power.Projection.dll": {
+ "related": ".xml"
+ },
+ "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.System.Projection.dll": {},
+ "lib/net5.0-windows10.0.18362.0/Microsoft.WindowsAppRuntime.Bootstrap.Net.dll": {}
+ },
+ "native": {
+ "runtimes/win10-x86/native/Microsoft.WindowsAppRuntime.Bootstrap.dll": {}
+ },
+ "build": {
+ "buildTransitive/Microsoft.WindowsAppSDK.props": {},
+ "buildTransitive/Microsoft.WindowsAppSDK.targets": {}
+ }
+ },
+ "MySql.Data/9.1.0": {
+ "type": "package",
+ "dependencies": {
+ "BouncyCastle.Cryptography": "2.3.1",
+ "Google.Protobuf": "3.26.1",
+ "K4os.Compression.LZ4.Streams": "1.3.8",
+ "System.Buffers": "4.5.1",
+ "System.Configuration.ConfigurationManager": "8.0.0",
+ "System.Diagnostics.DiagnosticSource": "8.0.1",
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0",
+ "System.Runtime.Loader": "4.3.0",
+ "System.Security.Permissions": "8.0.0",
+ "System.Text.Encoding.CodePages": "8.0.0",
+ "System.Text.Json": "8.0.4",
+ "System.Threading.Tasks.Extensions": "4.5.4",
+ "ZstdSharp.Port": "0.8.0"
+ },
+ "compile": {
+ "lib/net6.0/MySql.Data.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/MySql.Data.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "runtime.any.System.IO/4.3.0": {
+ "type": "package",
+ "compile": {
+ "ref/netstandard/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.5/System.IO.dll": {}
+ }
+ },
+ "runtime.any.System.Reflection/4.3.0": {
+ "type": "package",
+ "compile": {
+ "ref/netstandard/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.5/System.Reflection.dll": {}
+ }
+ },
+ "runtime.any.System.Reflection.Primitives/4.3.0": {
+ "type": "package",
+ "compile": {
+ "ref/netstandard/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Reflection.Primitives.dll": {}
+ }
+ },
+ "runtime.any.System.Runtime/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Private.Uri": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.5/System.Runtime.dll": {}
+ }
+ },
+ "runtime.any.System.Text.Encoding/4.3.0": {
+ "type": "package",
+ "compile": {
+ "ref/netstandard/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Text.Encoding.dll": {}
+ }
+ },
+ "runtime.any.System.Threading.Tasks/4.3.0": {
+ "type": "package",
+ "compile": {
+ "ref/netstandard/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Threading.Tasks.dll": {}
+ }
+ },
+ "runtime.win7.System.Private.Uri/4.3.0": {
+ "type": "package",
+ "compile": {
+ "ref/netstandard/_._": {}
+ },
+ "runtime": {
+ "runtimes/win/lib/netstandard1.0/System.Private.Uri.dll": {}
+ }
+ },
+ "System.Buffers/4.5.1": {
+ "type": "package",
+ "compile": {
+ "ref/netcoreapp2.0/_._": {}
+ },
+ "runtime": {
+ "lib/netcoreapp2.0/_._": {}
+ }
+ },
+ "System.Configuration.ConfigurationManager/8.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Security.Cryptography.ProtectedData": "8.0.0"
+ },
+ "compile": {
+ "lib/net6.0/System.Configuration.ConfigurationManager.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/System.Configuration.ConfigurationManager.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "System.Diagnostics.DiagnosticSource/8.0.1": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0"
+ },
+ "compile": {
+ "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "System.IO/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "runtime.any.System.IO": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/System.IO.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.IO.Pipelines/6.0.3": {
+ "type": "package",
+ "compile": {
+ "lib/net6.0/System.IO.Pipelines.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/System.IO.Pipelines.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/netcoreapp3.1/_._": {}
+ }
+ },
+ "System.Private.Uri/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "runtime.win7.System.Private.Uri": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard/_._": {}
+ }
+ },
+ "System.Reflection/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "runtime.any.System.Reflection": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/System.Reflection.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Reflection.Primitives/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "runtime.any.System.Reflection.Primitives": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.0/System.Reflection.Primitives.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Runtime/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "runtime.any.System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/System.Runtime.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Runtime.CompilerServices.Unsafe/6.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/netcoreapp3.1/_._": {}
+ }
+ },
+ "System.Runtime.Loader/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/System.Runtime.Loader.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard1.5/System.Runtime.Loader.dll": {}
+ }
+ },
+ "System.Security.Cryptography.ProtectedData/8.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "System.Security.Permissions/8.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Windows.Extensions": "8.0.0"
+ },
+ "compile": {
+ "lib/net6.0/System.Security.Permissions.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/System.Security.Permissions.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "System.Text.Encoding/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "runtime.any.System.Text.Encoding": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Text.Encoding.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Text.Encoding.CodePages/8.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0"
+ },
+ "compile": {
+ "lib/net6.0/System.Text.Encoding.CodePages.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "System.Text.Encodings.Web/8.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0"
+ },
+ "compile": {
+ "lib/net6.0/System.Text.Encodings.Web.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/System.Text.Encodings.Web.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "System.Text.Json/8.0.4": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0",
+ "System.Text.Encodings.Web": "8.0.0"
+ },
+ "compile": {
+ "lib/net6.0/System.Text.Json.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/System.Text.Json.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/System.Text.Json.targets": {}
+ }
+ },
+ "System.Threading.Tasks/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "runtime.any.System.Threading.Tasks": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Threading.Tasks.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Threading.Tasks.Extensions/4.5.4": {
+ "type": "package",
+ "compile": {
+ "ref/netcoreapp2.1/_._": {}
+ },
+ "runtime": {
+ "lib/netcoreapp2.1/_._": {}
+ }
+ },
+ "System.Windows.Extensions/8.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/net6.0/System.Windows.Extensions.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "ZstdSharp.Port/0.8.0": {
+ "type": "package",
+ "compile": {
+ "lib/net6.0/ZstdSharp.dll": {}
+ },
+ "runtime": {
+ "lib/net6.0/ZstdSharp.dll": {}
+ }
+ }
+ }
+ },
+ "libraries": {
+ "BouncyCastle.Cryptography/2.3.1": {
+ "sha512": "buwoISwecYke3CmgG1AQSg+sNZjJeIb93vTAtJiHZX35hP/teYMxsfg0NDXGUKjGx6BKBTNKc77O2M3vKvlXZQ==",
+ "type": "package",
+ "path": "bouncycastle.cryptography/2.3.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.md",
+ "README.md",
+ "bouncycastle.cryptography.2.3.1.nupkg.sha512",
+ "bouncycastle.cryptography.nuspec",
+ "lib/net461/BouncyCastle.Cryptography.dll",
+ "lib/net461/BouncyCastle.Cryptography.xml",
+ "lib/net6.0/BouncyCastle.Cryptography.dll",
+ "lib/net6.0/BouncyCastle.Cryptography.xml",
+ "lib/netstandard2.0/BouncyCastle.Cryptography.dll",
+ "lib/netstandard2.0/BouncyCastle.Cryptography.xml",
+ "packageIcon.png"
+ ]
+ },
+ "Google.Protobuf/3.26.1": {
+ "sha512": "CHZX8zXqhF/fdUtd+AYzew8T2HFkAoe5c7lbGxZY/qryAlQXckDvM5BfOJjXlMS7kyICqQTMszj4w1bX5uBJ/w==",
+ "type": "package",
+ "path": "google.protobuf/3.26.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "google.protobuf.3.26.1.nupkg.sha512",
+ "google.protobuf.nuspec",
+ "lib/net45/Google.Protobuf.dll",
+ "lib/net45/Google.Protobuf.pdb",
+ "lib/net45/Google.Protobuf.xml",
+ "lib/net5.0/Google.Protobuf.dll",
+ "lib/net5.0/Google.Protobuf.pdb",
+ "lib/net5.0/Google.Protobuf.xml",
+ "lib/netstandard1.1/Google.Protobuf.dll",
+ "lib/netstandard1.1/Google.Protobuf.pdb",
+ "lib/netstandard1.1/Google.Protobuf.xml",
+ "lib/netstandard2.0/Google.Protobuf.dll",
+ "lib/netstandard2.0/Google.Protobuf.pdb",
+ "lib/netstandard2.0/Google.Protobuf.xml"
+ ]
+ },
+ "K4os.Compression.LZ4/1.3.8": {
+ "sha512": "LhwlPa7c1zs1OV2XadMtAWdImjLIsqFJPoRcIWAadSRn0Ri1DepK65UbWLPmt4riLqx2d40xjXRk0ogpqNtK7g==",
+ "type": "package",
+ "path": "k4os.compression.lz4/1.3.8",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "k4os.compression.lz4.1.3.8.nupkg.sha512",
+ "k4os.compression.lz4.nuspec",
+ "lib/net462/K4os.Compression.LZ4.dll",
+ "lib/net462/K4os.Compression.LZ4.xml",
+ "lib/net5.0/K4os.Compression.LZ4.dll",
+ "lib/net5.0/K4os.Compression.LZ4.xml",
+ "lib/net6.0/K4os.Compression.LZ4.dll",
+ "lib/net6.0/K4os.Compression.LZ4.xml",
+ "lib/netstandard2.0/K4os.Compression.LZ4.dll",
+ "lib/netstandard2.0/K4os.Compression.LZ4.xml",
+ "lib/netstandard2.1/K4os.Compression.LZ4.dll",
+ "lib/netstandard2.1/K4os.Compression.LZ4.xml"
+ ]
+ },
+ "K4os.Compression.LZ4.Streams/1.3.8": {
+ "sha512": "P15qr8dZAeo9GvYbUIPEYFQ0MEJ0i5iqr37wsYeRC3la2uCldOoeCa6to0CZ1taiwxIV+Mk8NGuZi+4iWivK9w==",
+ "type": "package",
+ "path": "k4os.compression.lz4.streams/1.3.8",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "k4os.compression.lz4.streams.1.3.8.nupkg.sha512",
+ "k4os.compression.lz4.streams.nuspec",
+ "lib/net462/K4os.Compression.LZ4.Streams.dll",
+ "lib/net462/K4os.Compression.LZ4.Streams.xml",
+ "lib/net5.0/K4os.Compression.LZ4.Streams.dll",
+ "lib/net5.0/K4os.Compression.LZ4.Streams.xml",
+ "lib/net6.0/K4os.Compression.LZ4.Streams.dll",
+ "lib/net6.0/K4os.Compression.LZ4.Streams.xml",
+ "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll",
+ "lib/netstandard2.0/K4os.Compression.LZ4.Streams.xml",
+ "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll",
+ "lib/netstandard2.1/K4os.Compression.LZ4.Streams.xml"
+ ]
+ },
+ "K4os.Hash.xxHash/1.0.8": {
+ "sha512": "Wp2F7BamQ2Q/7Hk834nV9vRQapgcr8kgv9Jvfm8J3D0IhDqZMMl+a2yxUq5ltJitvXvQfB8W6K4F4fCbw/P6YQ==",
+ "type": "package",
+ "path": "k4os.hash.xxhash/1.0.8",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "k4os.hash.xxhash.1.0.8.nupkg.sha512",
+ "k4os.hash.xxhash.nuspec",
+ "lib/net462/K4os.Hash.xxHash.dll",
+ "lib/net462/K4os.Hash.xxHash.xml",
+ "lib/net5.0/K4os.Hash.xxHash.dll",
+ "lib/net5.0/K4os.Hash.xxHash.xml",
+ "lib/net6.0/K4os.Hash.xxHash.dll",
+ "lib/net6.0/K4os.Hash.xxHash.xml",
+ "lib/netstandard2.0/K4os.Hash.xxHash.dll",
+ "lib/netstandard2.0/K4os.Hash.xxHash.xml",
+ "lib/netstandard2.1/K4os.Hash.xxHash.dll",
+ "lib/netstandard2.1/K4os.Hash.xxHash.xml"
+ ]
+ },
+ "Microsoft.NETCore.Platforms/1.1.0": {
+ "sha512": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
+ "type": "package",
+ "path": "microsoft.netcore.platforms/1.1.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/netstandard1.0/_._",
+ "microsoft.netcore.platforms.1.1.0.nupkg.sha512",
+ "microsoft.netcore.platforms.nuspec",
+ "runtime.json"
+ ]
+ },
+ "Microsoft.NETCore.Targets/1.1.0": {
+ "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
+ "type": "package",
+ "path": "microsoft.netcore.targets/1.1.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/netstandard1.0/_._",
+ "microsoft.netcore.targets.1.1.0.nupkg.sha512",
+ "microsoft.netcore.targets.nuspec",
+ "runtime.json"
+ ]
+ },
+ "Microsoft.Windows.SDK.BuildTools/10.0.22000.194": {
+ "sha512": "4L0P3zqut466SIqT3VBeLTNUQTxCBDOrTRymRuROCRJKazcK7ibLz9yAO1nKWRt50ttCj39oAa2Iuz9ZTDmLlg==",
+ "type": "package",
+ "path": "microsoft.windows.sdk.buildtools/10.0.22000.194",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "bin/10.0.22000.0/arm/AccChecker/Microsoft.Diagnostics.Tracing.EventSource.dll",
+ "bin/10.0.22000.0/arm/DeployUtil.exe",
+ "bin/10.0.22000.0/arm64/AccChecker/Microsoft.Diagnostics.Tracing.EventSource.dll",
+ "bin/10.0.22000.0/arm64/DeployUtil.exe",
+ "bin/10.0.22000.0/x64/AccChecker/Microsoft.Diagnostics.Tracing.EventSource.dll",
+ "bin/10.0.22000.0/x64/ComparePackage.exe",
+ "bin/10.0.22000.0/x64/DeployUtil.exe",
+ "bin/10.0.22000.0/x64/MakeCert.exe",
+ "bin/10.0.22000.0/x64/Microsoft.ComparePackage.Lib.dll",
+ "bin/10.0.22000.0/x64/Microsoft.Diagnostics.Tracing.EventSource.dll",
+ "bin/10.0.22000.0/x64/Microsoft.PackageEditor.Lib.dll",
+ "bin/10.0.22000.0/x64/Microsoft.Tools.Connectivity.dll",
+ "bin/10.0.22000.0/x64/Microsoft.Tools.Deploy.dll",
+ "bin/10.0.22000.0/x64/Microsoft.Windows.Build.Appx.AppxPackaging.dll.manifest",
+ "bin/10.0.22000.0/x64/Microsoft.Windows.Build.Appx.AppxSip.dll.manifest",
+ "bin/10.0.22000.0/x64/Microsoft.Windows.Build.Appx.OpcServices.dll.manifest",
+ "bin/10.0.22000.0/x64/Microsoft.Windows.Build.Signing.mssign32.dll.manifest",
+ "bin/10.0.22000.0/x64/Microsoft.Windows.Build.Signing.wintrust.dll.manifest",
+ "bin/10.0.22000.0/x64/PackageEditor.exe",
+ "bin/10.0.22000.0/x64/SirepClient.assembly.manifest",
+ "bin/10.0.22000.0/x64/SirepClient.dll",
+ "bin/10.0.22000.0/x64/SirepInterop.dll",
+ "bin/10.0.22000.0/x64/SshClient.dll",
+ "bin/10.0.22000.0/x64/WinAppDeployCmd.exe",
+ "bin/10.0.22000.0/x64/WinAppDeployCommon.dll",
+ "bin/10.0.22000.0/x64/appxpackaging.dll",
+ "bin/10.0.22000.0/x64/appxsip.dll",
+ "bin/10.0.22000.0/x64/en-US/AppxPackaging.dll.mui",
+ "bin/10.0.22000.0/x64/en/Microsoft.Tools.Deploy.resources.dll",
+ "bin/10.0.22000.0/x64/en/WinAppDeployCmd.resources.dll",
+ "bin/10.0.22000.0/x64/ipoverusb.discoverpartners.dll",
+ "bin/10.0.22000.0/x64/makeappx.exe",
+ "bin/10.0.22000.0/x64/makecat.exe",
+ "bin/10.0.22000.0/x64/makecat.exe.manifest",
+ "bin/10.0.22000.0/x64/makepri.exe",
+ "bin/10.0.22000.0/x64/mc.exe",
+ "bin/10.0.22000.0/x64/mdmerge.exe",
+ "bin/10.0.22000.0/x64/midl.exe",
+ "bin/10.0.22000.0/x64/midlc.exe",
+ "bin/10.0.22000.0/x64/midlrt.exe",
+ "bin/10.0.22000.0/x64/midlrtmd.dll",
+ "bin/10.0.22000.0/x64/mrmsupport.dll",
+ "bin/10.0.22000.0/x64/msisip.dll",
+ "bin/10.0.22000.0/x64/mssign32.dll",
+ "bin/10.0.22000.0/x64/mt.exe",
+ "bin/10.0.22000.0/x64/mt.exe.config",
+ "bin/10.0.22000.0/x64/opcservices.dll",
+ "bin/10.0.22000.0/x64/rc.exe",
+ "bin/10.0.22000.0/x64/rcdll.dll",
+ "bin/10.0.22000.0/x64/signtool.exe",
+ "bin/10.0.22000.0/x64/signtool.exe.manifest",
+ "bin/10.0.22000.0/x64/tracewpp.exe",
+ "bin/10.0.22000.0/x64/winmdidl.exe",
+ "bin/10.0.22000.0/x64/wintrust.dll",
+ "bin/10.0.22000.0/x64/wintrust.dll.ini",
+ "bin/10.0.22000.0/x86/AccChecker/Microsoft.Diagnostics.Tracing.EventSource.dll",
+ "bin/10.0.22000.0/x86/ComparePackage.exe",
+ "bin/10.0.22000.0/x86/DeployUtil.exe",
+ "bin/10.0.22000.0/x86/MakeCert.exe",
+ "bin/10.0.22000.0/x86/Microsoft.ComparePackage.Lib.dll",
+ "bin/10.0.22000.0/x86/Microsoft.Diagnostics.Tracing.EventSource.dll",
+ "bin/10.0.22000.0/x86/Microsoft.PackageEditor.Lib.dll",
+ "bin/10.0.22000.0/x86/Microsoft.Tools.Connectivity.dll",
+ "bin/10.0.22000.0/x86/Microsoft.Tools.Deploy.dll",
+ "bin/10.0.22000.0/x86/Microsoft.Windows.Build.Appx.AppxPackaging.dll.manifest",
+ "bin/10.0.22000.0/x86/Microsoft.Windows.Build.Appx.AppxSip.dll.manifest",
+ "bin/10.0.22000.0/x86/Microsoft.Windows.Build.Appx.OpcServices.dll.manifest",
+ "bin/10.0.22000.0/x86/Microsoft.Windows.Build.Signing.mssign32.dll.manifest",
+ "bin/10.0.22000.0/x86/Microsoft.Windows.Build.Signing.wintrust.dll.manifest",
+ "bin/10.0.22000.0/x86/PackageEditor.exe",
+ "bin/10.0.22000.0/x86/SirepClient.assembly.manifest",
+ "bin/10.0.22000.0/x86/SirepClient.dll",
+ "bin/10.0.22000.0/x86/SirepInterop.dll",
+ "bin/10.0.22000.0/x86/SshClient.dll",
+ "bin/10.0.22000.0/x86/WinAppDeployCmd.exe",
+ "bin/10.0.22000.0/x86/WinAppDeployCommon.dll",
+ "bin/10.0.22000.0/x86/appxpackaging.dll",
+ "bin/10.0.22000.0/x86/appxsip.dll",
+ "bin/10.0.22000.0/x86/en-US/AppxPackaging.dll.mui",
+ "bin/10.0.22000.0/x86/en/Microsoft.Tools.Deploy.resources.dll",
+ "bin/10.0.22000.0/x86/en/WinAppDeployCmd.resources.dll",
+ "bin/10.0.22000.0/x86/ipoverusb.discoverpartners.dll",
+ "bin/10.0.22000.0/x86/makeappx.exe",
+ "bin/10.0.22000.0/x86/makecat.exe",
+ "bin/10.0.22000.0/x86/makecat.exe.manifest",
+ "bin/10.0.22000.0/x86/makepri.exe",
+ "bin/10.0.22000.0/x86/mc.exe",
+ "bin/10.0.22000.0/x86/mdmerge.exe",
+ "bin/10.0.22000.0/x86/midl.exe",
+ "bin/10.0.22000.0/x86/midlc.exe",
+ "bin/10.0.22000.0/x86/midlrt.exe",
+ "bin/10.0.22000.0/x86/midlrtmd.dll",
+ "bin/10.0.22000.0/x86/mrmsupport.dll",
+ "bin/10.0.22000.0/x86/msisip.dll",
+ "bin/10.0.22000.0/x86/mssign32.dll",
+ "bin/10.0.22000.0/x86/mt.exe",
+ "bin/10.0.22000.0/x86/mt.exe.config",
+ "bin/10.0.22000.0/x86/opcservices.dll",
+ "bin/10.0.22000.0/x86/rc.exe",
+ "bin/10.0.22000.0/x86/rcdll.dll",
+ "bin/10.0.22000.0/x86/signtool.exe",
+ "bin/10.0.22000.0/x86/signtool.exe.manifest",
+ "bin/10.0.22000.0/x86/tracewpp.exe",
+ "bin/10.0.22000.0/x86/winmdidl.exe",
+ "bin/10.0.22000.0/x86/wintrust.dll",
+ "bin/10.0.22000.0/x86/wintrust.dll.ini",
+ "build/Microsoft.Windows.SDK.BuildTools.props",
+ "build/Microsoft.Windows.SDK.BuildTools.targets",
+ "microsoft.windows.sdk.buildtools.10.0.22000.194.nupkg.sha512",
+ "microsoft.windows.sdk.buildtools.nuspec",
+ "schemas/10.0.22000.0/winrt/AppxManifestSchema.xsd",
+ "schemas/10.0.22000.0/winrt/AppxManifestSchema2010_v2.xsd",
+ "schemas/10.0.22000.0/winrt/AppxManifestSchema2013.xsd",
+ "schemas/10.0.22000.0/winrt/FoundationManifestSchema.xsd",
+ "schemas/10.0.22000.0/winrt/FoundationManifestSchema_v2.xsd",
+ "schemas/10.0.22000.0/winrt/UapManifestSchema.xsd",
+ "schemas/10.0.22000.0/winrt/UapManifestSchema_v10.xsd",
+ "schemas/10.0.22000.0/winrt/UapManifestSchema_v11.xsd",
+ "schemas/10.0.22000.0/winrt/UapManifestSchema_v12.xsd",
+ "schemas/10.0.22000.0/winrt/UapManifestSchema_v13.xsd",
+ "schemas/10.0.22000.0/winrt/UapManifestSchema_v2.xsd",
+ "schemas/10.0.22000.0/winrt/UapManifestSchema_v3.xsd",
+ "schemas/10.0.22000.0/winrt/UapManifestSchema_v4.xsd",
+ "schemas/10.0.22000.0/winrt/UapManifestSchema_v5.xsd",
+ "schemas/10.0.22000.0/winrt/UapManifestSchema_v6.xsd",
+ "schemas/10.0.22000.0/winrt/UapManifestSchema_v7.xsd",
+ "schemas/10.0.22000.0/winrt/UapManifestSchema_v8.xsd"
+ ]
+ },
+ "Microsoft.WindowsAppSDK/1.1.3": {
+ "sha512": "PMJ9oPsUnl5FVaIdDwFscmu2t/NEJcdcuDIIbRuK8+5ZZijtCdfdatKayn2O9SL0ziFysUCoHdMJ+PFbybyxzg==",
+ "type": "package",
+ "path": "microsoft.windowsappsdk/1.1.3",
+ "hasTools": true,
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "AppxManifest.xml",
+ "WindowsAppSDK-VersionInfo.json",
+ "WindowsAppSDK-VersionInfo.xml",
+ "build/AppDevPackageScripts/Add-AppDevPackage.ps1",
+ "build/AppDevPackageScripts/Add-AppDevPackage.resources/Add-AppDevPackage.psd1",
+ "build/AppDevPackageScripts/Add-AppDevPackage.resources/cs-CZ/Add-AppDevPackage.psd1",
+ "build/AppDevPackageScripts/Add-AppDevPackage.resources/de-DE/Add-AppDevPackage.psd1",
+ "build/AppDevPackageScripts/Add-AppDevPackage.resources/en-US/Add-AppDevPackage.psd1",
+ "build/AppDevPackageScripts/Add-AppDevPackage.resources/es-ES/Add-AppDevPackage.psd1",
+ "build/AppDevPackageScripts/Add-AppDevPackage.resources/fr-FR/Add-AppDevPackage.psd1",
+ "build/AppDevPackageScripts/Add-AppDevPackage.resources/it-IT/Add-AppDevPackage.psd1",
+ "build/AppDevPackageScripts/Add-AppDevPackage.resources/ja-JP/Add-AppDevPackage.psd1",
+ "build/AppDevPackageScripts/Add-AppDevPackage.resources/ko-KR/Add-AppDevPackage.psd1",
+ "build/AppDevPackageScripts/Add-AppDevPackage.resources/pl-PL/Add-AppDevPackage.psd1",
+ "build/AppDevPackageScripts/Add-AppDevPackage.resources/pt-BR/Add-AppDevPackage.psd1",
+ "build/AppDevPackageScripts/Add-AppDevPackage.resources/ru-RU/Add-AppDevPackage.psd1",
+ "build/AppDevPackageScripts/Add-AppDevPackage.resources/tr-TR/Add-AppDevPackage.psd1",
+ "build/AppDevPackageScripts/Add-AppDevPackage.resources/zh-CN/Add-AppDevPackage.psd1",
+ "build/AppDevPackageScripts/Add-AppDevPackage.resources/zh-TW/Add-AppDevPackage.psd1",
+ "build/AppDevPackageScripts/Install.ps1",
+ "build/AppDevPackageScripts/LogSideloadingTelemetry.ps1",
+ "build/Landing/extras/br.png",
+ "build/Landing/extras/br_snippet.png",
+ "build/Landing/image.png",
+ "build/Landing/index.template.html",
+ "build/Landing/logo.png",
+ "build/Landing/style.css",
+ "build/Microsoft.Build.Msix.Common.props",
+ "build/Microsoft.Build.Msix.Cpp.props",
+ "build/Microsoft.Build.Msix.Cpp.targets",
+ "build/Microsoft.Build.Msix.DesignTime.targets",
+ "build/Microsoft.Build.Msix.Packaging.targets",
+ "build/Microsoft.Build.Msix.Pri.targets",
+ "build/Microsoft.Build.Msix.props",
+ "build/Microsoft.Build.Msix.targets",
+ "build/Microsoft.InteractiveExperiences.Capabilities.props",
+ "build/Microsoft.InteractiveExperiences.Capabilities.targets",
+ "build/Microsoft.InteractiveExperiences.Common.props",
+ "build/Microsoft.InteractiveExperiences.Common.targets",
+ "build/Microsoft.InteractiveExperiences.props",
+ "build/Microsoft.InteractiveExperiences.targets",
+ "build/Microsoft.UI.Xaml.Markup.Compiler.interop.targets",
+ "build/Microsoft.UI.Xaml.Markup.Compiler.props",
+ "build/Microsoft.UI.Xaml.Markup.Compiler.targets",
+ "build/Microsoft.WinUI.AppX.targets",
+ "build/Microsoft.WinUI.NET.Markup.Compiler.targets",
+ "build/Microsoft.WinUI.ProjectCapabilities.props",
+ "build/Microsoft.WinUI.References.targets",
+ "build/Microsoft.WinUI.props",
+ "build/Microsoft.WinUI.targets",
+ "build/Microsoft.WindowsAppSDK.AppXReference.props",
+ "build/Microsoft.WindowsAppSDK.Bootstrap.CS.targets",
+ "build/Microsoft.WindowsAppSDK.BootstrapCommon.targets",
+ "build/Microsoft.WindowsAppSDK.Common.props",
+ "build/Microsoft.WindowsAppSDK.DWrite.ProjectCapabilities.props",
+ "build/Microsoft.WindowsAppSDK.DWrite.props",
+ "build/Microsoft.WindowsAppSDK.DWrite.targets",
+ "build/Microsoft.WindowsAppSDK.Foundation.props",
+ "build/Microsoft.WindowsAppSDK.Foundation.targets",
+ "build/Microsoft.WindowsAppSDK.InteractiveExperiences.props",
+ "build/Microsoft.WindowsAppSDK.InteractiveExperiences.targets",
+ "build/Microsoft.WindowsAppSDK.Metapackage.props",
+ "build/Microsoft.WindowsAppSDK.SelfContained.targets",
+ "build/Microsoft.WindowsAppSDK.UndockedRegFreeWinRT.CS.targets",
+ "build/Microsoft.WindowsAppSDK.UndockedRegFreeWinRTCommon.targets",
+ "build/Microsoft.WindowsAppSDK.WinUI.Build.props",
+ "build/Microsoft.WindowsAppSDK.WinUI.props",
+ "build/Microsoft.WindowsAppSDK.WinUI.targets",
+ "build/Microsoft.WindowsAppSDK.props",
+ "build/Microsoft.WindowsAppSDK.targets",
+ "build/Microsoft.Xaml.Tooling.targets",
+ "build/MicrosoftWindowsAppSDKFoundationAppXVersion.props",
+ "build/MrtCore.PriGen.targets",
+ "build/MrtCore.References.targets",
+ "build/MrtCore.props",
+ "build/MrtCore.targets",
+ "build/ProjectItemsSchema.xaml",
+ "build/README.md",
+ "build/Rules/MsixPackageDebugPropertyPage.xaml",
+ "build/Rules/af-ZA/MsixPackageDebugPropertyPage.xaml",
+ "build/Rules/ar-SA/MsixPackageDebugPropertyPage.xaml",
+ "build/Rules/az-Latn-AZ/MsixPackageDebugPropertyPage.xaml",
+ "build/Rules/bg-BG/MsixPackageDebugPropertyPage.xaml",
+ "build/Rules/bs-Latn-BA/MsixPackageDebugPropertyPage.xaml",
+ "build/Rules/ca-ES/MsixPackageDebugPropertyPage.xaml",
+ "build/Rules/cs-CZ/MsixPackageDebugPropertyPage.xaml",
+ "build/Rules/cy-GB/MsixPackageDebugPropertyPage.xaml",
+ "build/Rules/da-DK/MsixPackageDebugPropertyPage.xaml",
+ "build/Rules/de-DE/MsixPackageDebugPropertyPage.xaml",
+ "build/Rules/el-GR/MsixPackageDebugPropertyPage.xaml",
+ "build/Rules/en-GB/MsixPackageDebugPropertyPage.xaml",
+ "build/Rules/es-ES/MsixPackageDebugPropertyPage.xaml",
+ "build/Rules/es-MX/MsixPackageDebugPropertyPage.xaml",
+ "build/Rules/et-EE/MsixPackageDebugPropertyPage.xaml",
+ "build/Rules/eu-ES/MsixPackageDebugPropertyPage.xaml",
+ "build/Rules/fa-IR/MsixPackageDebugPropertyPage.xaml",
+ "build/Rules/fi-FI/MsixPackageDebugPropertyPage.xaml",
+ "build/Rules/fr-CA/MsixPackageDebugPropertyPage.xaml",
+ "build/Rules/fr-FR/MsixPackageDebugPropertyPage.xaml",
+ "build/Rules/gl-ES/MsixPackageDebugPropertyPage.xaml",
+ "build/Rules/he-IL/MsixPackageDebugPropertyPage.xaml",
+ "build/Rules/hi-IN/MsixPackageDebugPropertyPage.xaml",
+ "build/Rules/hr-HR/MsixPackageDebugPropertyPage.xaml",
+ "build/Rules/hu-HU/MsixPackageDebugPropertyPage.xaml",
+ "build/Rules/id-ID/MsixPackageDebugPropertyPage.xaml",
+ "build/Rules/is-IS/MsixPackageDebugPropertyPage.xaml",
+ "build/Rules/it-IT/MsixPackageDebugPropertyPage.xaml",
+ "build/Rules/ja-JP/MsixPackageDebugPropertyPage.xaml",
+ "build/Rules/ka-GE/MsixPackageDebugPropertyPage.xaml",
+ "build/Rules/kk-KZ/MsixPackageDebugPropertyPage.xaml",
+ "build/Rules/ko-KR/MsixPackageDebugPropertyPage.xaml",
+ "build/Rules/lt-LT/MsixPackageDebugPropertyPage.xaml",
+ "build/Rules/lv-LV/MsixPackageDebugPropertyPage.xaml",
+ "build/Rules/ms-MY/MsixPackageDebugPropertyPage.xaml",
+ "build/Rules/nb-NO/MsixPackageDebugPropertyPage.xaml",
+ "build/Rules/nl-NL/MsixPackageDebugPropertyPage.xaml",
+ "build/Rules/nn-NO/MsixPackageDebugPropertyPage.xaml",
+ "build/Rules/pl-PL/MsixPackageDebugPropertyPage.xaml",
+ "build/Rules/pt-BR/MsixPackageDebugPropertyPage.xaml",
+ "build/Rules/pt-PT/MsixPackageDebugPropertyPage.xaml",
+ "build/Rules/ro-RO/MsixPackageDebugPropertyPage.xaml",
+ "build/Rules/ru-RU/MsixPackageDebugPropertyPage.xaml",
+ "build/Rules/sk-SK/MsixPackageDebugPropertyPage.xaml",
+ "build/Rules/sl-SI/MsixPackageDebugPropertyPage.xaml",
+ "build/Rules/sq-AL/MsixPackageDebugPropertyPage.xaml",
+ "build/Rules/sr-Cyrl-RS/MsixPackageDebugPropertyPage.xaml",
+ "build/Rules/sr-Latn-RS/MsixPackageDebugPropertyPage.xaml",
+ "build/Rules/sv-SE/MsixPackageDebugPropertyPage.xaml",
+ "build/Rules/th-TH/MsixPackageDebugPropertyPage.xaml",
+ "build/Rules/tr-TR/MsixPackageDebugPropertyPage.xaml",
+ "build/Rules/uk-UA/MsixPackageDebugPropertyPage.xaml",
+ "build/Rules/vi-VN/MsixPackageDebugPropertyPage.xaml",
+ "build/Rules/zh-CN/MsixPackageDebugPropertyPage.xaml",
+ "build/Rules/zh-TW/MsixPackageDebugPropertyPage.xaml",
+ "build/Templates/Package.appinstaller",
+ "build/native/LiftedWinRTClassRegistrations.xml",
+ "build/native/Microsoft.InteractiveExperiences.props",
+ "build/native/Microsoft.InteractiveExperiences.targets",
+ "build/native/Microsoft.WinUI.References.targets",
+ "build/native/Microsoft.WinUI.props",
+ "build/native/Microsoft.WinUI.targets",
+ "build/native/Microsoft.WindowsAppSDK.Foundation.props",
+ "build/native/Microsoft.WindowsAppSDK.Foundation.targets",
+ "build/native/Microsoft.WindowsAppSDK.InteractiveExperiences.props",
+ "build/native/Microsoft.WindowsAppSDK.InteractiveExperiences.targets",
+ "build/native/Microsoft.WindowsAppSDK.WinUI.props",
+ "build/native/Microsoft.WindowsAppSDK.WinUI.targets",
+ "build/native/Microsoft.WindowsAppSDK.props",
+ "build/native/Microsoft.WindowsAppSDK.targets",
+ "build/native/MrtCore.C.props",
+ "build/native/MrtCore.props",
+ "build/native/MrtCore.targets",
+ "build/native/WindowsAppSDK-Nuget-Native.Bootstrap.targets",
+ "build/native/WindowsAppSDK-Nuget-Native.C.props",
+ "build/native/WindowsAppSDK-Nuget-Native.UndockedRegFreeWinRT.targets",
+ "build/native/WindowsAppSDK-Nuget-Native.WinRt.props",
+ "buildTransitive/AppDevPackageScripts/Add-AppDevPackage.ps1",
+ "buildTransitive/AppDevPackageScripts/Add-AppDevPackage.resources/Add-AppDevPackage.psd1",
+ "buildTransitive/AppDevPackageScripts/Add-AppDevPackage.resources/cs-CZ/Add-AppDevPackage.psd1",
+ "buildTransitive/AppDevPackageScripts/Add-AppDevPackage.resources/de-DE/Add-AppDevPackage.psd1",
+ "buildTransitive/AppDevPackageScripts/Add-AppDevPackage.resources/en-US/Add-AppDevPackage.psd1",
+ "buildTransitive/AppDevPackageScripts/Add-AppDevPackage.resources/es-ES/Add-AppDevPackage.psd1",
+ "buildTransitive/AppDevPackageScripts/Add-AppDevPackage.resources/fr-FR/Add-AppDevPackage.psd1",
+ "buildTransitive/AppDevPackageScripts/Add-AppDevPackage.resources/it-IT/Add-AppDevPackage.psd1",
+ "buildTransitive/AppDevPackageScripts/Add-AppDevPackage.resources/ja-JP/Add-AppDevPackage.psd1",
+ "buildTransitive/AppDevPackageScripts/Add-AppDevPackage.resources/ko-KR/Add-AppDevPackage.psd1",
+ "buildTransitive/AppDevPackageScripts/Add-AppDevPackage.resources/pl-PL/Add-AppDevPackage.psd1",
+ "buildTransitive/AppDevPackageScripts/Add-AppDevPackage.resources/pt-BR/Add-AppDevPackage.psd1",
+ "buildTransitive/AppDevPackageScripts/Add-AppDevPackage.resources/ru-RU/Add-AppDevPackage.psd1",
+ "buildTransitive/AppDevPackageScripts/Add-AppDevPackage.resources/tr-TR/Add-AppDevPackage.psd1",
+ "buildTransitive/AppDevPackageScripts/Add-AppDevPackage.resources/zh-CN/Add-AppDevPackage.psd1",
+ "buildTransitive/AppDevPackageScripts/Add-AppDevPackage.resources/zh-TW/Add-AppDevPackage.psd1",
+ "buildTransitive/AppDevPackageScripts/Install.ps1",
+ "buildTransitive/AppDevPackageScripts/LogSideloadingTelemetry.ps1",
+ "buildTransitive/Landing/extras/br.png",
+ "buildTransitive/Landing/extras/br_snippet.png",
+ "buildTransitive/Landing/image.png",
+ "buildTransitive/Landing/index.template.html",
+ "buildTransitive/Landing/logo.png",
+ "buildTransitive/Landing/style.css",
+ "buildTransitive/Microsoft.Build.Msix.Common.props",
+ "buildTransitive/Microsoft.Build.Msix.Cpp.props",
+ "buildTransitive/Microsoft.Build.Msix.Cpp.targets",
+ "buildTransitive/Microsoft.Build.Msix.DesignTime.targets",
+ "buildTransitive/Microsoft.Build.Msix.Packaging.targets",
+ "buildTransitive/Microsoft.Build.Msix.Pri.targets",
+ "buildTransitive/Microsoft.Build.Msix.props",
+ "buildTransitive/Microsoft.Build.Msix.targets",
+ "buildTransitive/Microsoft.InteractiveExperiences.Capabilities.props",
+ "buildTransitive/Microsoft.InteractiveExperiences.Capabilities.targets",
+ "buildTransitive/Microsoft.InteractiveExperiences.Common.props",
+ "buildTransitive/Microsoft.InteractiveExperiences.Common.targets",
+ "buildTransitive/Microsoft.InteractiveExperiences.props",
+ "buildTransitive/Microsoft.InteractiveExperiences.targets",
+ "buildTransitive/Microsoft.UI.Xaml.Markup.Compiler.interop.targets",
+ "buildTransitive/Microsoft.UI.Xaml.Markup.Compiler.props",
+ "buildTransitive/Microsoft.UI.Xaml.Markup.Compiler.targets",
+ "buildTransitive/Microsoft.WinUI.AppX.targets",
+ "buildTransitive/Microsoft.WinUI.NET.Markup.Compiler.targets",
+ "buildTransitive/Microsoft.WinUI.ProjectCapabilities.props",
+ "buildTransitive/Microsoft.WinUI.References.targets",
+ "buildTransitive/Microsoft.WinUI.props",
+ "buildTransitive/Microsoft.WinUI.targets",
+ "buildTransitive/Microsoft.WindowsAppSDK.AppXReference.props",
+ "buildTransitive/Microsoft.WindowsAppSDK.Bootstrap.CS.targets",
+ "buildTransitive/Microsoft.WindowsAppSDK.BootstrapCommon.targets",
+ "buildTransitive/Microsoft.WindowsAppSDK.Common.props",
+ "buildTransitive/Microsoft.WindowsAppSDK.DWrite.ProjectCapabilities.props",
+ "buildTransitive/Microsoft.WindowsAppSDK.DWrite.props",
+ "buildTransitive/Microsoft.WindowsAppSDK.DWrite.targets",
+ "buildTransitive/Microsoft.WindowsAppSDK.Foundation.props",
+ "buildTransitive/Microsoft.WindowsAppSDK.Foundation.targets",
+ "buildTransitive/Microsoft.WindowsAppSDK.InteractiveExperiences.props",
+ "buildTransitive/Microsoft.WindowsAppSDK.InteractiveExperiences.targets",
+ "buildTransitive/Microsoft.WindowsAppSDK.Metapackage.props",
+ "buildTransitive/Microsoft.WindowsAppSDK.SelfContained.targets",
+ "buildTransitive/Microsoft.WindowsAppSDK.UndockedRegFreeWinRT.CS.targets",
+ "buildTransitive/Microsoft.WindowsAppSDK.UndockedRegFreeWinRTCommon.targets",
+ "buildTransitive/Microsoft.WindowsAppSDK.WinUI.Build.props",
+ "buildTransitive/Microsoft.WindowsAppSDK.WinUI.props",
+ "buildTransitive/Microsoft.WindowsAppSDK.WinUI.targets",
+ "buildTransitive/Microsoft.WindowsAppSDK.props",
+ "buildTransitive/Microsoft.WindowsAppSDK.targets",
+ "buildTransitive/Microsoft.Xaml.Tooling.targets",
+ "buildTransitive/MicrosoftWindowsAppSDKFoundationAppXVersion.props",
+ "buildTransitive/MrtCore.PriGen.targets",
+ "buildTransitive/MrtCore.References.targets",
+ "buildTransitive/MrtCore.props",
+ "buildTransitive/MrtCore.targets",
+ "buildTransitive/ProjectItemsSchema.xaml",
+ "buildTransitive/README.md",
+ "buildTransitive/Rules/MsixPackageDebugPropertyPage.xaml",
+ "buildTransitive/Rules/af-ZA/MsixPackageDebugPropertyPage.xaml",
+ "buildTransitive/Rules/ar-SA/MsixPackageDebugPropertyPage.xaml",
+ "buildTransitive/Rules/az-Latn-AZ/MsixPackageDebugPropertyPage.xaml",
+ "buildTransitive/Rules/bg-BG/MsixPackageDebugPropertyPage.xaml",
+ "buildTransitive/Rules/bs-Latn-BA/MsixPackageDebugPropertyPage.xaml",
+ "buildTransitive/Rules/ca-ES/MsixPackageDebugPropertyPage.xaml",
+ "buildTransitive/Rules/cs-CZ/MsixPackageDebugPropertyPage.xaml",
+ "buildTransitive/Rules/cy-GB/MsixPackageDebugPropertyPage.xaml",
+ "buildTransitive/Rules/da-DK/MsixPackageDebugPropertyPage.xaml",
+ "buildTransitive/Rules/de-DE/MsixPackageDebugPropertyPage.xaml",
+ "buildTransitive/Rules/el-GR/MsixPackageDebugPropertyPage.xaml",
+ "buildTransitive/Rules/en-GB/MsixPackageDebugPropertyPage.xaml",
+ "buildTransitive/Rules/es-ES/MsixPackageDebugPropertyPage.xaml",
+ "buildTransitive/Rules/es-MX/MsixPackageDebugPropertyPage.xaml",
+ "buildTransitive/Rules/et-EE/MsixPackageDebugPropertyPage.xaml",
+ "buildTransitive/Rules/eu-ES/MsixPackageDebugPropertyPage.xaml",
+ "buildTransitive/Rules/fa-IR/MsixPackageDebugPropertyPage.xaml",
+ "buildTransitive/Rules/fi-FI/MsixPackageDebugPropertyPage.xaml",
+ "buildTransitive/Rules/fr-CA/MsixPackageDebugPropertyPage.xaml",
+ "buildTransitive/Rules/fr-FR/MsixPackageDebugPropertyPage.xaml",
+ "buildTransitive/Rules/gl-ES/MsixPackageDebugPropertyPage.xaml",
+ "buildTransitive/Rules/he-IL/MsixPackageDebugPropertyPage.xaml",
+ "buildTransitive/Rules/hi-IN/MsixPackageDebugPropertyPage.xaml",
+ "buildTransitive/Rules/hr-HR/MsixPackageDebugPropertyPage.xaml",
+ "buildTransitive/Rules/hu-HU/MsixPackageDebugPropertyPage.xaml",
+ "buildTransitive/Rules/id-ID/MsixPackageDebugPropertyPage.xaml",
+ "buildTransitive/Rules/is-IS/MsixPackageDebugPropertyPage.xaml",
+ "buildTransitive/Rules/it-IT/MsixPackageDebugPropertyPage.xaml",
+ "buildTransitive/Rules/ja-JP/MsixPackageDebugPropertyPage.xaml",
+ "buildTransitive/Rules/ka-GE/MsixPackageDebugPropertyPage.xaml",
+ "buildTransitive/Rules/kk-KZ/MsixPackageDebugPropertyPage.xaml",
+ "buildTransitive/Rules/ko-KR/MsixPackageDebugPropertyPage.xaml",
+ "buildTransitive/Rules/lt-LT/MsixPackageDebugPropertyPage.xaml",
+ "buildTransitive/Rules/lv-LV/MsixPackageDebugPropertyPage.xaml",
+ "buildTransitive/Rules/ms-MY/MsixPackageDebugPropertyPage.xaml",
+ "buildTransitive/Rules/nb-NO/MsixPackageDebugPropertyPage.xaml",
+ "buildTransitive/Rules/nl-NL/MsixPackageDebugPropertyPage.xaml",
+ "buildTransitive/Rules/nn-NO/MsixPackageDebugPropertyPage.xaml",
+ "buildTransitive/Rules/pl-PL/MsixPackageDebugPropertyPage.xaml",
+ "buildTransitive/Rules/pt-BR/MsixPackageDebugPropertyPage.xaml",
+ "buildTransitive/Rules/pt-PT/MsixPackageDebugPropertyPage.xaml",
+ "buildTransitive/Rules/ro-RO/MsixPackageDebugPropertyPage.xaml",
+ "buildTransitive/Rules/ru-RU/MsixPackageDebugPropertyPage.xaml",
+ "buildTransitive/Rules/sk-SK/MsixPackageDebugPropertyPage.xaml",
+ "buildTransitive/Rules/sl-SI/MsixPackageDebugPropertyPage.xaml",
+ "buildTransitive/Rules/sq-AL/MsixPackageDebugPropertyPage.xaml",
+ "buildTransitive/Rules/sr-Cyrl-RS/MsixPackageDebugPropertyPage.xaml",
+ "buildTransitive/Rules/sr-Latn-RS/MsixPackageDebugPropertyPage.xaml",
+ "buildTransitive/Rules/sv-SE/MsixPackageDebugPropertyPage.xaml",
+ "buildTransitive/Rules/th-TH/MsixPackageDebugPropertyPage.xaml",
+ "buildTransitive/Rules/tr-TR/MsixPackageDebugPropertyPage.xaml",
+ "buildTransitive/Rules/uk-UA/MsixPackageDebugPropertyPage.xaml",
+ "buildTransitive/Rules/vi-VN/MsixPackageDebugPropertyPage.xaml",
+ "buildTransitive/Rules/zh-CN/MsixPackageDebugPropertyPage.xaml",
+ "buildTransitive/Rules/zh-TW/MsixPackageDebugPropertyPage.xaml",
+ "buildTransitive/Templates/Package.appinstaller",
+ "buildTransitive/native/LiftedWinRTClassRegistrations.xml",
+ "buildTransitive/native/Microsoft.InteractiveExperiences.props",
+ "buildTransitive/native/Microsoft.InteractiveExperiences.targets",
+ "buildTransitive/native/Microsoft.WinUI.References.targets",
+ "buildTransitive/native/Microsoft.WinUI.props",
+ "buildTransitive/native/Microsoft.WinUI.targets",
+ "buildTransitive/native/Microsoft.WindowsAppSDK.Foundation.props",
+ "buildTransitive/native/Microsoft.WindowsAppSDK.Foundation.targets",
+ "buildTransitive/native/Microsoft.WindowsAppSDK.InteractiveExperiences.props",
+ "buildTransitive/native/Microsoft.WindowsAppSDK.InteractiveExperiences.targets",
+ "buildTransitive/native/Microsoft.WindowsAppSDK.WinUI.props",
+ "buildTransitive/native/Microsoft.WindowsAppSDK.WinUI.targets",
+ "buildTransitive/native/Microsoft.WindowsAppSDK.props",
+ "buildTransitive/native/Microsoft.WindowsAppSDK.targets",
+ "buildTransitive/native/MrtCore.C.props",
+ "buildTransitive/native/MrtCore.props",
+ "buildTransitive/native/MrtCore.targets",
+ "buildTransitive/native/WindowsAppSDK-Nuget-Native.Bootstrap.targets",
+ "buildTransitive/native/WindowsAppSDK-Nuget-Native.C.props",
+ "buildTransitive/native/WindowsAppSDK-Nuget-Native.UndockedRegFreeWinRT.targets",
+ "buildTransitive/native/WindowsAppSDK-Nuget-Native.WinRt.props",
+ "include/MRM.h",
+ "include/MddBootstrap.h",
+ "include/MddBootstrapAutoInitializer.cpp",
+ "include/MddBootstrapAutoInitializer.cs",
+ "include/Microsoft.UI.Composition.Interop.h",
+ "include/Microsoft.UI.Interop.h",
+ "include/Microsoft.Windows.ApplicationModel.Resources.idl",
+ "include/MsixDynamicDependency.h",
+ "include/UndockedRegFreeWinRT-AutoInitializer.cpp",
+ "include/UndockedRegFreeWinRT-AutoInitializer.cs",
+ "include/WebView2.h",
+ "include/WebView2.idl",
+ "include/WindowsAppRuntimeInsights.h",
+ "include/WindowsAppSDK-VersionInfo.cs",
+ "include/WindowsAppSDK-VersionInfo.h",
+ "include/dwrite.h",
+ "include/dwrite_1.h",
+ "include/dwrite_2.h",
+ "include/dwrite_3.h",
+ "include/dwrite_core.h",
+ "include/microsoft.ui.xaml.hosting.desktopwindowxamlsource.h",
+ "include/microsoft.ui.xaml.hosting.desktopwindowxamlsource.idl",
+ "include/microsoft.ui.xaml.hosting.referencetracker.h",
+ "include/microsoft.ui.xaml.hosting.referencetracker.idl",
+ "include/microsoft.ui.xaml.media.dxinterop.h",
+ "include/microsoft.ui.xaml.media.dxinterop.idl",
+ "include/microsoft.ui.xaml.window.h",
+ "include/microsoft.ui.xaml.window.idl",
+ "include/wil_msixdynamicdependency.h",
+ "include/winrt/Microsoft.UI.Composition.Interop.h",
+ "include/winrt/Microsoft.UI.Interop.h",
+ "include/winrtdirect3d11.h",
+ "include/winrtdirectxcommon.h",
+ "include/xamlom.winui.h",
+ "include/xamlom.winui.idl",
+ "lib/net5.0-windows10.0.17763.0/Microsoft.InteractiveExperiences.Projection.dll",
+ "lib/net5.0-windows10.0.17763.0/Microsoft.InteractiveExperiences.Projection.xml",
+ "lib/net5.0-windows10.0.17763.0/Microsoft.WinUI.dll",
+ "lib/net5.0-windows10.0.17763.0/Microsoft.WinUI.xml",
+ "lib/net5.0-windows10.0.17763.0/Microsoft.WinUI/Themes/generic.xaml",
+ "lib/net5.0-windows10.0.17763.0/Microsoft.Windows.AppLifecycle.Projection.dll",
+ "lib/net5.0-windows10.0.17763.0/Microsoft.Windows.AppLifecycle.Projection.xml",
+ "lib/net5.0-windows10.0.17763.0/Microsoft.Windows.AppNotifications.Projection.dll",
+ "lib/net5.0-windows10.0.17763.0/Microsoft.Windows.ApplicationModel.DynamicDependency.Projection.dll",
+ "lib/net5.0-windows10.0.17763.0/Microsoft.Windows.ApplicationModel.DynamicDependency.Projection.xml",
+ "lib/net5.0-windows10.0.17763.0/Microsoft.Windows.ApplicationModel.Resources.Projection.dll",
+ "lib/net5.0-windows10.0.17763.0/Microsoft.Windows.ApplicationModel.Resources.Projection.xml",
+ "lib/net5.0-windows10.0.17763.0/Microsoft.Windows.ApplicationModel.WindowsAppRuntime.Projection.dll",
+ "lib/net5.0-windows10.0.17763.0/Microsoft.Windows.ApplicationModel.WindowsAppRuntime.Projection.xml",
+ "lib/net5.0-windows10.0.17763.0/Microsoft.Windows.PushNotifications.Projection.dll",
+ "lib/net5.0-windows10.0.17763.0/Microsoft.Windows.System.Power.Projection.dll",
+ "lib/net5.0-windows10.0.17763.0/Microsoft.Windows.System.Power.Projection.xml",
+ "lib/net5.0-windows10.0.17763.0/Microsoft.Windows.System.Projection.dll",
+ "lib/net5.0-windows10.0.17763.0/Microsoft.WindowsAppRuntime.Bootstrap.Net.dll",
+ "lib/net5.0-windows10.0.18362.0/Microsoft.InteractiveExperiences.Projection.dll",
+ "lib/net5.0-windows10.0.18362.0/Microsoft.InteractiveExperiences.Projection.xml",
+ "lib/net5.0-windows10.0.18362.0/Microsoft.WinUI.dll",
+ "lib/net5.0-windows10.0.18362.0/Microsoft.WinUI.xml",
+ "lib/net5.0-windows10.0.18362.0/Microsoft.WinUI/Themes/generic.xaml",
+ "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.AppLifecycle.Projection.dll",
+ "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.AppLifecycle.Projection.xml",
+ "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Projection.dll",
+ "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.DynamicDependency.Projection.dll",
+ "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.DynamicDependency.Projection.xml",
+ "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.Resources.Projection.dll",
+ "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.Resources.Projection.xml",
+ "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.WindowsAppRuntime.Projection.dll",
+ "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.WindowsAppRuntime.Projection.xml",
+ "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.PushNotifications.Projection.dll",
+ "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.System.Power.Projection.dll",
+ "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.System.Power.Projection.xml",
+ "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.System.Projection.dll",
+ "lib/net5.0-windows10.0.18362.0/Microsoft.WindowsAppRuntime.Bootstrap.Net.dll",
+ "lib/uap10.0.17763/Microsoft.Foundation.winmd",
+ "lib/uap10.0.17763/Microsoft.Foundation.xml",
+ "lib/uap10.0.17763/Microsoft.Graphics.winmd",
+ "lib/uap10.0.17763/Microsoft.Graphics.xml",
+ "lib/uap10.0.17763/Microsoft.UI.winmd",
+ "lib/uap10.0.17763/Microsoft.UI.xml",
+ "lib/uap10.0.18362/Microsoft.Foundation.winmd",
+ "lib/uap10.0.18362/Microsoft.Foundation.xml",
+ "lib/uap10.0.18362/Microsoft.Graphics.winmd",
+ "lib/uap10.0.18362/Microsoft.Graphics.xml",
+ "lib/uap10.0.18362/Microsoft.UI.winmd",
+ "lib/uap10.0.18362/Microsoft.UI.xml",
+ "lib/uap10.0/Microsoft.Foundation.xml",
+ "lib/uap10.0/Microsoft.Graphics.xml",
+ "lib/uap10.0/Microsoft.UI.Text.winmd",
+ "lib/uap10.0/Microsoft.UI.Text.xml",
+ "lib/uap10.0/Microsoft.UI.Xaml.winmd",
+ "lib/uap10.0/Microsoft.UI.Xaml.xml",
+ "lib/uap10.0/Microsoft.UI/Themes/generic.xaml",
+ "lib/uap10.0/Microsoft.Web.WebView2.Core.winmd",
+ "lib/uap10.0/Microsoft.Windows.AppLifecycle.winmd",
+ "lib/uap10.0/Microsoft.Windows.AppLifecycle.xml",
+ "lib/uap10.0/Microsoft.Windows.AppNotifications.winmd",
+ "lib/uap10.0/Microsoft.Windows.ApplicationModel.DynamicDependency.winmd",
+ "lib/uap10.0/Microsoft.Windows.ApplicationModel.DynamicDependency.xml",
+ "lib/uap10.0/Microsoft.Windows.ApplicationModel.Resources.winmd",
+ "lib/uap10.0/Microsoft.Windows.ApplicationModel.Resources.xml",
+ "lib/uap10.0/Microsoft.Windows.ApplicationModel.WindowsAppRuntime.winmd",
+ "lib/uap10.0/Microsoft.Windows.ApplicationModel.WindowsAppRuntime.xml",
+ "lib/uap10.0/Microsoft.Windows.PushNotifications.winmd",
+ "lib/uap10.0/Microsoft.Windows.PushNotifications.xml",
+ "lib/uap10.0/Microsoft.Windows.System.Power.winmd",
+ "lib/uap10.0/Microsoft.Windows.System.Power.xml",
+ "lib/uap10.0/Microsoft.Windows.System.winmd",
+ "lib/uap10.0/Microsoft.Windows.System.xml",
+ "lib/win10-arm64/DWriteCore.lib",
+ "lib/win10-arm64/MRM.lib",
+ "lib/win10-arm64/Microsoft.WindowsAppRuntime.Bootstrap.lib",
+ "lib/win10-arm64/Microsoft.WindowsAppRuntime.lib",
+ "lib/win10-x64/DWriteCore.lib",
+ "lib/win10-x64/MRM.lib",
+ "lib/win10-x64/Microsoft.WindowsAppRuntime.Bootstrap.lib",
+ "lib/win10-x64/Microsoft.WindowsAppRuntime.lib",
+ "lib/win10-x86/DWriteCore.lib",
+ "lib/win10-x86/MRM.lib",
+ "lib/win10-x86/Microsoft.WindowsAppRuntime.Bootstrap.lib",
+ "lib/win10-x86/Microsoft.WindowsAppRuntime.lib",
+ "license.txt",
+ "manifests/Microsoft.InteractiveExperiences.manifest",
+ "manifests/Microsoft.WindowsAppSdk.Foundation.manifest",
+ "manifests/manifests/Microsoft.WindowsAppSdk.WinUI.manifest",
+ "microsoft.windowsappsdk.1.1.3.nupkg.sha512",
+ "microsoft.windowsappsdk.nuspec",
+ "runtimes/win10-arm64/native/Microsoft.WindowsAppRuntime.Bootstrap.dll",
+ "runtimes/win10-x64/native/Microsoft.WindowsAppRuntime.Bootstrap.dll",
+ "runtimes/win10-x86/native/Microsoft.WindowsAppRuntime.Bootstrap.dll",
+ "tools/MSIX/win10-arm64/MSIX.inventory",
+ "tools/MSIX/win10-arm64/Microsoft.WindowsAppRuntime.1.1.msix",
+ "tools/MSIX/win10-arm64/Microsoft.WindowsAppRuntime.DDLM.1.1.msix",
+ "tools/MSIX/win10-arm64/Microsoft.WindowsAppRuntime.Main.1.1.msix",
+ "tools/MSIX/win10-arm64/Microsoft.WindowsAppRuntime.Singleton.1.1.msix",
+ "tools/MSIX/win10-x64/MSIX.inventory",
+ "tools/MSIX/win10-x64/Microsoft.WindowsAppRuntime.1.1.msix",
+ "tools/MSIX/win10-x64/Microsoft.WindowsAppRuntime.DDLM.1.1.msix",
+ "tools/MSIX/win10-x64/Microsoft.WindowsAppRuntime.Main.1.1.msix",
+ "tools/MSIX/win10-x64/Microsoft.WindowsAppRuntime.Singleton.1.1.msix",
+ "tools/MSIX/win10-x86/MSIX.inventory",
+ "tools/MSIX/win10-x86/Microsoft.WindowsAppRuntime.1.1.msix",
+ "tools/MSIX/win10-x86/Microsoft.WindowsAppRuntime.DDLM.1.1.msix",
+ "tools/MSIX/win10-x86/Microsoft.WindowsAppRuntime.Main.1.1.msix",
+ "tools/MSIX/win10-x86/Microsoft.WindowsAppRuntime.Singleton.1.1.msix",
+ "tools/NOTICE.txt",
+ "tools/arm64/GenXbf.dll",
+ "tools/net472/Microsoft.Bcl.AsyncInterfaces.dll",
+ "tools/net472/Microsoft.Build.Framework.dll",
+ "tools/net472/Microsoft.Build.Msix.dll",
+ "tools/net472/Microsoft.Build.Utilities.Core.dll",
+ "tools/net472/Microsoft.Build.dll",
+ "tools/net472/Microsoft.Cci.dll",
+ "tools/net472/Microsoft.Diagnostics.Tracing.EventSource.dll",
+ "tools/net472/Microsoft.UI.Xaml.Markup.Compiler.IO.dll",
+ "tools/net472/Microsoft.UI.Xaml.Markup.Compiler.MSBuildInterop.dll",
+ "tools/net472/Microsoft.UI.Xaml.Markup.Compiler.dll",
+ "tools/net472/Microsoft.VisualStudio.RemoteControl.dll",
+ "tools/net472/Microsoft.VisualStudio.Setup.Configuration.Interop.dll",
+ "tools/net472/Microsoft.VisualStudio.Telemetry.dll",
+ "tools/net472/Microsoft.VisualStudio.Utilities.Internal.dll",
+ "tools/net472/System.Buffers.dll",
+ "tools/net472/System.Collections.Immutable.dll",
+ "tools/net472/System.Memory.dll",
+ "tools/net472/System.Numerics.Vectors.dll",
+ "tools/net472/System.Runtime.CompilerServices.Unsafe.dll",
+ "tools/net472/System.Text.Encodings.Web.dll",
+ "tools/net472/System.Text.Json.dll",
+ "tools/net472/System.Threading.Tasks.Dataflow.dll",
+ "tools/net472/System.Threading.Tasks.Extensions.dll",
+ "tools/net472/XamlCompiler.exe",
+ "tools/net472/XamlCompiler.exe.config",
+ "tools/net472/af-ZA/Microsoft.Build.Msix.resources.dll",
+ "tools/net472/ar-SA/Microsoft.Build.Msix.resources.dll",
+ "tools/net472/az-Latn-AZ/Microsoft.Build.Msix.resources.dll",
+ "tools/net472/bg-BG/Microsoft.Build.Msix.resources.dll",
+ "tools/net472/bs-Latn-BA/Microsoft.Build.Msix.resources.dll",
+ "tools/net472/ca-ES/Microsoft.Build.Msix.resources.dll",
+ "tools/net472/cs-CZ/Microsoft.Build.Msix.resources.dll",
+ "tools/net472/cy-GB/Microsoft.Build.Msix.resources.dll",
+ "tools/net472/da-DK/Microsoft.Build.Msix.resources.dll",
+ "tools/net472/de-DE/Microsoft.Build.Msix.resources.dll",
+ "tools/net472/el-GR/Microsoft.Build.Msix.resources.dll",
+ "tools/net472/en-GB/Microsoft.Build.Msix.resources.dll",
+ "tools/net472/es-ES/Microsoft.Build.Msix.resources.dll",
+ "tools/net472/es-MX/Microsoft.Build.Msix.resources.dll",
+ "tools/net472/et-EE/Microsoft.Build.Msix.resources.dll",
+ "tools/net472/eu-ES/Microsoft.Build.Msix.resources.dll",
+ "tools/net472/fa-IR/Microsoft.Build.Msix.resources.dll",
+ "tools/net472/fi-FI/Microsoft.Build.Msix.resources.dll",
+ "tools/net472/fr-CA/Microsoft.Build.Msix.resources.dll",
+ "tools/net472/fr-FR/Microsoft.Build.Msix.resources.dll",
+ "tools/net472/gl-ES/Microsoft.Build.Msix.resources.dll",
+ "tools/net472/he-IL/Microsoft.Build.Msix.resources.dll",
+ "tools/net472/hi-IN/Microsoft.Build.Msix.resources.dll",
+ "tools/net472/hr-HR/Microsoft.Build.Msix.resources.dll",
+ "tools/net472/hu-HU/Microsoft.Build.Msix.resources.dll",
+ "tools/net472/id-ID/Microsoft.Build.Msix.resources.dll",
+ "tools/net472/is-IS/Microsoft.Build.Msix.resources.dll",
+ "tools/net472/it-IT/Microsoft.Build.Msix.resources.dll",
+ "tools/net472/ja-JP/Microsoft.Build.Msix.resources.dll",
+ "tools/net472/ka-GE/Microsoft.Build.Msix.resources.dll",
+ "tools/net472/kk-KZ/Microsoft.Build.Msix.resources.dll",
+ "tools/net472/ko-KR/Microsoft.Build.Msix.resources.dll",
+ "tools/net472/lt-LT/Microsoft.Build.Msix.resources.dll",
+ "tools/net472/lv-LV/Microsoft.Build.Msix.resources.dll",
+ "tools/net472/ms-MY/Microsoft.Build.Msix.resources.dll",
+ "tools/net472/nb-NO/Microsoft.Build.Msix.resources.dll",
+ "tools/net472/nl-NL/Microsoft.Build.Msix.resources.dll",
+ "tools/net472/nn-NO/Microsoft.Build.Msix.resources.dll",
+ "tools/net472/pl-PL/Microsoft.Build.Msix.resources.dll",
+ "tools/net472/pt-BR/Microsoft.Build.Msix.resources.dll",
+ "tools/net472/pt-PT/Microsoft.Build.Msix.resources.dll",
+ "tools/net472/ro-RO/Microsoft.Build.Msix.resources.dll",
+ "tools/net472/ru-RU/Microsoft.Build.Msix.resources.dll",
+ "tools/net472/sk-SK/Microsoft.Build.Msix.resources.dll",
+ "tools/net472/sl-SI/Microsoft.Build.Msix.resources.dll",
+ "tools/net472/sq-AL/Microsoft.Build.Msix.resources.dll",
+ "tools/net472/sr-Cyrl-RS/Microsoft.Build.Msix.resources.dll",
+ "tools/net472/sr-Latn-RS/Microsoft.Build.Msix.resources.dll",
+ "tools/net472/sv-SE/Microsoft.Build.Msix.resources.dll",
+ "tools/net472/th-TH/Microsoft.Build.Msix.resources.dll",
+ "tools/net472/tr-TR/Microsoft.Build.Msix.resources.dll",
+ "tools/net472/uk-UA/Microsoft.Build.Msix.resources.dll",
+ "tools/net472/vi-VN/Microsoft.Build.Msix.resources.dll",
+ "tools/net472/zh-CN/Microsoft.Build.Msix.resources.dll",
+ "tools/net472/zh-TW/Microsoft.Build.Msix.resources.dll",
+ "tools/net5.0/Microsoft.Bcl.AsyncInterfaces.dll",
+ "tools/net5.0/Microsoft.Build.Msix.dll",
+ "tools/net5.0/Microsoft.Cci.dll",
+ "tools/net5.0/Microsoft.UI.Xaml.Markup.Compiler.IO.dll",
+ "tools/net5.0/Microsoft.UI.Xaml.Markup.Compiler.MSBuildInterop.dll",
+ "tools/net5.0/Microsoft.UI.Xaml.Markup.Compiler.dll",
+ "tools/net5.0/Microsoft.VisualStudio.RemoteControl.dll",
+ "tools/net5.0/Microsoft.VisualStudio.Setup.Configuration.Interop.dll",
+ "tools/net5.0/Microsoft.VisualStudio.Telemetry.dll",
+ "tools/net5.0/Microsoft.VisualStudio.Utilities.Internal.dll",
+ "tools/net5.0/System.Runtime.CompilerServices.Unsafe.dll",
+ "tools/net5.0/System.Text.Encodings.Web.dll",
+ "tools/net5.0/System.Text.Json.dll",
+ "tools/net5.0/af-ZA/Microsoft.Build.Msix.resources.dll",
+ "tools/net5.0/ar-SA/Microsoft.Build.Msix.resources.dll",
+ "tools/net5.0/az-Latn-AZ/Microsoft.Build.Msix.resources.dll",
+ "tools/net5.0/bg-BG/Microsoft.Build.Msix.resources.dll",
+ "tools/net5.0/bs-Latn-BA/Microsoft.Build.Msix.resources.dll",
+ "tools/net5.0/ca-ES/Microsoft.Build.Msix.resources.dll",
+ "tools/net5.0/cs-CZ/Microsoft.Build.Msix.resources.dll",
+ "tools/net5.0/cy-GB/Microsoft.Build.Msix.resources.dll",
+ "tools/net5.0/da-DK/Microsoft.Build.Msix.resources.dll",
+ "tools/net5.0/de-DE/Microsoft.Build.Msix.resources.dll",
+ "tools/net5.0/el-GR/Microsoft.Build.Msix.resources.dll",
+ "tools/net5.0/en-GB/Microsoft.Build.Msix.resources.dll",
+ "tools/net5.0/es-ES/Microsoft.Build.Msix.resources.dll",
+ "tools/net5.0/es-MX/Microsoft.Build.Msix.resources.dll",
+ "tools/net5.0/et-EE/Microsoft.Build.Msix.resources.dll",
+ "tools/net5.0/eu-ES/Microsoft.Build.Msix.resources.dll",
+ "tools/net5.0/fa-IR/Microsoft.Build.Msix.resources.dll",
+ "tools/net5.0/fi-FI/Microsoft.Build.Msix.resources.dll",
+ "tools/net5.0/fr-CA/Microsoft.Build.Msix.resources.dll",
+ "tools/net5.0/fr-FR/Microsoft.Build.Msix.resources.dll",
+ "tools/net5.0/gl-ES/Microsoft.Build.Msix.resources.dll",
+ "tools/net5.0/he-IL/Microsoft.Build.Msix.resources.dll",
+ "tools/net5.0/hi-IN/Microsoft.Build.Msix.resources.dll",
+ "tools/net5.0/hr-HR/Microsoft.Build.Msix.resources.dll",
+ "tools/net5.0/hu-HU/Microsoft.Build.Msix.resources.dll",
+ "tools/net5.0/id-ID/Microsoft.Build.Msix.resources.dll",
+ "tools/net5.0/is-IS/Microsoft.Build.Msix.resources.dll",
+ "tools/net5.0/it-IT/Microsoft.Build.Msix.resources.dll",
+ "tools/net5.0/ja-JP/Microsoft.Build.Msix.resources.dll",
+ "tools/net5.0/ka-GE/Microsoft.Build.Msix.resources.dll",
+ "tools/net5.0/kk-KZ/Microsoft.Build.Msix.resources.dll",
+ "tools/net5.0/ko-KR/Microsoft.Build.Msix.resources.dll",
+ "tools/net5.0/lt-LT/Microsoft.Build.Msix.resources.dll",
+ "tools/net5.0/lv-LV/Microsoft.Build.Msix.resources.dll",
+ "tools/net5.0/ms-MY/Microsoft.Build.Msix.resources.dll",
+ "tools/net5.0/nb-NO/Microsoft.Build.Msix.resources.dll",
+ "tools/net5.0/nl-NL/Microsoft.Build.Msix.resources.dll",
+ "tools/net5.0/nn-NO/Microsoft.Build.Msix.resources.dll",
+ "tools/net5.0/pl-PL/Microsoft.Build.Msix.resources.dll",
+ "tools/net5.0/pt-BR/Microsoft.Build.Msix.resources.dll",
+ "tools/net5.0/pt-PT/Microsoft.Build.Msix.resources.dll",
+ "tools/net5.0/ro-RO/Microsoft.Build.Msix.resources.dll",
+ "tools/net5.0/ru-RU/Microsoft.Build.Msix.resources.dll",
+ "tools/net5.0/sk-SK/Microsoft.Build.Msix.resources.dll",
+ "tools/net5.0/sl-SI/Microsoft.Build.Msix.resources.dll",
+ "tools/net5.0/sq-AL/Microsoft.Build.Msix.resources.dll",
+ "tools/net5.0/sr-Cyrl-RS/Microsoft.Build.Msix.resources.dll",
+ "tools/net5.0/sr-Latn-RS/Microsoft.Build.Msix.resources.dll",
+ "tools/net5.0/sv-SE/Microsoft.Build.Msix.resources.dll",
+ "tools/net5.0/th-TH/Microsoft.Build.Msix.resources.dll",
+ "tools/net5.0/tr-TR/Microsoft.Build.Msix.resources.dll",
+ "tools/net5.0/uk-UA/Microsoft.Build.Msix.resources.dll",
+ "tools/net5.0/vi-VN/Microsoft.Build.Msix.resources.dll",
+ "tools/net5.0/zh-CN/Microsoft.Build.Msix.resources.dll",
+ "tools/net5.0/zh-TW/Microsoft.Build.Msix.resources.dll",
+ "tools/x64/GenXbf.dll",
+ "tools/x86/GenXbf.dll"
+ ]
+ },
+ "MySql.Data/9.1.0": {
+ "sha512": "E4t/IQzcXg4nYGqrGkoGwwSWA1V2L+LKzVddPABAPcj2i6RESP2fcZQ4XFC0Wv+Cq4DlgR3DYhX/fGaZ3VxCPQ==",
+ "type": "package",
+ "path": "mysql.data/9.1.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE",
+ "README",
+ "README.md",
+ "lib/net462/MySql.Data.dll",
+ "lib/net462/MySql.Data.xml",
+ "lib/net48/MySql.Data.dll",
+ "lib/net48/MySql.Data.xml",
+ "lib/net6.0/MySql.Data.dll",
+ "lib/net6.0/MySql.Data.xml",
+ "lib/net8.0/MySql.Data.dll",
+ "lib/net8.0/MySql.Data.xml",
+ "lib/netstandard2.0/MySql.Data.dll",
+ "lib/netstandard2.0/MySql.Data.xml",
+ "lib/netstandard2.1/MySql.Data.dll",
+ "lib/netstandard2.1/MySql.Data.xml",
+ "logo-mysql-170x115.png",
+ "mysql.data.9.1.0.nupkg.sha512",
+ "mysql.data.nuspec",
+ "runtimes/win-x64/native/comerr64.dll",
+ "runtimes/win-x64/native/gssapi64.dll",
+ "runtimes/win-x64/native/k5sprt64.dll",
+ "runtimes/win-x64/native/krb5_64.dll",
+ "runtimes/win-x64/native/krbcc64.dll"
+ ]
+ },
+ "runtime.any.System.IO/4.3.0": {
+ "sha512": "SDZ5AD1DtyRoxYtEcqQ3HDlcrorMYXZeCt7ZhG9US9I5Vva+gpIWDGMkcwa5XiKL0ceQKRZIX2x0XEjLX7PDzQ==",
+ "type": "package",
+ "path": "runtime.any.system.io/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.IO.dll",
+ "lib/netstandard1.5/System.IO.dll",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/netstandard/_._",
+ "runtime.any.system.io.4.3.0.nupkg.sha512",
+ "runtime.any.system.io.nuspec",
+ "runtimes/aot/lib/netcore50/_._"
+ ]
+ },
+ "runtime.any.System.Reflection/4.3.0": {
+ "sha512": "hLC3A3rI8jipR5d9k7+f0MgRCW6texsAp0MWkN/ci18FMtQ9KH7E2vDn/DH2LkxsszlpJpOn9qy6Z6/69rH6eQ==",
+ "type": "package",
+ "path": "runtime.any.system.reflection/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Reflection.dll",
+ "lib/netstandard1.5/System.Reflection.dll",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/netstandard/_._",
+ "runtime.any.system.reflection.4.3.0.nupkg.sha512",
+ "runtime.any.system.reflection.nuspec",
+ "runtimes/aot/lib/netcore50/_._"
+ ]
+ },
+ "runtime.any.System.Reflection.Primitives/4.3.0": {
+ "sha512": "Nrm1p3armp6TTf2xuvaa+jGTTmncALWFq22CpmwRvhDf6dE9ZmH40EbOswD4GnFLrMRS0Ki6Kx5aUPmKK/hZBg==",
+ "type": "package",
+ "path": "runtime.any.system.reflection.primitives/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Reflection.Primitives.dll",
+ "lib/netstandard1.3/System.Reflection.Primitives.dll",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/netstandard/_._",
+ "runtime.any.system.reflection.primitives.4.3.0.nupkg.sha512",
+ "runtime.any.system.reflection.primitives.nuspec",
+ "runtimes/aot/lib/netcore50/_._"
+ ]
+ },
+ "runtime.any.System.Runtime/4.3.0": {
+ "sha512": "fRS7zJgaG9NkifaAxGGclDDoRn9HC7hXACl52Or06a/fxdzDajWb5wov3c6a+gVSlekRoexfjwQSK9sh5um5LQ==",
+ "type": "package",
+ "path": "runtime.any.system.runtime/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Runtime.dll",
+ "lib/netstandard1.5/System.Runtime.dll",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/netstandard/_._",
+ "runtime.any.system.runtime.4.3.0.nupkg.sha512",
+ "runtime.any.system.runtime.nuspec",
+ "runtimes/aot/lib/netcore50/_._"
+ ]
+ },
+ "runtime.any.System.Text.Encoding/4.3.0": {
+ "sha512": "+ihI5VaXFCMVPJNstG4O4eo1CfbrByLxRrQQTqOTp1ttK0kUKDqOdBSTaCB2IBk/QtjDrs6+x4xuezyMXdm0HQ==",
+ "type": "package",
+ "path": "runtime.any.system.text.encoding/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Text.Encoding.dll",
+ "lib/netstandard1.3/System.Text.Encoding.dll",
+ "lib/win8/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/netstandard/_._",
+ "runtime.any.system.text.encoding.4.3.0.nupkg.sha512",
+ "runtime.any.system.text.encoding.nuspec",
+ "runtimes/aot/lib/netcore50/_._"
+ ]
+ },
+ "runtime.any.System.Threading.Tasks/4.3.0": {
+ "sha512": "OhBAVBQG5kFj1S+hCEQ3TUHBAEtZ3fbEMgZMRNdN8A0Pj4x+5nTELEqL59DU0TjKVE6II3dqKw4Dklb3szT65w==",
+ "type": "package",
+ "path": "runtime.any.system.threading.tasks/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Threading.Tasks.dll",
+ "lib/netstandard1.3/System.Threading.Tasks.dll",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/netstandard/_._",
+ "runtime.any.system.threading.tasks.4.3.0.nupkg.sha512",
+ "runtime.any.system.threading.tasks.nuspec",
+ "runtimes/aot/lib/netcore50/_._"
+ ]
+ },
+ "runtime.win7.System.Private.Uri/4.3.0": {
+ "sha512": "Q+IBgaPYicSQs2tBlmXqbS25c/JLIthWrgrpMwxKSOobW/OqIMVFruUGfuaz4QABVzV8iKdCAbN7APY7Tclbnw==",
+ "type": "package",
+ "path": "runtime.win7.system.private.uri/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "ref/netstandard/_._",
+ "runtime.win7.system.private.uri.4.3.0.nupkg.sha512",
+ "runtime.win7.system.private.uri.nuspec",
+ "runtimes/aot/lib/netcore50/System.Private.Uri.dll",
+ "runtimes/win/lib/netcore50/System.Private.Uri.dll",
+ "runtimes/win/lib/netstandard1.0/System.Private.Uri.dll"
+ ]
+ },
+ "System.Buffers/4.5.1": {
+ "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
+ "type": "package",
+ "path": "system.buffers/4.5.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/System.Buffers.dll",
+ "lib/net461/System.Buffers.xml",
+ "lib/netcoreapp2.0/_._",
+ "lib/netstandard1.1/System.Buffers.dll",
+ "lib/netstandard1.1/System.Buffers.xml",
+ "lib/netstandard2.0/System.Buffers.dll",
+ "lib/netstandard2.0/System.Buffers.xml",
+ "lib/uap10.0.16299/_._",
+ "ref/net45/System.Buffers.dll",
+ "ref/net45/System.Buffers.xml",
+ "ref/netcoreapp2.0/_._",
+ "ref/netstandard1.1/System.Buffers.dll",
+ "ref/netstandard1.1/System.Buffers.xml",
+ "ref/netstandard2.0/System.Buffers.dll",
+ "ref/netstandard2.0/System.Buffers.xml",
+ "ref/uap10.0.16299/_._",
+ "system.buffers.4.5.1.nupkg.sha512",
+ "system.buffers.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Configuration.ConfigurationManager/8.0.0": {
+ "sha512": "JlYi9XVvIREURRUlGMr1F6vOFLk7YSY4p1vHo4kX3tQ0AGrjqlRWHDi66ImHhy6qwXBG3BJ6Y1QlYQ+Qz6Xgww==",
+ "type": "package",
+ "path": "system.configuration.configurationmanager/8.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "PACKAGE.md",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/System.Configuration.ConfigurationManager.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net6.0/_._",
+ "buildTransitive/netcoreapp2.0/System.Configuration.ConfigurationManager.targets",
+ "lib/net462/System.Configuration.ConfigurationManager.dll",
+ "lib/net462/System.Configuration.ConfigurationManager.xml",
+ "lib/net6.0/System.Configuration.ConfigurationManager.dll",
+ "lib/net6.0/System.Configuration.ConfigurationManager.xml",
+ "lib/net7.0/System.Configuration.ConfigurationManager.dll",
+ "lib/net7.0/System.Configuration.ConfigurationManager.xml",
+ "lib/net8.0/System.Configuration.ConfigurationManager.dll",
+ "lib/net8.0/System.Configuration.ConfigurationManager.xml",
+ "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
+ "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml",
+ "system.configuration.configurationmanager.8.0.0.nupkg.sha512",
+ "system.configuration.configurationmanager.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "System.Diagnostics.DiagnosticSource/8.0.1": {
+ "sha512": "vaoWjvkG1aenR2XdjaVivlCV9fADfgyhW5bZtXT23qaEea0lWiUljdQuze4E31vKM7ZWJaSUsbYIKE3rnzfZUg==",
+ "type": "package",
+ "path": "system.diagnostics.diagnosticsource/8.0.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/System.Diagnostics.DiagnosticSource.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net6.0/_._",
+ "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets",
+ "lib/net462/System.Diagnostics.DiagnosticSource.dll",
+ "lib/net462/System.Diagnostics.DiagnosticSource.xml",
+ "lib/net6.0/System.Diagnostics.DiagnosticSource.dll",
+ "lib/net6.0/System.Diagnostics.DiagnosticSource.xml",
+ "lib/net7.0/System.Diagnostics.DiagnosticSource.dll",
+ "lib/net7.0/System.Diagnostics.DiagnosticSource.xml",
+ "lib/net8.0/System.Diagnostics.DiagnosticSource.dll",
+ "lib/net8.0/System.Diagnostics.DiagnosticSource.xml",
+ "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll",
+ "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml",
+ "system.diagnostics.diagnosticsource.8.0.1.nupkg.sha512",
+ "system.diagnostics.diagnosticsource.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "System.IO/4.3.0": {
+ "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
+ "type": "package",
+ "path": "system.io/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net462/System.IO.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net462/System.IO.dll",
+ "ref/netcore50/System.IO.dll",
+ "ref/netcore50/System.IO.xml",
+ "ref/netcore50/de/System.IO.xml",
+ "ref/netcore50/es/System.IO.xml",
+ "ref/netcore50/fr/System.IO.xml",
+ "ref/netcore50/it/System.IO.xml",
+ "ref/netcore50/ja/System.IO.xml",
+ "ref/netcore50/ko/System.IO.xml",
+ "ref/netcore50/ru/System.IO.xml",
+ "ref/netcore50/zh-hans/System.IO.xml",
+ "ref/netcore50/zh-hant/System.IO.xml",
+ "ref/netstandard1.0/System.IO.dll",
+ "ref/netstandard1.0/System.IO.xml",
+ "ref/netstandard1.0/de/System.IO.xml",
+ "ref/netstandard1.0/es/System.IO.xml",
+ "ref/netstandard1.0/fr/System.IO.xml",
+ "ref/netstandard1.0/it/System.IO.xml",
+ "ref/netstandard1.0/ja/System.IO.xml",
+ "ref/netstandard1.0/ko/System.IO.xml",
+ "ref/netstandard1.0/ru/System.IO.xml",
+ "ref/netstandard1.0/zh-hans/System.IO.xml",
+ "ref/netstandard1.0/zh-hant/System.IO.xml",
+ "ref/netstandard1.3/System.IO.dll",
+ "ref/netstandard1.3/System.IO.xml",
+ "ref/netstandard1.3/de/System.IO.xml",
+ "ref/netstandard1.3/es/System.IO.xml",
+ "ref/netstandard1.3/fr/System.IO.xml",
+ "ref/netstandard1.3/it/System.IO.xml",
+ "ref/netstandard1.3/ja/System.IO.xml",
+ "ref/netstandard1.3/ko/System.IO.xml",
+ "ref/netstandard1.3/ru/System.IO.xml",
+ "ref/netstandard1.3/zh-hans/System.IO.xml",
+ "ref/netstandard1.3/zh-hant/System.IO.xml",
+ "ref/netstandard1.5/System.IO.dll",
+ "ref/netstandard1.5/System.IO.xml",
+ "ref/netstandard1.5/de/System.IO.xml",
+ "ref/netstandard1.5/es/System.IO.xml",
+ "ref/netstandard1.5/fr/System.IO.xml",
+ "ref/netstandard1.5/it/System.IO.xml",
+ "ref/netstandard1.5/ja/System.IO.xml",
+ "ref/netstandard1.5/ko/System.IO.xml",
+ "ref/netstandard1.5/ru/System.IO.xml",
+ "ref/netstandard1.5/zh-hans/System.IO.xml",
+ "ref/netstandard1.5/zh-hant/System.IO.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.io.4.3.0.nupkg.sha512",
+ "system.io.nuspec"
+ ]
+ },
+ "System.IO.Pipelines/6.0.3": {
+ "sha512": "ryTgF+iFkpGZY1vRQhfCzX0xTdlV3pyaTTqRu2ETbEv+HlV7O6y7hyQURnghNIXvctl5DuZ//Dpks6HdL/Txgw==",
+ "type": "package",
+ "path": "system.io.pipelines/6.0.3",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/netcoreapp2.0/System.IO.Pipelines.targets",
+ "buildTransitive/netcoreapp3.1/_._",
+ "lib/net461/System.IO.Pipelines.dll",
+ "lib/net461/System.IO.Pipelines.xml",
+ "lib/net6.0/System.IO.Pipelines.dll",
+ "lib/net6.0/System.IO.Pipelines.xml",
+ "lib/netcoreapp3.1/System.IO.Pipelines.dll",
+ "lib/netcoreapp3.1/System.IO.Pipelines.xml",
+ "lib/netstandard2.0/System.IO.Pipelines.dll",
+ "lib/netstandard2.0/System.IO.Pipelines.xml",
+ "system.io.pipelines.6.0.3.nupkg.sha512",
+ "system.io.pipelines.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "System.Private.Uri/4.3.0": {
+ "sha512": "I4SwANiUGho1esj4V4oSlPllXjzCZDE+5XXso2P03LW2vOda2Enzh8DWOxwN6hnrJyp314c7KuVu31QYhRzOGg==",
+ "type": "package",
+ "path": "system.private.uri/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "ref/netstandard/_._",
+ "system.private.uri.4.3.0.nupkg.sha512",
+ "system.private.uri.nuspec"
+ ]
+ },
+ "System.Reflection/4.3.0": {
+ "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
+ "type": "package",
+ "path": "system.reflection/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net462/System.Reflection.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net462/System.Reflection.dll",
+ "ref/netcore50/System.Reflection.dll",
+ "ref/netcore50/System.Reflection.xml",
+ "ref/netcore50/de/System.Reflection.xml",
+ "ref/netcore50/es/System.Reflection.xml",
+ "ref/netcore50/fr/System.Reflection.xml",
+ "ref/netcore50/it/System.Reflection.xml",
+ "ref/netcore50/ja/System.Reflection.xml",
+ "ref/netcore50/ko/System.Reflection.xml",
+ "ref/netcore50/ru/System.Reflection.xml",
+ "ref/netcore50/zh-hans/System.Reflection.xml",
+ "ref/netcore50/zh-hant/System.Reflection.xml",
+ "ref/netstandard1.0/System.Reflection.dll",
+ "ref/netstandard1.0/System.Reflection.xml",
+ "ref/netstandard1.0/de/System.Reflection.xml",
+ "ref/netstandard1.0/es/System.Reflection.xml",
+ "ref/netstandard1.0/fr/System.Reflection.xml",
+ "ref/netstandard1.0/it/System.Reflection.xml",
+ "ref/netstandard1.0/ja/System.Reflection.xml",
+ "ref/netstandard1.0/ko/System.Reflection.xml",
+ "ref/netstandard1.0/ru/System.Reflection.xml",
+ "ref/netstandard1.0/zh-hans/System.Reflection.xml",
+ "ref/netstandard1.0/zh-hant/System.Reflection.xml",
+ "ref/netstandard1.3/System.Reflection.dll",
+ "ref/netstandard1.3/System.Reflection.xml",
+ "ref/netstandard1.3/de/System.Reflection.xml",
+ "ref/netstandard1.3/es/System.Reflection.xml",
+ "ref/netstandard1.3/fr/System.Reflection.xml",
+ "ref/netstandard1.3/it/System.Reflection.xml",
+ "ref/netstandard1.3/ja/System.Reflection.xml",
+ "ref/netstandard1.3/ko/System.Reflection.xml",
+ "ref/netstandard1.3/ru/System.Reflection.xml",
+ "ref/netstandard1.3/zh-hans/System.Reflection.xml",
+ "ref/netstandard1.3/zh-hant/System.Reflection.xml",
+ "ref/netstandard1.5/System.Reflection.dll",
+ "ref/netstandard1.5/System.Reflection.xml",
+ "ref/netstandard1.5/de/System.Reflection.xml",
+ "ref/netstandard1.5/es/System.Reflection.xml",
+ "ref/netstandard1.5/fr/System.Reflection.xml",
+ "ref/netstandard1.5/it/System.Reflection.xml",
+ "ref/netstandard1.5/ja/System.Reflection.xml",
+ "ref/netstandard1.5/ko/System.Reflection.xml",
+ "ref/netstandard1.5/ru/System.Reflection.xml",
+ "ref/netstandard1.5/zh-hans/System.Reflection.xml",
+ "ref/netstandard1.5/zh-hant/System.Reflection.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.reflection.4.3.0.nupkg.sha512",
+ "system.reflection.nuspec"
+ ]
+ },
+ "System.Reflection.Primitives/4.3.0": {
+ "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
+ "type": "package",
+ "path": "system.reflection.primitives/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Reflection.Primitives.dll",
+ "ref/netcore50/System.Reflection.Primitives.xml",
+ "ref/netcore50/de/System.Reflection.Primitives.xml",
+ "ref/netcore50/es/System.Reflection.Primitives.xml",
+ "ref/netcore50/fr/System.Reflection.Primitives.xml",
+ "ref/netcore50/it/System.Reflection.Primitives.xml",
+ "ref/netcore50/ja/System.Reflection.Primitives.xml",
+ "ref/netcore50/ko/System.Reflection.Primitives.xml",
+ "ref/netcore50/ru/System.Reflection.Primitives.xml",
+ "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
+ "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/System.Reflection.Primitives.dll",
+ "ref/netstandard1.0/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.reflection.primitives.4.3.0.nupkg.sha512",
+ "system.reflection.primitives.nuspec"
+ ]
+ },
+ "System.Runtime/4.3.0": {
+ "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
+ "type": "package",
+ "path": "system.runtime/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net462/System.Runtime.dll",
+ "lib/portable-net45+win8+wp80+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net462/System.Runtime.dll",
+ "ref/netcore50/System.Runtime.dll",
+ "ref/netcore50/System.Runtime.xml",
+ "ref/netcore50/de/System.Runtime.xml",
+ "ref/netcore50/es/System.Runtime.xml",
+ "ref/netcore50/fr/System.Runtime.xml",
+ "ref/netcore50/it/System.Runtime.xml",
+ "ref/netcore50/ja/System.Runtime.xml",
+ "ref/netcore50/ko/System.Runtime.xml",
+ "ref/netcore50/ru/System.Runtime.xml",
+ "ref/netcore50/zh-hans/System.Runtime.xml",
+ "ref/netcore50/zh-hant/System.Runtime.xml",
+ "ref/netstandard1.0/System.Runtime.dll",
+ "ref/netstandard1.0/System.Runtime.xml",
+ "ref/netstandard1.0/de/System.Runtime.xml",
+ "ref/netstandard1.0/es/System.Runtime.xml",
+ "ref/netstandard1.0/fr/System.Runtime.xml",
+ "ref/netstandard1.0/it/System.Runtime.xml",
+ "ref/netstandard1.0/ja/System.Runtime.xml",
+ "ref/netstandard1.0/ko/System.Runtime.xml",
+ "ref/netstandard1.0/ru/System.Runtime.xml",
+ "ref/netstandard1.0/zh-hans/System.Runtime.xml",
+ "ref/netstandard1.0/zh-hant/System.Runtime.xml",
+ "ref/netstandard1.2/System.Runtime.dll",
+ "ref/netstandard1.2/System.Runtime.xml",
+ "ref/netstandard1.2/de/System.Runtime.xml",
+ "ref/netstandard1.2/es/System.Runtime.xml",
+ "ref/netstandard1.2/fr/System.Runtime.xml",
+ "ref/netstandard1.2/it/System.Runtime.xml",
+ "ref/netstandard1.2/ja/System.Runtime.xml",
+ "ref/netstandard1.2/ko/System.Runtime.xml",
+ "ref/netstandard1.2/ru/System.Runtime.xml",
+ "ref/netstandard1.2/zh-hans/System.Runtime.xml",
+ "ref/netstandard1.2/zh-hant/System.Runtime.xml",
+ "ref/netstandard1.3/System.Runtime.dll",
+ "ref/netstandard1.3/System.Runtime.xml",
+ "ref/netstandard1.3/de/System.Runtime.xml",
+ "ref/netstandard1.3/es/System.Runtime.xml",
+ "ref/netstandard1.3/fr/System.Runtime.xml",
+ "ref/netstandard1.3/it/System.Runtime.xml",
+ "ref/netstandard1.3/ja/System.Runtime.xml",
+ "ref/netstandard1.3/ko/System.Runtime.xml",
+ "ref/netstandard1.3/ru/System.Runtime.xml",
+ "ref/netstandard1.3/zh-hans/System.Runtime.xml",
+ "ref/netstandard1.3/zh-hant/System.Runtime.xml",
+ "ref/netstandard1.5/System.Runtime.dll",
+ "ref/netstandard1.5/System.Runtime.xml",
+ "ref/netstandard1.5/de/System.Runtime.xml",
+ "ref/netstandard1.5/es/System.Runtime.xml",
+ "ref/netstandard1.5/fr/System.Runtime.xml",
+ "ref/netstandard1.5/it/System.Runtime.xml",
+ "ref/netstandard1.5/ja/System.Runtime.xml",
+ "ref/netstandard1.5/ko/System.Runtime.xml",
+ "ref/netstandard1.5/ru/System.Runtime.xml",
+ "ref/netstandard1.5/zh-hans/System.Runtime.xml",
+ "ref/netstandard1.5/zh-hant/System.Runtime.xml",
+ "ref/portable-net45+win8+wp80+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.runtime.4.3.0.nupkg.sha512",
+ "system.runtime.nuspec"
+ ]
+ },
+ "System.Runtime.CompilerServices.Unsafe/6.0.0": {
+ "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
+ "type": "package",
+ "path": "system.runtime.compilerservices.unsafe/6.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets",
+ "buildTransitive/netcoreapp3.1/_._",
+ "lib/net461/System.Runtime.CompilerServices.Unsafe.dll",
+ "lib/net461/System.Runtime.CompilerServices.Unsafe.xml",
+ "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll",
+ "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml",
+ "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll",
+ "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml",
+ "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
+ "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
+ "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
+ "system.runtime.compilerservices.unsafe.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "System.Runtime.Loader/4.3.0": {
+ "sha512": "DHMaRn8D8YCK2GG2pw+UzNxn/OHVfaWx7OTLBD/hPegHZZgcZh3H6seWegrC4BYwsfuGrywIuT+MQs+rPqRLTQ==",
+ "type": "package",
+ "path": "system.runtime.loader/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net462/_._",
+ "lib/netstandard1.5/System.Runtime.Loader.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/netstandard1.5/System.Runtime.Loader.dll",
+ "ref/netstandard1.5/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/de/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/es/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/fr/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/it/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/ja/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/ko/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/ru/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/zh-hans/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/zh-hant/System.Runtime.Loader.xml",
+ "system.runtime.loader.4.3.0.nupkg.sha512",
+ "system.runtime.loader.nuspec"
+ ]
+ },
+ "System.Security.Cryptography.ProtectedData/8.0.0": {
+ "sha512": "+TUFINV2q2ifyXauQXRwy4CiBhqvDEDZeVJU7qfxya4aRYOKzVBpN+4acx25VcPB9ywUN6C0n8drWl110PhZEg==",
+ "type": "package",
+ "path": "system.security.cryptography.protecteddata/8.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "PACKAGE.md",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/System.Security.Cryptography.ProtectedData.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net6.0/_._",
+ "buildTransitive/netcoreapp2.0/System.Security.Cryptography.ProtectedData.targets",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net462/System.Security.Cryptography.ProtectedData.dll",
+ "lib/net462/System.Security.Cryptography.ProtectedData.xml",
+ "lib/net6.0/System.Security.Cryptography.ProtectedData.dll",
+ "lib/net6.0/System.Security.Cryptography.ProtectedData.xml",
+ "lib/net7.0/System.Security.Cryptography.ProtectedData.dll",
+ "lib/net7.0/System.Security.Cryptography.ProtectedData.xml",
+ "lib/net8.0/System.Security.Cryptography.ProtectedData.dll",
+ "lib/net8.0/System.Security.Cryptography.ProtectedData.xml",
+ "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
+ "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "system.security.cryptography.protecteddata.8.0.0.nupkg.sha512",
+ "system.security.cryptography.protecteddata.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "System.Security.Permissions/8.0.0": {
+ "sha512": "v/BBylw7XevuAsHXoX9dDUUfmBIcUf7Lkz8K3ZXIKz3YRKpw8YftpSir4n4e/jDTKFoaK37AsC3xnk+GNFI1Ow==",
+ "type": "package",
+ "path": "system.security.permissions/8.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/System.Security.Permissions.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net6.0/_._",
+ "buildTransitive/netcoreapp2.0/System.Security.Permissions.targets",
+ "lib/net462/System.Security.Permissions.dll",
+ "lib/net462/System.Security.Permissions.xml",
+ "lib/net6.0/System.Security.Permissions.dll",
+ "lib/net6.0/System.Security.Permissions.xml",
+ "lib/net7.0/System.Security.Permissions.dll",
+ "lib/net7.0/System.Security.Permissions.xml",
+ "lib/net8.0/System.Security.Permissions.dll",
+ "lib/net8.0/System.Security.Permissions.xml",
+ "lib/netstandard2.0/System.Security.Permissions.dll",
+ "lib/netstandard2.0/System.Security.Permissions.xml",
+ "system.security.permissions.8.0.0.nupkg.sha512",
+ "system.security.permissions.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "System.Text.Encoding/4.3.0": {
+ "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
+ "type": "package",
+ "path": "system.text.encoding/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Text.Encoding.dll",
+ "ref/netcore50/System.Text.Encoding.xml",
+ "ref/netcore50/de/System.Text.Encoding.xml",
+ "ref/netcore50/es/System.Text.Encoding.xml",
+ "ref/netcore50/fr/System.Text.Encoding.xml",
+ "ref/netcore50/it/System.Text.Encoding.xml",
+ "ref/netcore50/ja/System.Text.Encoding.xml",
+ "ref/netcore50/ko/System.Text.Encoding.xml",
+ "ref/netcore50/ru/System.Text.Encoding.xml",
+ "ref/netcore50/zh-hans/System.Text.Encoding.xml",
+ "ref/netcore50/zh-hant/System.Text.Encoding.xml",
+ "ref/netstandard1.0/System.Text.Encoding.dll",
+ "ref/netstandard1.0/System.Text.Encoding.xml",
+ "ref/netstandard1.0/de/System.Text.Encoding.xml",
+ "ref/netstandard1.0/es/System.Text.Encoding.xml",
+ "ref/netstandard1.0/fr/System.Text.Encoding.xml",
+ "ref/netstandard1.0/it/System.Text.Encoding.xml",
+ "ref/netstandard1.0/ja/System.Text.Encoding.xml",
+ "ref/netstandard1.0/ko/System.Text.Encoding.xml",
+ "ref/netstandard1.0/ru/System.Text.Encoding.xml",
+ "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
+ "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
+ "ref/netstandard1.3/System.Text.Encoding.dll",
+ "ref/netstandard1.3/System.Text.Encoding.xml",
+ "ref/netstandard1.3/de/System.Text.Encoding.xml",
+ "ref/netstandard1.3/es/System.Text.Encoding.xml",
+ "ref/netstandard1.3/fr/System.Text.Encoding.xml",
+ "ref/netstandard1.3/it/System.Text.Encoding.xml",
+ "ref/netstandard1.3/ja/System.Text.Encoding.xml",
+ "ref/netstandard1.3/ko/System.Text.Encoding.xml",
+ "ref/netstandard1.3/ru/System.Text.Encoding.xml",
+ "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
+ "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.text.encoding.4.3.0.nupkg.sha512",
+ "system.text.encoding.nuspec"
+ ]
+ },
+ "System.Text.Encoding.CodePages/8.0.0": {
+ "sha512": "OZIsVplFGaVY90G2SbpgU7EnCoOO5pw1t4ic21dBF3/1omrJFpAGoNAVpPyMVOC90/hvgkGG3VFqR13YgZMQfg==",
+ "type": "package",
+ "path": "system.text.encoding.codepages/8.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "PACKAGE.md",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/System.Text.Encoding.CodePages.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net6.0/_._",
+ "buildTransitive/netcoreapp2.0/System.Text.Encoding.CodePages.targets",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net462/System.Text.Encoding.CodePages.dll",
+ "lib/net462/System.Text.Encoding.CodePages.xml",
+ "lib/net6.0/System.Text.Encoding.CodePages.dll",
+ "lib/net6.0/System.Text.Encoding.CodePages.xml",
+ "lib/net7.0/System.Text.Encoding.CodePages.dll",
+ "lib/net7.0/System.Text.Encoding.CodePages.xml",
+ "lib/net8.0/System.Text.Encoding.CodePages.dll",
+ "lib/net8.0/System.Text.Encoding.CodePages.xml",
+ "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
+ "lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.dll",
+ "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.xml",
+ "runtimes/win/lib/net7.0/System.Text.Encoding.CodePages.dll",
+ "runtimes/win/lib/net7.0/System.Text.Encoding.CodePages.xml",
+ "runtimes/win/lib/net8.0/System.Text.Encoding.CodePages.dll",
+ "runtimes/win/lib/net8.0/System.Text.Encoding.CodePages.xml",
+ "system.text.encoding.codepages.8.0.0.nupkg.sha512",
+ "system.text.encoding.codepages.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "System.Text.Encodings.Web/8.0.0": {
+ "sha512": "yev/k9GHAEGx2Rg3/tU6MQh4HGBXJs70y7j1LaM1i/ER9po+6nnQ6RRqTJn1E7Xu0fbIFK80Nh5EoODxrbxwBQ==",
+ "type": "package",
+ "path": "system.text.encodings.web/8.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/System.Text.Encodings.Web.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net6.0/_._",
+ "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets",
+ "lib/net462/System.Text.Encodings.Web.dll",
+ "lib/net462/System.Text.Encodings.Web.xml",
+ "lib/net6.0/System.Text.Encodings.Web.dll",
+ "lib/net6.0/System.Text.Encodings.Web.xml",
+ "lib/net7.0/System.Text.Encodings.Web.dll",
+ "lib/net7.0/System.Text.Encodings.Web.xml",
+ "lib/net8.0/System.Text.Encodings.Web.dll",
+ "lib/net8.0/System.Text.Encodings.Web.xml",
+ "lib/netstandard2.0/System.Text.Encodings.Web.dll",
+ "lib/netstandard2.0/System.Text.Encodings.Web.xml",
+ "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll",
+ "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.xml",
+ "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.dll",
+ "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.xml",
+ "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll",
+ "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.xml",
+ "system.text.encodings.web.8.0.0.nupkg.sha512",
+ "system.text.encodings.web.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "System.Text.Json/8.0.4": {
+ "sha512": "bAkhgDJ88XTsqczoxEMliSrpijKZHhbJQldhAmObj/RbrN3sU5dcokuXmWJWsdQAhiMJ9bTayWsL1C9fbbCRhw==",
+ "type": "package",
+ "path": "system.text.json/8.0.4",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "PACKAGE.md",
+ "THIRD-PARTY-NOTICES.TXT",
+ "analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll",
+ "analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/de/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/es/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/it/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/System.Text.Json.SourceGeneration.dll",
+ "analyzers/dotnet/roslyn4.0/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/de/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/es/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/it/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/System.Text.Json.SourceGeneration.dll",
+ "analyzers/dotnet/roslyn4.4/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/de/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/es/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/it/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
+ "buildTransitive/net461/System.Text.Json.targets",
+ "buildTransitive/net462/System.Text.Json.targets",
+ "buildTransitive/net6.0/System.Text.Json.targets",
+ "buildTransitive/netcoreapp2.0/System.Text.Json.targets",
+ "buildTransitive/netstandard2.0/System.Text.Json.targets",
+ "lib/net462/System.Text.Json.dll",
+ "lib/net462/System.Text.Json.xml",
+ "lib/net6.0/System.Text.Json.dll",
+ "lib/net6.0/System.Text.Json.xml",
+ "lib/net7.0/System.Text.Json.dll",
+ "lib/net7.0/System.Text.Json.xml",
+ "lib/net8.0/System.Text.Json.dll",
+ "lib/net8.0/System.Text.Json.xml",
+ "lib/netstandard2.0/System.Text.Json.dll",
+ "lib/netstandard2.0/System.Text.Json.xml",
+ "system.text.json.8.0.4.nupkg.sha512",
+ "system.text.json.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "System.Threading.Tasks/4.3.0": {
+ "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
+ "type": "package",
+ "path": "system.threading.tasks/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Threading.Tasks.dll",
+ "ref/netcore50/System.Threading.Tasks.xml",
+ "ref/netcore50/de/System.Threading.Tasks.xml",
+ "ref/netcore50/es/System.Threading.Tasks.xml",
+ "ref/netcore50/fr/System.Threading.Tasks.xml",
+ "ref/netcore50/it/System.Threading.Tasks.xml",
+ "ref/netcore50/ja/System.Threading.Tasks.xml",
+ "ref/netcore50/ko/System.Threading.Tasks.xml",
+ "ref/netcore50/ru/System.Threading.Tasks.xml",
+ "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
+ "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/System.Threading.Tasks.dll",
+ "ref/netstandard1.0/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/de/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/es/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/it/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/System.Threading.Tasks.dll",
+ "ref/netstandard1.3/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/de/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/es/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/it/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.threading.tasks.4.3.0.nupkg.sha512",
+ "system.threading.tasks.nuspec"
+ ]
+ },
+ "System.Threading.Tasks.Extensions/4.5.4": {
+ "sha512": "zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==",
+ "type": "package",
+ "path": "system.threading.tasks.extensions/4.5.4",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net461/System.Threading.Tasks.Extensions.dll",
+ "lib/net461/System.Threading.Tasks.Extensions.xml",
+ "lib/netcoreapp2.1/_._",
+ "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
+ "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
+ "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll",
+ "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml",
+ "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
+ "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/netcoreapp2.1/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.threading.tasks.extensions.4.5.4.nupkg.sha512",
+ "system.threading.tasks.extensions.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Windows.Extensions/8.0.0": {
+ "sha512": "Obg3a90MkOw9mYKxrardLpY2u0axDMrSmy4JCdq2cYbelM2cUwmUir5Bomvd1yxmPL9h5LVHU1tuKBZpUjfASg==",
+ "type": "package",
+ "path": "system.windows.extensions/8.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net6.0/System.Windows.Extensions.dll",
+ "lib/net6.0/System.Windows.Extensions.xml",
+ "lib/net7.0/System.Windows.Extensions.dll",
+ "lib/net7.0/System.Windows.Extensions.xml",
+ "lib/net8.0/System.Windows.Extensions.dll",
+ "lib/net8.0/System.Windows.Extensions.xml",
+ "runtimes/win/lib/net6.0/System.Windows.Extensions.dll",
+ "runtimes/win/lib/net6.0/System.Windows.Extensions.xml",
+ "runtimes/win/lib/net7.0/System.Windows.Extensions.dll",
+ "runtimes/win/lib/net7.0/System.Windows.Extensions.xml",
+ "runtimes/win/lib/net8.0/System.Windows.Extensions.dll",
+ "runtimes/win/lib/net8.0/System.Windows.Extensions.xml",
+ "system.windows.extensions.8.0.0.nupkg.sha512",
+ "system.windows.extensions.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "ZstdSharp.Port/0.8.0": {
+ "sha512": "Z62eNBIu8E8YtbqlMy57tK3dV1+m2b9NhPeaYovB5exmLKvrGCqOhJTzrEUH5VyUWU6vwX3c1XHJGhW5HVs8dA==",
+ "type": "package",
+ "path": "zstdsharp.port/0.8.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/net462/ZstdSharp.dll",
+ "lib/net5.0/ZstdSharp.dll",
+ "lib/net6.0/ZstdSharp.dll",
+ "lib/net7.0/ZstdSharp.dll",
+ "lib/net8.0/ZstdSharp.dll",
+ "lib/netcoreapp3.1/ZstdSharp.dll",
+ "lib/netstandard2.0/ZstdSharp.dll",
+ "lib/netstandard2.1/ZstdSharp.dll",
+ "zstdsharp.port.0.8.0.nupkg.sha512",
+ "zstdsharp.port.nuspec"
+ ]
+ }
+ },
+ "projectFileDependencyGroups": {
+ "net6.0-windows10.0.19041": [
+ "Microsoft.Windows.SDK.BuildTools >= 10.0.22000.194",
+ "Microsoft.WindowsAppSDK >= 1.1.3",
+ "MySql.Data >= 9.1.0"
+ ]
+ },
+ "packageFolders": {
+ "C:\\Users\\2121088\\.nuget\\packages\\": {},
+ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
+ },
+ "project": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "C:\\Users\\2121088\\Source\\Repos\\WinUI3Project\\App2\\App2\\App2.csproj",
+ "projectName": "App2",
+ "projectPath": "C:\\Users\\2121088\\Source\\Repos\\WinUI3Project\\App2\\App2\\App2.csproj",
+ "packagesPath": "C:\\Users\\2121088\\.nuget\\packages\\",
+ "outputPath": "C:\\Users\\2121088\\Source\\Repos\\WinUI3Project\\App2\\App2\\obj\\",
+ "projectStyle": "PackageReference",
+ "fallbackFolders": [
+ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
+ ],
+ "configFilePaths": [
+ "C:\\Users\\2121088\\AppData\\Roaming\\NuGet\\NuGet.Config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
+ ],
+ "originalTargetFrameworks": [
+ "net6.0-windows10.0.19041.0"
+ ],
+ "sources": {
+ "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
+ "C:\\Program Files\\dotnet\\library-packs": {},
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "net6.0-windows10.0.19041": {
+ "targetAlias": "net6.0-windows10.0.19041.0",
+ "projectReferences": {}
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ }
+ },
+ "frameworks": {
+ "net6.0-windows10.0.19041": {
+ "targetAlias": "net6.0-windows10.0.19041.0",
+ "dependencies": {
+ "Microsoft.Windows.SDK.BuildTools": {
+ "target": "Package",
+ "version": "[10.0.22000.194, )"
+ },
+ "Microsoft.WindowsAppSDK": {
+ "target": "Package",
+ "version": "[1.1.3, )"
+ },
+ "MySql.Data": {
+ "target": "Package",
+ "version": "[9.1.0, )"
+ }
+ },
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48",
+ "net481"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "downloadDependencies": [
+ {
+ "name": "Microsoft.AspNetCore.App.Runtime.win-arm64",
+ "version": "[6.0.8, 6.0.8]"
+ },
+ {
+ "name": "Microsoft.AspNetCore.App.Runtime.win-x64",
+ "version": "[6.0.8, 6.0.8]"
+ },
+ {
+ "name": "Microsoft.AspNetCore.App.Runtime.win-x86",
+ "version": "[6.0.8, 6.0.8]"
+ },
+ {
+ "name": "Microsoft.NETCore.App.Runtime.win-arm64",
+ "version": "[6.0.8, 6.0.8]"
+ },
+ {
+ "name": "Microsoft.NETCore.App.Runtime.win-x64",
+ "version": "[6.0.8, 6.0.8]"
+ },
+ {
+ "name": "Microsoft.NETCore.App.Runtime.win-x86",
+ "version": "[6.0.8, 6.0.8]"
+ },
+ {
+ "name": "Microsoft.Windows.SDK.NET.Ref",
+ "version": "[10.0.19041.26, 10.0.19041.26]"
+ },
+ {
+ "name": "Microsoft.WindowsDesktop.App.Runtime.win-arm64",
+ "version": "[6.0.8, 6.0.8]"
+ },
+ {
+ "name": "Microsoft.WindowsDesktop.App.Runtime.win-x64",
+ "version": "[6.0.8, 6.0.8]"
+ },
+ {
+ "name": "Microsoft.WindowsDesktop.App.Runtime.win-x86",
+ "version": "[6.0.8, 6.0.8]"
+ }
+ ],
+ "frameworkReferences": {
+ "Microsoft.NETCore.App": {
+ "privateAssets": "all"
+ },
+ "Microsoft.Windows.SDK.NET.Ref": {
+ "privateAssets": "all"
+ }
+ },
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.400\\RuntimeIdentifierGraph.json"
+ }
+ },
+ "runtimes": {
+ "win10-arm64": {
+ "#import": []
+ },
+ "win10-x64": {
+ "#import": []
+ },
+ "win10-x86": {
+ "#import": []
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/App2/App2/obj/project.nuget.cache b/App2/App2/obj/project.nuget.cache
new file mode 100644
index 0000000..b6629f1
--- /dev/null
+++ b/App2/App2/obj/project.nuget.cache
@@ -0,0 +1,57 @@
+{
+ "version": 2,
+ "dgSpecHash": "D/D9IBhrd/m5WoYlDnj7RUyx73iW59K6zvGjldtzj4Bugt+07/Nn8sfxjG6lIP1Xm/MnU0ruile9rnVviRJW4A==",
+ "success": true,
+ "projectFilePath": "C:\\Users\\2121088\\source\\repos\\WinUI3Project\\App2\\App2\\App2.csproj",
+ "expectedPackageFiles": [
+ "C:\\Users\\2121088\\.nuget\\packages\\bouncycastle.cryptography\\2.3.1\\bouncycastle.cryptography.2.3.1.nupkg.sha512",
+ "C:\\Users\\2121088\\.nuget\\packages\\google.protobuf\\3.26.1\\google.protobuf.3.26.1.nupkg.sha512",
+ "C:\\Users\\2121088\\.nuget\\packages\\k4os.compression.lz4\\1.3.8\\k4os.compression.lz4.1.3.8.nupkg.sha512",
+ "C:\\Users\\2121088\\.nuget\\packages\\k4os.compression.lz4.streams\\1.3.8\\k4os.compression.lz4.streams.1.3.8.nupkg.sha512",
+ "C:\\Users\\2121088\\.nuget\\packages\\k4os.hash.xxhash\\1.0.8\\k4os.hash.xxhash.1.0.8.nupkg.sha512",
+ "C:\\Users\\2121088\\.nuget\\packages\\microsoft.netcore.platforms\\1.1.0\\microsoft.netcore.platforms.1.1.0.nupkg.sha512",
+ "C:\\Users\\2121088\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512",
+ "C:\\Users\\2121088\\.nuget\\packages\\microsoft.windows.sdk.buildtools\\10.0.22000.194\\microsoft.windows.sdk.buildtools.10.0.22000.194.nupkg.sha512",
+ "C:\\Users\\2121088\\.nuget\\packages\\microsoft.windowsappsdk\\1.1.3\\microsoft.windowsappsdk.1.1.3.nupkg.sha512",
+ "C:\\Users\\2121088\\.nuget\\packages\\mysql.data\\9.1.0\\mysql.data.9.1.0.nupkg.sha512",
+ "C:\\Users\\2121088\\.nuget\\packages\\runtime.any.system.io\\4.3.0\\runtime.any.system.io.4.3.0.nupkg.sha512",
+ "C:\\Users\\2121088\\.nuget\\packages\\runtime.any.system.reflection\\4.3.0\\runtime.any.system.reflection.4.3.0.nupkg.sha512",
+ "C:\\Users\\2121088\\.nuget\\packages\\runtime.any.system.reflection.primitives\\4.3.0\\runtime.any.system.reflection.primitives.4.3.0.nupkg.sha512",
+ "C:\\Users\\2121088\\.nuget\\packages\\runtime.any.system.runtime\\4.3.0\\runtime.any.system.runtime.4.3.0.nupkg.sha512",
+ "C:\\Users\\2121088\\.nuget\\packages\\runtime.any.system.text.encoding\\4.3.0\\runtime.any.system.text.encoding.4.3.0.nupkg.sha512",
+ "C:\\Users\\2121088\\.nuget\\packages\\runtime.any.system.threading.tasks\\4.3.0\\runtime.any.system.threading.tasks.4.3.0.nupkg.sha512",
+ "C:\\Users\\2121088\\.nuget\\packages\\runtime.win7.system.private.uri\\4.3.0\\runtime.win7.system.private.uri.4.3.0.nupkg.sha512",
+ "C:\\Users\\2121088\\.nuget\\packages\\system.buffers\\4.5.1\\system.buffers.4.5.1.nupkg.sha512",
+ "C:\\Users\\2121088\\.nuget\\packages\\system.configuration.configurationmanager\\8.0.0\\system.configuration.configurationmanager.8.0.0.nupkg.sha512",
+ "C:\\Users\\2121088\\.nuget\\packages\\system.diagnostics.diagnosticsource\\8.0.1\\system.diagnostics.diagnosticsource.8.0.1.nupkg.sha512",
+ "C:\\Users\\2121088\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512",
+ "C:\\Users\\2121088\\.nuget\\packages\\system.io.pipelines\\6.0.3\\system.io.pipelines.6.0.3.nupkg.sha512",
+ "C:\\Users\\2121088\\.nuget\\packages\\system.private.uri\\4.3.0\\system.private.uri.4.3.0.nupkg.sha512",
+ "C:\\Users\\2121088\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512",
+ "C:\\Users\\2121088\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512",
+ "C:\\Users\\2121088\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512",
+ "C:\\Users\\2121088\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
+ "C:\\Users\\2121088\\.nuget\\packages\\system.runtime.loader\\4.3.0\\system.runtime.loader.4.3.0.nupkg.sha512",
+ "C:\\Users\\2121088\\.nuget\\packages\\system.security.cryptography.protecteddata\\8.0.0\\system.security.cryptography.protecteddata.8.0.0.nupkg.sha512",
+ "C:\\Users\\2121088\\.nuget\\packages\\system.security.permissions\\8.0.0\\system.security.permissions.8.0.0.nupkg.sha512",
+ "C:\\Users\\2121088\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512",
+ "C:\\Users\\2121088\\.nuget\\packages\\system.text.encoding.codepages\\8.0.0\\system.text.encoding.codepages.8.0.0.nupkg.sha512",
+ "C:\\Users\\2121088\\.nuget\\packages\\system.text.encodings.web\\8.0.0\\system.text.encodings.web.8.0.0.nupkg.sha512",
+ "C:\\Users\\2121088\\.nuget\\packages\\system.text.json\\8.0.4\\system.text.json.8.0.4.nupkg.sha512",
+ "C:\\Users\\2121088\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512",
+ "C:\\Users\\2121088\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.4\\system.threading.tasks.extensions.4.5.4.nupkg.sha512",
+ "C:\\Users\\2121088\\.nuget\\packages\\system.windows.extensions\\8.0.0\\system.windows.extensions.8.0.0.nupkg.sha512",
+ "C:\\Users\\2121088\\.nuget\\packages\\zstdsharp.port\\0.8.0\\zstdsharp.port.0.8.0.nupkg.sha512",
+ "C:\\Users\\2121088\\.nuget\\packages\\microsoft.netcore.app.runtime.win-x64\\6.0.8\\microsoft.netcore.app.runtime.win-x64.6.0.8.nupkg.sha512",
+ "C:\\Users\\2121088\\.nuget\\packages\\microsoft.aspnetcore.app.runtime.win-x64\\6.0.8\\microsoft.aspnetcore.app.runtime.win-x64.6.0.8.nupkg.sha512",
+ "C:\\Users\\2121088\\.nuget\\packages\\microsoft.netcore.app.runtime.win-arm64\\6.0.8\\microsoft.netcore.app.runtime.win-arm64.6.0.8.nupkg.sha512",
+ "C:\\Users\\2121088\\.nuget\\packages\\microsoft.windowsdesktop.app.runtime.win-x64\\6.0.8\\microsoft.windowsdesktop.app.runtime.win-x64.6.0.8.nupkg.sha512",
+ "C:\\Users\\2121088\\.nuget\\packages\\microsoft.windows.sdk.net.ref\\10.0.19041.26\\microsoft.windows.sdk.net.ref.10.0.19041.26.nupkg.sha512",
+ "C:\\Users\\2121088\\.nuget\\packages\\microsoft.aspnetcore.app.runtime.win-arm64\\6.0.8\\microsoft.aspnetcore.app.runtime.win-arm64.6.0.8.nupkg.sha512",
+ "C:\\Users\\2121088\\.nuget\\packages\\microsoft.netcore.app.runtime.win-x86\\6.0.8\\microsoft.netcore.app.runtime.win-x86.6.0.8.nupkg.sha512",
+ "C:\\Users\\2121088\\.nuget\\packages\\microsoft.windowsdesktop.app.runtime.win-arm64\\6.0.8\\microsoft.windowsdesktop.app.runtime.win-arm64.6.0.8.nupkg.sha512",
+ "C:\\Users\\2121088\\.nuget\\packages\\microsoft.aspnetcore.app.runtime.win-x86\\6.0.8\\microsoft.aspnetcore.app.runtime.win-x86.6.0.8.nupkg.sha512",
+ "C:\\Users\\2121088\\.nuget\\packages\\microsoft.windowsdesktop.app.runtime.win-x86\\6.0.8\\microsoft.windowsdesktop.app.runtime.win-x86.6.0.8.nupkg.sha512"
+ ],
+ "logs": []
+}
\ No newline at end of file
diff --git a/App2/App2/obj/x86/Debug/net6.0-windows10.0.19041.0/win10-x86/App.g.cs b/App2/App2/obj/x86/Debug/net6.0-windows10.0.19041.0/win10-x86/App.g.cs
new file mode 100644
index 0000000..e69de29
diff --git a/App2/App2/obj/x86/Debug/net6.0-windows10.0.19041.0/win10-x86/App.g.i.cs b/App2/App2/obj/x86/Debug/net6.0-windows10.0.19041.0/win10-x86/App.g.i.cs
new file mode 100644
index 0000000..06dd654
--- /dev/null
+++ b/App2/App2/obj/x86/Debug/net6.0-windows10.0.19041.0/win10-x86/App.g.i.cs
@@ -0,0 +1,74 @@
+#pragma checksum "C:\Users\2121088\source\repos\App2\App2\App.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "880A1BD3AC378572B7EB067944B65BC032A8E5C400009AA03B7E1C64C0B75032"
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+
+namespace App2
+{
+#if !DISABLE_XAML_GENERATED_MAIN
+ ///
+ /// Program class
+ ///
+ public static class Program
+ {
+ [global::System.Runtime.InteropServices.DllImport("Microsoft.ui.xaml.dll")]
+ private static extern void XamlCheckProcessRequirements();
+
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 1.0.0.0")]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.STAThreadAttribute]
+ static void Main(string[] args)
+ {
+ XamlCheckProcessRequirements();
+
+ global::WinRT.ComWrappersSupport.InitializeComWrappers();
+ global::Microsoft.UI.Xaml.Application.Start((p) => {
+ var context = new global::Microsoft.UI.Dispatching.DispatcherQueueSynchronizationContext(global::Microsoft.UI.Dispatching.DispatcherQueue.GetForCurrentThread());
+ global::System.Threading.SynchronizationContext.SetSynchronizationContext(context);
+ new App();
+ });
+ }
+ }
+#endif
+
+ partial class App : global::Microsoft.UI.Xaml.Application
+ {
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 1.0.0.0")]
+ private bool _contentLoaded;
+ ///
+ /// InitializeComponent()
+ ///
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 1.0.0.0")]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public void InitializeComponent()
+ {
+ if (_contentLoaded)
+ return;
+
+ _contentLoaded = true;
+
+ global::System.Uri resourceLocator = new global::System.Uri("ms-appx:///App.xaml");
+ global::Microsoft.UI.Xaml.Application.LoadComponent(this, resourceLocator);
+
+#if DEBUG && !DISABLE_XAML_GENERATED_BINDING_DEBUG_OUTPUT
+ DebugSettings.BindingFailed += (sender, args) =>
+ {
+ global::System.Diagnostics.Debug.WriteLine(args.Message);
+ };
+#endif
+#if DEBUG && !DISABLE_XAML_GENERATED_BREAK_ON_UNHANDLED_EXCEPTION
+ UnhandledException += (sender, e) =>
+ {
+ if (global::System.Diagnostics.Debugger.IsAttached) global::System.Diagnostics.Debugger.Break();
+ };
+#endif
+ }
+ }
+}
+
diff --git a/App2/App2/obj/x86/Debug/net6.0-windows10.0.19041.0/win10-x86/App2.AssemblyInfo.cs b/App2/App2/obj/x86/Debug/net6.0-windows10.0.19041.0/win10-x86/App2.AssemblyInfo.cs
new file mode 100644
index 0000000..5b2de5c
--- /dev/null
+++ b/App2/App2/obj/x86/Debug/net6.0-windows10.0.19041.0/win10-x86/App2.AssemblyInfo.cs
@@ -0,0 +1,25 @@
+//------------------------------------------------------------------------------
+//
+// Ce code a été généré par un outil.
+// Version du runtime :4.0.30319.42000
+//
+// Les modifications apportées à ce fichier peuvent provoquer un comportement incorrect et seront perdues si
+// le code est régénéré.
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Reflection;
+
+[assembly: System.Reflection.AssemblyCompanyAttribute("App2")]
+[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
+[assembly: System.Reflection.AssemblyProductAttribute("App2")]
+[assembly: System.Reflection.AssemblyTitleAttribute("App2")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
+[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows10.0.19041.0")]
+[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows10.0.17763.0")]
+
+// Généré par la classe MSBuild WriteCodeFragment.
+
diff --git a/App2/App2/obj/x86/Debug/net6.0-windows10.0.19041.0/win10-x86/App2.AssemblyInfoInputs.cache b/App2/App2/obj/x86/Debug/net6.0-windows10.0.19041.0/win10-x86/App2.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..2c6f2db
--- /dev/null
+++ b/App2/App2/obj/x86/Debug/net6.0-windows10.0.19041.0/win10-x86/App2.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+56f956f1671a31a5c5e8eef5cb7f481c0fbc595924154f732df0b444443eb9b0
diff --git a/App2/App2/obj/x86/Debug/net6.0-windows10.0.19041.0/win10-x86/App2.GeneratedMSBuildEditorConfig.editorconfig b/App2/App2/obj/x86/Debug/net6.0-windows10.0.19041.0/win10-x86/App2.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..18f500b
--- /dev/null
+++ b/App2/App2/obj/x86/Debug/net6.0-windows10.0.19041.0/win10-x86/App2.GeneratedMSBuildEditorConfig.editorconfig
@@ -0,0 +1,23 @@
+is_global = true
+build_property.TargetFramework = net6.0-windows10.0.19041.0
+build_property.TargetPlatformMinVersion = 10.0.17763.0
+build_property.UsingMicrosoftNETSdkWeb =
+build_property.ProjectTypeGuids = 9A19103F-16F7-4668-BE54-9A1E7A4F7556
+build_property.InvariantGlobalization =
+build_property.PlatformNeutralAssembly =
+build_property.EnforceExtendedAnalyzerRules =
+build_property._SupportedPlatformList = Linux,macOS,Windows
+build_property.RootNamespace = App2
+build_property.ProjectDir = C:\Users\2121088\source\repos\App2\App2\
+build_property.EnableComHosting =
+build_property.EnableGeneratedComInterfaceComImportInterop =
+build_property.CsWinRTAotOptimizerEnabled = true
+build_property.CsWinRTAotExportsEnabled =
+build_property.CsWinRTRcwFactoryFallbackGeneratorForceOptIn =
+build_property.CsWinRTRcwFactoryFallbackGeneratorForceOptOut =
+build_property.CsWinRTCcwLookupTableGeneratorEnabled = true
+build_property.CsWinRTMergeReferencedActivationFactories =
+build_property.CsWinRTAotWarningLevel =
+build_property.CsWinRTUseWindowsUIXamlProjections = false
+build_property.EffectiveAnalysisLevelStyle = 6.0
+build_property.EnableCodeStyleSeverity =
diff --git a/App2/App2/obj/x86/Debug/net6.0-windows10.0.19041.0/win10-x86/App2.assets.cache b/App2/App2/obj/x86/Debug/net6.0-windows10.0.19041.0/win10-x86/App2.assets.cache
new file mode 100644
index 0000000..c01b643
Binary files /dev/null and b/App2/App2/obj/x86/Debug/net6.0-windows10.0.19041.0/win10-x86/App2.assets.cache differ
diff --git a/App2/App2/obj/x86/Debug/net6.0-windows10.0.19041.0/win10-x86/App2.csproj.AssemblyReference.cache b/App2/App2/obj/x86/Debug/net6.0-windows10.0.19041.0/win10-x86/App2.csproj.AssemblyReference.cache
new file mode 100644
index 0000000..ff44d00
Binary files /dev/null and b/App2/App2/obj/x86/Debug/net6.0-windows10.0.19041.0/win10-x86/App2.csproj.AssemblyReference.cache differ
diff --git a/App2/App2/obj/x86/Debug/net6.0-windows10.0.19041.0/win10-x86/MainWindow.g.cs b/App2/App2/obj/x86/Debug/net6.0-windows10.0.19041.0/win10-x86/MainWindow.g.cs
new file mode 100644
index 0000000..e69de29
diff --git a/App2/App2/obj/x86/Debug/net6.0-windows10.0.19041.0/win10-x86/MainWindow.g.i.cs b/App2/App2/obj/x86/Debug/net6.0-windows10.0.19041.0/win10-x86/MainWindow.g.i.cs
new file mode 100644
index 0000000..2631c15
--- /dev/null
+++ b/App2/App2/obj/x86/Debug/net6.0-windows10.0.19041.0/win10-x86/MainWindow.g.i.cs
@@ -0,0 +1,47 @@
+#pragma checksum "C:\Users\2121088\source\repos\App2\App2\MainWindow.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "159CC1E15A9B4A46A9B649C061DAE702C1A013A2E8E83F520CD87779AB5B1DB8"
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+namespace App2
+{
+ partial class MainWindow : global::Microsoft.UI.Xaml.Window
+ {
+
+
+#pragma warning disable 0169 // Proactively suppress unused/uninitialized field warning in case they aren't used, for things like x:Name
+#pragma warning disable 0649
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 1.0.0.0")]
+ private global::Microsoft.UI.Xaml.Controls.Button myButton;
+#pragma warning restore 0649
+#pragma warning restore 0169
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 1.0.0.0")]
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent()
+ ///
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.UI.Xaml.Markup.Compiler"," 1.0.0.0")]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public void InitializeComponent()
+ {
+ if (_contentLoaded)
+ return;
+
+ _contentLoaded = true;
+
+ global::System.Uri resourceLocator = new global::System.Uri("ms-appx:///MainWindow.xaml");
+ global::Microsoft.UI.Xaml.Application.LoadComponent(this, resourceLocator, global::Microsoft.UI.Xaml.Controls.Primitives.ComponentResourceLocation.Application);
+ }
+
+ partial void UnloadObject(global::Microsoft.UI.Xaml.DependencyObject unloadableObject);
+
+ }
+}
+
+
diff --git a/App2/App2/obj/x86/Debug/net6.0-windows10.0.19041.0/win10-x86/XamlSaveStateFile.xml b/App2/App2/obj/x86/Debug/net6.0-windows10.0.19041.0/win10-x86/XamlSaveStateFile.xml
new file mode 100644
index 0000000..914a5ac
--- /dev/null
+++ b/App2/App2/obj/x86/Debug/net6.0-windows10.0.19041.0/win10-x86/XamlSaveStateFile.xml
@@ -0,0 +1 @@
+EnableXBindDiagnostics, EnableDefaultValidationContextGeneration, EnableWin32Codegen, UsingCSWinRT
\ No newline at end of file
diff --git a/App2/App2/obj/x86/Debug/net6.0-windows10.0.19041.0/win10-x86/XamlTypeInfo.g.cs b/App2/App2/obj/x86/Debug/net6.0-windows10.0.19041.0/win10-x86/XamlTypeInfo.g.cs
new file mode 100644
index 0000000..e69de29