From 80afe79f909892012f09d86b77f4aeba02184608 Mon Sep 17 00:00:00 2001 From: Me7loul Date: Fri, 6 Dec 2024 12:17:43 -0500 Subject: [PATCH 01/14] commentaire test Add files via upload --- App2/App2.sln | 43 + App2/App2/App.xaml | 15 + App2/App2/App.xaml.cs | 51 + App2/App2/App2.csproj | 48 + App2/App2/App2.csproj.user | 15 + App2/App2/Assets/LockScreenLogo.scale-200.png | Bin 0 -> 432 bytes App2/App2/Assets/SplashScreen.scale-200.png | Bin 0 -> 5372 bytes .../Assets/Square150x150Logo.scale-200.png | Bin 0 -> 1755 bytes .../App2/Assets/Square44x44Logo.scale-200.png | Bin 0 -> 637 bytes ...x44Logo.targetsize-24_altform-unplated.png | Bin 0 -> 283 bytes App2/App2/Assets/StoreLogo.png | Bin 0 -> 456 bytes .../App2/Assets/Wide310x150Logo.scale-200.png | Bin 0 -> 2097 bytes App2/App2/MainWindow.xaml | 13 + App2/App2/MainWindow.xaml.cs | 36 + App2/App2/Package.appxmanifest | 48 + .../PublishProfiles/win10-arm64.pubxml | 20 + .../PublishProfiles/win10-x64.pubxml | 20 + .../PublishProfiles/win10-x86.pubxml | 20 + App2/App2/Properties/launchSettings.json | 10 + App2/App2/app.manifest | 15 + App2/App2/obj/App2.csproj.nuget.dgspec.json | 138 ++ App2/App2/obj/App2.csproj.nuget.g.props | 23 + App2/App2/obj/App2.csproj.nuget.g.targets | 7 + .../Debug/net6.0-windows10.0.19041.0/App.g.cs | 0 .../net6.0-windows10.0.19041.0/App.g.i.cs | 74 + .../App2.AssemblyInfo.cs | 25 + .../App2.AssemblyInfoInputs.cache | 1 + ....GeneratedMSBuildEditorConfig.editorconfig | 23 + .../App2.assets.cache | Bin 0 -> 8661 bytes .../App2.csproj.AssemblyReference.cache | Bin 0 -> 13103 bytes .../MainWindow.g.cs | 0 .../MainWindow.g.i.cs | 47 + .../XamlSaveStateFile.xml | 1 + .../XamlTypeInfo.g.cs | 0 .../net6.0-windows10.0.19041.0/App.g.cs | 0 .../net6.0-windows10.0.19041.0/App.g.i.cs | 74 + .../App2.AssemblyInfo.cs | 25 + .../App2.AssemblyInfoInputs.cache | 1 + ....GeneratedMSBuildEditorConfig.editorconfig | 23 + .../App2.assets.cache | Bin 0 -> 8661 bytes .../App2.csproj.AssemblyReference.cache | Bin 0 -> 13103 bytes .../MainWindow.g.cs | 0 .../MainWindow.g.i.cs | 47 + .../XamlSaveStateFile.xml | 1 + .../XamlTypeInfo.g.cs | 0 .../Debug/net6.0-windows10.0.19041.0/App.g.cs | 0 .../net6.0-windows10.0.19041.0/App.g.i.cs | 74 + .../App2.AssemblyInfo.cs | 25 + .../App2.AssemblyInfoInputs.cache | 1 + ....GeneratedMSBuildEditorConfig.editorconfig | 23 + .../App2.assets.cache | Bin 0 -> 8661 bytes .../App2.csproj.AssemblyReference.cache | Bin 0 -> 13103 bytes .../MainWindow.g.cs | 0 .../MainWindow.g.i.cs | 47 + .../XamlSaveStateFile.xml | 1 + .../XamlTypeInfo.g.cs | 0 .../net6.0-windows10.0.19041.0/App.g.cs | 0 .../net6.0-windows10.0.19041.0/App.g.i.cs | 74 + .../App2.AssemblyInfo.cs | 25 + .../App2.AssemblyInfoInputs.cache | 1 + ....GeneratedMSBuildEditorConfig.editorconfig | 23 + .../App2.assets.cache | Bin 0 -> 8661 bytes .../App2.csproj.AssemblyReference.cache | Bin 0 -> 13103 bytes .../MainWindow.g.cs | 0 .../MainWindow.g.i.cs | 47 + .../XamlSaveStateFile.xml | 1 + .../XamlTypeInfo.g.cs | 0 App2/App2/obj/project.assets.json | 1213 +++++++++++++++++ App2/App2/obj/project.nuget.cache | 21 + .../win10-x86/App.g.cs | 0 .../win10-x86/App.g.i.cs | 74 + .../win10-x86/App2.AssemblyInfo.cs | 25 + .../win10-x86/App2.AssemblyInfoInputs.cache | 1 + ....GeneratedMSBuildEditorConfig.editorconfig | 23 + .../win10-x86/App2.assets.cache | Bin 0 -> 7784 bytes .../App2.csproj.AssemblyReference.cache | Bin 0 -> 13103 bytes .../win10-x86/MainWindow.g.cs | 0 .../win10-x86/MainWindow.g.i.cs | 47 + .../win10-x86/XamlSaveStateFile.xml | 1 + .../win10-x86/XamlTypeInfo.g.cs | 0 80 files changed, 2611 insertions(+) create mode 100644 App2/App2.sln create mode 100644 App2/App2/App.xaml create mode 100644 App2/App2/App.xaml.cs create mode 100644 App2/App2/App2.csproj create mode 100644 App2/App2/App2.csproj.user create mode 100644 App2/App2/Assets/LockScreenLogo.scale-200.png create mode 100644 App2/App2/Assets/SplashScreen.scale-200.png create mode 100644 App2/App2/Assets/Square150x150Logo.scale-200.png create mode 100644 App2/App2/Assets/Square44x44Logo.scale-200.png create mode 100644 App2/App2/Assets/Square44x44Logo.targetsize-24_altform-unplated.png create mode 100644 App2/App2/Assets/StoreLogo.png create mode 100644 App2/App2/Assets/Wide310x150Logo.scale-200.png create mode 100644 App2/App2/MainWindow.xaml create mode 100644 App2/App2/MainWindow.xaml.cs create mode 100644 App2/App2/Package.appxmanifest create mode 100644 App2/App2/Properties/PublishProfiles/win10-arm64.pubxml create mode 100644 App2/App2/Properties/PublishProfiles/win10-x64.pubxml create mode 100644 App2/App2/Properties/PublishProfiles/win10-x86.pubxml create mode 100644 App2/App2/Properties/launchSettings.json create mode 100644 App2/App2/app.manifest create mode 100644 App2/App2/obj/App2.csproj.nuget.dgspec.json create mode 100644 App2/App2/obj/App2.csproj.nuget.g.props create mode 100644 App2/App2/obj/App2.csproj.nuget.g.targets create mode 100644 App2/App2/obj/Debug/net6.0-windows10.0.19041.0/App.g.cs create mode 100644 App2/App2/obj/Debug/net6.0-windows10.0.19041.0/App.g.i.cs create mode 100644 App2/App2/obj/Debug/net6.0-windows10.0.19041.0/App2.AssemblyInfo.cs create mode 100644 App2/App2/obj/Debug/net6.0-windows10.0.19041.0/App2.AssemblyInfoInputs.cache create mode 100644 App2/App2/obj/Debug/net6.0-windows10.0.19041.0/App2.GeneratedMSBuildEditorConfig.editorconfig create mode 100644 App2/App2/obj/Debug/net6.0-windows10.0.19041.0/App2.assets.cache create mode 100644 App2/App2/obj/Debug/net6.0-windows10.0.19041.0/App2.csproj.AssemblyReference.cache create mode 100644 App2/App2/obj/Debug/net6.0-windows10.0.19041.0/MainWindow.g.cs create mode 100644 App2/App2/obj/Debug/net6.0-windows10.0.19041.0/MainWindow.g.i.cs create mode 100644 App2/App2/obj/Debug/net6.0-windows10.0.19041.0/XamlSaveStateFile.xml create mode 100644 App2/App2/obj/Debug/net6.0-windows10.0.19041.0/XamlTypeInfo.g.cs create mode 100644 App2/App2/obj/Release/net6.0-windows10.0.19041.0/App.g.cs create mode 100644 App2/App2/obj/Release/net6.0-windows10.0.19041.0/App.g.i.cs create mode 100644 App2/App2/obj/Release/net6.0-windows10.0.19041.0/App2.AssemblyInfo.cs create mode 100644 App2/App2/obj/Release/net6.0-windows10.0.19041.0/App2.AssemblyInfoInputs.cache create mode 100644 App2/App2/obj/Release/net6.0-windows10.0.19041.0/App2.GeneratedMSBuildEditorConfig.editorconfig create mode 100644 App2/App2/obj/Release/net6.0-windows10.0.19041.0/App2.assets.cache create mode 100644 App2/App2/obj/Release/net6.0-windows10.0.19041.0/App2.csproj.AssemblyReference.cache create mode 100644 App2/App2/obj/Release/net6.0-windows10.0.19041.0/MainWindow.g.cs create mode 100644 App2/App2/obj/Release/net6.0-windows10.0.19041.0/MainWindow.g.i.cs create mode 100644 App2/App2/obj/Release/net6.0-windows10.0.19041.0/XamlSaveStateFile.xml create mode 100644 App2/App2/obj/Release/net6.0-windows10.0.19041.0/XamlTypeInfo.g.cs create mode 100644 App2/App2/obj/Win32/Debug/net6.0-windows10.0.19041.0/App.g.cs create mode 100644 App2/App2/obj/Win32/Debug/net6.0-windows10.0.19041.0/App.g.i.cs create mode 100644 App2/App2/obj/Win32/Debug/net6.0-windows10.0.19041.0/App2.AssemblyInfo.cs create mode 100644 App2/App2/obj/Win32/Debug/net6.0-windows10.0.19041.0/App2.AssemblyInfoInputs.cache create mode 100644 App2/App2/obj/Win32/Debug/net6.0-windows10.0.19041.0/App2.GeneratedMSBuildEditorConfig.editorconfig create mode 100644 App2/App2/obj/Win32/Debug/net6.0-windows10.0.19041.0/App2.assets.cache create mode 100644 App2/App2/obj/Win32/Debug/net6.0-windows10.0.19041.0/App2.csproj.AssemblyReference.cache create mode 100644 App2/App2/obj/Win32/Debug/net6.0-windows10.0.19041.0/MainWindow.g.cs create mode 100644 App2/App2/obj/Win32/Debug/net6.0-windows10.0.19041.0/MainWindow.g.i.cs create mode 100644 App2/App2/obj/Win32/Debug/net6.0-windows10.0.19041.0/XamlSaveStateFile.xml create mode 100644 App2/App2/obj/Win32/Debug/net6.0-windows10.0.19041.0/XamlTypeInfo.g.cs create mode 100644 App2/App2/obj/Win32/Release/net6.0-windows10.0.19041.0/App.g.cs create mode 100644 App2/App2/obj/Win32/Release/net6.0-windows10.0.19041.0/App.g.i.cs create mode 100644 App2/App2/obj/Win32/Release/net6.0-windows10.0.19041.0/App2.AssemblyInfo.cs create mode 100644 App2/App2/obj/Win32/Release/net6.0-windows10.0.19041.0/App2.AssemblyInfoInputs.cache create mode 100644 App2/App2/obj/Win32/Release/net6.0-windows10.0.19041.0/App2.GeneratedMSBuildEditorConfig.editorconfig create mode 100644 App2/App2/obj/Win32/Release/net6.0-windows10.0.19041.0/App2.assets.cache create mode 100644 App2/App2/obj/Win32/Release/net6.0-windows10.0.19041.0/App2.csproj.AssemblyReference.cache create mode 100644 App2/App2/obj/Win32/Release/net6.0-windows10.0.19041.0/MainWindow.g.cs create mode 100644 App2/App2/obj/Win32/Release/net6.0-windows10.0.19041.0/MainWindow.g.i.cs create mode 100644 App2/App2/obj/Win32/Release/net6.0-windows10.0.19041.0/XamlSaveStateFile.xml create mode 100644 App2/App2/obj/Win32/Release/net6.0-windows10.0.19041.0/XamlTypeInfo.g.cs create mode 100644 App2/App2/obj/project.assets.json create mode 100644 App2/App2/obj/project.nuget.cache create mode 100644 App2/App2/obj/x86/Debug/net6.0-windows10.0.19041.0/win10-x86/App.g.cs create mode 100644 App2/App2/obj/x86/Debug/net6.0-windows10.0.19041.0/win10-x86/App.g.i.cs create mode 100644 App2/App2/obj/x86/Debug/net6.0-windows10.0.19041.0/win10-x86/App2.AssemblyInfo.cs create mode 100644 App2/App2/obj/x86/Debug/net6.0-windows10.0.19041.0/win10-x86/App2.AssemblyInfoInputs.cache create mode 100644 App2/App2/obj/x86/Debug/net6.0-windows10.0.19041.0/win10-x86/App2.GeneratedMSBuildEditorConfig.editorconfig create mode 100644 App2/App2/obj/x86/Debug/net6.0-windows10.0.19041.0/win10-x86/App2.assets.cache create mode 100644 App2/App2/obj/x86/Debug/net6.0-windows10.0.19041.0/win10-x86/App2.csproj.AssemblyReference.cache create mode 100644 App2/App2/obj/x86/Debug/net6.0-windows10.0.19041.0/win10-x86/MainWindow.g.cs create mode 100644 App2/App2/obj/x86/Debug/net6.0-windows10.0.19041.0/win10-x86/MainWindow.g.i.cs create mode 100644 App2/App2/obj/x86/Debug/net6.0-windows10.0.19041.0/win10-x86/XamlSaveStateFile.xml create mode 100644 App2/App2/obj/x86/Debug/net6.0-windows10.0.19041.0/win10-x86/XamlTypeInfo.g.cs 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/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..56df921 --- /dev/null +++ b/App2/App2/App2.csproj @@ -0,0 +1,48 @@ + + + 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 + + + + + + + + + + + + + + + + + + + + + + + + + + true + + diff --git a/App2/App2/App2.csproj.user b/App2/App2/App2.csproj.user new file mode 100644 index 0000000..1db7c25 --- /dev/null +++ b/App2/App2/App2.csproj.user @@ -0,0 +1,15 @@ + + + + + + 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 0000000000000000000000000000000000000000..7440f0d4bf7c7e26e4e36328738c68e624ee851e GIT binary patch literal 432 zcmeAS@N?(olHy`uVBq!ia0vp^1|ZDA1|-9oezr3(FqV6|IEGZ*x-#9g>~Mkr+x6^F zy~CDX2QIMs&Gcs3RnRBoxBA!*(Mfw0KTCYuYk0WlEIV>qBmPl! zq4ukrvfADX@#p8fbLY(H47N+k`FZ(FZh?cDro7>{8mkBO3>^oaIx`3!Jl)Qq)HI!+ z(S=1{o~eT)&W^=Ea8C`-17(Jv5(nHFJ{dOjGdxLVkY_y6&S1whfuFI4MM0kF0f&cO zPDVpV%nz;Id$>+0Ga5e9625-JcI)oq=#Pa3p^>8BB}21BUw@eN!-6@w%X+^`+Vn?! zryu|3T>kVWNBYyBc=7Y6H#s1Ah!OI_nezW zXTqOdkv2Az6KKBV=$yHdF^R3Fqw(TZEoNSZX>reXJ#bwX42%f|Pgg&ebxsLQ010xn AssI20 literal 0 HcmV?d00001 diff --git a/App2/App2/Assets/SplashScreen.scale-200.png b/App2/App2/Assets/SplashScreen.scale-200.png new file mode 100644 index 0000000000000000000000000000000000000000..32f486a86792a5e34cd9a8261b394c49b48f86be GIT binary patch literal 5372 zcmd5=Z){Ul6u)iv53sCbIJKLzl(EF%0tzcEY@|pLrfgF~2Dk$KFtU+$kbYqDN5W%7 z>?DBo!@y06eh{Oux>brrNT^{MO(tkiC@nH(2}}G_1|uvcMD(0{?|W^Gxo!tG~hW2Rn&7%b`-Kd_^`BCrb>XVtRKONoEw6%NswzMxk+kbocuk&}kJ#hSP z>8uR{r%LJ?I#)aaWW;uEixz+DzyTpp)MTEo&R%nEA92~g{^eXQwKV1m{xl5K<@k3FacT+Z zrwfy=VocIptI>t%@p5a;Rt=WXVnU;2SUdr7Yk>gw_2z_ICK^23$|Cg7{3Eg5j@N*F zetT?>30(*S_7ld-Yt&u7T{(hEjjM#vPlXibjrq?;pBBx3*>_2~VFGdsH5L zQKme_LAebV}aOX#+rQafZtp+4jK}V!>pn1?+eUH$0%6}z(Kul9!^2z zXi+d@jnx)RW7!j9uFEdv5N&1sCW#Z6Ej5Y7c;o28Q7i%U0(2v5J>o9P zl$#C8&9r)nL;?J65^GIeSOHYr3B7}}R~}@2Tx_xo5*YdU#g1bO}95cq69J!efdlE+xj1qG#ZUqh~1Sn#dBsZfDvcupM zXOFoyJ0$s+RHQKpzr#T>c&EUbq)lGvZDxuI!9unMI=#;ob2&gT)WqOjt6^X`_N21r`&eh6h0xpT!n6Z9rvE&+bFU$vTJO2? z#^tBNOx*2N)~(+TH8d>ep6``8V=3JEfdUUahVZ-xN+k#V&32x|%qnX(XBii5<@`%^ zV#Ky4f1!6RJqJXBU3M4~tmj2;;r`8_j&w?h5g35uMH(QI$Xpesb zG|*XRT?kh6M(jj0Y&vF^M*9g-iDMW%G%9%Pa}6ERQ9b0%6z1v}Ja=|L@G#5ZI>JS9 z*(K12nMvS?oyG8s9|q~{w`ajtI`KSHSiJ;)%X@M&eCE(VqI#F(XL?L@A$TUT?6av5 zkPWIR391XjSC%d6L}7F71Qpw(;c_~)mSZo-&Fm^FHlPX|Fu}1B3E+9j0}o1a(4HFS zUItE22CC%XZi!b4%~vWn>rpV9&CUEvt!?Q{Pr*L~51&(0Sz{VJJFrJtWw2PwXd|J{ zgH%3vAY$flodH=4&ruCHX;(3t;o}n?!0~3EE|5qRz$!VIkphxa4@_jyfiE9m;0 zjcYJ2;26N&MTB8X4joZ&?SUe|VS$^I%dt{!c2O;%3SdqW@K_14r8eyC1s&VcU5+2~ z_O1Cc*w|aIA=VC6AT_EFoL}W#Rl;7CZe)e}RS*e;8CVyM6i8a(yO@|S709VYY(y2g zc+QxB>Bw^B^2Db~*o)=i$m-aUNQFkYy5(eJW$cez>C{POds*p3cy#tHnvActP;dBP zdEf)C;lq}&#PE?XCD<~ngrzYUg|nS`#MS`Rd7cT>xlR19P#~4Qg5!J}@glCUq)z_2 zjvyv%aSq0 z)njao1dV0XNw&c@qmj1e*jgQ$l@_urW5G4RSY#rT1z`#%3;{EB`aJK|TH^lb_3nAT z-_Q4X-(K&IS8UyqsnjYdippfmN-HT!X2MT;Dpcy~-#$k6V z|MR4vU#O&p7TC46pTflb3 zoUJ;ZRf#&8&EwXy5s%!&(q6cN62swD#FH%O-RJsjWPZN3^^@FCIQ&MxXIFo7!I#VI zkpIstuWqUV5uhgs07?k$*!`uiZ=5b#$lI|0c+XJvj(}zSE3MN#EyOK zql(#yA}~Ibl*r(s1}Z^5mmn*-n93g?-ccM+^PN?6HH~h0hjy6@XY*^i<-V)+OZ;p7 z7j`p_sT55xnYsedNIIel^QIIg7i@`2Qi}x5$!tk29$2OQI zs^kQXAKE}5ZJu$)2@Dxn?}}O@f@6@^!%9Tj+o>=jd!^ZuvBE4jb4g}Z5WMBtcmy^~ zoFGVS5|0FA!(1Q%fL?Bj*L+9ZL{mjSO8lzqrQ0UCZ)X zPwk$1HNFgaK%NxGpuXz}#ywXvf2JQ?BQ5uOZM2up4S#ieaxS$!o9o6Z=czNQb} zwAh|xLZ>+WyN%o?^uCAQw&&4o?S$DJ`WP(Hr*grL*qNXlqU0osCQ(Up5F(^$Z5;n&oJIO4uF`k&QL*j{f zU=;#MZ5{@b%qMbjTB3dh-5#mqY>%{0jgS+WdHyG literal 0 HcmV?d00001 diff --git a/App2/App2/Assets/Square44x44Logo.scale-200.png b/App2/App2/Assets/Square44x44Logo.scale-200.png new file mode 100644 index 0000000000000000000000000000000000000000..f713bba67f551ef91020b75716a4dc8ebd744b1c GIT binary patch literal 637 zcmeAS@N?(olHy`uVBq!ia0vp^5g^RL1|$oo8kjIJFu8cTIEGZ*dUI*J;2{SImxtDO zm%3!R$UazoY}x{$j0P5ABYXWr(l=jxJ6ps1W{tV=^>{Dl><3nv3A}sm=EZ)#l3`NR zpZda3^rNox*D1%NC98Z~L*6zipLw~Gxn&(Y-;KmJ+aR6eLabU-L#y8HW%7P-E_-VlLqIabbHPHKT*)fT@9iWJ7iWgOT9%0}Lrj>lztPxWq6sPw3pi z#-<=#$jjrP_DD*i!RLsn0mIA=>4~N)IMYWIf=j%-zuKCdMG%tHYot70D1| zvWa0wMhauW#S>1CnI_;>!1Q3zMA17@DOVq{MQ+{U7^a&yA+%dMCG;WNPV0i;w$tu; zX^b}UKziPM)(<;)ruW;-`)bBN+rQNM*Zs_>?n$|FVFo-e*PZb*@U7VAd+tHb4e?=Blc~}S6K)wL}r*Gf`BM#QB z+y>N$mCswb4d{^{S9v_!eQj4fTRMOwOCi?lSk9%<=vAz}jM-*PQtH@Odn1LZcd^j#o> hW$4xn+CT+ep9lJ{OAO?njobhL002ovPDHLkV1nYebbkN< literal 0 HcmV?d00001 diff --git a/App2/App2/Assets/StoreLogo.png b/App2/App2/Assets/StoreLogo.png new file mode 100644 index 0000000000000000000000000000000000000000..a4586f26bdf7841cad10f39cdffe2aca3af252c1 GIT binary patch literal 456 zcmeAS@N?(olHy`uVBq!ia0vp^Mj*_=1|;R|J2o;fF!p=8IEGZ*dUM0H=rDtTTVkd2 z(%lbKn@VS_lUaADVB&;Z6F#LM+mPsa?e>FnHo;HND^!P`-lX%BH~FOg%y&x+t*x!? zg$#_1A1kgsSvO(fw`bOmo;lrJX8byO1j^gf7qohR%mmt z@L)WX;>gqgK|tWJvQ5j;4;=gt4HXVKSMYRv5RhY5vS~TqfK_NAP*r{h!!g^BZ;w4r z7CGdsai)y;fJQc`7{Zc2b==h%o`Op$|bg6a&nL{*m7-=0>k4M4-PXlU;G-?%*(*g>iFt^ U$m#7DfHB12>FVdQ&MBb@0G`#n8vpc0sq%A~kJcD9FY~qQRMt?ZR3YyDZt}Od;|mgpc{2dv9AHF){kXU%k({ z=Y8JidEayHTkG@twPZ|U3_^%3ct-OgLSiFAqDN!|tbCX@c@?4P`2x*TMK!+Q4b?k0 ziW7!!KF6dPWcF<%I|iznM~`QJ_V7sHGV_D`dhgpA9Vd@&X}ErK+j~_rdv;Bp?OA@a zFXOk7eWOJe5NcK;6h$FaM&7JxNc#-@QTwzW6x#d_zmQNkz5) zPI;kh;3d;5UCJU+9a(cOxX(|edWoOiAEdGU#kPJ&xnc2||3vDbuhBCkj-pb0as$Zl z5;}4n=**n6(1g`JEtSy;SG6X;#-F~Oz3lESG2b5`j@wAwY4Yp<=4Xeb>iH=6aicF?DxD&q{`!&}ct zBI)aycwuobQAf&678Uf+Mmh-@9RUhyH~>?w0dixO0#jZjEc9R^=5NZw=|a(kcB?9^ zfnTiEFXp-q#B;Tn>(O%$A*ud^Rg&eVH6Y_5Y%!E39RR&s?XpG`gKwU!6FE1 z7X)DC7)*(5g}lh`4`{i~DZcWupZI`K)_4P)VE{@gc7@Xsd^86zl~_mOYH?I4!aGeX z^E(_=L6?PgveDQ+r%P@UISEXrkn`LHJZ##+!-anV>6h)IkKp;E@p8+3&(5%kS2)ld*J*rJccZM0iyaAx7+F~GW1UWFK&3X$PE1^}NH zgAG9ck5K!{07OwU@j@Do>TbH=CDEo#4m0cEyAuXy_<&jlzJVcKweSJ5 z&=q~iIn18$w8yb=rmEmHxVEUA^?RwnB?6Qlp1os8@*dWTGL2bhzZ!s*xqScR?EPL` zo(JwNdKUUYy7GtvZ3asXm)cgFvCx9EmAi;|w=a0iGiv%%VYKh`P0Wma4y`Xyx|T~( zAmfGbgbEEC7)j8b@WA@+5W3a61HJXC1dX@6_T|Czk0I0zBk%tnW~()VWITGI!`$c< gARL?UBrYYkwoDw4eo*CrzXGTrZ@;GF>596)00d&n@&Et; literal 0 HcmV?d00001 diff --git a/App2/App2/MainWindow.xaml b/App2/App2/MainWindow.xaml new file mode 100644 index 0000000..8127f83 --- /dev/null +++ b/App2/App2/MainWindow.xaml @@ -0,0 +1,13 @@ + + + + + + diff --git a/App2/App2/MainWindow.xaml.cs b/App2/App2/MainWindow.xaml.cs new file mode 100644 index 0000000..0debf2f --- /dev/null +++ b/App2/App2/MainWindow.xaml.cs @@ -0,0 +1,36 @@ +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(); + } + + private void myButton_Click(object sender, RoutedEventArgs e) + { + myButton.Content = "Clicked"; + } + } +} 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/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/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..7b0e85a --- /dev/null +++ b/App2/App2/obj/App2.csproj.nuget.dgspec.json @@ -0,0 +1,138 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\avada\\Source\\Repos\\WinUI3Project\\App2\\App2\\App2.csproj": {} + }, + "projects": { + "C:\\Users\\avada\\Source\\Repos\\WinUI3Project\\App2\\App2\\App2.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\avada\\Source\\Repos\\WinUI3Project\\App2\\App2\\App2.csproj", + "projectName": "App2", + "projectPath": "C:\\Users\\avada\\Source\\Repos\\WinUI3Project\\App2\\App2\\App2.csproj", + "packagesPath": "C:\\Users\\avada\\.nuget\\packages\\", + "outputPath": "C:\\Users\\avada\\Source\\Repos\\WinUI3Project\\App2\\App2\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\vs 2022\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\avada\\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\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0-windows10.0.19041": { + "targetAlias": "net6.0-windows10.0.19041.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "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, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "downloadDependencies": [ + { + "name": "Microsoft.AspNetCore.App.Runtime.win-arm64", + "version": "[6.0.33, 6.0.33]" + }, + { + "name": "Microsoft.AspNetCore.App.Runtime.win-x64", + "version": "[6.0.33, 6.0.33]" + }, + { + "name": "Microsoft.AspNetCore.App.Runtime.win-x86", + "version": "[6.0.33, 6.0.33]" + }, + { + "name": "Microsoft.NETCore.App.Runtime.win-arm64", + "version": "[6.0.33, 6.0.33]" + }, + { + "name": "Microsoft.NETCore.App.Runtime.win-x64", + "version": "[6.0.33, 6.0.33]" + }, + { + "name": "Microsoft.NETCore.App.Runtime.win-x86", + "version": "[6.0.33, 6.0.33]" + }, + { + "name": "Microsoft.Windows.SDK.NET.Ref", + "version": "[10.0.19041.34, 10.0.19041.34]" + }, + { + "name": "Microsoft.WindowsDesktop.App.Runtime.win-arm64", + "version": "[6.0.33, 6.0.33]" + }, + { + "name": "Microsoft.WindowsDesktop.App.Runtime.win-x64", + "version": "[6.0.33, 6.0.33]" + }, + { + "name": "Microsoft.WindowsDesktop.App.Runtime.win-x86", + "version": "[6.0.33, 6.0.33]" + } + ], + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + }, + "Microsoft.Windows.SDK.NET.Ref": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.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..f80cf9e --- /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\avada\.nuget\packages\;D:\vs 2022\Shared\NuGetPackages + PackageReference + 6.11.0 + + + + + + + + + + + C:\Users\avada\.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..4e41314 --- /dev/null +++ b/App2/App2/obj/App2.csproj.nuget.g.targets @@ -0,0 +1,7 @@ + + + + + + + \ 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 0000000000000000000000000000000000000000..bcf9c182136dd5621904cdf8773fbdf8abe0c384 GIT binary patch literal 8661 zcmd5>-EZ4e6z?EiTgE!J0)?@SY*5C4I&s>CbVx{DvsBT#C^X%WkYC*Rwl#BXQnA40g$LcqRn=mK*tFz*cJEMUhRoC^Gr78 z?=|i_o(9<8#sOAwfIiS9rf}u9D#GN;OlPVD8*Rtj>lwiRb^P!*nW@=E{FC)cI(FSL za@hE$ty*#`u7#5i`#JGluiNI{C?-xGI(f&@Xqy&madqv088MCdJb*q;d|O?hu|mS^ zIQG(GpLaFQGA%>Yxf-*gqQwOO4SFcPWqa|_b@Pq#eeSL;E7F#xDJD&v_YDFJ45R-@ zNY3{^*DoY@6p{;td>(;$WtoEMYoLpuOQ1Q>>!3G4Z-VAQlqS3ly6ThNSvz+W{ar~E zu1OMw>mW&&!6&5G2ZnGAnpnpuqy@W%*veL9g_+rfLg}znTqvyc@`>yt*|bF^+pug& z)`Z5MXfR2r+3U=zJDCf~q6nC#9Otm5&_>YX&2bXWZ9-5a@0wstfjLbGz_h0aA+Xb$ z7KFe}!7fLp10k@Jw_Z119S^J_0O`=Du;!v_h90j!a%--4z`p{z3c3b*7nB7h?5|K6 zhM^>W5X$S|CvOp9{wzWPicmoc+yFmywOiO*pxP}+iTA)yfjb#g(}k%;HC>Qe?}MLK zrygNyRO`~)vo)#>gS5B_e)5hiEVMI8(_=5CU z0-y9)29X}OL8q=qsd#GdqX>LKdVC5#=}`ia9xEXCxq~mW-txODh4n4wyu%*h>H$sS z$)kS4`MPNBRaK{euid0*Q%(&JBDPLq^y+kF)-ugIw^hKj@?eY^!^Ej<;)& zncVa*;EwJ)YksLwhv}Z1HRWKyZq}6RWKAB^@oV3gHJ$BD=n6Yg3O3(w#AVsQ<-2CI zueeZyq+i_ZWPerMhtj<+GtPMwT63p5S|XzwTF0&oXZcaGvdbD*g}u96_o8 literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..ff44d0046d39d44fd3dd4ab36235ebe02a2e29fb GIT binary patch literal 13103 zcmeI2e@q)?7{`0a03kSr`+LlI}G3>b*~T9}1e{4o#wi(S97o%I27>&Mny|xFvgDagaY3@xR z{q;WgJkR^QpZ9z3dnrhUPNzfmA?6Be8w(iLT7sA0dXveDQtlqWSzR`JpREV5RwrR+ zXqN8gP!B;lXb)?1xmZV^6-RN@U?qtzD+M?ssxKD5#`UNk#Z88?5>#((2zIWeIKbHK z9MKOf&$|Fa0Ll(nw27g20r)9Rp$?Kn5a^WdR#xUGbr;hR1SyQ5Ka$S(l{DU#@HYTo zBoB&jMv-oU1Qi&DnJX|Ma!iaI^GA*aBF7XW$Ari+7&)dKITnHELgeE**b4lPz6oEZ zB>CSrw`{?6$-MK3?&RMiza$Ox?9KC3?4KJl&E(D|O@mYUxt$%4j-5LI@?L%Ci>kHj zuAQuUe+@pB@wMU0>z()Y6#H_n;zy@G%N$R|Hh#Z*nm)h!pN`jOFB-3G+dOPBr~Z2R z;a475TRC<9=Ge=$Z{}7_)6YJu<5JEc%iN8=hYGW6CeMPxn`hHj?L3C0L7(u?P3@Cq zjYfoyAjG2lc35L@lq-eufF)9tZ+4TMn*o&+aC3}}EXr?kcaem>9(Y^nK0s9(@UCuy z$yjD{7|Ke4!3eLd6Fh*0aaW6%<$x1yc2gYT1js7>OPPl7W6w9Cu>9RmR6RSe=9~12 z;K$HjwrI~xlcc{K*{E&i&G!)%W&rJK0ZcyuOFwG+ncE4fxiy#qKEf0}rUgwd1qZKY z4h%Gfmmu3gTv>g@&%|tt9!X?uCOCcZ)dIP>0K{9xE z%`^kHxLm=6{3|v%<)4cco?!;tYC{MvIO3co1O%_1m*uuvvmG{qKf@9_9Wf2v{+A0F|}VITgsk)wxN9{I}o$5W?$XUN}M zPiKET)SHri?_+-sUh2F1(7@29_2-W7{La$4^~|2!!Iy3{{BZn(iOcVPi@%tG{gwZ; z`Rz{+9IZ!QIFa*2|N2tz*1EB0_Rj1Wx$dYN%p30CeZhN5;Mg2~?aJgjt`KQnkmC?7 z4X{*H!O{T?IOqbUHV1AjFD>a3MuuMzHCPHc&|n!ITb2jQz}op_7q8?RXa^vJ zDC5ge+T;K%w;o3&`~nx0yV#1R{cAB(ZsT_X_Q&zoAmE<}W zPjab`M#8fGC=;X6O`}_4(d}UT>DCNb+RZ4P$%NEbxr)gvXG~KgF-5;(F!uqKs&%U@R zp)ijn%-NwLK#evUZ4!$%G1okjEv3h4nq%R!>MpbqaQsYMcq10Bd6asqBv0HlkCNXK X{)B5DrB2aMNO-jPc0VH(@$vJ2oqe7~ literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..05ebc7768152514bc4337a660a2dc018a4dc7588 GIT binary patch literal 8661 zcmd5>TW=dh6i&fu5<&xQfY2Mbg-~u;Uy>N7NJweiM5d`_;;5 zDkM;Os-V0g!~+t)fIq?a^kD0tC)E@|Y%-|bRT~`ft*W?Z*MN|(BLDLNJ0iWY?+#)Ya zJG{coWiGp5|DDTnSuR&xEabT?f44okte8v}>ZWwSZXan(mzYv#23OV9FBrJ0!ilo{ ztPSl9KA!>6?-Xbp^krN~Kb4ew)fiQZA!bW-mJ?k&(H@jH%M(=b_stEz`g4{6Nj0QB3~ zx77g}DkRK|VlTVw^OmZbhN%l0S7ByQw0HqPy&j5h=}vrf+EC$Bd2vo)#>y|lOie*BKiFSG@` z2C5mo6nGo_gw&FLdr!5b7xZ^VvG<4}P7lOYWBMsTHKvyW?}AT7*`w3e@_MT)WAKNP zlFKd#dZVz!E9mbXuue_JxleFM16U4433^Uu8t;Ke=-&r*XBrFm&4DtYEGP&1X2_Zx z4N;Fg@OkO62tMht1R_0_K||N0SQy&-C;*?A9v^^DdK5vV#|p@KZsN;Kclliw{rVQO z-NWwV>H$sS@#B8NxvF69mleB!ui$PWVjr_x~VN6v(Urq=R|Uzql3J}n&*sYZs5ZZGW^bYnDzS|okiUZY4`uVL^_E*MzDBbHaeY#7bHD{`=B{HhWI<{rl%MX&3U2<@^WlXi; ZLTY;<2W+u$dawheUM{d584lQD;eSjjLU{lH literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..ff44d0046d39d44fd3dd4ab36235ebe02a2e29fb GIT binary patch literal 13103 zcmeI2e@q)?7{`0a03kSr`+LlI}G3>b*~T9}1e{4o#wi(S97o%I27>&Mny|xFvgDagaY3@xR z{q;WgJkR^QpZ9z3dnrhUPNzfmA?6Be8w(iLT7sA0dXveDQtlqWSzR`JpREV5RwrR+ zXqN8gP!B;lXb)?1xmZV^6-RN@U?qtzD+M?ssxKD5#`UNk#Z88?5>#((2zIWeIKbHK z9MKOf&$|Fa0Ll(nw27g20r)9Rp$?Kn5a^WdR#xUGbr;hR1SyQ5Ka$S(l{DU#@HYTo zBoB&jMv-oU1Qi&DnJX|Ma!iaI^GA*aBF7XW$Ari+7&)dKITnHELgeE**b4lPz6oEZ zB>CSrw`{?6$-MK3?&RMiza$Ox?9KC3?4KJl&E(D|O@mYUxt$%4j-5LI@?L%Ci>kHj zuAQuUe+@pB@wMU0>z()Y6#H_n;zy@G%N$R|Hh#Z*nm)h!pN`jOFB-3G+dOPBr~Z2R z;a475TRC<9=Ge=$Z{}7_)6YJu<5JEc%iN8=hYGW6CeMPxn`hHj?L3C0L7(u?P3@Cq zjYfoyAjG2lc35L@lq-eufF)9tZ+4TMn*o&+aC3}}EXr?kcaem>9(Y^nK0s9(@UCuy z$yjD{7|Ke4!3eLd6Fh*0aaW6%<$x1yc2gYT1js7>OPPl7W6w9Cu>9RmR6RSe=9~12 z;K$HjwrI~xlcc{K*{E&i&G!)%W&rJK0ZcyuOFwG+ncE4fxiy#qKEf0}rUgwd1qZKY z4h%Gfmmu3gTv>g@&%|tt9!X?uCOCcZ)dIP>0K{9xE z%`^kHxLm=6{3|v%<)4cco?!;tYC{MvIO3co1O%_1m*uuvvmG{qKf@9_9Wf2v{+A0F|}VITgsk)wxN9{I}o$5W?$XUN}M zPiKET)SHri?_+-sUh2F1(7@29_2-W7{La$4^~|2!!Iy3{{BZn(iOcVPi@%tG{gwZ; z`Rz{+9IZ!QIFa*2|N2tz*1EB0_Rj1Wx$dYN%p30CeZhN5;Mg2~?aJgjt`KQnkmC?7 z4X{*H!O{T?IOqbUHV1AjFD>a3MuuMzHCPHc&|n!ITb2jQz}op_7q8?RXa^vJ zDC5ge+T;K%w;o3&`~nx0yV#1R{cAB(ZsT_X_Q&zoAmE<}W zPjab`M#8fGC=;X6O`}_4(d}UT>DCNb+RZ4P$%NEbxr)gvXG~KgF-5;(F!uqKs&%U@R zp)ijn%-NwLK#evUZ4!$%G1okjEv3h4nq%R!>MpbqaQsYMcq10Bd6asqBv0HlkCNXK X{)B5DrB2aMNO-jPc0VH(@$vJ2oqe7~ literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..1636f867b11a47203adffc9cb5b0e2952bd5c9c5 GIT binary patch literal 8661 zcmd5>-EZ4e6mKDISH=okfx_4zW0dh#Cr-PN4usS-YZa{vq3MQ%{Nl#9t(jvR+i9Ce z5J(_|Kte*=8@%ve@X9Ov2YcgxK-vSp)7Xh!f5b^6$Ci$goZNfv?_8gIzHaUA=GwCp z6BGY^^v_?9i{F+1%wB)e5RJ#bO#b@sqt)-Tzy0y|^e0dF>Q^sgko}y;=Z}-?w}ks9 zGfbht7x;XsByehLpIL$~HXe%m%oLh(!_Z7^&*F|`Rnm@3QP)lBp}=!Iw=5{~uAnmO zCYN8b|K{^tp5sf)#R8WX?sX?uRErs6!;%l#onxIDGE*DO&(H$vcjE+q77dt7%8fh-u6h0QB3$x77g} zDGpT094!K@Y{ZY%e}KZoXc=%iV6tinOC?ib)d}e1iZ3 z!{|Q}lJot~d4=RoLUN&y&m%Ceu23+29&{0O2{aFS0rVp1CC~zh(u7w)SADWOYv)d) zzaxplHA$jy9VF>8_=NOY-w=*L6Pp-?v|!&5o7oLnVP1JgK`5_*pS(qc`LhTGC_)7(@CNv)tKGuh0@ZFoN?Zp&1@5F@O&6vX)pS8> zy$OC=oqB|+QLPuG&SE;=Ql!(5P>XzOkXmnnpT62K%+{zj4ASBT_{lr6u+SFq8mMLr zQs8ayQ&LNY?LF0!LD1hB$KE4`I6V+wjTxo@)tEsFybC@RW#62&mNzp?@Fb&NPL>k5G>S z@CE6y3_j_x0wO(bf<~@KsW`ItQ3SpqJw5=R^eBNyk5!QK+`^YRcllkB!ul5T?qLsb z^?)Yv)JZ?#LQS*|Dym(;S8=zH3%^@%wLN0pEfivlgBf=&0Ja91(yvKh8%9`EmvMI( zfrB->KR^2tVGZdKp!d5Q?`_hj1EcTP*d5#;A_D2g!0;Slo(Ac_n4$tqrYbgB->&40 zeQM{tjm7zjS!wF9FxgVtWws})Oq$vd6_cGKD^L!Zl-V&_EJMe<*0&ef?A{$B=$xD` zTsv~R)El*^H!65n|9EhLqU$DecFi=IwbRzwj2-M|*EPMpr8Pt)V*&N0GBYiiVxFef zTf3ygpe|_M(@pL8m?aOdpA+E&M@M;y^}rc}xq%O3$Ot>K)ZFNr1 z>2?h=lN`PQw|2~WKFqF*5ooBzxJN2X}U9^E9^`u*n-!H%d&yX zcg<*Dai9iCzqsAW{wlZ+rF&gwoOda-?o73{L`F5Rj$Ik{^220hmmM5_8M7U@klJ0y V0b44b9qbUPmk(@Dh6A=#{2wS)L8AZw literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..ff44d0046d39d44fd3dd4ab36235ebe02a2e29fb GIT binary patch literal 13103 zcmeI2e@q)?7{`0a03kSr`+LlI}G3>b*~T9}1e{4o#wi(S97o%I27>&Mny|xFvgDagaY3@xR z{q;WgJkR^QpZ9z3dnrhUPNzfmA?6Be8w(iLT7sA0dXveDQtlqWSzR`JpREV5RwrR+ zXqN8gP!B;lXb)?1xmZV^6-RN@U?qtzD+M?ssxKD5#`UNk#Z88?5>#((2zIWeIKbHK z9MKOf&$|Fa0Ll(nw27g20r)9Rp$?Kn5a^WdR#xUGbr;hR1SyQ5Ka$S(l{DU#@HYTo zBoB&jMv-oU1Qi&DnJX|Ma!iaI^GA*aBF7XW$Ari+7&)dKITnHELgeE**b4lPz6oEZ zB>CSrw`{?6$-MK3?&RMiza$Ox?9KC3?4KJl&E(D|O@mYUxt$%4j-5LI@?L%Ci>kHj zuAQuUe+@pB@wMU0>z()Y6#H_n;zy@G%N$R|Hh#Z*nm)h!pN`jOFB-3G+dOPBr~Z2R z;a475TRC<9=Ge=$Z{}7_)6YJu<5JEc%iN8=hYGW6CeMPxn`hHj?L3C0L7(u?P3@Cq zjYfoyAjG2lc35L@lq-eufF)9tZ+4TMn*o&+aC3}}EXr?kcaem>9(Y^nK0s9(@UCuy z$yjD{7|Ke4!3eLd6Fh*0aaW6%<$x1yc2gYT1js7>OPPl7W6w9Cu>9RmR6RSe=9~12 z;K$HjwrI~xlcc{K*{E&i&G!)%W&rJK0ZcyuOFwG+ncE4fxiy#qKEf0}rUgwd1qZKY z4h%Gfmmu3gTv>g@&%|tt9!X?uCOCcZ)dIP>0K{9xE z%`^kHxLm=6{3|v%<)4cco?!;tYC{MvIO3co1O%_1m*uuvvmG{qKf@9_9Wf2v{+A0F|}VITgsk)wxN9{I}o$5W?$XUN}M zPiKET)SHri?_+-sUh2F1(7@29_2-W7{La$4^~|2!!Iy3{{BZn(iOcVPi@%tG{gwZ; z`Rz{+9IZ!QIFa*2|N2tz*1EB0_Rj1Wx$dYN%p30CeZhN5;Mg2~?aJgjt`KQnkmC?7 z4X{*H!O{T?IOqbUHV1AjFD>a3MuuMzHCPHc&|n!ITb2jQz}op_7q8?RXa^vJ zDC5ge+T;K%w;o3&`~nx0yV#1R{cAB(ZsT_X_Q&zoAmE<}W zPjab`M#8fGC=;X6O`}_4(d}UT>DCNb+RZ4P$%NEbxr)gvXG~KgF-5;(F!uqKs&%U@R zp)ijn%-NwLK#evUZ4!$%G1okjEv3h4nq%R!>MpbqaQsYMcq10Bd6asqBv0HlkCNXK X{)B5DrB2aMNO-jPc0VH(@$vJ2oqe7~ literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..173d3898a4adb8edbf570df7b810ca9aa2f6e2f7 GIT binary patch literal 8661 zcmd5>-EZ4e6z?EySH=okfx@;z26P`losV`Q9UoHHtW~rw3Qac<@{1eav}TTNY^QA= zcwmADgwS|JNJu;(@v^^!7ybn#Uib@mg5PQE#Hl}Gr;%ezM@dfZJ@> z`H6{%f1YlwJ*{kf_th^Se)iYz3%~trestsVwZ~8Xz4^z~e}Dhk`1(~0vYvDJ{Nc>{ zZT^A5bc4_5^0{oW$a6|-kD0tC)E^0Z%;1|+T~`gYVRDC(BC3amplOEqh|h63Zkd;* zU0z}4EiSuc{hiBlSuR&xF66l^f4@7qte8v}>ZWwS?jC7OmzYv#23OV9FBrJ0!ilo{ ztOe~1KA!>6?-Xbf^krN~Kb4dR)e{AZAlGQZ`WlOa@(c>^vO7Y zR#a1JNOghUYuI;u7GQrJ2UytxdS4Zp%$3@T0Fy5kGB}($L~05ZNp?uuBsj~J)|+82heY0 z-&PxFsE{x_j=gl)=N(lw4O161uENZqXz>DodOZ~1(!Ka-yZKt_9(SiD$>NTx$_7oG zcMSpz45R-@NXGR)*DoY<9Fp_-Y!-oeb%lcIi=Ydji=a8sOQ4rQuYl%3lqS3eT5!qk zterWI{ANm(t@PVDww7>^$0(Lnt9q@r2zxCSj>SSQ`0Z4~Ffi)LZGxRw9kzI3L2LB3Z0rWcP z4Nw{sv%f-R=!cT{UMR1EAHPNT`Lh58C_;HD@Fw_)tKIzG0@ZF_O1uSr0^G@(tI`sfkqgu~PoyBClr9h`2pceU5FSV|LpS;@8&(^3m^wQ!w`0+b3zt9%& z8mMOUQs4&o38^Lh_MU109#R}3~JI>hY=Rk zW!xP`V6x<)#J;lT5i?Vhu@Q;^c-P8|*AufqcNk)Q;X_DLUrWfxWLlI}G3>b*~T9}1e{4o#wi(S97o%I27>&Mny|xFvgDagaY3@xR z{q;WgJkR^QpZ9z3dnrhUPNzfmA?6Be8w(iLT7sA0dXveDQtlqWSzR`JpREV5RwrR+ zXqN8gP!B;lXb)?1xmZV^6-RN@U?qtzD+M?ssxKD5#`UNk#Z88?5>#((2zIWeIKbHK z9MKOf&$|Fa0Ll(nw27g20r)9Rp$?Kn5a^WdR#xUGbr;hR1SyQ5Ka$S(l{DU#@HYTo zBoB&jMv-oU1Qi&DnJX|Ma!iaI^GA*aBF7XW$Ari+7&)dKITnHELgeE**b4lPz6oEZ zB>CSrw`{?6$-MK3?&RMiza$Ox?9KC3?4KJl&E(D|O@mYUxt$%4j-5LI@?L%Ci>kHj zuAQuUe+@pB@wMU0>z()Y6#H_n;zy@G%N$R|Hh#Z*nm)h!pN`jOFB-3G+dOPBr~Z2R z;a475TRC<9=Ge=$Z{}7_)6YJu<5JEc%iN8=hYGW6CeMPxn`hHj?L3C0L7(u?P3@Cq zjYfoyAjG2lc35L@lq-eufF)9tZ+4TMn*o&+aC3}}EXr?kcaem>9(Y^nK0s9(@UCuy z$yjD{7|Ke4!3eLd6Fh*0aaW6%<$x1yc2gYT1js7>OPPl7W6w9Cu>9RmR6RSe=9~12 z;K$HjwrI~xlcc{K*{E&i&G!)%W&rJK0ZcyuOFwG+ncE4fxiy#qKEf0}rUgwd1qZKY z4h%Gfmmu3gTv>g@&%|tt9!X?uCOCcZ)dIP>0K{9xE z%`^kHxLm=6{3|v%<)4cco?!;tYC{MvIO3co1O%_1m*uuvvmG{qKf@9_9Wf2v{+A0F|}VITgsk)wxN9{I}o$5W?$XUN}M zPiKET)SHri?_+-sUh2F1(7@29_2-W7{La$4^~|2!!Iy3{{BZn(iOcVPi@%tG{gwZ; z`Rz{+9IZ!QIFa*2|N2tz*1EB0_Rj1Wx$dYN%p30CeZhN5;Mg2~?aJgjt`KQnkmC?7 z4X{*H!O{T?IOqbUHV1AjFD>a3MuuMzHCPHc&|n!ITb2jQz}op_7q8?RXa^vJ zDC5ge+T;K%w;o3&`~nx0yV#1R{cAB(ZsT_X_Q&zoAmE<}W zPjab`M#8fGC=;X6O`}_4(d}UT>DCNb+RZ4P$%NEbxr)gvXG~KgF-5;(F!uqKs&%U@R zp)ijn%-NwLK#evUZ4!$%G1okjEv3h4nq%R!>MpbqaQsYMcq10Bd6asqBv0HlkCNXK X{)B5DrB2aMNO-jPc0VH(@$vJ2oqe7~ literal 0 HcmV?d00001 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..28b04bd --- /dev/null +++ b/App2/App2/obj/project.assets.json @@ -0,0 +1,1213 @@ +{ + "version": 3, + "targets": { + "net6.0-windows10.0.19041": { + "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" + } + } + } + }, + "net6.0-windows10.0.19041/win10-arm64": { + "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": {} + } + } + }, + "net6.0-windows10.0.19041/win10-x64": { + "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": {} + } + } + }, + "net6.0-windows10.0.19041/win10-x86": { + "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": {} + } + } + } + }, + "libraries": { + "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" + ] + } + }, + "projectFileDependencyGroups": { + "net6.0-windows10.0.19041": [ + "Microsoft.Windows.SDK.BuildTools >= 10.0.22000.194", + "Microsoft.WindowsAppSDK >= 1.1.3" + ] + }, + "packageFolders": { + "C:\\Users\\avada\\.nuget\\packages\\": {}, + "D:\\vs 2022\\Shared\\NuGetPackages": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\avada\\Source\\Repos\\WinUI3Project\\App2\\App2\\App2.csproj", + "projectName": "App2", + "projectPath": "C:\\Users\\avada\\Source\\Repos\\WinUI3Project\\App2\\App2\\App2.csproj", + "packagesPath": "C:\\Users\\avada\\.nuget\\packages\\", + "outputPath": "C:\\Users\\avada\\Source\\Repos\\WinUI3Project\\App2\\App2\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\vs 2022\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\avada\\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\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0-windows10.0.19041": { + "targetAlias": "net6.0-windows10.0.19041.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "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, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "downloadDependencies": [ + { + "name": "Microsoft.AspNetCore.App.Runtime.win-arm64", + "version": "[6.0.33, 6.0.33]" + }, + { + "name": "Microsoft.AspNetCore.App.Runtime.win-x64", + "version": "[6.0.33, 6.0.33]" + }, + { + "name": "Microsoft.AspNetCore.App.Runtime.win-x86", + "version": "[6.0.33, 6.0.33]" + }, + { + "name": "Microsoft.NETCore.App.Runtime.win-arm64", + "version": "[6.0.33, 6.0.33]" + }, + { + "name": "Microsoft.NETCore.App.Runtime.win-x64", + "version": "[6.0.33, 6.0.33]" + }, + { + "name": "Microsoft.NETCore.App.Runtime.win-x86", + "version": "[6.0.33, 6.0.33]" + }, + { + "name": "Microsoft.Windows.SDK.NET.Ref", + "version": "[10.0.19041.34, 10.0.19041.34]" + }, + { + "name": "Microsoft.WindowsDesktop.App.Runtime.win-arm64", + "version": "[6.0.33, 6.0.33]" + }, + { + "name": "Microsoft.WindowsDesktop.App.Runtime.win-x64", + "version": "[6.0.33, 6.0.33]" + }, + { + "name": "Microsoft.WindowsDesktop.App.Runtime.win-x86", + "version": "[6.0.33, 6.0.33]" + } + ], + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + }, + "Microsoft.Windows.SDK.NET.Ref": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.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..a736037 --- /dev/null +++ b/App2/App2/obj/project.nuget.cache @@ -0,0 +1,21 @@ +{ + "version": 2, + "dgSpecHash": "qxs9V+A3WqA=", + "success": true, + "projectFilePath": "C:\\Users\\avada\\Source\\Repos\\WinUI3Project\\App2\\App2\\App2.csproj", + "expectedPackageFiles": [ + "C:\\Users\\avada\\.nuget\\packages\\microsoft.windows.sdk.buildtools\\10.0.22000.194\\microsoft.windows.sdk.buildtools.10.0.22000.194.nupkg.sha512", + "C:\\Users\\avada\\.nuget\\packages\\microsoft.windowsappsdk\\1.1.3\\microsoft.windowsappsdk.1.1.3.nupkg.sha512", + "C:\\Users\\avada\\.nuget\\packages\\microsoft.netcore.app.runtime.win-x86\\6.0.33\\microsoft.netcore.app.runtime.win-x86.6.0.33.nupkg.sha512", + "C:\\Users\\avada\\.nuget\\packages\\microsoft.windows.sdk.net.ref\\10.0.19041.34\\microsoft.windows.sdk.net.ref.10.0.19041.34.nupkg.sha512", + "C:\\Users\\avada\\.nuget\\packages\\microsoft.aspnetcore.app.runtime.win-x86\\6.0.33\\microsoft.aspnetcore.app.runtime.win-x86.6.0.33.nupkg.sha512", + "C:\\Users\\avada\\.nuget\\packages\\microsoft.netcore.app.runtime.win-arm64\\6.0.33\\microsoft.netcore.app.runtime.win-arm64.6.0.33.nupkg.sha512", + "C:\\Users\\avada\\.nuget\\packages\\microsoft.aspnetcore.app.runtime.win-x64\\6.0.33\\microsoft.aspnetcore.app.runtime.win-x64.6.0.33.nupkg.sha512", + "C:\\Users\\avada\\.nuget\\packages\\microsoft.windowsdesktop.app.runtime.win-arm64\\6.0.33\\microsoft.windowsdesktop.app.runtime.win-arm64.6.0.33.nupkg.sha512", + "C:\\Users\\avada\\.nuget\\packages\\microsoft.windowsdesktop.app.runtime.win-x64\\6.0.33\\microsoft.windowsdesktop.app.runtime.win-x64.6.0.33.nupkg.sha512", + "C:\\Users\\avada\\.nuget\\packages\\microsoft.aspnetcore.app.runtime.win-arm64\\6.0.33\\microsoft.aspnetcore.app.runtime.win-arm64.6.0.33.nupkg.sha512", + "C:\\Users\\avada\\.nuget\\packages\\microsoft.netcore.app.runtime.win-x64\\6.0.33\\microsoft.netcore.app.runtime.win-x64.6.0.33.nupkg.sha512", + "C:\\Users\\avada\\.nuget\\packages\\microsoft.windowsdesktop.app.runtime.win-x86\\6.0.33\\microsoft.windowsdesktop.app.runtime.win-x86.6.0.33.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 0000000000000000000000000000000000000000..c01b643c3d20d603396dc130c8bae74742c83719 GIT binary patch literal 7784 zcmd5>&2!sC6nDXC8lZtTK=~@TAE7OfwXHzMg&Ag&m}ERnjT@(BrlX5utrIn}R%lmA zeC-SzU>Lae$cYOF{s+#?aG*2Xdf?hWfdlWwQY}YXNlqDAnt9{VYW4Knw{L&%!>yZZ zOD`1)g>Ucw_U~T(m){>P|NZB5|I3GebT^(X{`2dD+U|FMtzUfd=<(|?$-7>J-ycq_ ze5&5z)Zwa9RjQR*O(mAQO@(S}on394a1Y8qRr zMa3tivfw?gR!D_ZYm3(vQc-U`eYs%?>S!Hd?9nd{Z0Z=)>QGKv4!ciblvzYK&F4L6 zC*b!v5WFvfOo4oz71FN^>rNvM%}GG>eP)IOIB0dUWZUaTmv;IclcqG=Gywf^5uKe_EY9oZ@GNuI4+J1ojq~1`&`f-X|a9kq;%%f0Q8&8&FTY9 z6%uAAVatGjE;A;$a5S4VsfddfF9Xn{7sj^-&uU+1a8kGmfwx*&IH+A$EnwU|8i=~# zb2Y>b@fIT)UPt5YD=>Bj$g3c)fnfH4ak(^%>wb7@*Kd+#*D&=>#!L=#3g<$T zzm;{^yc?0B4khehI26+eMJjlBs?}3y+&WCgl zzFj`dT6|5oY}ABlMwF%tFpfwsB&HrPsjvpKAf4HEv|ee|Fexw1D>c}adF94%M@n}M z?rLVKEnMATYI{d>sIE5MH7Z(O#)Y~ta_1>GJLs8c2)u&6l5tKZL6JSBf-^1u8SbS*mVi+Gv=$9 z2#e^WP+o@d>^(xpXE6)F2o<$}c^J=K%_;L0tU03=@ji^_fKHNXQQ5Mv7L8ig6&TMe zsmHh))~Hd-xtfn%iY5J+Wg(|VE$bSL=dY%f`5M-=QLFd>#p*dus&lQRRtI!3XfLmi^GZ?+xOE(5aXqZ9<0u@j zm3r^lKOt*({txJrX#Mus=#$!p<2ytQ-K~xd&sR3mej6K891X1aEvxdr-?AzXT2_JM z7PkA4PJqT|mN=(kvv1RrgI8x(nB8Az9nCBX$E9cMlnVnNF{|xv;hDb{)eH)A6(}z@ zwH{4uZcTf%GCSIznrrYz&xRvl2(w?OUBjaK)T(B3dJ5gt+@pGN6A%^=Q!BBh)O-5Z z85ryE_`|<$WD8qt0$XhA=+{3VU!fNGBX8QM+YX3rVPq_cxvG(~LlI}G3>b*~T9}1e{4o#wi(S97o%I27>&Mny|xFvgDagaY3@xR z{q;WgJkR^QpZ9z3dnrhUPNzfmA?6Be8w(iLT7sA0dXveDQtlqWSzR`JpREV5RwrR+ zXqN8gP!B;lXb)?1xmZV^6-RN@U?qtzD+M?ssxKD5#`UNk#Z88?5>#((2zIWeIKbHK z9MKOf&$|Fa0Ll(nw27g20r)9Rp$?Kn5a^WdR#xUGbr;hR1SyQ5Ka$S(l{DU#@HYTo zBoB&jMv-oU1Qi&DnJX|Ma!iaI^GA*aBF7XW$Ari+7&)dKITnHELgeE**b4lPz6oEZ zB>CSrw`{?6$-MK3?&RMiza$Ox?9KC3?4KJl&E(D|O@mYUxt$%4j-5LI@?L%Ci>kHj zuAQuUe+@pB@wMU0>z()Y6#H_n;zy@G%N$R|Hh#Z*nm)h!pN`jOFB-3G+dOPBr~Z2R z;a475TRC<9=Ge=$Z{}7_)6YJu<5JEc%iN8=hYGW6CeMPxn`hHj?L3C0L7(u?P3@Cq zjYfoyAjG2lc35L@lq-eufF)9tZ+4TMn*o&+aC3}}EXr?kcaem>9(Y^nK0s9(@UCuy z$yjD{7|Ke4!3eLd6Fh*0aaW6%<$x1yc2gYT1js7>OPPl7W6w9Cu>9RmR6RSe=9~12 z;K$HjwrI~xlcc{K*{E&i&G!)%W&rJK0ZcyuOFwG+ncE4fxiy#qKEf0}rUgwd1qZKY z4h%Gfmmu3gTv>g@&%|tt9!X?uCOCcZ)dIP>0K{9xE z%`^kHxLm=6{3|v%<)4cco?!;tYC{MvIO3co1O%_1m*uuvvmG{qKf@9_9Wf2v{+A0F|}VITgsk)wxN9{I}o$5W?$XUN}M zPiKET)SHri?_+-sUh2F1(7@29_2-W7{La$4^~|2!!Iy3{{BZn(iOcVPi@%tG{gwZ; z`Rz{+9IZ!QIFa*2|N2tz*1EB0_Rj1Wx$dYN%p30CeZhN5;Mg2~?aJgjt`KQnkmC?7 z4X{*H!O{T?IOqbUHV1AjFD>a3MuuMzHCPHc&|n!ITb2jQz}op_7q8?RXa^vJ zDC5ge+T;K%w;o3&`~nx0yV#1R{cAB(ZsT_X_Q&zoAmE<}W zPjab`M#8fGC=;X6O`}_4(d}UT>DCNb+RZ4P$%NEbxr)gvXG~KgF-5;(F!uqKs&%U@R zp)ijn%-NwLK#evUZ4!$%G1okjEv3h4nq%R!>MpbqaQsYMcq10Bd6asqBv0HlkCNXK X{)B5DrB2aMNO-jPc0VH(@$vJ2oqe7~ literal 0 HcmV?d00001 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 From d1f1bb64b03523bfa01a5ef91e56245b845faa38 Mon Sep 17 00:00:00 2001 From: Achraf Dakech Date: Fri, 6 Dec 2024 12:29:05 -0500 Subject: [PATCH 02/14] test --- App2/App2/MainWindow.xaml | 2 +- App2/App2/obj/App2.csproj.nuget.dgspec.json | 8 ++++---- App2/App2/obj/project.nuget.cache | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/App2/App2/MainWindow.xaml b/App2/App2/MainWindow.xaml index 8127f83..aed7e24 100644 --- a/App2/App2/MainWindow.xaml +++ b/App2/App2/MainWindow.xaml @@ -9,5 +9,5 @@ - + diff --git a/App2/App2/obj/App2.csproj.nuget.dgspec.json b/App2/App2/obj/App2.csproj.nuget.dgspec.json index 7b0e85a..4ffd885 100644 --- a/App2/App2/obj/App2.csproj.nuget.dgspec.json +++ b/App2/App2/obj/App2.csproj.nuget.dgspec.json @@ -1,15 +1,15 @@ { "format": 1, "restore": { - "C:\\Users\\avada\\Source\\Repos\\WinUI3Project\\App2\\App2\\App2.csproj": {} + "C:\\Users\\avada\\source\\repos\\WinUI3Project\\App2\\App2\\App2.csproj": {} }, "projects": { - "C:\\Users\\avada\\Source\\Repos\\WinUI3Project\\App2\\App2\\App2.csproj": { + "C:\\Users\\avada\\source\\repos\\WinUI3Project\\App2\\App2\\App2.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\avada\\Source\\Repos\\WinUI3Project\\App2\\App2\\App2.csproj", + "projectUniqueName": "C:\\Users\\avada\\source\\repos\\WinUI3Project\\App2\\App2\\App2.csproj", "projectName": "App2", - "projectPath": "C:\\Users\\avada\\Source\\Repos\\WinUI3Project\\App2\\App2\\App2.csproj", + "projectPath": "C:\\Users\\avada\\source\\repos\\WinUI3Project\\App2\\App2\\App2.csproj", "packagesPath": "C:\\Users\\avada\\.nuget\\packages\\", "outputPath": "C:\\Users\\avada\\Source\\Repos\\WinUI3Project\\App2\\App2\\obj\\", "projectStyle": "PackageReference", diff --git a/App2/App2/obj/project.nuget.cache b/App2/App2/obj/project.nuget.cache index a736037..5334b4b 100644 --- a/App2/App2/obj/project.nuget.cache +++ b/App2/App2/obj/project.nuget.cache @@ -1,8 +1,8 @@ { "version": 2, - "dgSpecHash": "qxs9V+A3WqA=", + "dgSpecHash": "K4QTgWYm9HI=", "success": true, - "projectFilePath": "C:\\Users\\avada\\Source\\Repos\\WinUI3Project\\App2\\App2\\App2.csproj", + "projectFilePath": "C:\\Users\\avada\\source\\repos\\WinUI3Project\\App2\\App2\\App2.csproj", "expectedPackageFiles": [ "C:\\Users\\avada\\.nuget\\packages\\microsoft.windows.sdk.buildtools\\10.0.22000.194\\microsoft.windows.sdk.buildtools.10.0.22000.194.nupkg.sha512", "C:\\Users\\avada\\.nuget\\packages\\microsoft.windowsappsdk\\1.1.3\\microsoft.windowsappsdk.1.1.3.nupkg.sha512", From 1b178d11852c32884752db4062665a274c8061c2 Mon Sep 17 00:00:00 2001 From: Achraf Dakech Date: Fri, 6 Dec 2024 12:29:05 -0500 Subject: [PATCH 03/14] test --- App2/App2/MainWindow.xaml | 2 +- App2/App2/obj/App2.csproj.nuget.dgspec.json | 8 ++++---- App2/App2/obj/project.nuget.cache | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/App2/App2/MainWindow.xaml b/App2/App2/MainWindow.xaml index 8127f83..0c6ff26 100644 --- a/App2/App2/MainWindow.xaml +++ b/App2/App2/MainWindow.xaml @@ -9,5 +9,5 @@ - + diff --git a/App2/App2/obj/App2.csproj.nuget.dgspec.json b/App2/App2/obj/App2.csproj.nuget.dgspec.json index 7b0e85a..4ffd885 100644 --- a/App2/App2/obj/App2.csproj.nuget.dgspec.json +++ b/App2/App2/obj/App2.csproj.nuget.dgspec.json @@ -1,15 +1,15 @@ { "format": 1, "restore": { - "C:\\Users\\avada\\Source\\Repos\\WinUI3Project\\App2\\App2\\App2.csproj": {} + "C:\\Users\\avada\\source\\repos\\WinUI3Project\\App2\\App2\\App2.csproj": {} }, "projects": { - "C:\\Users\\avada\\Source\\Repos\\WinUI3Project\\App2\\App2\\App2.csproj": { + "C:\\Users\\avada\\source\\repos\\WinUI3Project\\App2\\App2\\App2.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\avada\\Source\\Repos\\WinUI3Project\\App2\\App2\\App2.csproj", + "projectUniqueName": "C:\\Users\\avada\\source\\repos\\WinUI3Project\\App2\\App2\\App2.csproj", "projectName": "App2", - "projectPath": "C:\\Users\\avada\\Source\\Repos\\WinUI3Project\\App2\\App2\\App2.csproj", + "projectPath": "C:\\Users\\avada\\source\\repos\\WinUI3Project\\App2\\App2\\App2.csproj", "packagesPath": "C:\\Users\\avada\\.nuget\\packages\\", "outputPath": "C:\\Users\\avada\\Source\\Repos\\WinUI3Project\\App2\\App2\\obj\\", "projectStyle": "PackageReference", diff --git a/App2/App2/obj/project.nuget.cache b/App2/App2/obj/project.nuget.cache index a736037..5334b4b 100644 --- a/App2/App2/obj/project.nuget.cache +++ b/App2/App2/obj/project.nuget.cache @@ -1,8 +1,8 @@ { "version": 2, - "dgSpecHash": "qxs9V+A3WqA=", + "dgSpecHash": "K4QTgWYm9HI=", "success": true, - "projectFilePath": "C:\\Users\\avada\\Source\\Repos\\WinUI3Project\\App2\\App2\\App2.csproj", + "projectFilePath": "C:\\Users\\avada\\source\\repos\\WinUI3Project\\App2\\App2\\App2.csproj", "expectedPackageFiles": [ "C:\\Users\\avada\\.nuget\\packages\\microsoft.windows.sdk.buildtools\\10.0.22000.194\\microsoft.windows.sdk.buildtools.10.0.22000.194.nupkg.sha512", "C:\\Users\\avada\\.nuget\\packages\\microsoft.windowsappsdk\\1.1.3\\microsoft.windowsappsdk.1.1.3.nupkg.sha512", From 569dc6d21e38fa646478a91d3cbcb82f8b58c4ec Mon Sep 17 00:00:00 2001 From: Achraf Dakech Date: Tue, 10 Dec 2024 23:56:07 -0500 Subject: [PATCH 04/14] ajout de pages, classes, singleton et plus --- App2/App2/Activite.cs | 20 + App2/App2/Adherent.cs | 12 + App2/App2/App2.csproj | 29 +- App2/App2/App2.csproj.user | 12 + App2/App2/ListeActivitees.xaml | 53 + App2/App2/ListeActivitees.xaml.cs | 47 + App2/App2/ListeAdherents.xaml | 15 + App2/App2/ListeAdherents.xaml.cs | 31 + App2/App2/MainWindow.xaml | 12 +- App2/App2/MainWindow.xaml.cs | 19 +- App2/App2/PageActivite.xaml | 68 + App2/App2/PageActivite.xaml.cs | 31 + App2/App2/PageStatistique.xaml | 15 + App2/App2/PageStatistique.xaml.cs | 31 + App2/App2/Singleton.cs | 84 + App2/App2/obj/App2.csproj.nuget.dgspec.json | 6 +- App2/App2/obj/App2.csproj.nuget.g.targets | 1 + App2/App2/obj/project.assets.json | 3536 ++++++++++++++++++- App2/App2/obj/project.nuget.cache | 38 +- 19 files changed, 3904 insertions(+), 156 deletions(-) create mode 100644 App2/App2/Activite.cs create mode 100644 App2/App2/Adherent.cs create mode 100644 App2/App2/ListeActivitees.xaml create mode 100644 App2/App2/ListeActivitees.xaml.cs create mode 100644 App2/App2/ListeAdherents.xaml create mode 100644 App2/App2/ListeAdherents.xaml.cs create mode 100644 App2/App2/PageActivite.xaml create mode 100644 App2/App2/PageActivite.xaml.cs create mode 100644 App2/App2/PageStatistique.xaml create mode 100644 App2/App2/PageStatistique.xaml.cs create mode 100644 App2/App2/Singleton.cs diff --git a/App2/App2/Activite.cs b/App2/App2/Activite.cs new file mode 100644 index 0000000..d5c96e6 --- /dev/null +++ b/App2/App2/Activite.cs @@ -0,0 +1,20 @@ +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 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..17ada19 --- /dev/null +++ b/App2/App2/Adherent.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace App2 +{ + class Adherent + { + } +} diff --git a/App2/App2/App2.csproj b/App2/App2/App2.csproj index 56df921..39b471e 100644 --- a/App2/App2/App2.csproj +++ b/App2/App2/App2.csproj @@ -11,6 +11,12 @@ true true + + + + + + @@ -25,6 +31,7 @@ + @@ -34,7 +41,27 @@ package has not yet been restored. --> - + + + + + MSBuild:Compile + + + + + MSBuild:Compile + + + + + MSBuild:Compile + + + + + MSBuild:Compile + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/App2/App2/ListeActivitees.xaml.cs b/App2/App2/ListeActivitees.xaml.cs new file mode 100644 index 0000000..3ab3506 --- /dev/null +++ b/App2/App2/ListeActivitees.xaml.cs @@ -0,0 +1,47 @@ +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; +using System.Diagnostics; + +// 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 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); + } + } + + } +} diff --git a/App2/App2/ListeAdherents.xaml b/App2/App2/ListeAdherents.xaml new file mode 100644 index 0000000..f92d449 --- /dev/null +++ b/App2/App2/ListeAdherents.xaml @@ -0,0 +1,15 @@ + + + + + + + diff --git a/App2/App2/ListeAdherents.xaml.cs b/App2/App2/ListeAdherents.xaml.cs new file mode 100644 index 0000000..2d0dd71 --- /dev/null +++ b/App2/App2/ListeAdherents.xaml.cs @@ -0,0 +1,31 @@ +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 ListeAdherents() + { + this.InitializeComponent(); + } + } +} diff --git a/App2/App2/MainWindow.xaml b/App2/App2/MainWindow.xaml index b14d534..d901611 100644 --- a/App2/App2/MainWindow.xaml +++ b/App2/App2/MainWindow.xaml @@ -7,8 +7,12 @@ xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable="d"> - - - - + + + + + + + diff --git a/App2/App2/MainWindow.xaml.cs b/App2/App2/MainWindow.xaml.cs index 0debf2f..6739e88 100644 --- a/App2/App2/MainWindow.xaml.cs +++ b/App2/App2/MainWindow.xaml.cs @@ -28,9 +28,24 @@ public MainWindow() this.InitializeComponent(); } - private void myButton_Click(object sender, RoutedEventArgs e) + private void nav_SelectionChanged(NavigationView sender, NavigationViewSelectionChangedEventArgs args) { - myButton.Content = "Clicked"; + 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; + default: + break; + } + } } } } diff --git a/App2/App2/PageActivite.xaml b/App2/App2/PageActivite.xaml new file mode 100644 index 0000000..a1d1ccf --- /dev/null +++ b/App2/App2/PageActivite.xaml @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/App2/App2/PageActivite.xaml.cs b/App2/App2/PageActivite.xaml.cs new file mode 100644 index 0000000..5e9862c --- /dev/null +++ b/App2/App2/PageActivite.xaml.cs @@ -0,0 +1,31 @@ +using System; +using Microsoft.UI.Xaml; +using Microsoft.UI.Xaml.Controls; +using Microsoft.UI.Xaml.Navigation; + +namespace App2 +{ + public sealed partial class PageActivite : Page + { + public Activite SelectedActivite { 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(); + } + } +} diff --git a/App2/App2/PageStatistique.xaml b/App2/App2/PageStatistique.xaml new file mode 100644 index 0000000..2b71d56 --- /dev/null +++ b/App2/App2/PageStatistique.xaml @@ -0,0 +1,15 @@ + + + + + + + diff --git a/App2/App2/PageStatistique.xaml.cs b/App2/App2/PageStatistique.xaml.cs new file mode 100644 index 0000000..0870799 --- /dev/null +++ b/App2/App2/PageStatistique.xaml.cs @@ -0,0 +1,31 @@ +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 PageStatistique : Page + { + public PageStatistique() + { + this.InitializeComponent(); + } + } +} diff --git a/App2/App2/Singleton.cs b/App2/App2/Singleton.cs new file mode 100644 index 0000000..7c6354e --- /dev/null +++ b/App2/App2/Singleton.cs @@ -0,0 +1,84 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using MySql.Data.MySqlClient; + +namespace App2 +{ + class Singleton + { + private static Singleton instance; + private MySqlConnection connection; + + // Private constructor to prevent instantiation from outside + private Singleton() + { + // Set up the MySQL database connection + connection = new MySqlConnection("Server=cours.cegep3r.info;Database=a2024_420335ri_eq17;Uid=6221863;Pwd=6221863;"); + } + + // Public property to access the singleton instance + public static Singleton Instance + { + get + { + if (instance == null) + { + instance = new Singleton(); + } + return instance; + } + } + + // Example method to retrieve all activities from the database + public List GetAllActivites() + { + List activites = new List(); + + // Updated query with a JOIN to fetch the type name from the type table + string query = "SELECT a.id_activite, a.nom, a.cout_organisation, a.prix_participation, t.nom AS type_name " + + "FROM activite a " + + "JOIN type t ON a.id_type = t.id_type"; + + MySqlCommand command = new MySqlCommand(query, connection); + 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") // Assign the type name + }; + activites.Add(activite); + } + + connection.Close(); + return activites; + } + + + // Example method to add a new activity + public void AddActivite(Activite activite) + { + string query = "INSERT INTO activite (nom, coût_organisation, prix_participation, id_type) VALUES (@nom, @coût_organisation, @prix_participation, @id_type)"; + MySqlCommand command = new MySqlCommand(query, connection); + + command.Parameters.AddWithValue("@nom", activite.Nom); + command.Parameters.AddWithValue("@coût_organisation", activite.CoutOrganisation); + command.Parameters.AddWithValue("@prix_participation", activite.PrixParticipation); + command.Parameters.AddWithValue("@id_type", activite.IdType); // Assuming IdType exists + + connection.Open(); + command.ExecuteNonQuery(); + connection.Close(); + } + + } +} diff --git a/App2/App2/obj/App2.csproj.nuget.dgspec.json b/App2/App2/obj/App2.csproj.nuget.dgspec.json index 4ffd885..3e13fbe 100644 --- a/App2/App2/obj/App2.csproj.nuget.dgspec.json +++ b/App2/App2/obj/App2.csproj.nuget.dgspec.json @@ -11,7 +11,7 @@ "projectName": "App2", "projectPath": "C:\\Users\\avada\\source\\repos\\WinUI3Project\\App2\\App2\\App2.csproj", "packagesPath": "C:\\Users\\avada\\.nuget\\packages\\", - "outputPath": "C:\\Users\\avada\\Source\\Repos\\WinUI3Project\\App2\\App2\\obj\\", + "outputPath": "C:\\Users\\avada\\source\\repos\\WinUI3Project\\App2\\App2\\obj\\", "projectStyle": "PackageReference", "fallbackFolders": [ "D:\\vs 2022\\Shared\\NuGetPackages" @@ -56,6 +56,10 @@ "Microsoft.WindowsAppSDK": { "target": "Package", "version": "[1.1.3, )" + }, + "MySql.Data": { + "target": "Package", + "version": "[9.1.0, )" } }, "imports": [ diff --git a/App2/App2/obj/App2.csproj.nuget.g.targets b/App2/App2/obj/App2.csproj.nuget.g.targets index 4e41314..eff3ad8 100644 --- a/App2/App2/obj/App2.csproj.nuget.g.targets +++ b/App2/App2/obj/App2.csproj.nuget.g.targets @@ -1,6 +1,7 @@  + diff --git a/App2/App2/obj/project.assets.json b/App2/App2/obj/project.assets.json index 28b04bd..3fffde4 100644 --- a/App2/App2/obj/project.assets.json +++ b/App2/App2/obj/project.assets.json @@ -2,6 +2,94 @@ "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": { @@ -86,181 +174,1642 @@ "rid": "win10-x86" } } - } - }, - "net6.0-windows10.0.19041/win10-arm64": { - "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": { + "MySql.Data/9.1.0": { "type": "package", "dependencies": { - "Microsoft.Windows.SDK.BuildTools": "10.0.22000.194" + "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/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": { + "lib/net6.0/MySql.Data.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": { + "lib/net6.0/MySql.Data.dll": { "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win-x64/native/comerr64.dll": { + "assetType": "native", + "rid": "win-x64" }, - "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" + "runtimes/win-x64/native/gssapi64.dll": { + "assetType": "native", + "rid": "win-x64" }, - "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.Resources.Projection.dll": { - "related": ".xml" + "runtimes/win-x64/native/k5sprt64.dll": { + "assetType": "native", + "rid": "win-x64" }, - "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.WindowsAppRuntime.Projection.dll": { - "related": ".xml" + "runtimes/win-x64/native/krb5_64.dll": { + "assetType": "native", + "rid": "win-x64" }, - "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": { + "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" - }, - "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": {} + "runtime": { + "lib/net6.0/System.Configuration.ConfigurationManager.dll": { + "related": ".xml" + } }, "build": { - "buildTransitive/Microsoft.WindowsAppSDK.props": {}, - "buildTransitive/Microsoft.WindowsAppSDK.targets": {} + "buildTransitive/net6.0/_._": {} } - } - }, - "net6.0-windows10.0.19041/win10-x64": { - "Microsoft.Windows.SDK.BuildTools/10.0.22000.194": { + }, + "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": { - "build/Microsoft.Windows.SDK.BuildTools.props": {}, - "build/Microsoft.Windows.SDK.BuildTools.targets": {} + "buildTransitive/net6.0/_._": {} } }, - "Microsoft.WindowsAppSDK/1.1.3": { + "System.IO/4.3.0": { "type": "package", "dependencies": { - "Microsoft.Windows.SDK.BuildTools": "10.0.22000.194" + "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": { - "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": { + "ref/netstandard1.5/System.IO.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": { + } + } + }, + "System.IO.Pipelines/6.0.3": { + "type": "package", + "compile": { + "lib/net6.0/System.IO.Pipelines.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": { + "lib/net6.0/System.IO.Pipelines.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": {} + "buildTransitive/netcoreapp3.1/_._": {} } - } - }, - "net6.0-windows10.0.19041/win10-x86": { - "Microsoft.Windows.SDK.BuildTools/10.0.22000.194": { + }, + "System.Reflection/4.3.0": { "type": "package", - "build": { - "build/Microsoft.Windows.SDK.BuildTools.props": {}, - "build/Microsoft.Windows.SDK.BuildTools.targets": {} + "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" + } } }, - "Microsoft.WindowsAppSDK/1.1.3": { + "System.Reflection.Primitives/4.3.0": { "type": "package", "dependencies": { - "Microsoft.Windows.SDK.BuildTools": "10.0.22000.194" + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" }, "compile": { - "lib/net5.0-windows10.0.18362.0/Microsoft.InteractiveExperiences.Projection.dll": { + "ref/netstandard1.0/System.Reflection.Primitives.dll": { "related": ".xml" - }, - "lib/net5.0-windows10.0.18362.0/Microsoft.WinUI.dll": { + } + } + }, + "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" - }, - "lib/net5.0-windows10.0.18362.0/Microsoft.Windows.AppLifecycle.Projection.dll": { + } + } + }, + "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": {}, @@ -299,25 +1848,572 @@ }, "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": { + }, + "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" - }, - "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": {} + "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": {} }, - "build": { - "buildTransitive/Microsoft.WindowsAppSDK.props": {}, - "buildTransitive/Microsoft.WindowsAppSDK.targets": {} + "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", @@ -1068,12 +3164,1154 @@ "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" + "Microsoft.WindowsAppSDK >= 1.1.3", + "MySql.Data >= 9.1.0" ] }, "packageFolders": { @@ -1083,11 +4321,11 @@ "project": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\avada\\Source\\Repos\\WinUI3Project\\App2\\App2\\App2.csproj", + "projectUniqueName": "C:\\Users\\avada\\source\\repos\\WinUI3Project\\App2\\App2\\App2.csproj", "projectName": "App2", - "projectPath": "C:\\Users\\avada\\Source\\Repos\\WinUI3Project\\App2\\App2\\App2.csproj", + "projectPath": "C:\\Users\\avada\\source\\repos\\WinUI3Project\\App2\\App2\\App2.csproj", "packagesPath": "C:\\Users\\avada\\.nuget\\packages\\", - "outputPath": "C:\\Users\\avada\\Source\\Repos\\WinUI3Project\\App2\\App2\\obj\\", + "outputPath": "C:\\Users\\avada\\source\\repos\\WinUI3Project\\App2\\App2\\obj\\", "projectStyle": "PackageReference", "fallbackFolders": [ "D:\\vs 2022\\Shared\\NuGetPackages" @@ -1132,6 +4370,10 @@ "Microsoft.WindowsAppSDK": { "target": "Package", "version": "[1.1.3, )" + }, + "MySql.Data": { + "target": "Package", + "version": "[9.1.0, )" } }, "imports": [ diff --git a/App2/App2/obj/project.nuget.cache b/App2/App2/obj/project.nuget.cache index 5334b4b..c3f00c4 100644 --- a/App2/App2/obj/project.nuget.cache +++ b/App2/App2/obj/project.nuget.cache @@ -1,11 +1,47 @@ { "version": 2, - "dgSpecHash": "K4QTgWYm9HI=", + "dgSpecHash": "3GfdB9fVLzA=", "success": true, "projectFilePath": "C:\\Users\\avada\\source\\repos\\WinUI3Project\\App2\\App2\\App2.csproj", "expectedPackageFiles": [ + "C:\\Users\\avada\\.nuget\\packages\\bouncycastle.cryptography\\2.3.1\\bouncycastle.cryptography.2.3.1.nupkg.sha512", + "C:\\Users\\avada\\.nuget\\packages\\google.protobuf\\3.26.1\\google.protobuf.3.26.1.nupkg.sha512", + "C:\\Users\\avada\\.nuget\\packages\\k4os.compression.lz4\\1.3.8\\k4os.compression.lz4.1.3.8.nupkg.sha512", + "C:\\Users\\avada\\.nuget\\packages\\k4os.compression.lz4.streams\\1.3.8\\k4os.compression.lz4.streams.1.3.8.nupkg.sha512", + "C:\\Users\\avada\\.nuget\\packages\\k4os.hash.xxhash\\1.0.8\\k4os.hash.xxhash.1.0.8.nupkg.sha512", + "C:\\Users\\avada\\.nuget\\packages\\microsoft.netcore.platforms\\1.1.0\\microsoft.netcore.platforms.1.1.0.nupkg.sha512", + "C:\\Users\\avada\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512", "C:\\Users\\avada\\.nuget\\packages\\microsoft.windows.sdk.buildtools\\10.0.22000.194\\microsoft.windows.sdk.buildtools.10.0.22000.194.nupkg.sha512", "C:\\Users\\avada\\.nuget\\packages\\microsoft.windowsappsdk\\1.1.3\\microsoft.windowsappsdk.1.1.3.nupkg.sha512", + "C:\\Users\\avada\\.nuget\\packages\\mysql.data\\9.1.0\\mysql.data.9.1.0.nupkg.sha512", + "C:\\Users\\avada\\.nuget\\packages\\runtime.any.system.io\\4.3.0\\runtime.any.system.io.4.3.0.nupkg.sha512", + "C:\\Users\\avada\\.nuget\\packages\\runtime.any.system.reflection\\4.3.0\\runtime.any.system.reflection.4.3.0.nupkg.sha512", + "C:\\Users\\avada\\.nuget\\packages\\runtime.any.system.reflection.primitives\\4.3.0\\runtime.any.system.reflection.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\avada\\.nuget\\packages\\runtime.any.system.runtime\\4.3.0\\runtime.any.system.runtime.4.3.0.nupkg.sha512", + "C:\\Users\\avada\\.nuget\\packages\\runtime.any.system.text.encoding\\4.3.0\\runtime.any.system.text.encoding.4.3.0.nupkg.sha512", + "C:\\Users\\avada\\.nuget\\packages\\runtime.any.system.threading.tasks\\4.3.0\\runtime.any.system.threading.tasks.4.3.0.nupkg.sha512", + "C:\\Users\\avada\\.nuget\\packages\\runtime.win7.system.private.uri\\4.3.0\\runtime.win7.system.private.uri.4.3.0.nupkg.sha512", + "C:\\Users\\avada\\.nuget\\packages\\system.buffers\\4.5.1\\system.buffers.4.5.1.nupkg.sha512", + "C:\\Users\\avada\\.nuget\\packages\\system.configuration.configurationmanager\\8.0.0\\system.configuration.configurationmanager.8.0.0.nupkg.sha512", + "C:\\Users\\avada\\.nuget\\packages\\system.diagnostics.diagnosticsource\\8.0.1\\system.diagnostics.diagnosticsource.8.0.1.nupkg.sha512", + "C:\\Users\\avada\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512", + "C:\\Users\\avada\\.nuget\\packages\\system.io.pipelines\\6.0.3\\system.io.pipelines.6.0.3.nupkg.sha512", + "C:\\Users\\avada\\.nuget\\packages\\system.private.uri\\4.3.0\\system.private.uri.4.3.0.nupkg.sha512", + "C:\\Users\\avada\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512", + "C:\\Users\\avada\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\avada\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512", + "C:\\Users\\avada\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", + "C:\\Users\\avada\\.nuget\\packages\\system.runtime.loader\\4.3.0\\system.runtime.loader.4.3.0.nupkg.sha512", + "C:\\Users\\avada\\.nuget\\packages\\system.security.cryptography.protecteddata\\8.0.0\\system.security.cryptography.protecteddata.8.0.0.nupkg.sha512", + "C:\\Users\\avada\\.nuget\\packages\\system.security.permissions\\8.0.0\\system.security.permissions.8.0.0.nupkg.sha512", + "C:\\Users\\avada\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", + "C:\\Users\\avada\\.nuget\\packages\\system.text.encoding.codepages\\8.0.0\\system.text.encoding.codepages.8.0.0.nupkg.sha512", + "C:\\Users\\avada\\.nuget\\packages\\system.text.encodings.web\\8.0.0\\system.text.encodings.web.8.0.0.nupkg.sha512", + "C:\\Users\\avada\\.nuget\\packages\\system.text.json\\8.0.4\\system.text.json.8.0.4.nupkg.sha512", + "C:\\Users\\avada\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512", + "C:\\Users\\avada\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.4\\system.threading.tasks.extensions.4.5.4.nupkg.sha512", + "C:\\Users\\avada\\.nuget\\packages\\system.windows.extensions\\8.0.0\\system.windows.extensions.8.0.0.nupkg.sha512", + "C:\\Users\\avada\\.nuget\\packages\\zstdsharp.port\\0.8.0\\zstdsharp.port.0.8.0.nupkg.sha512", "C:\\Users\\avada\\.nuget\\packages\\microsoft.netcore.app.runtime.win-x86\\6.0.33\\microsoft.netcore.app.runtime.win-x86.6.0.33.nupkg.sha512", "C:\\Users\\avada\\.nuget\\packages\\microsoft.windows.sdk.net.ref\\10.0.19041.34\\microsoft.windows.sdk.net.ref.10.0.19041.34.nupkg.sha512", "C:\\Users\\avada\\.nuget\\packages\\microsoft.aspnetcore.app.runtime.win-x86\\6.0.33\\microsoft.aspnetcore.app.runtime.win-x86.6.0.33.nupkg.sha512", From 56959daab216572a1a31a870a2895b22c1c7f1cf Mon Sep 17 00:00:00 2001 From: Achraf Dakech Date: Wed, 11 Dec 2024 03:25:50 -0500 Subject: [PATCH 05/14] Statistiquea --- App2/App2/ListeActivitees.xaml.cs | 24 +++---- App2/App2/MainWindow.xaml | 3 +- App2/App2/MainWindow.xaml.cs | 3 + App2/App2/PageStatistique.xaml | 69 ++++++++++++++++-- App2/App2/PageStatistique.xaml.cs | 40 ++++++----- App2/App2/Singleton.cs | 112 ++++++++++++++++++++++++------ 6 files changed, 194 insertions(+), 57 deletions(-) diff --git a/App2/App2/ListeActivitees.xaml.cs b/App2/App2/ListeActivitees.xaml.cs index 3ab3506..cf8cfbd 100644 --- a/App2/App2/ListeActivitees.xaml.cs +++ b/App2/App2/ListeActivitees.xaml.cs @@ -24,24 +24,24 @@ namespace App2 /// public sealed partial class ListeActivitees : Page { - public List ListeActivites { get; set; } + public List ListeActivites { get; set; } - public ListeActivitees() - { - this.InitializeComponent(); - ListeActivites = Singleton.Instance.GetAllActivites(); - ActivitesListView.ItemsSource = ListeActivites; - } + 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) + private void ActivitesListView_SelectionChanged(object sender, SelectionChangedEventArgs e) { - this.Frame.Navigate(typeof(PageActivite), selectedActivite); + if (ActivitesListView.SelectedItem is Activite selectedActivite) + { + this.Frame.Navigate(typeof(PageActivite), selectedActivite); + } } - } } } diff --git a/App2/App2/MainWindow.xaml b/App2/App2/MainWindow.xaml index d901611..9283672 100644 --- a/App2/App2/MainWindow.xaml +++ b/App2/App2/MainWindow.xaml @@ -10,8 +10,9 @@ - + + diff --git a/App2/App2/MainWindow.xaml.cs b/App2/App2/MainWindow.xaml.cs index 6739e88..236a5da 100644 --- a/App2/App2/MainWindow.xaml.cs +++ b/App2/App2/MainWindow.xaml.cs @@ -42,6 +42,9 @@ private void nav_SelectionChanged(NavigationView sender, NavigationViewSelection case "listeAd": mainFrame.Navigate(typeof(ListeAdherents)); break; + case "Stat": + mainFrame.Navigate(typeof(PageStatistique)); + break; default: break; } diff --git a/App2/App2/PageStatistique.xaml b/App2/App2/PageStatistique.xaml index 2b71d56..2b44bb1 100644 --- a/App2/App2/PageStatistique.xaml +++ b/App2/App2/PageStatistique.xaml @@ -1,15 +1,74 @@ - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/App2/App2/PageStatistique.xaml.cs b/App2/App2/PageStatistique.xaml.cs index 0870799..9b9bd57 100644 --- a/App2/App2/PageStatistique.xaml.cs +++ b/App2/App2/PageStatistique.xaml.cs @@ -1,31 +1,37 @@ 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 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/Singleton.cs b/App2/App2/Singleton.cs index 7c6354e..6bca1e6 100644 --- a/App2/App2/Singleton.cs +++ b/App2/App2/Singleton.cs @@ -1,25 +1,20 @@ -using System; +using MySql.Data.MySqlClient; +using System; using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using MySql.Data.MySqlClient; +using System.Text.RegularExpressions; namespace App2 { - class Singleton + public class Singleton { private static Singleton instance; private MySqlConnection connection; - // Private constructor to prevent instantiation from outside private Singleton() { - // Set up the MySQL database connection connection = new MySqlConnection("Server=cours.cegep3r.info;Database=a2024_420335ri_eq17;Uid=6221863;Pwd=6221863;"); } - // Public property to access the singleton instance public static Singleton Instance { get @@ -32,18 +27,21 @@ public static Singleton Instance } } - // Example method to retrieve all activities from the database + // Retained GetAllActivities method public List GetAllActivites() { List activites = new List(); - // Updated query with a JOIN to fetch the type name from the type table string query = "SELECT a.id_activite, a.nom, a.cout_organisation, a.prix_participation, t.nom AS type_name " + "FROM activite a " + "JOIN type t ON a.id_type = t.id_type"; MySqlCommand command = new MySqlCommand(query, connection); - connection.Open(); + + if (connection.State != System.Data.ConnectionState.Open) + { + connection.Open(); + } MySqlDataReader reader = command.ExecuteReader(); while (reader.Read()) @@ -54,7 +52,7 @@ public List GetAllActivites() Nom = reader.GetString("nom"), CoutOrganisation = reader.GetDouble("cout_organisation"), PrixParticipation = reader.GetDouble("prix_participation"), - TypeName = reader.GetString("type_name") // Assign the type name + TypeName = reader.GetString("type_name") }; activites.Add(activite); } @@ -63,22 +61,92 @@ public List GetAllActivites() return activites; } + // 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"); + } + } - // Example method to add a new activity - public void AddActivite(Activite activite) + 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); + } + + // Helper methods: ExecuteScalar and ExecuteReader (unchanged) + public object ExecuteScalar(string query) { - string query = "INSERT INTO activite (nom, coût_organisation, prix_participation, id_type) VALUES (@nom, @coût_organisation, @prix_participation, @id_type)"; MySqlCommand command = new MySqlCommand(query, connection); - command.Parameters.AddWithValue("@nom", activite.Nom); - command.Parameters.AddWithValue("@coût_organisation", activite.CoutOrganisation); - command.Parameters.AddWithValue("@prix_participation", activite.PrixParticipation); - command.Parameters.AddWithValue("@id_type", activite.IdType); // Assuming IdType exists + if (connection.State != System.Data.ConnectionState.Open) + { + connection.Open(); + } - connection.Open(); - command.ExecuteNonQuery(); + 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(); + } } } From 252d53718a617600c77058401c3f755e9be5bbd7 Mon Sep 17 00:00:00 2001 From: Achraf Dakech Date: Wed, 11 Dec 2024 07:08:45 -0500 Subject: [PATCH 06/14] =?UTF-8?q?noter=20une=20activit=C3=A9=20partielleme?= =?UTF-8?q?nt=20en=20attente=20de=20la=20partie=20d'authentification=20pou?= =?UTF-8?q?r=20finaliser?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- App2/App2/Activite.cs | 3 +- App2/App2/PageActivite.xaml | 168 +++++++++++++++++++++++++-------- App2/App2/PageActivite.xaml.cs | 41 +++++++- App2/App2/Singleton.cs | 75 ++++++++++++++- 4 files changed, 243 insertions(+), 44 deletions(-) diff --git a/App2/App2/Activite.cs b/App2/App2/Activite.cs index d5c96e6..ef384cc 100644 --- a/App2/App2/Activite.cs +++ b/App2/App2/Activite.cs @@ -12,7 +12,8 @@ public class Activite { public double CoutOrganisation { get; set; } public double PrixParticipation { get; set; } public int IdType { get; set; } - public string TypeName { 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/PageActivite.xaml b/App2/App2/PageActivite.xaml index a1d1ccf..43c4970 100644 --- a/App2/App2/PageActivite.xaml +++ b/App2/App2/PageActivite.xaml @@ -6,7 +6,38 @@ Background="{ThemeResource ApplicationPageBackgroundThemeBrush}"> - - - + - - + + + + + + Margin="10,10,0,10"/> + + + + + + + + + + + + + + + + - - - - + - - + + @@ -41,6 +53,7 @@ + diff --git a/App2/App2/ListeActivitees.xaml.cs b/App2/App2/ListeActivitees.xaml.cs index cf8cfbd..560ab46 100644 --- a/App2/App2/ListeActivitees.xaml.cs +++ b/App2/App2/ListeActivitees.xaml.cs @@ -43,5 +43,9 @@ private void ActivitesListView_SelectionChanged(object sender, SelectionChangedE } } + private void ExporterButton_Click(object sender, RoutedEventArgs e) + { + + } } } diff --git a/App2/App2/ListeAdherents.xaml b/App2/App2/ListeAdherents.xaml index f92d449..3beaf62 100644 --- a/App2/App2/ListeAdherents.xaml +++ b/App2/App2/ListeAdherents.xaml @@ -10,6 +10,42 @@ Background="{ThemeResource ApplicationPageBackgroundThemeBrush}"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/App2/App2/ListeAdherents.xaml.cs b/App2/App2/ListeAdherents.xaml.cs index 2d0dd71..8be4099 100644 --- a/App2/App2/ListeAdherents.xaml.cs +++ b/App2/App2/ListeAdherents.xaml.cs @@ -23,9 +23,13 @@ namespace App2 /// public sealed partial class ListeAdherents : Page { + public List ListeAdherent { get; set; } + public ListeAdherents() { this.InitializeComponent(); + ListeAdherent = Singleton.Instance.GetAllAdherents(); + ActivitesListView.ItemsSource = ListeAdherent; } } } diff --git a/App2/App2/Singleton.cs b/App2/App2/Singleton.cs index 7336cb6..9c1878c 100644 --- a/App2/App2/Singleton.cs +++ b/App2/App2/Singleton.cs @@ -68,7 +68,42 @@ public List GetAllActivites() 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; + } // Consolidated statistics method public (int TotalMembers, int TotalActivities, List MembersPerActivity, List AverageRatings, From 7fba488cbf63daabecde1355f69ab78b3ca162dc Mon Sep 17 00:00:00 2001 From: Achraf Dakech Date: Wed, 11 Dec 2024 11:06:21 -0500 Subject: [PATCH 08/14] jj --- App2/App2/ListeAdherents.xaml | 1 - App2/App2/obj/App2.csproj.nuget.dgspec.json | 10 +++++----- App2/App2/obj/project.assets.json | 6 +++--- App2/App2/obj/project.nuget.cache | 4 ++-- 4 files changed, 10 insertions(+), 11 deletions(-) diff --git a/App2/App2/ListeAdherents.xaml b/App2/App2/ListeAdherents.xaml index 3beaf62..ba69baa 100644 --- a/App2/App2/ListeAdherents.xaml +++ b/App2/App2/ListeAdherents.xaml @@ -17,7 +17,6 @@ VerticalAlignment="Top" Margin="0,10,10,10"/> - diff --git a/App2/App2/obj/App2.csproj.nuget.dgspec.json b/App2/App2/obj/App2.csproj.nuget.dgspec.json index 3e13fbe..45dcefc 100644 --- a/App2/App2/obj/App2.csproj.nuget.dgspec.json +++ b/App2/App2/obj/App2.csproj.nuget.dgspec.json @@ -1,17 +1,17 @@ { "format": 1, "restore": { - "C:\\Users\\avada\\source\\repos\\WinUI3Project\\App2\\App2\\App2.csproj": {} + "C:\\Users\\avada\\Source\\Repos\\WinUI3Project2\\App2\\App2\\App2.csproj": {} }, "projects": { - "C:\\Users\\avada\\source\\repos\\WinUI3Project\\App2\\App2\\App2.csproj": { + "C:\\Users\\avada\\Source\\Repos\\WinUI3Project2\\App2\\App2\\App2.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\avada\\source\\repos\\WinUI3Project\\App2\\App2\\App2.csproj", + "projectUniqueName": "C:\\Users\\avada\\Source\\Repos\\WinUI3Project2\\App2\\App2\\App2.csproj", "projectName": "App2", - "projectPath": "C:\\Users\\avada\\source\\repos\\WinUI3Project\\App2\\App2\\App2.csproj", + "projectPath": "C:\\Users\\avada\\Source\\Repos\\WinUI3Project2\\App2\\App2\\App2.csproj", "packagesPath": "C:\\Users\\avada\\.nuget\\packages\\", - "outputPath": "C:\\Users\\avada\\source\\repos\\WinUI3Project\\App2\\App2\\obj\\", + "outputPath": "C:\\Users\\avada\\Source\\Repos\\WinUI3Project2\\App2\\App2\\obj\\", "projectStyle": "PackageReference", "fallbackFolders": [ "D:\\vs 2022\\Shared\\NuGetPackages" diff --git a/App2/App2/obj/project.assets.json b/App2/App2/obj/project.assets.json index 3fffde4..f5a687b 100644 --- a/App2/App2/obj/project.assets.json +++ b/App2/App2/obj/project.assets.json @@ -4321,11 +4321,11 @@ "project": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\avada\\source\\repos\\WinUI3Project\\App2\\App2\\App2.csproj", + "projectUniqueName": "C:\\Users\\avada\\Source\\Repos\\WinUI3Project2\\App2\\App2\\App2.csproj", "projectName": "App2", - "projectPath": "C:\\Users\\avada\\source\\repos\\WinUI3Project\\App2\\App2\\App2.csproj", + "projectPath": "C:\\Users\\avada\\Source\\Repos\\WinUI3Project2\\App2\\App2\\App2.csproj", "packagesPath": "C:\\Users\\avada\\.nuget\\packages\\", - "outputPath": "C:\\Users\\avada\\source\\repos\\WinUI3Project\\App2\\App2\\obj\\", + "outputPath": "C:\\Users\\avada\\Source\\Repos\\WinUI3Project2\\App2\\App2\\obj\\", "projectStyle": "PackageReference", "fallbackFolders": [ "D:\\vs 2022\\Shared\\NuGetPackages" diff --git a/App2/App2/obj/project.nuget.cache b/App2/App2/obj/project.nuget.cache index c3f00c4..a5a328c 100644 --- a/App2/App2/obj/project.nuget.cache +++ b/App2/App2/obj/project.nuget.cache @@ -1,8 +1,8 @@ { "version": 2, - "dgSpecHash": "3GfdB9fVLzA=", + "dgSpecHash": "aPvgj0X8FC8=", "success": true, - "projectFilePath": "C:\\Users\\avada\\source\\repos\\WinUI3Project\\App2\\App2\\App2.csproj", + "projectFilePath": "C:\\Users\\avada\\Source\\Repos\\WinUI3Project2\\App2\\App2\\App2.csproj", "expectedPackageFiles": [ "C:\\Users\\avada\\.nuget\\packages\\bouncycastle.cryptography\\2.3.1\\bouncycastle.cryptography.2.3.1.nupkg.sha512", "C:\\Users\\avada\\.nuget\\packages\\google.protobuf\\3.26.1\\google.protobuf.3.26.1.nupkg.sha512", From 18020c98af2b7bfb1e10264557c69ed00417b594 Mon Sep 17 00:00:00 2001 From: Achraf Dakech Date: Wed, 11 Dec 2024 12:40:36 -0500 Subject: [PATCH 09/14] =?UTF-8?q?Fin=20partie=20Achraf=20Dakech=20avec=20l?= =?UTF-8?q?'exportation=20de=20donn=C3=A9e?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- App2/App2/ListeActivitees.xaml | 6 ++ App2/App2/ListeActivitees.xaml.cs | 65 +++++++++----- App2/App2/ListeAdherents.xaml | 16 ++++ App2/App2/ListeAdherents.xaml.cs | 19 ++++ App2/App2/Singleton.cs | 97 ++++++++++++++++++++- App2/App2/obj/App2.csproj.nuget.dgspec.json | 10 +-- App2/App2/obj/project.assets.json | 6 +- App2/App2/obj/project.nuget.cache | 4 +- 8 files changed, 189 insertions(+), 34 deletions(-) diff --git a/App2/App2/ListeActivitees.xaml b/App2/App2/ListeActivitees.xaml index 8e3d74b..4e4446c 100644 --- a/App2/App2/ListeActivitees.xaml +++ b/App2/App2/ListeActivitees.xaml @@ -17,6 +17,12 @@ VerticalAlignment="Top" Margin="10"/> + diff --git a/App2/App2/ListeAdherents.xaml.cs b/App2/App2/ListeAdherents.xaml.cs index 8be4099..6a2c21c 100644 --- a/App2/App2/ListeAdherents.xaml.cs +++ b/App2/App2/ListeAdherents.xaml.cs @@ -1,3 +1,4 @@ + using System; using System.Collections.Generic; using System.IO; @@ -31,5 +32,23 @@ public ListeAdherents() 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/Singleton.cs b/App2/App2/Singleton.cs index 9c1878c..265730c 100644 --- a/App2/App2/Singleton.cs +++ b/App2/App2/Singleton.cs @@ -1,7 +1,22 @@ -using MySql.Data.MySqlClient; +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 { @@ -12,7 +27,7 @@ public class Singleton private Singleton() { - connection = new MySqlConnection("Server=cours.cegep3r.info;Database=a2024_420335ri_eq17;Uid=6221863;Pwd=6221863;"); + connection = new MySqlConnection("Server=cours.cegep3r.info;Database=a2024_420335ri_eq17;Uid=2121088;Pwd=2121088;"); } @@ -105,6 +120,84 @@ public List GetAllAdherents() 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() diff --git a/App2/App2/obj/App2.csproj.nuget.dgspec.json b/App2/App2/obj/App2.csproj.nuget.dgspec.json index 45dcefc..3e13fbe 100644 --- a/App2/App2/obj/App2.csproj.nuget.dgspec.json +++ b/App2/App2/obj/App2.csproj.nuget.dgspec.json @@ -1,17 +1,17 @@ { "format": 1, "restore": { - "C:\\Users\\avada\\Source\\Repos\\WinUI3Project2\\App2\\App2\\App2.csproj": {} + "C:\\Users\\avada\\source\\repos\\WinUI3Project\\App2\\App2\\App2.csproj": {} }, "projects": { - "C:\\Users\\avada\\Source\\Repos\\WinUI3Project2\\App2\\App2\\App2.csproj": { + "C:\\Users\\avada\\source\\repos\\WinUI3Project\\App2\\App2\\App2.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\avada\\Source\\Repos\\WinUI3Project2\\App2\\App2\\App2.csproj", + "projectUniqueName": "C:\\Users\\avada\\source\\repos\\WinUI3Project\\App2\\App2\\App2.csproj", "projectName": "App2", - "projectPath": "C:\\Users\\avada\\Source\\Repos\\WinUI3Project2\\App2\\App2\\App2.csproj", + "projectPath": "C:\\Users\\avada\\source\\repos\\WinUI3Project\\App2\\App2\\App2.csproj", "packagesPath": "C:\\Users\\avada\\.nuget\\packages\\", - "outputPath": "C:\\Users\\avada\\Source\\Repos\\WinUI3Project2\\App2\\App2\\obj\\", + "outputPath": "C:\\Users\\avada\\source\\repos\\WinUI3Project\\App2\\App2\\obj\\", "projectStyle": "PackageReference", "fallbackFolders": [ "D:\\vs 2022\\Shared\\NuGetPackages" diff --git a/App2/App2/obj/project.assets.json b/App2/App2/obj/project.assets.json index f5a687b..3fffde4 100644 --- a/App2/App2/obj/project.assets.json +++ b/App2/App2/obj/project.assets.json @@ -4321,11 +4321,11 @@ "project": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\avada\\Source\\Repos\\WinUI3Project2\\App2\\App2\\App2.csproj", + "projectUniqueName": "C:\\Users\\avada\\source\\repos\\WinUI3Project\\App2\\App2\\App2.csproj", "projectName": "App2", - "projectPath": "C:\\Users\\avada\\Source\\Repos\\WinUI3Project2\\App2\\App2\\App2.csproj", + "projectPath": "C:\\Users\\avada\\source\\repos\\WinUI3Project\\App2\\App2\\App2.csproj", "packagesPath": "C:\\Users\\avada\\.nuget\\packages\\", - "outputPath": "C:\\Users\\avada\\Source\\Repos\\WinUI3Project2\\App2\\App2\\obj\\", + "outputPath": "C:\\Users\\avada\\source\\repos\\WinUI3Project\\App2\\App2\\obj\\", "projectStyle": "PackageReference", "fallbackFolders": [ "D:\\vs 2022\\Shared\\NuGetPackages" diff --git a/App2/App2/obj/project.nuget.cache b/App2/App2/obj/project.nuget.cache index a5a328c..c3f00c4 100644 --- a/App2/App2/obj/project.nuget.cache +++ b/App2/App2/obj/project.nuget.cache @@ -1,8 +1,8 @@ { "version": 2, - "dgSpecHash": "aPvgj0X8FC8=", + "dgSpecHash": "3GfdB9fVLzA=", "success": true, - "projectFilePath": "C:\\Users\\avada\\Source\\Repos\\WinUI3Project2\\App2\\App2\\App2.csproj", + "projectFilePath": "C:\\Users\\avada\\source\\repos\\WinUI3Project\\App2\\App2\\App2.csproj", "expectedPackageFiles": [ "C:\\Users\\avada\\.nuget\\packages\\bouncycastle.cryptography\\2.3.1\\bouncycastle.cryptography.2.3.1.nupkg.sha512", "C:\\Users\\avada\\.nuget\\packages\\google.protobuf\\3.26.1\\google.protobuf.3.26.1.nupkg.sha512", From f0d1e7445de1db2cb07a1a2eb311a17e24ef33c6 Mon Sep 17 00:00:00 2001 From: melekezzeddini Date: Wed, 11 Dec 2024 12:43:28 -0500 Subject: [PATCH 10/14] ajout authentification --- App2/App2/App2.csproj | 6 ++ App2/App2/App2.csproj.user | 3 + App2/App2/LoginPage.xaml | 18 ++++ App2/App2/LoginPage.xaml.cs | 41 ++++++++ App2/App2/MainWindow.xaml.cs | 42 ++++---- App2/App2/Singleton.cs | 38 +++++++- App2/App2/obj/App2.csproj.nuget.dgspec.json | 44 ++++----- App2/App2/obj/App2.csproj.nuget.g.props | 10 +- App2/App2/obj/project.assets.json | 44 ++++----- App2/App2/obj/project.nuget.cache | 100 ++++++++++---------- 10 files changed, 225 insertions(+), 121 deletions(-) create mode 100644 App2/App2/LoginPage.xaml create mode 100644 App2/App2/LoginPage.xaml.cs diff --git a/App2/App2/App2.csproj b/App2/App2/App2.csproj index 39b471e..dd54143 100644 --- a/App2/App2/App2.csproj +++ b/App2/App2/App2.csproj @@ -14,6 +14,7 @@ + @@ -43,6 +44,11 @@ + + + MSBuild:Compile + + MSBuild:Compile diff --git a/App2/App2/App2.csproj.user b/App2/App2/App2.csproj.user index ddcc862..faa2ae5 100644 --- a/App2/App2/App2.csproj.user +++ b/App2/App2/App2.csproj.user @@ -5,6 +5,9 @@ Designer + + Designer + Designer diff --git a/App2/App2/LoginPage.xaml b/App2/App2/LoginPage.xaml new file mode 100644 index 0000000..615cb74 --- /dev/null +++ b/App2/App2/LoginPage.xaml @@ -0,0 +1,18 @@ + + + + + + + + @@ -28,7 +44,6 @@ - From 2cc04c1f6f65d4aedd32f01504d4744a2edfa664 Mon Sep 17 00:00:00 2001 From: melekezzeddini Date: Wed, 11 Dec 2024 12:56:46 -0500 Subject: [PATCH 12/14] test --- App2/App2/MainWindow.xaml.cs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/App2/App2/MainWindow.xaml.cs b/App2/App2/MainWindow.xaml.cs index 16d1ff7..7d980eb 100644 --- a/App2/App2/MainWindow.xaml.cs +++ b/App2/App2/MainWindow.xaml.cs @@ -34,10 +34,7 @@ private void nav_SelectionChanged(NavigationView sender, NavigationViewSelection { if (!isAuthenticated) { - mainFrame.Navigate(typeof(LoginPage)); // Rediriger vers la page de connexion si non authentifié - return; - } - + mainFrame.Navigate(typeof(LoginPage)); if (args.SelectedItem != null) { var item = (NavigationViewItem)args.SelectedItem; From 59ed9183d54e731aebff74cb3eda33698ca40952 Mon Sep 17 00:00:00 2001 From: melekezzeddini Date: Wed, 11 Dec 2024 12:57:33 -0500 Subject: [PATCH 13/14] 12.57 --- App2/App2/MainWindow.xaml.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/App2/App2/MainWindow.xaml.cs b/App2/App2/MainWindow.xaml.cs index 7d980eb..16d1ff7 100644 --- a/App2/App2/MainWindow.xaml.cs +++ b/App2/App2/MainWindow.xaml.cs @@ -34,7 +34,10 @@ private void nav_SelectionChanged(NavigationView sender, NavigationViewSelection { if (!isAuthenticated) { - mainFrame.Navigate(typeof(LoginPage)); + mainFrame.Navigate(typeof(LoginPage)); // Rediriger vers la page de connexion si non authentifié + return; + } + if (args.SelectedItem != null) { var item = (NavigationViewItem)args.SelectedItem; From 7a323848e99eecf398fd8594f52e75e186e37515 Mon Sep 17 00:00:00 2001 From: melekezzeddini Date: Wed, 11 Dec 2024 14:52:10 -0500 Subject: [PATCH 14/14] final --- App2/App2/App2.csproj | 6 ++ App2/App2/App2.csproj.user | 3 + App2/App2/GestionAdherents.xaml | 14 ++++ App2/App2/GestionAdherents.xaml.cs | 31 ++++++++ App2/App2/LoginPage.xaml | 41 ++++++++-- App2/App2/LoginPage.xaml.cs | 34 +++++--- App2/App2/MainWindow.xaml | 11 ++- App2/App2/MainWindow.xaml.cs | 39 +++++----- App2/App2/Singleton.cs | 86 +++++++++++++++++---- App2/App2/obj/App2.csproj.nuget.dgspec.json | 10 +-- App2/App2/obj/project.nuget.cache | 4 +- 11 files changed, 213 insertions(+), 66 deletions(-) create mode 100644 App2/App2/GestionAdherents.xaml create mode 100644 App2/App2/GestionAdherents.xaml.cs diff --git a/App2/App2/App2.csproj b/App2/App2/App2.csproj index dd54143..47d71d5 100644 --- a/App2/App2/App2.csproj +++ b/App2/App2/App2.csproj @@ -12,6 +12,7 @@ true + @@ -44,6 +45,11 @@ + + + MSBuild:Compile + + MSBuild:Compile diff --git a/App2/App2/App2.csproj.user b/App2/App2/App2.csproj.user index faa2ae5..5efc1fb 100644 --- a/App2/App2/App2.csproj.user +++ b/App2/App2/App2.csproj.user @@ -5,6 +5,9 @@ Designer + + Designer + Designer 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/LoginPage.xaml b/App2/App2/LoginPage.xaml index 615cb74..af725de 100644 --- a/App2/App2/LoginPage.xaml +++ b/App2/App2/LoginPage.xaml @@ -5,14 +5,39 @@ Background="{ThemeResource ApplicationPageBackgroundThemeBrush}"> - - - - -