diff --git a/.gitignore b/.gitignore
index 6db67bd..8b7e502 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,8 +1,22 @@
-# Visual Studio
-.vs/
+# Logs
+logs
+*.log
+npm-debug.log*
+yarn-debug.log*
+yarn-error.log*
+pnpm-debug.log*
+lerna-debug.log*
-# Builds
-bin/
+node_modules
+dist
+dist-ssr
+*.local
-Debug/
-Release/
\ No newline at end of file
+# Editor directories and files
+.idea
+.DS_Store
+*.suo
+*.ntvs*
+*.njsproj
+*.sln
+*.sw?
diff --git a/.vscode/extensions.json b/.vscode/extensions.json
new file mode 100644
index 0000000..24d7cc6
--- /dev/null
+++ b/.vscode/extensions.json
@@ -0,0 +1,3 @@
+{
+ "recommendations": ["tauri-apps.tauri-vscode", "rust-lang.rust-analyzer"]
+}
diff --git a/.vscode/launch.json b/.vscode/launch.json
new file mode 100644
index 0000000..ad08506
--- /dev/null
+++ b/.vscode/launch.json
@@ -0,0 +1,32 @@
+{
+ // Use IntelliSense to learn about possible attributes.
+ // Hover to view descriptions of existing attributes.
+ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
+ "version": "0.2.0",
+ "configurations": [
+ {
+ "type": "lldb",
+ "request": "launch",
+ "name": "Tauri Development Debug",
+ "cargo": {
+ "args": [
+ "build",
+ "--manifest-path=./src-tauri/Cargo.toml",
+ "--no-default-features"
+ ]
+ },
+ // task for the `beforeDevCommand` if used, must be configured in `.vscode/tasks.json`
+ "preLaunchTask": "ui:dev"
+ },
+ {
+ "type": "lldb",
+ "request": "launch",
+ "name": "Tauri Production Debug",
+ "cargo": {
+ "args": ["build", "--release", "--manifest-path=./src-tauri/Cargo.toml"]
+ },
+ // task for the `beforeBuildCommand` if used, must be configured in `.vscode/tasks.json`
+ "preLaunchTask": "ui:build"
+ }
+ ]
+}
\ No newline at end of file
diff --git a/.vscode/tasks.json b/.vscode/tasks.json
new file mode 100644
index 0000000..dd40294
--- /dev/null
+++ b/.vscode/tasks.json
@@ -0,0 +1,25 @@
+{
+ // See https://go.microsoft.com/fwlink/?LinkId=733558
+ // for the documentation about the tasks.json format
+ "version": "2.0.0",
+ "tasks": [
+ {
+ "label": "ui:dev",
+ "type": "shell",
+ // `dev` keeps running in the background
+ // ideally you should also configure a `problemMatcher`
+ // see https://code.visualstudio.com/docs/editor/tasks#_can-a-background-task-be-used-as-a-prelaunchtask-in-launchjson
+ "isBackground": true,
+ // change this to your `beforeDevCommand`:
+ "command": "npm",
+ "args": ["run", "dev"]
+ },
+ {
+ "label": "ui:build",
+ "type": "shell",
+ // change this to your `beforeBuildCommand`:
+ "command": "npm",
+ "args": ["run", "build"]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/README.md b/README.md
index b47ae54..8c35f22 100644
--- a/README.md
+++ b/README.md
@@ -7,13 +7,13 @@ If you don't record ShadowPlay clips with 2 audio tracks, you don't need this pr
## Installation
1. Download and install [ffmpeg](https://ffmpeg.org/download.html).
- 1. An easy way on Windows is to use `winget`: `winget install ffmpeg`
-2. Download VideoClipper.exe from the [Releases](https://github.com/GitGeddes/VideoClipper/releases) page.
+ 1. `winget` is an easy way to install it on Windows: `winget install ffmpeg`
+2. Download the installer from the [Releases](https://github.com/GitGeddes/VideoClipper/releases) page.
+ 1. This ensures you have dependencies like vcredist and WebView2.
## Features
- File picker
-- Text input for start and end timestamps
- - Strings are not validated, use `mm:ss` format compatible with `ffmpeg`
+- Video preview with slider to select start and end timestamps
- Text input for output filename
- Mute or unmute microphone track
- Choose whether or not to overwrite an existing output file (not tested)
@@ -21,11 +21,11 @@ If you don't record ShadowPlay clips with 2 audio tracks, you don't need this pr
## Usage
1. Select a video to clip
-2. Enter a start/end time in the format `mm:ss`
+2. Select a start and end time with the slider
3. (Optional) Enter a filename for the output file
4. Choose whether to include the microphone audio track in the output
5. Process the video
The output file goes into the same folder as the selected input video.
-
+
diff --git a/VideoClipper.sln b/VideoClipper.sln
deleted file mode 100644
index 6705dac..0000000
--- a/VideoClipper.sln
+++ /dev/null
@@ -1,25 +0,0 @@
-
-Microsoft Visual Studio Solution File, Format Version 12.00
-# Visual Studio Version 17
-VisualStudioVersion = 17.14.36212.18 d17.14
-MinimumVisualStudioVersion = 10.0.40219.1
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "VideoClipper", "VideoClipper\VideoClipper.csproj", "{2BA4F148-9281-4E54-B404-9FAC3219FAD3}"
-EndProject
-Global
- GlobalSection(SolutionConfigurationPlatforms) = preSolution
- Debug|Any CPU = Debug|Any CPU
- Release|Any CPU = Release|Any CPU
- EndGlobalSection
- GlobalSection(ProjectConfigurationPlatforms) = postSolution
- {2BA4F148-9281-4E54-B404-9FAC3219FAD3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {2BA4F148-9281-4E54-B404-9FAC3219FAD3}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {2BA4F148-9281-4E54-B404-9FAC3219FAD3}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {2BA4F148-9281-4E54-B404-9FAC3219FAD3}.Release|Any CPU.Build.0 = Release|Any CPU
- EndGlobalSection
- GlobalSection(SolutionProperties) = preSolution
- HideSolutionNode = FALSE
- EndGlobalSection
- GlobalSection(ExtensibilityGlobals) = postSolution
- SolutionGuid = {780EDDD3-19CE-4997-B0C5-D9DD14DDD4DC}
- EndGlobalSection
-EndGlobal
diff --git a/VideoClipper/App.xaml b/VideoClipper/App.xaml
deleted file mode 100644
index 545b94f..0000000
--- a/VideoClipper/App.xaml
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
diff --git a/VideoClipper/App.xaml.cs b/VideoClipper/App.xaml.cs
deleted file mode 100644
index a18e508..0000000
--- a/VideoClipper/App.xaml.cs
+++ /dev/null
@@ -1,21 +0,0 @@
-namespace VideoClipper
-{
- public partial class App : Application
- {
- public App()
- {
- InitializeComponent();
- }
-
- protected override Window CreateWindow(IActivationState? activationState)
- {
- var window = new Window(new AppShell())
- {
- Width = 400,
- Height = 400
- };
-
- return window;
- }
- }
-}
\ No newline at end of file
diff --git a/VideoClipper/AppShell.xaml b/VideoClipper/AppShell.xaml
deleted file mode 100644
index 74bf0ab..0000000
--- a/VideoClipper/AppShell.xaml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
-
-
diff --git a/VideoClipper/AppShell.xaml.cs b/VideoClipper/AppShell.xaml.cs
deleted file mode 100644
index 9ab4a57..0000000
--- a/VideoClipper/AppShell.xaml.cs
+++ /dev/null
@@ -1,10 +0,0 @@
-namespace VideoClipper
-{
- public partial class AppShell : Shell
- {
- public AppShell()
- {
- InitializeComponent();
- }
- }
-}
diff --git a/VideoClipper/MauiProgram.cs b/VideoClipper/MauiProgram.cs
deleted file mode 100644
index c4551b1..0000000
--- a/VideoClipper/MauiProgram.cs
+++ /dev/null
@@ -1,25 +0,0 @@
-using Microsoft.Extensions.Logging;
-
-namespace VideoClipper
-{
- public static class MauiProgram
- {
- public static MauiApp CreateMauiApp()
- {
- var builder = MauiApp.CreateBuilder();
- builder
- .UseMauiApp()
- .ConfigureFonts(fonts =>
- {
- fonts.AddFont("OpenSans-Regular.ttf", "OpenSansRegular");
- fonts.AddFont("OpenSans-Semibold.ttf", "OpenSansSemibold");
- });
-
-#if DEBUG
- builder.Logging.AddDebug();
-#endif
-
- return builder.Build();
- }
- }
-}
diff --git a/VideoClipper/Platforms/Android/AndroidManifest.xml b/VideoClipper/Platforms/Android/AndroidManifest.xml
deleted file mode 100644
index e9937ad..0000000
--- a/VideoClipper/Platforms/Android/AndroidManifest.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/VideoClipper/Platforms/Android/MainActivity.cs b/VideoClipper/Platforms/Android/MainActivity.cs
deleted file mode 100644
index 21a39e2..0000000
--- a/VideoClipper/Platforms/Android/MainActivity.cs
+++ /dev/null
@@ -1,11 +0,0 @@
-using Android.App;
-using Android.Content.PM;
-using Android.OS;
-
-namespace VideoClipper
-{
- [Activity(Theme = "@style/Maui.SplashTheme", MainLauncher = true, LaunchMode = LaunchMode.SingleTop, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation | ConfigChanges.UiMode | ConfigChanges.ScreenLayout | ConfigChanges.SmallestScreenSize | ConfigChanges.Density)]
- public class MainActivity : MauiAppCompatActivity
- {
- }
-}
diff --git a/VideoClipper/Platforms/Android/MainApplication.cs b/VideoClipper/Platforms/Android/MainApplication.cs
deleted file mode 100644
index 0c16045..0000000
--- a/VideoClipper/Platforms/Android/MainApplication.cs
+++ /dev/null
@@ -1,16 +0,0 @@
-using Android.App;
-using Android.Runtime;
-
-namespace VideoClipper
-{
- [Application]
- public class MainApplication : MauiApplication
- {
- public MainApplication(IntPtr handle, JniHandleOwnership ownership)
- : base(handle, ownership)
- {
- }
-
- protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
- }
-}
diff --git a/VideoClipper/Platforms/Android/Resources/values/colors.xml b/VideoClipper/Platforms/Android/Resources/values/colors.xml
deleted file mode 100644
index c04d749..0000000
--- a/VideoClipper/Platforms/Android/Resources/values/colors.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
- #512BD4
- #2B0B98
- #2B0B98
-
\ No newline at end of file
diff --git a/VideoClipper/Platforms/MacCatalyst/AppDelegate.cs b/VideoClipper/Platforms/MacCatalyst/AppDelegate.cs
deleted file mode 100644
index ef868be..0000000
--- a/VideoClipper/Platforms/MacCatalyst/AppDelegate.cs
+++ /dev/null
@@ -1,10 +0,0 @@
-using Foundation;
-
-namespace VideoClipper
-{
- [Register("AppDelegate")]
- public class AppDelegate : MauiUIApplicationDelegate
- {
- protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
- }
-}
diff --git a/VideoClipper/Platforms/MacCatalyst/Entitlements.plist b/VideoClipper/Platforms/MacCatalyst/Entitlements.plist
deleted file mode 100644
index de4adc9..0000000
--- a/VideoClipper/Platforms/MacCatalyst/Entitlements.plist
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
-
-
-
- com.apple.security.app-sandbox
-
-
- com.apple.security.network.client
-
-
-
-
diff --git a/VideoClipper/Platforms/MacCatalyst/Info.plist b/VideoClipper/Platforms/MacCatalyst/Info.plist
deleted file mode 100644
index 7268977..0000000
--- a/VideoClipper/Platforms/MacCatalyst/Info.plist
+++ /dev/null
@@ -1,38 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
- UIDeviceFamily
-
- 2
-
- UIRequiredDeviceCapabilities
-
- arm64
-
- UISupportedInterfaceOrientations
-
- UIInterfaceOrientationPortrait
- UIInterfaceOrientationLandscapeLeft
- UIInterfaceOrientationLandscapeRight
-
- UISupportedInterfaceOrientations~ipad
-
- UIInterfaceOrientationPortrait
- UIInterfaceOrientationPortraitUpsideDown
- UIInterfaceOrientationLandscapeLeft
- UIInterfaceOrientationLandscapeRight
-
- XSAppIconAssets
- Assets.xcassets/appicon.appiconset
-
-
diff --git a/VideoClipper/Platforms/MacCatalyst/Program.cs b/VideoClipper/Platforms/MacCatalyst/Program.cs
deleted file mode 100644
index 6ddaf66..0000000
--- a/VideoClipper/Platforms/MacCatalyst/Program.cs
+++ /dev/null
@@ -1,16 +0,0 @@
-using ObjCRuntime;
-using UIKit;
-
-namespace VideoClipper
-{
- public class Program
- {
- // This is the main entry point of the application.
- static void Main(string[] args)
- {
- // if you want to use a different Application Delegate class from "AppDelegate"
- // you can specify it here.
- UIApplication.Main(args, null, typeof(AppDelegate));
- }
- }
-}
diff --git a/VideoClipper/Platforms/Tizen/Main.cs b/VideoClipper/Platforms/Tizen/Main.cs
deleted file mode 100644
index a2c8cc7..0000000
--- a/VideoClipper/Platforms/Tizen/Main.cs
+++ /dev/null
@@ -1,17 +0,0 @@
-using System;
-using Microsoft.Maui;
-using Microsoft.Maui.Hosting;
-
-namespace VideoClipper
-{
- internal class Program : MauiApplication
- {
- protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
-
- static void Main(string[] args)
- {
- var app = new Program();
- app.Run(args);
- }
- }
-}
diff --git a/VideoClipper/Platforms/Tizen/tizen-manifest.xml b/VideoClipper/Platforms/Tizen/tizen-manifest.xml
deleted file mode 100644
index 6a0f93c..0000000
--- a/VideoClipper/Platforms/Tizen/tizen-manifest.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-
-
-
- maui-appicon-placeholder
-
-
-
-
- http://tizen.org/privilege/internet
-
-
-
-
\ No newline at end of file
diff --git a/VideoClipper/Platforms/Windows/App.xaml b/VideoClipper/Platforms/Windows/App.xaml
deleted file mode 100644
index 598607b..0000000
--- a/VideoClipper/Platforms/Windows/App.xaml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
diff --git a/VideoClipper/Platforms/Windows/App.xaml.cs b/VideoClipper/Platforms/Windows/App.xaml.cs
deleted file mode 100644
index 0a8dd5f..0000000
--- a/VideoClipper/Platforms/Windows/App.xaml.cs
+++ /dev/null
@@ -1,25 +0,0 @@
-using Microsoft.UI.Xaml;
-
-// To learn more about WinUI, the WinUI project structure,
-// and more about our project templates, see: http://aka.ms/winui-project-info.
-
-namespace VideoClipper.WinUI
-{
- ///
- /// Provides application-specific behavior to supplement the default Application class.
- ///
- public partial class App : MauiWinUIApplication
- {
- ///
- /// 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();
- }
-
- protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
- }
-
-}
diff --git a/VideoClipper/Platforms/Windows/Package.appxmanifest b/VideoClipper/Platforms/Windows/Package.appxmanifest
deleted file mode 100644
index 258957b..0000000
--- a/VideoClipper/Platforms/Windows/Package.appxmanifest
+++ /dev/null
@@ -1,46 +0,0 @@
-
-
-
-
-
-
-
-
- $placeholder$
- User Name
- $placeholder$.png
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/VideoClipper/Platforms/Windows/app.manifest b/VideoClipper/Platforms/Windows/app.manifest
deleted file mode 100644
index e47f258..0000000
--- a/VideoClipper/Platforms/Windows/app.manifest
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-
-
-
-
-
- true/PM
- PerMonitorV2, PerMonitor
-
-
-
diff --git a/VideoClipper/Platforms/iOS/AppDelegate.cs b/VideoClipper/Platforms/iOS/AppDelegate.cs
deleted file mode 100644
index ef868be..0000000
--- a/VideoClipper/Platforms/iOS/AppDelegate.cs
+++ /dev/null
@@ -1,10 +0,0 @@
-using Foundation;
-
-namespace VideoClipper
-{
- [Register("AppDelegate")]
- public class AppDelegate : MauiUIApplicationDelegate
- {
- protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
- }
-}
diff --git a/VideoClipper/Platforms/iOS/Info.plist b/VideoClipper/Platforms/iOS/Info.plist
deleted file mode 100644
index 0004a4f..0000000
--- a/VideoClipper/Platforms/iOS/Info.plist
+++ /dev/null
@@ -1,32 +0,0 @@
-
-
-
-
- LSRequiresIPhoneOS
-
- UIDeviceFamily
-
- 1
- 2
-
- UIRequiredDeviceCapabilities
-
- arm64
-
- UISupportedInterfaceOrientations
-
- UIInterfaceOrientationPortrait
- UIInterfaceOrientationLandscapeLeft
- UIInterfaceOrientationLandscapeRight
-
- UISupportedInterfaceOrientations~ipad
-
- UIInterfaceOrientationPortrait
- UIInterfaceOrientationPortraitUpsideDown
- UIInterfaceOrientationLandscapeLeft
- UIInterfaceOrientationLandscapeRight
-
- XSAppIconAssets
- Assets.xcassets/appicon.appiconset
-
-
diff --git a/VideoClipper/Platforms/iOS/Program.cs b/VideoClipper/Platforms/iOS/Program.cs
deleted file mode 100644
index 6ddaf66..0000000
--- a/VideoClipper/Platforms/iOS/Program.cs
+++ /dev/null
@@ -1,16 +0,0 @@
-using ObjCRuntime;
-using UIKit;
-
-namespace VideoClipper
-{
- public class Program
- {
- // This is the main entry point of the application.
- static void Main(string[] args)
- {
- // if you want to use a different Application Delegate class from "AppDelegate"
- // you can specify it here.
- UIApplication.Main(args, null, typeof(AppDelegate));
- }
- }
-}
diff --git a/VideoClipper/Platforms/iOS/Resources/PrivacyInfo.xcprivacy b/VideoClipper/Platforms/iOS/Resources/PrivacyInfo.xcprivacy
deleted file mode 100644
index 24ab3b4..0000000
--- a/VideoClipper/Platforms/iOS/Resources/PrivacyInfo.xcprivacy
+++ /dev/null
@@ -1,51 +0,0 @@
-
-
-
-
-
- NSPrivacyAccessedAPITypes
-
-
- NSPrivacyAccessedAPIType
- NSPrivacyAccessedAPICategoryFileTimestamp
- NSPrivacyAccessedAPITypeReasons
-
- C617.1
-
-
-
- NSPrivacyAccessedAPIType
- NSPrivacyAccessedAPICategorySystemBootTime
- NSPrivacyAccessedAPITypeReasons
-
- 35F9.1
-
-
-
- NSPrivacyAccessedAPIType
- NSPrivacyAccessedAPICategoryDiskSpace
- NSPrivacyAccessedAPITypeReasons
-
- E174.1
-
-
-
-
-
-
diff --git a/VideoClipper/Properties/launchSettings.json b/VideoClipper/Properties/launchSettings.json
deleted file mode 100644
index 4f85793..0000000
--- a/VideoClipper/Properties/launchSettings.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "profiles": {
- "Windows Machine": {
- "commandName": "Project",
- "nativeDebugging": false
- }
- }
-}
\ No newline at end of file
diff --git a/VideoClipper/Resources/AppIcon/appicon.svg b/VideoClipper/Resources/AppIcon/appicon.svg
deleted file mode 100644
index 9d63b65..0000000
--- a/VideoClipper/Resources/AppIcon/appicon.svg
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
\ No newline at end of file
diff --git a/VideoClipper/Resources/AppIcon/appiconfg.svg b/VideoClipper/Resources/AppIcon/appiconfg.svg
deleted file mode 100644
index 21dfb25..0000000
--- a/VideoClipper/Resources/AppIcon/appiconfg.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/VideoClipper/Resources/Fonts/OpenSans-Regular.ttf b/VideoClipper/Resources/Fonts/OpenSans-Regular.ttf
deleted file mode 100644
index 33b3e0d..0000000
Binary files a/VideoClipper/Resources/Fonts/OpenSans-Regular.ttf and /dev/null differ
diff --git a/VideoClipper/Resources/Fonts/OpenSans-Semibold.ttf b/VideoClipper/Resources/Fonts/OpenSans-Semibold.ttf
deleted file mode 100644
index a1f8571..0000000
Binary files a/VideoClipper/Resources/Fonts/OpenSans-Semibold.ttf and /dev/null differ
diff --git a/VideoClipper/Resources/Images/VideoClipper-screenshot.png b/VideoClipper/Resources/Images/VideoClipper-screenshot.png
deleted file mode 100644
index 4bbe716..0000000
Binary files a/VideoClipper/Resources/Images/VideoClipper-screenshot.png and /dev/null differ
diff --git a/VideoClipper/Resources/Raw/AboutAssets.txt b/VideoClipper/Resources/Raw/AboutAssets.txt
deleted file mode 100644
index 89dc758..0000000
--- a/VideoClipper/Resources/Raw/AboutAssets.txt
+++ /dev/null
@@ -1,15 +0,0 @@
-Any raw assets you want to be deployed with your application can be placed in
-this directory (and child directories). Deployment of the asset to your application
-is automatically handled by the following `MauiAsset` Build Action within your `.csproj`.
-
-
-
-These files will be deployed with your package and will be accessible using Essentials:
-
- async Task LoadMauiAsset()
- {
- using var stream = await FileSystem.OpenAppPackageFileAsync("AboutAssets.txt");
- using var reader = new StreamReader(stream);
-
- var contents = reader.ReadToEnd();
- }
diff --git a/VideoClipper/Resources/Splash/splash.svg b/VideoClipper/Resources/Splash/splash.svg
deleted file mode 100644
index 21dfb25..0000000
--- a/VideoClipper/Resources/Splash/splash.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/VideoClipper/Resources/Styles/Colors.xaml b/VideoClipper/Resources/Styles/Colors.xaml
deleted file mode 100644
index 30307a5..0000000
--- a/VideoClipper/Resources/Styles/Colors.xaml
+++ /dev/null
@@ -1,45 +0,0 @@
-
-
-
-
-
-
- #512BD4
- #ac99ea
- #242424
- #DFD8F7
- #9880e5
- #2B0B98
-
- White
- Black
- #D600AA
- #190649
- #1f1f1f
-
- #E1E1E1
- #C8C8C8
- #ACACAC
- #919191
- #6E6E6E
- #404040
- #212121
- #141414
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/VideoClipper/Resources/Styles/Styles.xaml b/VideoClipper/Resources/Styles/Styles.xaml
deleted file mode 100644
index 86f574d..0000000
--- a/VideoClipper/Resources/Styles/Styles.xaml
+++ /dev/null
@@ -1,451 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/VideoClipper/VideoClipper.csproj b/VideoClipper/VideoClipper.csproj
deleted file mode 100644
index 2378a9b..0000000
--- a/VideoClipper/VideoClipper.csproj
+++ /dev/null
@@ -1,80 +0,0 @@
-
-
-
- net9.0-android;net9.0-ios;net9.0-maccatalyst
- $(TargetFrameworks);net9.0-windows10.0.19041.0
-
-
-
-
-
-
- Exe
- VideoClipper
- true
- true
- enable
- enable
-
-
- VideoClipper
-
-
- com.companyname.videoclipper
-
-
- 1.0
- 1
-
-
- None
-
- 15.0
- 15.0
- 21.0
- 10.0.17763.0
- 10.0.17763.0
- 6.5
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- MainPage.xaml
-
-
-
-
-
- MSBuild:Compile
-
-
-
-
diff --git a/VideoClipper/VideoClipper.csproj.user b/VideoClipper/VideoClipper.csproj.user
deleted file mode 100644
index b871828..0000000
--- a/VideoClipper/VideoClipper.csproj.user
+++ /dev/null
@@ -1,28 +0,0 @@
-
-
-
- False
- net9.0-windows10.0.19041.0
- Windows Machine
-
-
-
- Designer
-
-
- Designer
-
-
- Designer
-
-
- Designer
-
-
- Designer
-
-
- Designer
-
-
-
\ No newline at end of file
diff --git a/VideoClipper/Views/MainPage.xaml b/VideoClipper/Views/MainPage.xaml
deleted file mode 100644
index 81c6c63..0000000
--- a/VideoClipper/Views/MainPage.xaml
+++ /dev/null
@@ -1,94 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/VideoClipper/Views/MainPage.xaml.cs b/VideoClipper/Views/MainPage.xaml.cs
deleted file mode 100644
index 4a8ab9f..0000000
--- a/VideoClipper/Views/MainPage.xaml.cs
+++ /dev/null
@@ -1,160 +0,0 @@
-using FFMpegCore;
-using System.Diagnostics;
-namespace VideoClipper;
-
-public partial class MainPage : ContentPage
-{
- private FileResult videoFile;
- private string startTime;
- private string endTime;
- private string outputFileName;
- private bool doMuteMic = false;
- private bool doOverwrite = true;
-
- public MainPage()
- {
- InitializeComponent();
- }
-
- private async Task PickAndShow()
- {
- try
- {
- PickOptions pickOptions = new()
- {
- PickerTitle = "Please select a video to cut",
- FileTypes = FilePickerFileType.Videos,
- };
- var result = await FilePicker.Default.PickAsync(pickOptions);
- if (result != null)
- {
- FileNameLabel.Text = result.FileName;
- }
- return result;
- }
- catch (Exception ex)
- {
- // The user canceled or something went wrong
- }
- return null;
- }
-
- private async void PickFile(object? sender, EventArgs e)
- {
- videoFile = await PickAndShow();
- }
-
- //private async void ProcessVideo(object? sender, EventArgs e)
- //{
- // Action progressHandler = new Action(p =>
- // {
- // MainThread.BeginInvokeOnMainThread(() =>
- // {
- // Progress.Text = "Progress on encode: " + p.ToString("mm':'ss':'fff");
- // });
- // });
-
- // if (videoFile != null)
- // {
- // var mediaInfo = FFProbe.Analyse(videoFile.FullPath);
- // int audioStreamCount = mediaInfo.AudioStreams.Count;
- // string pathMinusFileName = videoFile.FullPath.Replace(videoFile.FileName, "");
- // string outputPath;
- // if (outputFileName != null)
- // {
- // outputPath = pathMinusFileName + outputFileName + ".mp4";
- // }
- // else
- // {
- // outputPath = pathMinusFileName + "output.mp4";
- // }
- // await FFMpegArguments
- // .FromFileInput(videoFile.FullPath)
- // .OutputToFile(outputPath, doOverwrite, options => options
- // .UsingMultithreading(true)
- // .WithFastStart())
- // .NotifyOnProgress(progressHandler)
- // .ProcessAsynchronously();
- // }
- //}
-
- private void OnStartEntryTextChanged(object? sender, EventArgs e)
- {
- startTime = StartEntryInput.Text;
- }
-
- private void OnEndEntryTextChanged(object? sender, EventArgs e)
- {
- endTime = EndEntryInput.Text;
- }
-
- private void OnOutputNameChanged(object? sender, EventArgs e)
- {
- outputFileName = OutputFileNameInput.Text;
- }
-
- private void OnMuteMicCheckBoxChanged(object sender, CheckedChangedEventArgs e)
- {
- doMuteMic = e.Value;
- }
-
- private void OnCheckBoxChanged(object sender, CheckedChangedEventArgs e)
- {
- doOverwrite = e.Value;
- }
-
- private void CallTerminal(object? sender, EventArgs e)
- {
- ProgressLabel.Text = "";
- if (videoFile != null)
- {
- // This doesn't update. Is the main thread frozen?
- ProgressLabel.Text = "Processing...";
- var mediaInfo = FFProbe.Analyse(videoFile.FullPath);
- int audioStreamCount = mediaInfo.AudioStreams.Count;
- if (doMuteMic)
- {
- audioStreamCount--;
- }
-
- if (startTime == null || startTime.Length == 0)
- {
- // Start at the beginning of the clip
- startTime = "0";
- }
-
- if (endTime == null || endTime.Length == 0)
- {
- // Use the clip's duration for the endTime
- endTime = mediaInfo.Duration.ToString();
- }
-
- string overwriteOption = doOverwrite ? "-y" : "";
-
- string pathMinusFileName = videoFile.FullPath.Replace(videoFile.FileName, "");
- string outputPath = pathMinusFileName + (outputFileName != null ? outputFileName : "output") + ".mp4";
-
- Process cmd = new Process();
- cmd.StartInfo.FileName = "cmd.exe";
- cmd.StartInfo.RedirectStandardInput = true;
- cmd.StartInfo.RedirectStandardOutput = true;
- cmd.StartInfo.CreateNoWindow = true; // Set to false if you want the terminal to open
- cmd.StartInfo.UseShellExecute = false;
- cmd.Start();
-
- cmd.StandardInput.WriteLine($"ffmpeg -ss {startTime} -to {endTime} -i \"{videoFile.FullPath}\" -c:v copy -c:a aac -b:a 160k -ac 2 -filter_complex amerge=inputs={audioStreamCount} {overwriteOption} \"{outputPath}\"");
- cmd.StandardInput.Flush();
- cmd.StandardInput.Close();
- cmd.WaitForExit();
- Debug.WriteLine(cmd.StandardOutput.ReadToEnd());
- UpdateCompletionLabel();
- }
- }
-
- private async void UpdateCompletionLabel()
- {
- ProgressLabel.Text = "Processing complete!";
- await Task.Delay(2000);
- ProgressLabel.Text = "";
- }
-}
\ No newline at end of file
diff --git a/VideoClipper/obj/VideoClipper.csproj.nuget.dgspec.json b/VideoClipper/obj/VideoClipper.csproj.nuget.dgspec.json
deleted file mode 100644
index 9917de9..0000000
--- a/VideoClipper/obj/VideoClipper.csproj.nuget.dgspec.json
+++ /dev/null
@@ -1,279 +0,0 @@
-{
- "format": 1,
- "restore": {
- "C:\\tmp\\VideoClipper\\VideoClipper\\VideoClipper.csproj": {}
- },
- "projects": {
- "C:\\tmp\\VideoClipper\\VideoClipper\\VideoClipper.csproj": {
- "version": "1.0.0",
- "restore": {
- "projectUniqueName": "C:\\tmp\\VideoClipper\\VideoClipper\\VideoClipper.csproj",
- "projectName": "VideoClipper",
- "projectPath": "C:\\tmp\\VideoClipper\\VideoClipper\\VideoClipper.csproj",
- "packagesPath": "C:\\Users\\hello\\.nuget\\packages\\",
- "outputPath": "C:\\tmp\\VideoClipper\\VideoClipper\\obj\\",
- "projectStyle": "PackageReference",
- "crossTargeting": true,
- "fallbackFolders": [
- "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
- ],
- "configFilePaths": [
- "C:\\Users\\hello\\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": [
- "net9.0-android",
- "net9.0-ios",
- "net9.0-maccatalyst",
- "net9.0-windows10.0.19041.0"
- ],
- "sources": {
- "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
- "C:\\Program Files\\dotnet\\library-packs": {},
- "https://api.nuget.org/v3/index.json": {}
- },
- "frameworks": {
- "net9.0-android35.0": {
- "targetAlias": "net9.0-android",
- "projectReferences": {}
- },
- "net9.0-ios18.5": {
- "targetAlias": "net9.0-ios",
- "projectReferences": {}
- },
- "net9.0-maccatalyst18.5": {
- "targetAlias": "net9.0-maccatalyst",
- "projectReferences": {}
- },
- "net9.0-windows10.0.19041": {
- "targetAlias": "net9.0-windows10.0.19041.0",
- "projectReferences": {}
- }
- },
- "warningProperties": {
- "warnAsError": [
- "NU1605"
- ]
- },
- "restoreAuditProperties": {
- "enableAudit": "true",
- "auditLevel": "low",
- "auditMode": "direct"
- },
- "SdkAnalysisLevel": "9.0.300"
- },
- "frameworks": {
- "net9.0-android35.0": {
- "targetAlias": "net9.0-android",
- "dependencies": {
- "FFMpegCore": {
- "target": "Package",
- "version": "[5.2.0, )"
- },
- "Microsoft.Extensions.Logging.Debug": {
- "target": "Package",
- "version": "[9.0.0, )"
- },
- "Microsoft.Maui.Controls": {
- "target": "Package",
- "version": "[9.0.51, )"
- },
- "Microsoft.NET.ILLink.Tasks": {
- "suppressParent": "All",
- "target": "Package",
- "version": "[9.0.6, )",
- "autoReferenced": true
- }
- },
- "imports": [
- "net461",
- "net462",
- "net47",
- "net471",
- "net472",
- "net48",
- "net481"
- ],
- "assetTargetFallback": true,
- "warn": true,
- "frameworkReferences": {
- "Microsoft.Android": {
- "privateAssets": "all"
- },
- "Microsoft.NETCore.App": {
- "privateAssets": "all"
- }
- },
- "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.301/PortableRuntimeIdentifierGraph.json"
- },
- "net9.0-ios18.5": {
- "targetAlias": "net9.0-ios",
- "dependencies": {
- "FFMpegCore": {
- "target": "Package",
- "version": "[5.2.0, )"
- },
- "Microsoft.Extensions.Logging.Debug": {
- "target": "Package",
- "version": "[9.0.0, )"
- },
- "Microsoft.Maui.Controls": {
- "target": "Package",
- "version": "[9.0.51, )"
- },
- "Microsoft.NET.ILLink.Tasks": {
- "suppressParent": "All",
- "target": "Package",
- "version": "[9.0.6, )",
- "autoReferenced": true
- }
- },
- "imports": [
- "net461",
- "net462",
- "net47",
- "net471",
- "net472",
- "net48",
- "net481"
- ],
- "assetTargetFallback": true,
- "warn": true,
- "frameworkReferences": {
- "Microsoft.iOS": {
- "privateAssets": "all"
- },
- "Microsoft.NETCore.App": {
- "privateAssets": "all"
- }
- },
- "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.301/PortableRuntimeIdentifierGraph.json"
- },
- "net9.0-maccatalyst18.5": {
- "targetAlias": "net9.0-maccatalyst",
- "dependencies": {
- "FFMpegCore": {
- "target": "Package",
- "version": "[5.2.0, )"
- },
- "Microsoft.Extensions.Logging.Debug": {
- "target": "Package",
- "version": "[9.0.0, )"
- },
- "Microsoft.Maui.Controls": {
- "target": "Package",
- "version": "[9.0.51, )"
- },
- "Microsoft.NET.ILLink.Tasks": {
- "suppressParent": "All",
- "target": "Package",
- "version": "[9.0.6, )",
- "autoReferenced": true
- }
- },
- "imports": [
- "xamarinios10",
- "net461",
- "net462",
- "net47",
- "net471",
- "net472",
- "net48",
- "net481"
- ],
- "assetTargetFallback": true,
- "warn": true,
- "frameworkReferences": {
- "Microsoft.MacCatalyst": {
- "privateAssets": "all"
- },
- "Microsoft.NETCore.App": {
- "privateAssets": "all"
- }
- },
- "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.301/PortableRuntimeIdentifierGraph.json"
- },
- "net9.0-windows10.0.19041": {
- "targetAlias": "net9.0-windows10.0.19041.0",
- "dependencies": {
- "FFMpegCore": {
- "target": "Package",
- "version": "[5.2.0, )"
- },
- "Microsoft.Extensions.Logging.Debug": {
- "target": "Package",
- "version": "[9.0.0, )"
- },
- "Microsoft.Maui.Controls": {
- "target": "Package",
- "version": "[9.0.51, )"
- }
- },
- "imports": [
- "net461",
- "net462",
- "net47",
- "net471",
- "net472",
- "net48",
- "net481"
- ],
- "assetTargetFallback": true,
- "warn": true,
- "downloadDependencies": [
- {
- "name": "Microsoft.AspNetCore.App.Runtime.win-x64",
- "version": "[9.0.6, 9.0.6]"
- },
- {
- "name": "Microsoft.NETCore.App.Crossgen2.win-x64",
- "version": "[9.0.6, 9.0.6]"
- },
- {
- "name": "Microsoft.NETCore.App.Runtime.win-x64",
- "version": "[9.0.6, 9.0.6]"
- },
- {
- "name": "Microsoft.Windows.SDK.NET.Ref",
- "version": "[10.0.19041.57, 10.0.19041.57]"
- },
- {
- "name": "Microsoft.WindowsDesktop.App.Runtime.win-x64",
- "version": "[9.0.6, 9.0.6]"
- }
- ],
- "frameworkReferences": {
- "Microsoft.NETCore.App": {
- "privateAssets": "all"
- },
- "Microsoft.Windows.SDK.NET.Ref.Windows": {
- "privateAssets": "all"
- }
- },
- "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.301\\RuntimeIdentifierGraph.json"
- }
- },
- "runtimes": {
- "android-arm64": {
- "#import": []
- },
- "android-x64": {
- "#import": []
- },
- "iossimulator-x64": {
- "#import": []
- },
- "maccatalyst-arm64": {
- "#import": []
- },
- "maccatalyst-x64": {
- "#import": []
- },
- "win10-x64": {
- "#import": []
- }
- }
- }
- }
-}
\ No newline at end of file
diff --git a/VideoClipper/obj/VideoClipper.csproj.nuget.g.props b/VideoClipper/obj/VideoClipper.csproj.nuget.g.props
deleted file mode 100644
index 3216d0f..0000000
--- a/VideoClipper/obj/VideoClipper.csproj.nuget.g.props
+++ /dev/null
@@ -1,54 +0,0 @@
-
-
-
- True
- NuGet
- $(MSBuildThisFileDirectory)project.assets.json
- $(UserProfile)\.nuget\packages\
- C:\Users\hello\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages
- PackageReference
- 6.14.0
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- C:\Users\hello\.nuget\packages\microsoft.net.illink.tasks\9.0.6
-
-
- C:\Users\hello\.nuget\packages\microsoft.net.illink.tasks\9.0.6
-
-
- C:\Users\hello\.nuget\packages\microsoft.net.illink.tasks\9.0.6
-
-
- C:\Users\hello\.nuget\packages\microsoft.web.webview2\1.0.2903.40
- C:\Users\hello\.nuget\packages\microsoft.windowsappsdk\1.6.250205002
-
-
\ No newline at end of file
diff --git a/VideoClipper/obj/VideoClipper.csproj.nuget.g.targets b/VideoClipper/obj/VideoClipper.csproj.nuget.g.targets
deleted file mode 100644
index 308b9a6..0000000
--- a/VideoClipper/obj/VideoClipper.csproj.nuget.g.targets
+++ /dev/null
@@ -1,111 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/VideoClipper/obj/project.assets.json b/VideoClipper/obj/project.assets.json
deleted file mode 100644
index e666fa8..0000000
--- a/VideoClipper/obj/project.assets.json
+++ /dev/null
@@ -1,31556 +0,0 @@
-{
- "version": 3,
- "targets": {
- "net9.0-android35.0": {
- "FFMpegCore/5.2.0": {
- "type": "package",
- "dependencies": {
- "Instances": "3.0.1",
- "System.Text.Json": "9.0.2"
- },
- "compile": {
- "lib/netstandard2.0/FFMpegCore.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/FFMpegCore.dll": {}
- }
- },
- "GoogleGson/2.11.0.5": {
- "type": "package",
- "dependencies": {
- "Xamarin.Google.ErrorProne.Annotations": "2.36.0.1"
- },
- "compile": {
- "lib/net8.0-android34.0/GoogleGson.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/GoogleGson.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Instances/3.0.1": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/Instances.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/Instances.dll": {}
- },
- "contentFiles": {
- "contentFiles/any/any/_._": {
- "buildAction": "None",
- "codeLanguage": "any",
- "copyToOutput": false
- }
- }
- },
- "Microsoft.Extensions.Configuration/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Configuration.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Configuration.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Configuration.Abstractions/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": {
- "type": "package",
- "compile": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Logging/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Extensions.Options": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Logging.Abstractions/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets": {}
- }
- },
- "Microsoft.Extensions.Logging.Debug/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.Debug.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.Debug.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Options/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Options.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Options.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/Microsoft.Extensions.Options.targets": {}
- }
- },
- "Microsoft.Extensions.Primitives/9.0.0": {
- "type": "package",
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Primitives.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Primitives.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Maui.Controls/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Controls.Build.Tasks": "9.0.51",
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Controls.Xaml": "9.0.51",
- "Microsoft.Maui.Resizetizer": "9.0.51"
- }
- },
- "Microsoft.Maui.Controls.Build.Tasks/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Controls.Xaml": "9.0.51"
- },
- "build": {
- "buildTransitive/netstandard2.0/Microsoft.Maui.Controls.Build.Tasks.props": {},
- "buildTransitive/netstandard2.0/Microsoft.Maui.Controls.Build.Tasks.targets": {}
- }
- },
- "Microsoft.Maui.Controls.Core/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Maui.Core": "9.0.51"
- },
- "compile": {
- "lib/net9.0-android35.0/Microsoft.Maui.Controls.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-android35.0/Microsoft.Maui.Controls.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "resource": {
- "lib/net9.0-android35.0/ar/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ar"
- },
- "lib/net9.0-android35.0/ca/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ca"
- },
- "lib/net9.0-android35.0/cs/Microsoft.Maui.Controls.resources.dll": {
- "locale": "cs"
- },
- "lib/net9.0-android35.0/da/Microsoft.Maui.Controls.resources.dll": {
- "locale": "da"
- },
- "lib/net9.0-android35.0/de/Microsoft.Maui.Controls.resources.dll": {
- "locale": "de"
- },
- "lib/net9.0-android35.0/el/Microsoft.Maui.Controls.resources.dll": {
- "locale": "el"
- },
- "lib/net9.0-android35.0/es/Microsoft.Maui.Controls.resources.dll": {
- "locale": "es"
- },
- "lib/net9.0-android35.0/fi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "fi"
- },
- "lib/net9.0-android35.0/fr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "fr"
- },
- "lib/net9.0-android35.0/he/Microsoft.Maui.Controls.resources.dll": {
- "locale": "he"
- },
- "lib/net9.0-android35.0/hi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hi"
- },
- "lib/net9.0-android35.0/hr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hr"
- },
- "lib/net9.0-android35.0/hu/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hu"
- },
- "lib/net9.0-android35.0/id/Microsoft.Maui.Controls.resources.dll": {
- "locale": "id"
- },
- "lib/net9.0-android35.0/it/Microsoft.Maui.Controls.resources.dll": {
- "locale": "it"
- },
- "lib/net9.0-android35.0/ja/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ja"
- },
- "lib/net9.0-android35.0/ko/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ko"
- },
- "lib/net9.0-android35.0/ms/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ms"
- },
- "lib/net9.0-android35.0/nb/Microsoft.Maui.Controls.resources.dll": {
- "locale": "nb"
- },
- "lib/net9.0-android35.0/nl/Microsoft.Maui.Controls.resources.dll": {
- "locale": "nl"
- },
- "lib/net9.0-android35.0/pl/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pl"
- },
- "lib/net9.0-android35.0/pt-BR/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/net9.0-android35.0/pt/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pt"
- },
- "lib/net9.0-android35.0/ro/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ro"
- },
- "lib/net9.0-android35.0/ru/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ru"
- },
- "lib/net9.0-android35.0/sk/Microsoft.Maui.Controls.resources.dll": {
- "locale": "sk"
- },
- "lib/net9.0-android35.0/sv/Microsoft.Maui.Controls.resources.dll": {
- "locale": "sv"
- },
- "lib/net9.0-android35.0/th/Microsoft.Maui.Controls.resources.dll": {
- "locale": "th"
- },
- "lib/net9.0-android35.0/tr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "tr"
- },
- "lib/net9.0-android35.0/uk/Microsoft.Maui.Controls.resources.dll": {
- "locale": "uk"
- },
- "lib/net9.0-android35.0/vi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "vi"
- },
- "lib/net9.0-android35.0/zh-HK/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-HK"
- },
- "lib/net9.0-android35.0/zh-Hans/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/net9.0-android35.0/zh-Hant/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.Maui.Controls.Xaml/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Core": "9.0.51"
- },
- "compile": {
- "lib/net9.0-android35.0/Microsoft.Maui.Controls.Xaml.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-android35.0/Microsoft.Maui.Controls.Xaml.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Core/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Maui.Essentials": "9.0.51",
- "Microsoft.Maui.Graphics": "9.0.51",
- "Xamarin.Android.Glide": "4.16.0.11",
- "Xamarin.AndroidX.Lifecycle.LiveData": "2.8.7.2",
- "Xamarin.AndroidX.Navigation.Common": "2.8.5.1",
- "Xamarin.AndroidX.Navigation.Fragment": "2.8.5.1",
- "Xamarin.AndroidX.Navigation.Runtime": "2.8.5.1",
- "Xamarin.AndroidX.Navigation.UI": "2.8.5.1",
- "Xamarin.AndroidX.SwipeRefreshLayout": "1.1.0.24",
- "Xamarin.Google.Android.Material": "1.12.0.2"
- },
- "compile": {
- "lib/net9.0-android35.0/Microsoft.Maui.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-android35.0/Microsoft.Maui.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/Microsoft.Maui.Core.props": {},
- "buildTransitive/Microsoft.Maui.Core.targets": {}
- }
- },
- "Microsoft.Maui.Essentials/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Graphics": "9.0.51",
- "Xamarin.AndroidX.Browser": "1.8.0.8",
- "Xamarin.AndroidX.Security.SecurityCrypto": "1.1.0.2-alpha06",
- "Xamarin.Google.Crypto.Tink.Android": "1.16.0.1"
- },
- "compile": {
- "lib/net9.0-android35.0/Microsoft.Maui.Essentials.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-android35.0/Microsoft.Maui.Essentials.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Graphics/9.0.51": {
- "type": "package",
- "compile": {
- "lib/net9.0-android35.0/Microsoft.Maui.Graphics.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-android35.0/Microsoft.Maui.Graphics.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Resizetizer/9.0.51": {
- "type": "package",
- "build": {
- "buildTransitive/Microsoft.Maui.Resizetizer.props": {},
- "buildTransitive/Microsoft.Maui.Resizetizer.targets": {}
- }
- },
- "Microsoft.NET.ILLink.Tasks/9.0.6": {
- "type": "package",
- "build": {
- "build/Microsoft.NET.ILLink.Tasks.props": {}
- }
- },
- "System.Text.Json/9.0.2": {
- "type": "package",
- "compile": {
- "lib/net9.0/System.Text.Json.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/System.Text.Json.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/System.Text.Json.targets": {}
- }
- },
- "Xamarin.Android.Glide/4.16.0.11": {
- "type": "package",
- "dependencies": {
- "Xamarin.Android.Glide.Annotations": "4.16.0.11",
- "Xamarin.Android.Glide.DiskLruCache": "4.16.0.11",
- "Xamarin.Android.Glide.GifDecoder": "4.16.0.11",
- "Xamarin.AndroidX.ExifInterface": "1.3.7.9",
- "Xamarin.AndroidX.Fragment": "1.8.5.2",
- "Xamarin.AndroidX.Tracing.Tracing": "1.2.0.9",
- "Xamarin.AndroidX.VectorDrawable.Animated": "1.2.0.5"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.Android.Glide.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.Android.Glide.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Xamarin.Android.Glide.Annotations/4.16.0.11": {
- "type": "package",
- "compile": {
- "lib/net8.0-android34.0/Xamarin.Android.Glide.Annotations.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.Android.Glide.Annotations.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.Android.Glide.DiskLruCache/4.16.0.11": {
- "type": "package",
- "compile": {
- "lib/net8.0-android34.0/Xamarin.Android.Glide.DiskLruCache.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.Android.Glide.DiskLruCache.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.Android.Glide.GifDecoder/4.16.0.11": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.Android.Glide.GifDecoder.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.Android.Glide.GifDecoder.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Xamarin.AndroidX.Activity/1.9.3.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.Lifecycle.Runtime": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.ViewModel": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.ViewModelSavedState": "2.8.7.2",
- "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller": "1.4.1.2",
- "Xamarin.AndroidX.SavedState": "1.2.1.15",
- "Xamarin.AndroidX.Tracing.Tracing": "1.2.0.9",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Activity.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Activity.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Activity.targets": {}
- }
- },
- "Xamarin.AndroidX.Activity.Ktx/1.9.3.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Activity": "[1.9.3.2, 1.9.4)",
- "Xamarin.AndroidX.Core.Core.Ktx": "1.15.0.2",
- "Xamarin.AndroidX.Lifecycle.Runtime.Ktx": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx": "2.8.7.2",
- "Xamarin.AndroidX.SavedState.SavedState.Ktx": "1.2.1.15",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Activity.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Activity.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Activity.Ktx.targets": {}
- }
- },
- "Xamarin.AndroidX.Annotation/1.9.1.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation.Jvm": "1.9.1.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Annotation.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Annotation.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Annotation.targets": {}
- }
- },
- "Xamarin.AndroidX.Annotation.Experimental/1.4.1.8": {
- "type": "package",
- "dependencies": {
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Annotation.Experimental.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Annotation.Experimental.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Annotation.Experimental.targets": {}
- }
- },
- "Xamarin.AndroidX.Annotation.Jvm/1.9.1.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Annotation.Jvm.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Annotation.Jvm.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Annotation.Jvm.targets": {}
- }
- },
- "Xamarin.AndroidX.AppCompat/1.7.0.5": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Activity": "1.9.3.2",
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.AppCompat.AppCompatResources": "[1.7.0.5, 1.7.1)",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.Core.Core.Ktx": "1.15.0.2",
- "Xamarin.AndroidX.CursorAdapter": "1.0.0.31",
- "Xamarin.AndroidX.DrawerLayout": "1.2.0.15",
- "Xamarin.AndroidX.Emoji2": "1.5.0.3",
- "Xamarin.AndroidX.Emoji2.ViewsHelper": "1.5.0.3",
- "Xamarin.AndroidX.Fragment": "1.8.5.2",
- "Xamarin.AndroidX.Lifecycle.Runtime": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.ViewModel": "2.8.7.2",
- "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller": "1.4.1.2",
- "Xamarin.AndroidX.ResourceInspection.Annotation": "1.0.1.19",
- "Xamarin.AndroidX.SavedState": "1.2.1.15",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.AppCompat.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.AppCompat.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.AppCompat.targets": {}
- }
- },
- "Xamarin.AndroidX.AppCompat.AppCompatResources/1.7.0.5": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.VectorDrawable": "1.2.0.5",
- "Xamarin.AndroidX.VectorDrawable.Animated": "1.2.0.5"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.AppCompat.AppCompatResources.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.AppCompat.AppCompatResources.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.AppCompat.AppCompatResources.targets": {}
- }
- },
- "Xamarin.AndroidX.Arch.Core.Common/2.2.0.15": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Arch.Core.Common.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Arch.Core.Common.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Arch.Core.Common.targets": {}
- }
- },
- "Xamarin.AndroidX.Arch.Core.Runtime/2.2.0.15": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Arch.Core.Common": "[2.2.0.15, 2.2.1)"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Arch.Core.Runtime.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Arch.Core.Runtime.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Arch.Core.Runtime.targets": {}
- }
- },
- "Xamarin.AndroidX.Browser/1.8.0.8": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Annotation.Experimental": "1.4.1.8",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Concurrent.Futures": "1.2.0.5",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.Interpolator": "1.0.0.31",
- "Xamarin.Google.Guava.ListenableFuture": "1.0.0.26"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Browser.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Browser.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Browser.targets": {}
- }
- },
- "Xamarin.AndroidX.CardView/1.0.0.33": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.CardView.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.CardView.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.CardView.targets": {}
- }
- },
- "Xamarin.AndroidX.Collection/1.4.5.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection.Jvm": "1.4.5.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Collection.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Collection.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Collection.targets": {}
- }
- },
- "Xamarin.AndroidX.Collection.Jvm/1.4.5.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation.Jvm": "1.9.1.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Collection.Jvm.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Collection.Jvm.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Collection.Jvm.targets": {}
- }
- },
- "Xamarin.AndroidX.Collection.Ktx/1.4.5.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Collection.Jvm": "[1.4.5.2, 1.4.6)"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Collection.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Collection.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Collection.Ktx.targets": {}
- }
- },
- "Xamarin.AndroidX.Concurrent.Futures/1.2.0.5": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.Google.Guava.ListenableFuture": "1.0.0.26"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Concurrent.Futures.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Concurrent.Futures.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Concurrent.Futures.targets": {}
- }
- },
- "Xamarin.AndroidX.ConstraintLayout/2.2.0.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.AppCompat": "1.7.0.5",
- "Xamarin.AndroidX.ConstraintLayout.Core": "1.1.0.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller": "1.4.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ConstraintLayout.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ConstraintLayout.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.ConstraintLayout.targets": {}
- }
- },
- "Xamarin.AndroidX.ConstraintLayout.Core/1.1.0.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ConstraintLayout.Core.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ConstraintLayout.Core.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.ConstraintLayout.Core.targets": {}
- }
- },
- "Xamarin.AndroidX.CoordinatorLayout/1.2.0.19": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.CustomView": "1.1.0.30"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.CoordinatorLayout.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.CoordinatorLayout.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.CoordinatorLayout.targets": {}
- }
- },
- "Xamarin.AndroidX.Core/1.15.0.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Annotation.Experimental": "1.4.1.8",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Concurrent.Futures": "1.2.0.5",
- "Xamarin.AndroidX.Interpolator": "1.0.0.31",
- "Xamarin.AndroidX.Lifecycle.Runtime": "2.8.7.2",
- "Xamarin.AndroidX.Tracing.Tracing": "1.2.0.9",
- "Xamarin.AndroidX.VersionedParcelable": "1.2.0.9",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Core.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Core.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Core.targets": {}
- }
- },
- "Xamarin.AndroidX.Core.Core.Ktx/1.15.0.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Core.Core.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Core.Core.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Core.Core.Ktx.targets": {}
- }
- },
- "Xamarin.AndroidX.CursorAdapter/1.0.0.31": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.CursorAdapter.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.CursorAdapter.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.CursorAdapter.targets": {}
- }
- },
- "Xamarin.AndroidX.CustomView/1.1.0.30": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.CustomView.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.CustomView.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.CustomView.targets": {}
- }
- },
- "Xamarin.AndroidX.CustomView.PoolingContainer/1.0.0.17": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Core.Core.Ktx": "1.15.0.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.CustomView.PoolingContainer.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.CustomView.PoolingContainer.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.CustomView.PoolingContainer.targets": {}
- }
- },
- "Xamarin.AndroidX.DocumentFile/1.0.1.31": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.DocumentFile.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.DocumentFile.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.DocumentFile.targets": {}
- }
- },
- "Xamarin.AndroidX.DrawerLayout/1.2.0.15": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.CustomView": "1.1.0.30"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.DrawerLayout.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.DrawerLayout.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.DrawerLayout.targets": {}
- }
- },
- "Xamarin.AndroidX.DynamicAnimation/1.0.0.31": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.Legacy.Support.Core.Utils": "1.0.0.31"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.DynamicAnimation.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.DynamicAnimation.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.DynamicAnimation.targets": {}
- }
- },
- "Xamarin.AndroidX.Emoji2/1.5.0.3": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.Lifecycle.Process": "2.8.7.2",
- "Xamarin.AndroidX.Startup.StartupRuntime": "1.2.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Emoji2.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Emoji2.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Emoji2.targets": {}
- }
- },
- "Xamarin.AndroidX.Emoji2.ViewsHelper/1.5.0.3": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.Emoji2": "[1.5.0.3, 1.5.1)"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Emoji2.ViewsHelper.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Emoji2.ViewsHelper.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Emoji2.ViewsHelper.targets": {}
- }
- },
- "Xamarin.AndroidX.ExifInterface/1.3.7.9": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ExifInterface.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ExifInterface.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.ExifInterface.targets": {}
- }
- },
- "Xamarin.AndroidX.Fragment/1.8.5.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Activity": "1.9.3.2",
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Annotation.Experimental": "1.4.1.8",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core.Core.Ktx": "1.15.0.2",
- "Xamarin.AndroidX.Lifecycle.LiveData.Core": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.Runtime": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.ViewModel": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.ViewModelSavedState": "2.8.7.2",
- "Xamarin.AndroidX.Loader": "1.1.0.31",
- "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller": "1.4.1.2",
- "Xamarin.AndroidX.SavedState": "1.2.1.15",
- "Xamarin.AndroidX.ViewPager": "1.1.0.1",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Fragment.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Fragment.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Fragment.targets": {}
- }
- },
- "Xamarin.AndroidX.Fragment.Ktx/1.8.5.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Activity.Ktx": "1.9.3.2",
- "Xamarin.AndroidX.Collection.Ktx": "1.4.5.2",
- "Xamarin.AndroidX.Core.Core.Ktx": "1.15.0.2",
- "Xamarin.AndroidX.Fragment": "[1.8.5.2, 1.8.6)",
- "Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx": "2.8.7.2",
- "Xamarin.AndroidX.SavedState.SavedState.Ktx": "1.2.1.15",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Fragment.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Fragment.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Fragment.Ktx.targets": {}
- }
- },
- "Xamarin.AndroidX.Interpolator/1.0.0.31": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Interpolator.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Interpolator.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Interpolator.targets": {}
- }
- },
- "Xamarin.AndroidX.Legacy.Support.Core.Utils/1.0.0.31": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.DocumentFile": "1.0.1.31",
- "Xamarin.AndroidX.Loader": "1.1.0.31",
- "Xamarin.AndroidX.LocalBroadcastManager": "1.1.0.19",
- "Xamarin.AndroidX.Print": "1.0.0.31"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Legacy.Support.Core.Utils.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Legacy.Support.Core.Utils.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Legacy.Support.Core.Utils.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.Common/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Lifecycle.Common.Jvm": "2.8.7.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.AtomicFU": "0.26.1.1",
- "Xamarin.KotlinX.Coroutines.Core": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Common.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Common.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Common.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.Common.Jvm/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation.Jvm": "1.9.1.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Coroutines.Core": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Common.Jvm.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Common.Jvm.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Common.Jvm.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.LiveData/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Arch.Core.Common": "2.2.0.15",
- "Xamarin.AndroidX.Arch.Core.Runtime": "2.2.0.15",
- "Xamarin.AndroidX.Lifecycle.LiveData.Core": "[2.8.7.2, 2.8.8)",
- "Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx": "[2.8.7.2, 2.8.8)",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Coroutines.Core": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.LiveData.Core/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Arch.Core.Common": "2.2.0.15",
- "Xamarin.AndroidX.Arch.Core.Runtime": "2.2.0.15",
- "Xamarin.AndroidX.Lifecycle.Common": "[2.8.7.2, 2.8.8)",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Lifecycle.LiveData.Core": "[2.8.7.2, 2.8.8)",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.Process/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Lifecycle.Runtime": "[2.8.7.2, 2.8.8)",
- "Xamarin.AndroidX.Startup.StartupRuntime": "1.2.0.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Process.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Process.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Process.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.Runtime/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Arch.Core.Common": "2.2.0.15",
- "Xamarin.AndroidX.Lifecycle.Common": "[2.8.7.2, 2.8.8)",
- "Xamarin.AndroidX.Lifecycle.Runtime.Android": "2.8.7.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.Runtime.Android/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Arch.Core.Common": "2.2.0.15",
- "Xamarin.AndroidX.Arch.Core.Runtime": "2.2.0.15",
- "Xamarin.AndroidX.Lifecycle.Common": "[2.8.7.2, 2.8.8)",
- "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller": "1.4.1.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Coroutines.Android": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Android.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Android.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Android.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.Runtime.Ktx/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Lifecycle.Runtime": "[2.8.7.2, 2.8.8)",
- "Xamarin.AndroidX.Lifecycle.Runtime.Ktx.Android": "2.8.7.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.Runtime.Ktx.Android/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Lifecycle.Runtime": "[2.8.7.2, 2.8.8)",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Coroutines.Android": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.Android.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.Android.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.Android.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.ViewModel/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Lifecycle.ViewModel.Android": "2.8.7.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Coroutines.Core": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.ViewModel.Android/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation.Jvm": "1.9.1.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Coroutines.Android": "1.9.0.2",
- "Xamarin.KotlinX.Coroutines.Core.Jvm": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.Android.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.Android.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.Android.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Lifecycle.ViewModel": "[2.8.7.2, 2.8.8)",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Coroutines.Android": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.ViewModelSavedState/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Core.Core.Ktx": "1.15.0.2",
- "Xamarin.AndroidX.Lifecycle.LiveData.Core": "[2.8.7.2, 2.8.8)",
- "Xamarin.AndroidX.Lifecycle.ViewModel": "[2.8.7.2, 2.8.8)",
- "Xamarin.AndroidX.SavedState": "1.2.1.15",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Coroutines.Android": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModelSavedState.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModelSavedState.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModelSavedState.targets": {}
- }
- },
- "Xamarin.AndroidX.Loader/1.1.0.31": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.Lifecycle.LiveData.Core": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.ViewModel": "2.8.7.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Loader.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Loader.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Loader.targets": {}
- }
- },
- "Xamarin.AndroidX.LocalBroadcastManager/1.1.0.19": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.LocalBroadcastManager.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.LocalBroadcastManager.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.LocalBroadcastManager.targets": {}
- }
- },
- "Xamarin.AndroidX.Navigation.Common/2.8.5.1": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection.Ktx": "1.4.5.2",
- "Xamarin.AndroidX.Core.Core.Ktx": "1.15.0.2",
- "Xamarin.AndroidX.Lifecycle.Common": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.Runtime.Ktx": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.ViewModelSavedState": "2.8.7.2",
- "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller": "1.4.1.2",
- "Xamarin.AndroidX.SavedState.SavedState.Ktx": "1.2.1.15",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Serialization.Core": "1.7.3.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Navigation.Common.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Navigation.Common.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Navigation.Common.targets": {}
- }
- },
- "Xamarin.AndroidX.Navigation.Fragment/2.8.5.1": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Fragment.Ktx": "1.8.5.2",
- "Xamarin.AndroidX.Navigation.Runtime": "[2.8.5.1, 2.8.6)",
- "Xamarin.AndroidX.SlidingPaneLayout": "1.2.0.19",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Serialization.Core": "1.7.3.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Navigation.Fragment.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Navigation.Fragment.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Navigation.Fragment.targets": {}
- }
- },
- "Xamarin.AndroidX.Navigation.Runtime/2.8.5.1": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Activity.Ktx": "1.9.3.2",
- "Xamarin.AndroidX.Annotation.Experimental": "1.4.1.8",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Lifecycle.Runtime.Ktx": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx": "2.8.7.2",
- "Xamarin.AndroidX.Navigation.Common": "[2.8.5.1, 2.8.6)",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Serialization.Core": "1.7.3.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Navigation.Runtime.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Navigation.Runtime.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Navigation.Runtime.targets": {}
- }
- },
- "Xamarin.AndroidX.Navigation.UI/2.8.5.1": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation.Experimental": "1.4.1.8",
- "Xamarin.AndroidX.CustomView": "1.1.0.30",
- "Xamarin.AndroidX.DrawerLayout": "1.2.0.15",
- "Xamarin.AndroidX.Navigation.Runtime": "[2.8.5.1, 2.8.6)",
- "Xamarin.AndroidX.Transition": "1.5.1.4",
- "Xamarin.Google.Android.Material": "1.12.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Navigation.UI.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Navigation.UI.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Navigation.UI.targets": {}
- }
- },
- "Xamarin.AndroidX.Print/1.0.0.31": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Print.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Print.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Print.targets": {}
- }
- },
- "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller/1.4.1.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Concurrent.Futures": "1.2.0.5",
- "Xamarin.AndroidX.Startup.StartupRuntime": "1.2.0.2",
- "Xamarin.Google.Guava.ListenableFuture": "1.0.0.26"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.targets": {}
- }
- },
- "Xamarin.AndroidX.RecyclerView/1.3.2.10": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.CustomView": "1.1.0.30",
- "Xamarin.AndroidX.CustomView.PoolingContainer": "1.0.0.17"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.RecyclerView.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.RecyclerView.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.RecyclerView.targets": {}
- }
- },
- "Xamarin.AndroidX.ResourceInspection.Annotation/1.0.1.19": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ResourceInspection.Annotation.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ResourceInspection.Annotation.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.ResourceInspection.Annotation.targets": {}
- }
- },
- "Xamarin.AndroidX.SavedState/1.2.1.15": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Arch.Core.Common": "2.2.0.15",
- "Xamarin.AndroidX.Lifecycle.Common": "2.8.7.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.SavedState.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.SavedState.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.SavedState.targets": {}
- }
- },
- "Xamarin.AndroidX.SavedState.SavedState.Ktx/1.2.1.15": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.SavedState": "[1.2.1.15, 1.2.2)",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.SavedState.SavedState.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.SavedState.SavedState.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.SavedState.SavedState.Ktx.targets": {}
- }
- },
- "Xamarin.AndroidX.Security.SecurityCrypto/1.1.0.2-alpha06": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.7.1.4",
- "Xamarin.AndroidX.Collection": "1.4.0.5",
- "Xamarin.Google.Crypto.Tink.Android": "1.13.0.3"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Security.SecurityCrypto.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Security.SecurityCrypto.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Security.SecurityCrypto.targets": {}
- }
- },
- "Xamarin.AndroidX.SlidingPaneLayout/1.2.0.19": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.CustomView": "1.1.0.30",
- "Xamarin.AndroidX.Transition": "1.5.1.4",
- "Xamarin.AndroidX.Window": "1.3.0.5"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.SlidingPaneLayout.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.SlidingPaneLayout.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.SlidingPaneLayout.targets": {}
- }
- },
- "Xamarin.AndroidX.Startup.StartupRuntime/1.2.0.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Tracing.Tracing": "1.2.0.9"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Startup.StartupRuntime.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Startup.StartupRuntime.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Startup.StartupRuntime.targets": {}
- }
- },
- "Xamarin.AndroidX.SwipeRefreshLayout/1.1.0.24": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.8.2.1",
- "Xamarin.AndroidX.Core": "1.13.1.5",
- "Xamarin.AndroidX.Interpolator": "1.0.0.29"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.SwipeRefreshLayout.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.SwipeRefreshLayout.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.SwipeRefreshLayout.targets": {}
- }
- },
- "Xamarin.AndroidX.Tracing.Tracing/1.2.0.9": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Tracing.Tracing.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Tracing.Tracing.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Tracing.Tracing.targets": {}
- }
- },
- "Xamarin.AndroidX.Transition/1.5.1.4": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.DynamicAnimation": "1.0.0.31",
- "Xamarin.AndroidX.Fragment": "1.8.5.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Transition.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Transition.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Transition.targets": {}
- }
- },
- "Xamarin.AndroidX.VectorDrawable/1.2.0.5": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.VectorDrawable.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.VectorDrawable.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.VectorDrawable.targets": {}
- }
- },
- "Xamarin.AndroidX.VectorDrawable.Animated/1.2.0.5": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.Interpolator": "1.0.0.31",
- "Xamarin.AndroidX.VectorDrawable": "1.2.0.5"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.VectorDrawable.Animated.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.VectorDrawable.Animated.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.VectorDrawable.Animated.targets": {}
- }
- },
- "Xamarin.AndroidX.VersionedParcelable/1.2.0.9": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.VersionedParcelable.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.VersionedParcelable.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.VersionedParcelable.targets": {}
- }
- },
- "Xamarin.AndroidX.ViewPager/1.1.0.1": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.CustomView": "1.1.0.30"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ViewPager.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ViewPager.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.ViewPager.targets": {}
- }
- },
- "Xamarin.AndroidX.ViewPager2/1.1.0.5": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Annotation.Experimental": "1.4.1.8",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.Fragment": "1.8.5.2",
- "Xamarin.AndroidX.RecyclerView": "1.3.2.10"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ViewPager2.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ViewPager2.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.ViewPager2.targets": {}
- }
- },
- "Xamarin.AndroidX.Window/1.3.0.5": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.Window.Extensions.Core.Core": "1.0.0.13",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Coroutines.Android": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Window.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Window.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Window.targets": {}
- }
- },
- "Xamarin.AndroidX.Window.Extensions.Core.Core/1.0.0.13": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Window.Extensions.Core.Core.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Window.Extensions.Core.Core.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Window.Extensions.Core.Core.targets": {}
- }
- },
- "Xamarin.Google.Android.Material/1.12.0.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Activity": "1.9.3.2",
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Annotation.Experimental": "1.4.1.8",
- "Xamarin.AndroidX.AppCompat": "1.7.0.5",
- "Xamarin.AndroidX.CardView": "1.0.0.33",
- "Xamarin.AndroidX.ConstraintLayout": "2.2.0.2",
- "Xamarin.AndroidX.CoordinatorLayout": "1.2.0.19",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.DrawerLayout": "1.2.0.15",
- "Xamarin.AndroidX.DynamicAnimation": "1.0.0.31",
- "Xamarin.AndroidX.Fragment": "1.8.5.2",
- "Xamarin.AndroidX.Lifecycle.Runtime": "2.8.7.2",
- "Xamarin.AndroidX.RecyclerView": "1.3.2.10",
- "Xamarin.AndroidX.ResourceInspection.Annotation": "1.0.1.19",
- "Xamarin.AndroidX.Transition": "1.5.1.4",
- "Xamarin.AndroidX.VectorDrawable": "1.2.0.5",
- "Xamarin.AndroidX.ViewPager2": "1.1.0.5",
- "Xamarin.Google.ErrorProne.Annotations": "2.36.0.1"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.Google.Android.Material.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.Google.Android.Material.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.Google.Android.Material.targets": {}
- }
- },
- "Xamarin.Google.Code.FindBugs.JSR305/3.0.2.18": {
- "type": "package",
- "compile": {
- "lib/net8.0-android34.0/Jsr305Binding.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Jsr305Binding.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.Google.Crypto.Tink.Android/1.16.0.1": {
- "type": "package",
- "dependencies": {
- "GoogleGson": "2.11.0.5",
- "Xamarin.AndroidX.Annotation.Jvm": "1.9.1.2",
- "Xamarin.Google.Code.FindBugs.JSR305": "3.0.2.18",
- "Xamarin.Google.ErrorProne.Annotations": "2.36.0.1"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.Google.Crypto.Tink.Android.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.Google.Crypto.Tink.Android.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.Google.ErrorProne.Annotations/2.36.0.1": {
- "type": "package",
- "compile": {
- "lib/net8.0-android34.0/Xamarin.Google.ErrorProne.Annotations.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.Google.ErrorProne.Annotations.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.Google.Guava.ListenableFuture/1.0.0.26": {
- "type": "package",
- "compile": {
- "lib/net8.0-android34.0/Xamarin.Google.Guava.ListenableFuture.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.Google.Guava.ListenableFuture.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.Jetbrains.Annotations/26.0.1.2": {
- "type": "package",
- "compile": {
- "lib/net8.0-android34.0/Xamarin.Jetbrains.Annotations.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.Jetbrains.Annotations.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.Kotlin.StdLib/2.0.21.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.Jetbrains.Annotations": "26.0.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.Kotlin.StdLib.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.Kotlin.StdLib.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.KotlinX.AtomicFU/0.26.1.1": {
- "type": "package",
- "dependencies": {
- "Xamarin.KotlinX.AtomicFU.Jvm": "0.26.1.1"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.AtomicFU.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.AtomicFU.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.KotlinX.AtomicFU.Jvm/0.26.1.1": {
- "type": "package",
- "dependencies": {
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.AtomicFU.Jvm.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.AtomicFU.Jvm.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.KotlinX.Coroutines.Android/1.9.0.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Coroutines.Core.Jvm": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.Coroutines.Android.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.Coroutines.Android.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.KotlinX.Coroutines.Core/1.9.0.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.KotlinX.Coroutines.Core.Jvm": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.Coroutines.Core.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.Coroutines.Core.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.KotlinX.Coroutines.Core.Jvm/1.9.0.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.Jetbrains.Annotations": "26.0.1.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.Coroutines.Core.Jvm.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.Coroutines.Core.Jvm.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.KotlinX.Serialization.Core/1.7.3.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.KotlinX.Serialization.Core.Jvm": "1.7.3.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.Serialization.Core.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.Serialization.Core.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.KotlinX.Serialization.Core.Jvm/1.7.3.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.Serialization.Core.Jvm.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.Serialization.Core.Jvm.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- }
- },
- "net9.0-android35.0/android-arm64": {
- "FFMpegCore/5.2.0": {
- "type": "package",
- "dependencies": {
- "Instances": "3.0.1",
- "System.Text.Json": "9.0.2"
- },
- "compile": {
- "lib/netstandard2.0/FFMpegCore.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/FFMpegCore.dll": {}
- }
- },
- "GoogleGson/2.11.0.5": {
- "type": "package",
- "dependencies": {
- "Xamarin.Google.ErrorProne.Annotations": "2.36.0.1"
- },
- "compile": {
- "lib/net8.0-android34.0/GoogleGson.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/GoogleGson.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Instances/3.0.1": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/Instances.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/Instances.dll": {}
- },
- "contentFiles": {
- "contentFiles/any/any/_._": {
- "buildAction": "None",
- "codeLanguage": "any",
- "copyToOutput": false
- }
- }
- },
- "Microsoft.Extensions.Configuration/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Configuration.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Configuration.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Configuration.Abstractions/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": {
- "type": "package",
- "compile": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Logging/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Extensions.Options": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Logging.Abstractions/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets": {}
- }
- },
- "Microsoft.Extensions.Logging.Debug/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.Debug.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.Debug.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Options/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Options.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Options.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/Microsoft.Extensions.Options.targets": {}
- }
- },
- "Microsoft.Extensions.Primitives/9.0.0": {
- "type": "package",
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Primitives.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Primitives.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Maui.Controls/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Controls.Build.Tasks": "9.0.51",
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Controls.Xaml": "9.0.51",
- "Microsoft.Maui.Resizetizer": "9.0.51"
- }
- },
- "Microsoft.Maui.Controls.Build.Tasks/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Controls.Xaml": "9.0.51"
- },
- "build": {
- "buildTransitive/netstandard2.0/Microsoft.Maui.Controls.Build.Tasks.props": {},
- "buildTransitive/netstandard2.0/Microsoft.Maui.Controls.Build.Tasks.targets": {}
- }
- },
- "Microsoft.Maui.Controls.Core/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Maui.Core": "9.0.51"
- },
- "compile": {
- "lib/net9.0-android35.0/Microsoft.Maui.Controls.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-android35.0/Microsoft.Maui.Controls.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "resource": {
- "lib/net9.0-android35.0/ar/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ar"
- },
- "lib/net9.0-android35.0/ca/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ca"
- },
- "lib/net9.0-android35.0/cs/Microsoft.Maui.Controls.resources.dll": {
- "locale": "cs"
- },
- "lib/net9.0-android35.0/da/Microsoft.Maui.Controls.resources.dll": {
- "locale": "da"
- },
- "lib/net9.0-android35.0/de/Microsoft.Maui.Controls.resources.dll": {
- "locale": "de"
- },
- "lib/net9.0-android35.0/el/Microsoft.Maui.Controls.resources.dll": {
- "locale": "el"
- },
- "lib/net9.0-android35.0/es/Microsoft.Maui.Controls.resources.dll": {
- "locale": "es"
- },
- "lib/net9.0-android35.0/fi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "fi"
- },
- "lib/net9.0-android35.0/fr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "fr"
- },
- "lib/net9.0-android35.0/he/Microsoft.Maui.Controls.resources.dll": {
- "locale": "he"
- },
- "lib/net9.0-android35.0/hi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hi"
- },
- "lib/net9.0-android35.0/hr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hr"
- },
- "lib/net9.0-android35.0/hu/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hu"
- },
- "lib/net9.0-android35.0/id/Microsoft.Maui.Controls.resources.dll": {
- "locale": "id"
- },
- "lib/net9.0-android35.0/it/Microsoft.Maui.Controls.resources.dll": {
- "locale": "it"
- },
- "lib/net9.0-android35.0/ja/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ja"
- },
- "lib/net9.0-android35.0/ko/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ko"
- },
- "lib/net9.0-android35.0/ms/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ms"
- },
- "lib/net9.0-android35.0/nb/Microsoft.Maui.Controls.resources.dll": {
- "locale": "nb"
- },
- "lib/net9.0-android35.0/nl/Microsoft.Maui.Controls.resources.dll": {
- "locale": "nl"
- },
- "lib/net9.0-android35.0/pl/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pl"
- },
- "lib/net9.0-android35.0/pt-BR/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/net9.0-android35.0/pt/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pt"
- },
- "lib/net9.0-android35.0/ro/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ro"
- },
- "lib/net9.0-android35.0/ru/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ru"
- },
- "lib/net9.0-android35.0/sk/Microsoft.Maui.Controls.resources.dll": {
- "locale": "sk"
- },
- "lib/net9.0-android35.0/sv/Microsoft.Maui.Controls.resources.dll": {
- "locale": "sv"
- },
- "lib/net9.0-android35.0/th/Microsoft.Maui.Controls.resources.dll": {
- "locale": "th"
- },
- "lib/net9.0-android35.0/tr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "tr"
- },
- "lib/net9.0-android35.0/uk/Microsoft.Maui.Controls.resources.dll": {
- "locale": "uk"
- },
- "lib/net9.0-android35.0/vi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "vi"
- },
- "lib/net9.0-android35.0/zh-HK/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-HK"
- },
- "lib/net9.0-android35.0/zh-Hans/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/net9.0-android35.0/zh-Hant/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.Maui.Controls.Xaml/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Core": "9.0.51"
- },
- "compile": {
- "lib/net9.0-android35.0/Microsoft.Maui.Controls.Xaml.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-android35.0/Microsoft.Maui.Controls.Xaml.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Core/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Maui.Essentials": "9.0.51",
- "Microsoft.Maui.Graphics": "9.0.51",
- "Xamarin.Android.Glide": "4.16.0.11",
- "Xamarin.AndroidX.Lifecycle.LiveData": "2.8.7.2",
- "Xamarin.AndroidX.Navigation.Common": "2.8.5.1",
- "Xamarin.AndroidX.Navigation.Fragment": "2.8.5.1",
- "Xamarin.AndroidX.Navigation.Runtime": "2.8.5.1",
- "Xamarin.AndroidX.Navigation.UI": "2.8.5.1",
- "Xamarin.AndroidX.SwipeRefreshLayout": "1.1.0.24",
- "Xamarin.Google.Android.Material": "1.12.0.2"
- },
- "compile": {
- "lib/net9.0-android35.0/Microsoft.Maui.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-android35.0/Microsoft.Maui.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/Microsoft.Maui.Core.props": {},
- "buildTransitive/Microsoft.Maui.Core.targets": {}
- }
- },
- "Microsoft.Maui.Essentials/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Graphics": "9.0.51",
- "Xamarin.AndroidX.Browser": "1.8.0.8",
- "Xamarin.AndroidX.Security.SecurityCrypto": "1.1.0.2-alpha06",
- "Xamarin.Google.Crypto.Tink.Android": "1.16.0.1"
- },
- "compile": {
- "lib/net9.0-android35.0/Microsoft.Maui.Essentials.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-android35.0/Microsoft.Maui.Essentials.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Graphics/9.0.51": {
- "type": "package",
- "compile": {
- "lib/net9.0-android35.0/Microsoft.Maui.Graphics.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-android35.0/Microsoft.Maui.Graphics.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Resizetizer/9.0.51": {
- "type": "package",
- "build": {
- "buildTransitive/Microsoft.Maui.Resizetizer.props": {},
- "buildTransitive/Microsoft.Maui.Resizetizer.targets": {}
- }
- },
- "Microsoft.NET.ILLink.Tasks/9.0.6": {
- "type": "package",
- "build": {
- "build/Microsoft.NET.ILLink.Tasks.props": {}
- }
- },
- "System.Text.Json/9.0.2": {
- "type": "package",
- "compile": {
- "lib/net9.0/System.Text.Json.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/System.Text.Json.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/System.Text.Json.targets": {}
- }
- },
- "Xamarin.Android.Glide/4.16.0.11": {
- "type": "package",
- "dependencies": {
- "Xamarin.Android.Glide.Annotations": "4.16.0.11",
- "Xamarin.Android.Glide.DiskLruCache": "4.16.0.11",
- "Xamarin.Android.Glide.GifDecoder": "4.16.0.11",
- "Xamarin.AndroidX.ExifInterface": "1.3.7.9",
- "Xamarin.AndroidX.Fragment": "1.8.5.2",
- "Xamarin.AndroidX.Tracing.Tracing": "1.2.0.9",
- "Xamarin.AndroidX.VectorDrawable.Animated": "1.2.0.5"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.Android.Glide.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.Android.Glide.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Xamarin.Android.Glide.Annotations/4.16.0.11": {
- "type": "package",
- "compile": {
- "lib/net8.0-android34.0/Xamarin.Android.Glide.Annotations.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.Android.Glide.Annotations.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.Android.Glide.DiskLruCache/4.16.0.11": {
- "type": "package",
- "compile": {
- "lib/net8.0-android34.0/Xamarin.Android.Glide.DiskLruCache.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.Android.Glide.DiskLruCache.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.Android.Glide.GifDecoder/4.16.0.11": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.Android.Glide.GifDecoder.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.Android.Glide.GifDecoder.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Xamarin.AndroidX.Activity/1.9.3.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.Lifecycle.Runtime": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.ViewModel": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.ViewModelSavedState": "2.8.7.2",
- "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller": "1.4.1.2",
- "Xamarin.AndroidX.SavedState": "1.2.1.15",
- "Xamarin.AndroidX.Tracing.Tracing": "1.2.0.9",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Activity.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Activity.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Activity.targets": {}
- }
- },
- "Xamarin.AndroidX.Activity.Ktx/1.9.3.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Activity": "[1.9.3.2, 1.9.4)",
- "Xamarin.AndroidX.Core.Core.Ktx": "1.15.0.2",
- "Xamarin.AndroidX.Lifecycle.Runtime.Ktx": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx": "2.8.7.2",
- "Xamarin.AndroidX.SavedState.SavedState.Ktx": "1.2.1.15",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Activity.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Activity.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Activity.Ktx.targets": {}
- }
- },
- "Xamarin.AndroidX.Annotation/1.9.1.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation.Jvm": "1.9.1.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Annotation.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Annotation.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Annotation.targets": {}
- }
- },
- "Xamarin.AndroidX.Annotation.Experimental/1.4.1.8": {
- "type": "package",
- "dependencies": {
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Annotation.Experimental.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Annotation.Experimental.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Annotation.Experimental.targets": {}
- }
- },
- "Xamarin.AndroidX.Annotation.Jvm/1.9.1.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Annotation.Jvm.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Annotation.Jvm.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Annotation.Jvm.targets": {}
- }
- },
- "Xamarin.AndroidX.AppCompat/1.7.0.5": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Activity": "1.9.3.2",
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.AppCompat.AppCompatResources": "[1.7.0.5, 1.7.1)",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.Core.Core.Ktx": "1.15.0.2",
- "Xamarin.AndroidX.CursorAdapter": "1.0.0.31",
- "Xamarin.AndroidX.DrawerLayout": "1.2.0.15",
- "Xamarin.AndroidX.Emoji2": "1.5.0.3",
- "Xamarin.AndroidX.Emoji2.ViewsHelper": "1.5.0.3",
- "Xamarin.AndroidX.Fragment": "1.8.5.2",
- "Xamarin.AndroidX.Lifecycle.Runtime": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.ViewModel": "2.8.7.2",
- "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller": "1.4.1.2",
- "Xamarin.AndroidX.ResourceInspection.Annotation": "1.0.1.19",
- "Xamarin.AndroidX.SavedState": "1.2.1.15",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.AppCompat.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.AppCompat.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.AppCompat.targets": {}
- }
- },
- "Xamarin.AndroidX.AppCompat.AppCompatResources/1.7.0.5": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.VectorDrawable": "1.2.0.5",
- "Xamarin.AndroidX.VectorDrawable.Animated": "1.2.0.5"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.AppCompat.AppCompatResources.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.AppCompat.AppCompatResources.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.AppCompat.AppCompatResources.targets": {}
- }
- },
- "Xamarin.AndroidX.Arch.Core.Common/2.2.0.15": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Arch.Core.Common.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Arch.Core.Common.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Arch.Core.Common.targets": {}
- }
- },
- "Xamarin.AndroidX.Arch.Core.Runtime/2.2.0.15": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Arch.Core.Common": "[2.2.0.15, 2.2.1)"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Arch.Core.Runtime.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Arch.Core.Runtime.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Arch.Core.Runtime.targets": {}
- }
- },
- "Xamarin.AndroidX.Browser/1.8.0.8": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Annotation.Experimental": "1.4.1.8",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Concurrent.Futures": "1.2.0.5",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.Interpolator": "1.0.0.31",
- "Xamarin.Google.Guava.ListenableFuture": "1.0.0.26"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Browser.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Browser.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Browser.targets": {}
- }
- },
- "Xamarin.AndroidX.CardView/1.0.0.33": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.CardView.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.CardView.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.CardView.targets": {}
- }
- },
- "Xamarin.AndroidX.Collection/1.4.5.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection.Jvm": "1.4.5.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Collection.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Collection.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Collection.targets": {}
- }
- },
- "Xamarin.AndroidX.Collection.Jvm/1.4.5.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation.Jvm": "1.9.1.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Collection.Jvm.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Collection.Jvm.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Collection.Jvm.targets": {}
- }
- },
- "Xamarin.AndroidX.Collection.Ktx/1.4.5.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Collection.Jvm": "[1.4.5.2, 1.4.6)"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Collection.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Collection.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Collection.Ktx.targets": {}
- }
- },
- "Xamarin.AndroidX.Concurrent.Futures/1.2.0.5": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.Google.Guava.ListenableFuture": "1.0.0.26"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Concurrent.Futures.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Concurrent.Futures.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Concurrent.Futures.targets": {}
- }
- },
- "Xamarin.AndroidX.ConstraintLayout/2.2.0.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.AppCompat": "1.7.0.5",
- "Xamarin.AndroidX.ConstraintLayout.Core": "1.1.0.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller": "1.4.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ConstraintLayout.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ConstraintLayout.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.ConstraintLayout.targets": {}
- }
- },
- "Xamarin.AndroidX.ConstraintLayout.Core/1.1.0.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ConstraintLayout.Core.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ConstraintLayout.Core.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.ConstraintLayout.Core.targets": {}
- }
- },
- "Xamarin.AndroidX.CoordinatorLayout/1.2.0.19": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.CustomView": "1.1.0.30"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.CoordinatorLayout.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.CoordinatorLayout.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.CoordinatorLayout.targets": {}
- }
- },
- "Xamarin.AndroidX.Core/1.15.0.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Annotation.Experimental": "1.4.1.8",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Concurrent.Futures": "1.2.0.5",
- "Xamarin.AndroidX.Interpolator": "1.0.0.31",
- "Xamarin.AndroidX.Lifecycle.Runtime": "2.8.7.2",
- "Xamarin.AndroidX.Tracing.Tracing": "1.2.0.9",
- "Xamarin.AndroidX.VersionedParcelable": "1.2.0.9",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Core.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Core.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Core.targets": {}
- }
- },
- "Xamarin.AndroidX.Core.Core.Ktx/1.15.0.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Core.Core.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Core.Core.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Core.Core.Ktx.targets": {}
- }
- },
- "Xamarin.AndroidX.CursorAdapter/1.0.0.31": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.CursorAdapter.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.CursorAdapter.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.CursorAdapter.targets": {}
- }
- },
- "Xamarin.AndroidX.CustomView/1.1.0.30": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.CustomView.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.CustomView.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.CustomView.targets": {}
- }
- },
- "Xamarin.AndroidX.CustomView.PoolingContainer/1.0.0.17": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Core.Core.Ktx": "1.15.0.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.CustomView.PoolingContainer.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.CustomView.PoolingContainer.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.CustomView.PoolingContainer.targets": {}
- }
- },
- "Xamarin.AndroidX.DocumentFile/1.0.1.31": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.DocumentFile.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.DocumentFile.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.DocumentFile.targets": {}
- }
- },
- "Xamarin.AndroidX.DrawerLayout/1.2.0.15": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.CustomView": "1.1.0.30"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.DrawerLayout.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.DrawerLayout.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.DrawerLayout.targets": {}
- }
- },
- "Xamarin.AndroidX.DynamicAnimation/1.0.0.31": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.Legacy.Support.Core.Utils": "1.0.0.31"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.DynamicAnimation.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.DynamicAnimation.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.DynamicAnimation.targets": {}
- }
- },
- "Xamarin.AndroidX.Emoji2/1.5.0.3": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.Lifecycle.Process": "2.8.7.2",
- "Xamarin.AndroidX.Startup.StartupRuntime": "1.2.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Emoji2.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Emoji2.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Emoji2.targets": {}
- }
- },
- "Xamarin.AndroidX.Emoji2.ViewsHelper/1.5.0.3": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.Emoji2": "[1.5.0.3, 1.5.1)"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Emoji2.ViewsHelper.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Emoji2.ViewsHelper.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Emoji2.ViewsHelper.targets": {}
- }
- },
- "Xamarin.AndroidX.ExifInterface/1.3.7.9": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ExifInterface.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ExifInterface.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.ExifInterface.targets": {}
- }
- },
- "Xamarin.AndroidX.Fragment/1.8.5.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Activity": "1.9.3.2",
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Annotation.Experimental": "1.4.1.8",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core.Core.Ktx": "1.15.0.2",
- "Xamarin.AndroidX.Lifecycle.LiveData.Core": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.Runtime": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.ViewModel": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.ViewModelSavedState": "2.8.7.2",
- "Xamarin.AndroidX.Loader": "1.1.0.31",
- "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller": "1.4.1.2",
- "Xamarin.AndroidX.SavedState": "1.2.1.15",
- "Xamarin.AndroidX.ViewPager": "1.1.0.1",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Fragment.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Fragment.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Fragment.targets": {}
- }
- },
- "Xamarin.AndroidX.Fragment.Ktx/1.8.5.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Activity.Ktx": "1.9.3.2",
- "Xamarin.AndroidX.Collection.Ktx": "1.4.5.2",
- "Xamarin.AndroidX.Core.Core.Ktx": "1.15.0.2",
- "Xamarin.AndroidX.Fragment": "[1.8.5.2, 1.8.6)",
- "Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx": "2.8.7.2",
- "Xamarin.AndroidX.SavedState.SavedState.Ktx": "1.2.1.15",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Fragment.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Fragment.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Fragment.Ktx.targets": {}
- }
- },
- "Xamarin.AndroidX.Interpolator/1.0.0.31": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Interpolator.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Interpolator.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Interpolator.targets": {}
- }
- },
- "Xamarin.AndroidX.Legacy.Support.Core.Utils/1.0.0.31": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.DocumentFile": "1.0.1.31",
- "Xamarin.AndroidX.Loader": "1.1.0.31",
- "Xamarin.AndroidX.LocalBroadcastManager": "1.1.0.19",
- "Xamarin.AndroidX.Print": "1.0.0.31"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Legacy.Support.Core.Utils.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Legacy.Support.Core.Utils.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Legacy.Support.Core.Utils.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.Common/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Lifecycle.Common.Jvm": "2.8.7.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.AtomicFU": "0.26.1.1",
- "Xamarin.KotlinX.Coroutines.Core": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Common.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Common.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Common.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.Common.Jvm/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation.Jvm": "1.9.1.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Coroutines.Core": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Common.Jvm.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Common.Jvm.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Common.Jvm.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.LiveData/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Arch.Core.Common": "2.2.0.15",
- "Xamarin.AndroidX.Arch.Core.Runtime": "2.2.0.15",
- "Xamarin.AndroidX.Lifecycle.LiveData.Core": "[2.8.7.2, 2.8.8)",
- "Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx": "[2.8.7.2, 2.8.8)",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Coroutines.Core": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.LiveData.Core/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Arch.Core.Common": "2.2.0.15",
- "Xamarin.AndroidX.Arch.Core.Runtime": "2.2.0.15",
- "Xamarin.AndroidX.Lifecycle.Common": "[2.8.7.2, 2.8.8)",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Lifecycle.LiveData.Core": "[2.8.7.2, 2.8.8)",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.Process/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Lifecycle.Runtime": "[2.8.7.2, 2.8.8)",
- "Xamarin.AndroidX.Startup.StartupRuntime": "1.2.0.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Process.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Process.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Process.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.Runtime/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Arch.Core.Common": "2.2.0.15",
- "Xamarin.AndroidX.Lifecycle.Common": "[2.8.7.2, 2.8.8)",
- "Xamarin.AndroidX.Lifecycle.Runtime.Android": "2.8.7.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.Runtime.Android/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Arch.Core.Common": "2.2.0.15",
- "Xamarin.AndroidX.Arch.Core.Runtime": "2.2.0.15",
- "Xamarin.AndroidX.Lifecycle.Common": "[2.8.7.2, 2.8.8)",
- "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller": "1.4.1.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Coroutines.Android": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Android.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Android.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Android.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.Runtime.Ktx/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Lifecycle.Runtime": "[2.8.7.2, 2.8.8)",
- "Xamarin.AndroidX.Lifecycle.Runtime.Ktx.Android": "2.8.7.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.Runtime.Ktx.Android/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Lifecycle.Runtime": "[2.8.7.2, 2.8.8)",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Coroutines.Android": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.Android.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.Android.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.Android.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.ViewModel/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Lifecycle.ViewModel.Android": "2.8.7.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Coroutines.Core": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.ViewModel.Android/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation.Jvm": "1.9.1.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Coroutines.Android": "1.9.0.2",
- "Xamarin.KotlinX.Coroutines.Core.Jvm": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.Android.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.Android.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.Android.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Lifecycle.ViewModel": "[2.8.7.2, 2.8.8)",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Coroutines.Android": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.ViewModelSavedState/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Core.Core.Ktx": "1.15.0.2",
- "Xamarin.AndroidX.Lifecycle.LiveData.Core": "[2.8.7.2, 2.8.8)",
- "Xamarin.AndroidX.Lifecycle.ViewModel": "[2.8.7.2, 2.8.8)",
- "Xamarin.AndroidX.SavedState": "1.2.1.15",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Coroutines.Android": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModelSavedState.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModelSavedState.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModelSavedState.targets": {}
- }
- },
- "Xamarin.AndroidX.Loader/1.1.0.31": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.Lifecycle.LiveData.Core": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.ViewModel": "2.8.7.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Loader.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Loader.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Loader.targets": {}
- }
- },
- "Xamarin.AndroidX.LocalBroadcastManager/1.1.0.19": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.LocalBroadcastManager.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.LocalBroadcastManager.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.LocalBroadcastManager.targets": {}
- }
- },
- "Xamarin.AndroidX.Navigation.Common/2.8.5.1": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection.Ktx": "1.4.5.2",
- "Xamarin.AndroidX.Core.Core.Ktx": "1.15.0.2",
- "Xamarin.AndroidX.Lifecycle.Common": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.Runtime.Ktx": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.ViewModelSavedState": "2.8.7.2",
- "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller": "1.4.1.2",
- "Xamarin.AndroidX.SavedState.SavedState.Ktx": "1.2.1.15",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Serialization.Core": "1.7.3.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Navigation.Common.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Navigation.Common.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Navigation.Common.targets": {}
- }
- },
- "Xamarin.AndroidX.Navigation.Fragment/2.8.5.1": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Fragment.Ktx": "1.8.5.2",
- "Xamarin.AndroidX.Navigation.Runtime": "[2.8.5.1, 2.8.6)",
- "Xamarin.AndroidX.SlidingPaneLayout": "1.2.0.19",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Serialization.Core": "1.7.3.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Navigation.Fragment.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Navigation.Fragment.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Navigation.Fragment.targets": {}
- }
- },
- "Xamarin.AndroidX.Navigation.Runtime/2.8.5.1": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Activity.Ktx": "1.9.3.2",
- "Xamarin.AndroidX.Annotation.Experimental": "1.4.1.8",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Lifecycle.Runtime.Ktx": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx": "2.8.7.2",
- "Xamarin.AndroidX.Navigation.Common": "[2.8.5.1, 2.8.6)",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Serialization.Core": "1.7.3.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Navigation.Runtime.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Navigation.Runtime.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Navigation.Runtime.targets": {}
- }
- },
- "Xamarin.AndroidX.Navigation.UI/2.8.5.1": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation.Experimental": "1.4.1.8",
- "Xamarin.AndroidX.CustomView": "1.1.0.30",
- "Xamarin.AndroidX.DrawerLayout": "1.2.0.15",
- "Xamarin.AndroidX.Navigation.Runtime": "[2.8.5.1, 2.8.6)",
- "Xamarin.AndroidX.Transition": "1.5.1.4",
- "Xamarin.Google.Android.Material": "1.12.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Navigation.UI.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Navigation.UI.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Navigation.UI.targets": {}
- }
- },
- "Xamarin.AndroidX.Print/1.0.0.31": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Print.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Print.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Print.targets": {}
- }
- },
- "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller/1.4.1.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Concurrent.Futures": "1.2.0.5",
- "Xamarin.AndroidX.Startup.StartupRuntime": "1.2.0.2",
- "Xamarin.Google.Guava.ListenableFuture": "1.0.0.26"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.targets": {}
- }
- },
- "Xamarin.AndroidX.RecyclerView/1.3.2.10": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.CustomView": "1.1.0.30",
- "Xamarin.AndroidX.CustomView.PoolingContainer": "1.0.0.17"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.RecyclerView.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.RecyclerView.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.RecyclerView.targets": {}
- }
- },
- "Xamarin.AndroidX.ResourceInspection.Annotation/1.0.1.19": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ResourceInspection.Annotation.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ResourceInspection.Annotation.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.ResourceInspection.Annotation.targets": {}
- }
- },
- "Xamarin.AndroidX.SavedState/1.2.1.15": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Arch.Core.Common": "2.2.0.15",
- "Xamarin.AndroidX.Lifecycle.Common": "2.8.7.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.SavedState.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.SavedState.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.SavedState.targets": {}
- }
- },
- "Xamarin.AndroidX.SavedState.SavedState.Ktx/1.2.1.15": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.SavedState": "[1.2.1.15, 1.2.2)",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.SavedState.SavedState.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.SavedState.SavedState.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.SavedState.SavedState.Ktx.targets": {}
- }
- },
- "Xamarin.AndroidX.Security.SecurityCrypto/1.1.0.2-alpha06": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.7.1.4",
- "Xamarin.AndroidX.Collection": "1.4.0.5",
- "Xamarin.Google.Crypto.Tink.Android": "1.13.0.3"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Security.SecurityCrypto.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Security.SecurityCrypto.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Security.SecurityCrypto.targets": {}
- }
- },
- "Xamarin.AndroidX.SlidingPaneLayout/1.2.0.19": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.CustomView": "1.1.0.30",
- "Xamarin.AndroidX.Transition": "1.5.1.4",
- "Xamarin.AndroidX.Window": "1.3.0.5"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.SlidingPaneLayout.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.SlidingPaneLayout.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.SlidingPaneLayout.targets": {}
- }
- },
- "Xamarin.AndroidX.Startup.StartupRuntime/1.2.0.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Tracing.Tracing": "1.2.0.9"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Startup.StartupRuntime.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Startup.StartupRuntime.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Startup.StartupRuntime.targets": {}
- }
- },
- "Xamarin.AndroidX.SwipeRefreshLayout/1.1.0.24": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.8.2.1",
- "Xamarin.AndroidX.Core": "1.13.1.5",
- "Xamarin.AndroidX.Interpolator": "1.0.0.29"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.SwipeRefreshLayout.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.SwipeRefreshLayout.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.SwipeRefreshLayout.targets": {}
- }
- },
- "Xamarin.AndroidX.Tracing.Tracing/1.2.0.9": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Tracing.Tracing.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Tracing.Tracing.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Tracing.Tracing.targets": {}
- }
- },
- "Xamarin.AndroidX.Transition/1.5.1.4": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.DynamicAnimation": "1.0.0.31",
- "Xamarin.AndroidX.Fragment": "1.8.5.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Transition.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Transition.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Transition.targets": {}
- }
- },
- "Xamarin.AndroidX.VectorDrawable/1.2.0.5": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.VectorDrawable.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.VectorDrawable.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.VectorDrawable.targets": {}
- }
- },
- "Xamarin.AndroidX.VectorDrawable.Animated/1.2.0.5": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.Interpolator": "1.0.0.31",
- "Xamarin.AndroidX.VectorDrawable": "1.2.0.5"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.VectorDrawable.Animated.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.VectorDrawable.Animated.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.VectorDrawable.Animated.targets": {}
- }
- },
- "Xamarin.AndroidX.VersionedParcelable/1.2.0.9": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.VersionedParcelable.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.VersionedParcelable.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.VersionedParcelable.targets": {}
- }
- },
- "Xamarin.AndroidX.ViewPager/1.1.0.1": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.CustomView": "1.1.0.30"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ViewPager.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ViewPager.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.ViewPager.targets": {}
- }
- },
- "Xamarin.AndroidX.ViewPager2/1.1.0.5": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Annotation.Experimental": "1.4.1.8",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.Fragment": "1.8.5.2",
- "Xamarin.AndroidX.RecyclerView": "1.3.2.10"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ViewPager2.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ViewPager2.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.ViewPager2.targets": {}
- }
- },
- "Xamarin.AndroidX.Window/1.3.0.5": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.Window.Extensions.Core.Core": "1.0.0.13",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Coroutines.Android": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Window.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Window.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Window.targets": {}
- }
- },
- "Xamarin.AndroidX.Window.Extensions.Core.Core/1.0.0.13": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Window.Extensions.Core.Core.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Window.Extensions.Core.Core.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Window.Extensions.Core.Core.targets": {}
- }
- },
- "Xamarin.Google.Android.Material/1.12.0.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Activity": "1.9.3.2",
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Annotation.Experimental": "1.4.1.8",
- "Xamarin.AndroidX.AppCompat": "1.7.0.5",
- "Xamarin.AndroidX.CardView": "1.0.0.33",
- "Xamarin.AndroidX.ConstraintLayout": "2.2.0.2",
- "Xamarin.AndroidX.CoordinatorLayout": "1.2.0.19",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.DrawerLayout": "1.2.0.15",
- "Xamarin.AndroidX.DynamicAnimation": "1.0.0.31",
- "Xamarin.AndroidX.Fragment": "1.8.5.2",
- "Xamarin.AndroidX.Lifecycle.Runtime": "2.8.7.2",
- "Xamarin.AndroidX.RecyclerView": "1.3.2.10",
- "Xamarin.AndroidX.ResourceInspection.Annotation": "1.0.1.19",
- "Xamarin.AndroidX.Transition": "1.5.1.4",
- "Xamarin.AndroidX.VectorDrawable": "1.2.0.5",
- "Xamarin.AndroidX.ViewPager2": "1.1.0.5",
- "Xamarin.Google.ErrorProne.Annotations": "2.36.0.1"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.Google.Android.Material.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.Google.Android.Material.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.Google.Android.Material.targets": {}
- }
- },
- "Xamarin.Google.Code.FindBugs.JSR305/3.0.2.18": {
- "type": "package",
- "compile": {
- "lib/net8.0-android34.0/Jsr305Binding.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Jsr305Binding.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.Google.Crypto.Tink.Android/1.16.0.1": {
- "type": "package",
- "dependencies": {
- "GoogleGson": "2.11.0.5",
- "Xamarin.AndroidX.Annotation.Jvm": "1.9.1.2",
- "Xamarin.Google.Code.FindBugs.JSR305": "3.0.2.18",
- "Xamarin.Google.ErrorProne.Annotations": "2.36.0.1"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.Google.Crypto.Tink.Android.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.Google.Crypto.Tink.Android.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.Google.ErrorProne.Annotations/2.36.0.1": {
- "type": "package",
- "compile": {
- "lib/net8.0-android34.0/Xamarin.Google.ErrorProne.Annotations.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.Google.ErrorProne.Annotations.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.Google.Guava.ListenableFuture/1.0.0.26": {
- "type": "package",
- "compile": {
- "lib/net8.0-android34.0/Xamarin.Google.Guava.ListenableFuture.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.Google.Guava.ListenableFuture.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.Jetbrains.Annotations/26.0.1.2": {
- "type": "package",
- "compile": {
- "lib/net8.0-android34.0/Xamarin.Jetbrains.Annotations.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.Jetbrains.Annotations.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.Kotlin.StdLib/2.0.21.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.Jetbrains.Annotations": "26.0.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.Kotlin.StdLib.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.Kotlin.StdLib.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.KotlinX.AtomicFU/0.26.1.1": {
- "type": "package",
- "dependencies": {
- "Xamarin.KotlinX.AtomicFU.Jvm": "0.26.1.1"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.AtomicFU.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.AtomicFU.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.KotlinX.AtomicFU.Jvm/0.26.1.1": {
- "type": "package",
- "dependencies": {
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.AtomicFU.Jvm.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.AtomicFU.Jvm.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.KotlinX.Coroutines.Android/1.9.0.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Coroutines.Core.Jvm": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.Coroutines.Android.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.Coroutines.Android.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.KotlinX.Coroutines.Core/1.9.0.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.KotlinX.Coroutines.Core.Jvm": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.Coroutines.Core.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.Coroutines.Core.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.KotlinX.Coroutines.Core.Jvm/1.9.0.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.Jetbrains.Annotations": "26.0.1.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.Coroutines.Core.Jvm.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.Coroutines.Core.Jvm.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.KotlinX.Serialization.Core/1.7.3.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.KotlinX.Serialization.Core.Jvm": "1.7.3.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.Serialization.Core.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.Serialization.Core.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.KotlinX.Serialization.Core.Jvm/1.7.3.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.Serialization.Core.Jvm.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.Serialization.Core.Jvm.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- }
- },
- "net9.0-android35.0/android-x64": {
- "FFMpegCore/5.2.0": {
- "type": "package",
- "dependencies": {
- "Instances": "3.0.1",
- "System.Text.Json": "9.0.2"
- },
- "compile": {
- "lib/netstandard2.0/FFMpegCore.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/FFMpegCore.dll": {}
- }
- },
- "GoogleGson/2.11.0.5": {
- "type": "package",
- "dependencies": {
- "Xamarin.Google.ErrorProne.Annotations": "2.36.0.1"
- },
- "compile": {
- "lib/net8.0-android34.0/GoogleGson.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/GoogleGson.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Instances/3.0.1": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/Instances.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/Instances.dll": {}
- },
- "contentFiles": {
- "contentFiles/any/any/_._": {
- "buildAction": "None",
- "codeLanguage": "any",
- "copyToOutput": false
- }
- }
- },
- "Microsoft.Extensions.Configuration/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Configuration.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Configuration.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Configuration.Abstractions/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": {
- "type": "package",
- "compile": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Logging/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Extensions.Options": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Logging.Abstractions/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets": {}
- }
- },
- "Microsoft.Extensions.Logging.Debug/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.Debug.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.Debug.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Options/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Options.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Options.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/Microsoft.Extensions.Options.targets": {}
- }
- },
- "Microsoft.Extensions.Primitives/9.0.0": {
- "type": "package",
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Primitives.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Primitives.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Maui.Controls/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Controls.Build.Tasks": "9.0.51",
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Controls.Xaml": "9.0.51",
- "Microsoft.Maui.Resizetizer": "9.0.51"
- }
- },
- "Microsoft.Maui.Controls.Build.Tasks/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Controls.Xaml": "9.0.51"
- },
- "build": {
- "buildTransitive/netstandard2.0/Microsoft.Maui.Controls.Build.Tasks.props": {},
- "buildTransitive/netstandard2.0/Microsoft.Maui.Controls.Build.Tasks.targets": {}
- }
- },
- "Microsoft.Maui.Controls.Core/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Maui.Core": "9.0.51"
- },
- "compile": {
- "lib/net9.0-android35.0/Microsoft.Maui.Controls.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-android35.0/Microsoft.Maui.Controls.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "resource": {
- "lib/net9.0-android35.0/ar/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ar"
- },
- "lib/net9.0-android35.0/ca/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ca"
- },
- "lib/net9.0-android35.0/cs/Microsoft.Maui.Controls.resources.dll": {
- "locale": "cs"
- },
- "lib/net9.0-android35.0/da/Microsoft.Maui.Controls.resources.dll": {
- "locale": "da"
- },
- "lib/net9.0-android35.0/de/Microsoft.Maui.Controls.resources.dll": {
- "locale": "de"
- },
- "lib/net9.0-android35.0/el/Microsoft.Maui.Controls.resources.dll": {
- "locale": "el"
- },
- "lib/net9.0-android35.0/es/Microsoft.Maui.Controls.resources.dll": {
- "locale": "es"
- },
- "lib/net9.0-android35.0/fi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "fi"
- },
- "lib/net9.0-android35.0/fr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "fr"
- },
- "lib/net9.0-android35.0/he/Microsoft.Maui.Controls.resources.dll": {
- "locale": "he"
- },
- "lib/net9.0-android35.0/hi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hi"
- },
- "lib/net9.0-android35.0/hr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hr"
- },
- "lib/net9.0-android35.0/hu/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hu"
- },
- "lib/net9.0-android35.0/id/Microsoft.Maui.Controls.resources.dll": {
- "locale": "id"
- },
- "lib/net9.0-android35.0/it/Microsoft.Maui.Controls.resources.dll": {
- "locale": "it"
- },
- "lib/net9.0-android35.0/ja/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ja"
- },
- "lib/net9.0-android35.0/ko/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ko"
- },
- "lib/net9.0-android35.0/ms/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ms"
- },
- "lib/net9.0-android35.0/nb/Microsoft.Maui.Controls.resources.dll": {
- "locale": "nb"
- },
- "lib/net9.0-android35.0/nl/Microsoft.Maui.Controls.resources.dll": {
- "locale": "nl"
- },
- "lib/net9.0-android35.0/pl/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pl"
- },
- "lib/net9.0-android35.0/pt-BR/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/net9.0-android35.0/pt/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pt"
- },
- "lib/net9.0-android35.0/ro/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ro"
- },
- "lib/net9.0-android35.0/ru/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ru"
- },
- "lib/net9.0-android35.0/sk/Microsoft.Maui.Controls.resources.dll": {
- "locale": "sk"
- },
- "lib/net9.0-android35.0/sv/Microsoft.Maui.Controls.resources.dll": {
- "locale": "sv"
- },
- "lib/net9.0-android35.0/th/Microsoft.Maui.Controls.resources.dll": {
- "locale": "th"
- },
- "lib/net9.0-android35.0/tr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "tr"
- },
- "lib/net9.0-android35.0/uk/Microsoft.Maui.Controls.resources.dll": {
- "locale": "uk"
- },
- "lib/net9.0-android35.0/vi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "vi"
- },
- "lib/net9.0-android35.0/zh-HK/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-HK"
- },
- "lib/net9.0-android35.0/zh-Hans/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/net9.0-android35.0/zh-Hant/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.Maui.Controls.Xaml/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Core": "9.0.51"
- },
- "compile": {
- "lib/net9.0-android35.0/Microsoft.Maui.Controls.Xaml.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-android35.0/Microsoft.Maui.Controls.Xaml.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Core/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Maui.Essentials": "9.0.51",
- "Microsoft.Maui.Graphics": "9.0.51",
- "Xamarin.Android.Glide": "4.16.0.11",
- "Xamarin.AndroidX.Lifecycle.LiveData": "2.8.7.2",
- "Xamarin.AndroidX.Navigation.Common": "2.8.5.1",
- "Xamarin.AndroidX.Navigation.Fragment": "2.8.5.1",
- "Xamarin.AndroidX.Navigation.Runtime": "2.8.5.1",
- "Xamarin.AndroidX.Navigation.UI": "2.8.5.1",
- "Xamarin.AndroidX.SwipeRefreshLayout": "1.1.0.24",
- "Xamarin.Google.Android.Material": "1.12.0.2"
- },
- "compile": {
- "lib/net9.0-android35.0/Microsoft.Maui.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-android35.0/Microsoft.Maui.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/Microsoft.Maui.Core.props": {},
- "buildTransitive/Microsoft.Maui.Core.targets": {}
- }
- },
- "Microsoft.Maui.Essentials/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Graphics": "9.0.51",
- "Xamarin.AndroidX.Browser": "1.8.0.8",
- "Xamarin.AndroidX.Security.SecurityCrypto": "1.1.0.2-alpha06",
- "Xamarin.Google.Crypto.Tink.Android": "1.16.0.1"
- },
- "compile": {
- "lib/net9.0-android35.0/Microsoft.Maui.Essentials.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-android35.0/Microsoft.Maui.Essentials.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Graphics/9.0.51": {
- "type": "package",
- "compile": {
- "lib/net9.0-android35.0/Microsoft.Maui.Graphics.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-android35.0/Microsoft.Maui.Graphics.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Resizetizer/9.0.51": {
- "type": "package",
- "build": {
- "buildTransitive/Microsoft.Maui.Resizetizer.props": {},
- "buildTransitive/Microsoft.Maui.Resizetizer.targets": {}
- }
- },
- "Microsoft.NET.ILLink.Tasks/9.0.6": {
- "type": "package",
- "build": {
- "build/Microsoft.NET.ILLink.Tasks.props": {}
- }
- },
- "System.Text.Json/9.0.2": {
- "type": "package",
- "compile": {
- "lib/net9.0/System.Text.Json.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/System.Text.Json.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/System.Text.Json.targets": {}
- }
- },
- "Xamarin.Android.Glide/4.16.0.11": {
- "type": "package",
- "dependencies": {
- "Xamarin.Android.Glide.Annotations": "4.16.0.11",
- "Xamarin.Android.Glide.DiskLruCache": "4.16.0.11",
- "Xamarin.Android.Glide.GifDecoder": "4.16.0.11",
- "Xamarin.AndroidX.ExifInterface": "1.3.7.9",
- "Xamarin.AndroidX.Fragment": "1.8.5.2",
- "Xamarin.AndroidX.Tracing.Tracing": "1.2.0.9",
- "Xamarin.AndroidX.VectorDrawable.Animated": "1.2.0.5"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.Android.Glide.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.Android.Glide.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Xamarin.Android.Glide.Annotations/4.16.0.11": {
- "type": "package",
- "compile": {
- "lib/net8.0-android34.0/Xamarin.Android.Glide.Annotations.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.Android.Glide.Annotations.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.Android.Glide.DiskLruCache/4.16.0.11": {
- "type": "package",
- "compile": {
- "lib/net8.0-android34.0/Xamarin.Android.Glide.DiskLruCache.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.Android.Glide.DiskLruCache.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.Android.Glide.GifDecoder/4.16.0.11": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.Android.Glide.GifDecoder.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.Android.Glide.GifDecoder.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Xamarin.AndroidX.Activity/1.9.3.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.Lifecycle.Runtime": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.ViewModel": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.ViewModelSavedState": "2.8.7.2",
- "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller": "1.4.1.2",
- "Xamarin.AndroidX.SavedState": "1.2.1.15",
- "Xamarin.AndroidX.Tracing.Tracing": "1.2.0.9",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Activity.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Activity.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Activity.targets": {}
- }
- },
- "Xamarin.AndroidX.Activity.Ktx/1.9.3.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Activity": "[1.9.3.2, 1.9.4)",
- "Xamarin.AndroidX.Core.Core.Ktx": "1.15.0.2",
- "Xamarin.AndroidX.Lifecycle.Runtime.Ktx": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx": "2.8.7.2",
- "Xamarin.AndroidX.SavedState.SavedState.Ktx": "1.2.1.15",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Activity.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Activity.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Activity.Ktx.targets": {}
- }
- },
- "Xamarin.AndroidX.Annotation/1.9.1.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation.Jvm": "1.9.1.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Annotation.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Annotation.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Annotation.targets": {}
- }
- },
- "Xamarin.AndroidX.Annotation.Experimental/1.4.1.8": {
- "type": "package",
- "dependencies": {
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Annotation.Experimental.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Annotation.Experimental.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Annotation.Experimental.targets": {}
- }
- },
- "Xamarin.AndroidX.Annotation.Jvm/1.9.1.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Annotation.Jvm.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Annotation.Jvm.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Annotation.Jvm.targets": {}
- }
- },
- "Xamarin.AndroidX.AppCompat/1.7.0.5": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Activity": "1.9.3.2",
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.AppCompat.AppCompatResources": "[1.7.0.5, 1.7.1)",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.Core.Core.Ktx": "1.15.0.2",
- "Xamarin.AndroidX.CursorAdapter": "1.0.0.31",
- "Xamarin.AndroidX.DrawerLayout": "1.2.0.15",
- "Xamarin.AndroidX.Emoji2": "1.5.0.3",
- "Xamarin.AndroidX.Emoji2.ViewsHelper": "1.5.0.3",
- "Xamarin.AndroidX.Fragment": "1.8.5.2",
- "Xamarin.AndroidX.Lifecycle.Runtime": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.ViewModel": "2.8.7.2",
- "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller": "1.4.1.2",
- "Xamarin.AndroidX.ResourceInspection.Annotation": "1.0.1.19",
- "Xamarin.AndroidX.SavedState": "1.2.1.15",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.AppCompat.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.AppCompat.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.AppCompat.targets": {}
- }
- },
- "Xamarin.AndroidX.AppCompat.AppCompatResources/1.7.0.5": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.VectorDrawable": "1.2.0.5",
- "Xamarin.AndroidX.VectorDrawable.Animated": "1.2.0.5"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.AppCompat.AppCompatResources.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.AppCompat.AppCompatResources.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.AppCompat.AppCompatResources.targets": {}
- }
- },
- "Xamarin.AndroidX.Arch.Core.Common/2.2.0.15": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Arch.Core.Common.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Arch.Core.Common.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Arch.Core.Common.targets": {}
- }
- },
- "Xamarin.AndroidX.Arch.Core.Runtime/2.2.0.15": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Arch.Core.Common": "[2.2.0.15, 2.2.1)"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Arch.Core.Runtime.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Arch.Core.Runtime.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Arch.Core.Runtime.targets": {}
- }
- },
- "Xamarin.AndroidX.Browser/1.8.0.8": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Annotation.Experimental": "1.4.1.8",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Concurrent.Futures": "1.2.0.5",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.Interpolator": "1.0.0.31",
- "Xamarin.Google.Guava.ListenableFuture": "1.0.0.26"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Browser.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Browser.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Browser.targets": {}
- }
- },
- "Xamarin.AndroidX.CardView/1.0.0.33": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.CardView.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.CardView.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.CardView.targets": {}
- }
- },
- "Xamarin.AndroidX.Collection/1.4.5.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection.Jvm": "1.4.5.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Collection.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Collection.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Collection.targets": {}
- }
- },
- "Xamarin.AndroidX.Collection.Jvm/1.4.5.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation.Jvm": "1.9.1.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Collection.Jvm.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Collection.Jvm.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Collection.Jvm.targets": {}
- }
- },
- "Xamarin.AndroidX.Collection.Ktx/1.4.5.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Collection.Jvm": "[1.4.5.2, 1.4.6)"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Collection.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Collection.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Collection.Ktx.targets": {}
- }
- },
- "Xamarin.AndroidX.Concurrent.Futures/1.2.0.5": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.Google.Guava.ListenableFuture": "1.0.0.26"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Concurrent.Futures.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Concurrent.Futures.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Concurrent.Futures.targets": {}
- }
- },
- "Xamarin.AndroidX.ConstraintLayout/2.2.0.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.AppCompat": "1.7.0.5",
- "Xamarin.AndroidX.ConstraintLayout.Core": "1.1.0.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller": "1.4.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ConstraintLayout.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ConstraintLayout.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.ConstraintLayout.targets": {}
- }
- },
- "Xamarin.AndroidX.ConstraintLayout.Core/1.1.0.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ConstraintLayout.Core.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ConstraintLayout.Core.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.ConstraintLayout.Core.targets": {}
- }
- },
- "Xamarin.AndroidX.CoordinatorLayout/1.2.0.19": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.CustomView": "1.1.0.30"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.CoordinatorLayout.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.CoordinatorLayout.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.CoordinatorLayout.targets": {}
- }
- },
- "Xamarin.AndroidX.Core/1.15.0.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Annotation.Experimental": "1.4.1.8",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Concurrent.Futures": "1.2.0.5",
- "Xamarin.AndroidX.Interpolator": "1.0.0.31",
- "Xamarin.AndroidX.Lifecycle.Runtime": "2.8.7.2",
- "Xamarin.AndroidX.Tracing.Tracing": "1.2.0.9",
- "Xamarin.AndroidX.VersionedParcelable": "1.2.0.9",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Core.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Core.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Core.targets": {}
- }
- },
- "Xamarin.AndroidX.Core.Core.Ktx/1.15.0.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Core.Core.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Core.Core.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Core.Core.Ktx.targets": {}
- }
- },
- "Xamarin.AndroidX.CursorAdapter/1.0.0.31": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.CursorAdapter.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.CursorAdapter.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.CursorAdapter.targets": {}
- }
- },
- "Xamarin.AndroidX.CustomView/1.1.0.30": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.CustomView.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.CustomView.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.CustomView.targets": {}
- }
- },
- "Xamarin.AndroidX.CustomView.PoolingContainer/1.0.0.17": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Core.Core.Ktx": "1.15.0.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.CustomView.PoolingContainer.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.CustomView.PoolingContainer.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.CustomView.PoolingContainer.targets": {}
- }
- },
- "Xamarin.AndroidX.DocumentFile/1.0.1.31": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.DocumentFile.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.DocumentFile.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.DocumentFile.targets": {}
- }
- },
- "Xamarin.AndroidX.DrawerLayout/1.2.0.15": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.CustomView": "1.1.0.30"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.DrawerLayout.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.DrawerLayout.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.DrawerLayout.targets": {}
- }
- },
- "Xamarin.AndroidX.DynamicAnimation/1.0.0.31": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.Legacy.Support.Core.Utils": "1.0.0.31"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.DynamicAnimation.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.DynamicAnimation.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.DynamicAnimation.targets": {}
- }
- },
- "Xamarin.AndroidX.Emoji2/1.5.0.3": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.Lifecycle.Process": "2.8.7.2",
- "Xamarin.AndroidX.Startup.StartupRuntime": "1.2.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Emoji2.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Emoji2.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Emoji2.targets": {}
- }
- },
- "Xamarin.AndroidX.Emoji2.ViewsHelper/1.5.0.3": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.Emoji2": "[1.5.0.3, 1.5.1)"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Emoji2.ViewsHelper.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Emoji2.ViewsHelper.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Emoji2.ViewsHelper.targets": {}
- }
- },
- "Xamarin.AndroidX.ExifInterface/1.3.7.9": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ExifInterface.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ExifInterface.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.ExifInterface.targets": {}
- }
- },
- "Xamarin.AndroidX.Fragment/1.8.5.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Activity": "1.9.3.2",
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Annotation.Experimental": "1.4.1.8",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core.Core.Ktx": "1.15.0.2",
- "Xamarin.AndroidX.Lifecycle.LiveData.Core": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.Runtime": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.ViewModel": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.ViewModelSavedState": "2.8.7.2",
- "Xamarin.AndroidX.Loader": "1.1.0.31",
- "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller": "1.4.1.2",
- "Xamarin.AndroidX.SavedState": "1.2.1.15",
- "Xamarin.AndroidX.ViewPager": "1.1.0.1",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Fragment.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Fragment.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Fragment.targets": {}
- }
- },
- "Xamarin.AndroidX.Fragment.Ktx/1.8.5.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Activity.Ktx": "1.9.3.2",
- "Xamarin.AndroidX.Collection.Ktx": "1.4.5.2",
- "Xamarin.AndroidX.Core.Core.Ktx": "1.15.0.2",
- "Xamarin.AndroidX.Fragment": "[1.8.5.2, 1.8.6)",
- "Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx": "2.8.7.2",
- "Xamarin.AndroidX.SavedState.SavedState.Ktx": "1.2.1.15",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Fragment.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Fragment.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Fragment.Ktx.targets": {}
- }
- },
- "Xamarin.AndroidX.Interpolator/1.0.0.31": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Interpolator.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Interpolator.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Interpolator.targets": {}
- }
- },
- "Xamarin.AndroidX.Legacy.Support.Core.Utils/1.0.0.31": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.DocumentFile": "1.0.1.31",
- "Xamarin.AndroidX.Loader": "1.1.0.31",
- "Xamarin.AndroidX.LocalBroadcastManager": "1.1.0.19",
- "Xamarin.AndroidX.Print": "1.0.0.31"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Legacy.Support.Core.Utils.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Legacy.Support.Core.Utils.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Legacy.Support.Core.Utils.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.Common/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Lifecycle.Common.Jvm": "2.8.7.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.AtomicFU": "0.26.1.1",
- "Xamarin.KotlinX.Coroutines.Core": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Common.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Common.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Common.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.Common.Jvm/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation.Jvm": "1.9.1.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Coroutines.Core": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Common.Jvm.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Common.Jvm.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Common.Jvm.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.LiveData/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Arch.Core.Common": "2.2.0.15",
- "Xamarin.AndroidX.Arch.Core.Runtime": "2.2.0.15",
- "Xamarin.AndroidX.Lifecycle.LiveData.Core": "[2.8.7.2, 2.8.8)",
- "Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx": "[2.8.7.2, 2.8.8)",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Coroutines.Core": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.LiveData.Core/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Arch.Core.Common": "2.2.0.15",
- "Xamarin.AndroidX.Arch.Core.Runtime": "2.2.0.15",
- "Xamarin.AndroidX.Lifecycle.Common": "[2.8.7.2, 2.8.8)",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Lifecycle.LiveData.Core": "[2.8.7.2, 2.8.8)",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.Process/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Lifecycle.Runtime": "[2.8.7.2, 2.8.8)",
- "Xamarin.AndroidX.Startup.StartupRuntime": "1.2.0.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Process.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Process.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Process.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.Runtime/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Arch.Core.Common": "2.2.0.15",
- "Xamarin.AndroidX.Lifecycle.Common": "[2.8.7.2, 2.8.8)",
- "Xamarin.AndroidX.Lifecycle.Runtime.Android": "2.8.7.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.Runtime.Android/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Arch.Core.Common": "2.2.0.15",
- "Xamarin.AndroidX.Arch.Core.Runtime": "2.2.0.15",
- "Xamarin.AndroidX.Lifecycle.Common": "[2.8.7.2, 2.8.8)",
- "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller": "1.4.1.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Coroutines.Android": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Android.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Android.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Android.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.Runtime.Ktx/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Lifecycle.Runtime": "[2.8.7.2, 2.8.8)",
- "Xamarin.AndroidX.Lifecycle.Runtime.Ktx.Android": "2.8.7.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.Runtime.Ktx.Android/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Lifecycle.Runtime": "[2.8.7.2, 2.8.8)",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Coroutines.Android": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.Android.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.Android.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.Android.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.ViewModel/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Lifecycle.ViewModel.Android": "2.8.7.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Coroutines.Core": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.ViewModel.Android/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation.Jvm": "1.9.1.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Coroutines.Android": "1.9.0.2",
- "Xamarin.KotlinX.Coroutines.Core.Jvm": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.Android.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.Android.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.Android.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Lifecycle.ViewModel": "[2.8.7.2, 2.8.8)",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Coroutines.Android": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.ViewModelSavedState/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Core.Core.Ktx": "1.15.0.2",
- "Xamarin.AndroidX.Lifecycle.LiveData.Core": "[2.8.7.2, 2.8.8)",
- "Xamarin.AndroidX.Lifecycle.ViewModel": "[2.8.7.2, 2.8.8)",
- "Xamarin.AndroidX.SavedState": "1.2.1.15",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Coroutines.Android": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModelSavedState.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModelSavedState.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModelSavedState.targets": {}
- }
- },
- "Xamarin.AndroidX.Loader/1.1.0.31": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.Lifecycle.LiveData.Core": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.ViewModel": "2.8.7.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Loader.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Loader.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Loader.targets": {}
- }
- },
- "Xamarin.AndroidX.LocalBroadcastManager/1.1.0.19": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.LocalBroadcastManager.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.LocalBroadcastManager.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.LocalBroadcastManager.targets": {}
- }
- },
- "Xamarin.AndroidX.Navigation.Common/2.8.5.1": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection.Ktx": "1.4.5.2",
- "Xamarin.AndroidX.Core.Core.Ktx": "1.15.0.2",
- "Xamarin.AndroidX.Lifecycle.Common": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.Runtime.Ktx": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.ViewModelSavedState": "2.8.7.2",
- "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller": "1.4.1.2",
- "Xamarin.AndroidX.SavedState.SavedState.Ktx": "1.2.1.15",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Serialization.Core": "1.7.3.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Navigation.Common.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Navigation.Common.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Navigation.Common.targets": {}
- }
- },
- "Xamarin.AndroidX.Navigation.Fragment/2.8.5.1": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Fragment.Ktx": "1.8.5.2",
- "Xamarin.AndroidX.Navigation.Runtime": "[2.8.5.1, 2.8.6)",
- "Xamarin.AndroidX.SlidingPaneLayout": "1.2.0.19",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Serialization.Core": "1.7.3.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Navigation.Fragment.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Navigation.Fragment.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Navigation.Fragment.targets": {}
- }
- },
- "Xamarin.AndroidX.Navigation.Runtime/2.8.5.1": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Activity.Ktx": "1.9.3.2",
- "Xamarin.AndroidX.Annotation.Experimental": "1.4.1.8",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Lifecycle.Runtime.Ktx": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx": "2.8.7.2",
- "Xamarin.AndroidX.Navigation.Common": "[2.8.5.1, 2.8.6)",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Serialization.Core": "1.7.3.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Navigation.Runtime.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Navigation.Runtime.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Navigation.Runtime.targets": {}
- }
- },
- "Xamarin.AndroidX.Navigation.UI/2.8.5.1": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation.Experimental": "1.4.1.8",
- "Xamarin.AndroidX.CustomView": "1.1.0.30",
- "Xamarin.AndroidX.DrawerLayout": "1.2.0.15",
- "Xamarin.AndroidX.Navigation.Runtime": "[2.8.5.1, 2.8.6)",
- "Xamarin.AndroidX.Transition": "1.5.1.4",
- "Xamarin.Google.Android.Material": "1.12.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Navigation.UI.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Navigation.UI.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Navigation.UI.targets": {}
- }
- },
- "Xamarin.AndroidX.Print/1.0.0.31": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Print.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Print.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Print.targets": {}
- }
- },
- "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller/1.4.1.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Concurrent.Futures": "1.2.0.5",
- "Xamarin.AndroidX.Startup.StartupRuntime": "1.2.0.2",
- "Xamarin.Google.Guava.ListenableFuture": "1.0.0.26"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.targets": {}
- }
- },
- "Xamarin.AndroidX.RecyclerView/1.3.2.10": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.CustomView": "1.1.0.30",
- "Xamarin.AndroidX.CustomView.PoolingContainer": "1.0.0.17"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.RecyclerView.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.RecyclerView.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.RecyclerView.targets": {}
- }
- },
- "Xamarin.AndroidX.ResourceInspection.Annotation/1.0.1.19": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ResourceInspection.Annotation.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ResourceInspection.Annotation.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.ResourceInspection.Annotation.targets": {}
- }
- },
- "Xamarin.AndroidX.SavedState/1.2.1.15": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Arch.Core.Common": "2.2.0.15",
- "Xamarin.AndroidX.Lifecycle.Common": "2.8.7.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.SavedState.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.SavedState.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.SavedState.targets": {}
- }
- },
- "Xamarin.AndroidX.SavedState.SavedState.Ktx/1.2.1.15": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.SavedState": "[1.2.1.15, 1.2.2)",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.SavedState.SavedState.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.SavedState.SavedState.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.SavedState.SavedState.Ktx.targets": {}
- }
- },
- "Xamarin.AndroidX.Security.SecurityCrypto/1.1.0.2-alpha06": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.7.1.4",
- "Xamarin.AndroidX.Collection": "1.4.0.5",
- "Xamarin.Google.Crypto.Tink.Android": "1.13.0.3"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Security.SecurityCrypto.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Security.SecurityCrypto.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Security.SecurityCrypto.targets": {}
- }
- },
- "Xamarin.AndroidX.SlidingPaneLayout/1.2.0.19": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.CustomView": "1.1.0.30",
- "Xamarin.AndroidX.Transition": "1.5.1.4",
- "Xamarin.AndroidX.Window": "1.3.0.5"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.SlidingPaneLayout.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.SlidingPaneLayout.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.SlidingPaneLayout.targets": {}
- }
- },
- "Xamarin.AndroidX.Startup.StartupRuntime/1.2.0.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Tracing.Tracing": "1.2.0.9"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Startup.StartupRuntime.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Startup.StartupRuntime.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Startup.StartupRuntime.targets": {}
- }
- },
- "Xamarin.AndroidX.SwipeRefreshLayout/1.1.0.24": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.8.2.1",
- "Xamarin.AndroidX.Core": "1.13.1.5",
- "Xamarin.AndroidX.Interpolator": "1.0.0.29"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.SwipeRefreshLayout.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.SwipeRefreshLayout.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.SwipeRefreshLayout.targets": {}
- }
- },
- "Xamarin.AndroidX.Tracing.Tracing/1.2.0.9": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Tracing.Tracing.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Tracing.Tracing.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Tracing.Tracing.targets": {}
- }
- },
- "Xamarin.AndroidX.Transition/1.5.1.4": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.DynamicAnimation": "1.0.0.31",
- "Xamarin.AndroidX.Fragment": "1.8.5.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Transition.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Transition.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Transition.targets": {}
- }
- },
- "Xamarin.AndroidX.VectorDrawable/1.2.0.5": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.VectorDrawable.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.VectorDrawable.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.VectorDrawable.targets": {}
- }
- },
- "Xamarin.AndroidX.VectorDrawable.Animated/1.2.0.5": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.Interpolator": "1.0.0.31",
- "Xamarin.AndroidX.VectorDrawable": "1.2.0.5"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.VectorDrawable.Animated.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.VectorDrawable.Animated.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.VectorDrawable.Animated.targets": {}
- }
- },
- "Xamarin.AndroidX.VersionedParcelable/1.2.0.9": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.VersionedParcelable.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.VersionedParcelable.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.VersionedParcelable.targets": {}
- }
- },
- "Xamarin.AndroidX.ViewPager/1.1.0.1": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.CustomView": "1.1.0.30"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ViewPager.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ViewPager.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.ViewPager.targets": {}
- }
- },
- "Xamarin.AndroidX.ViewPager2/1.1.0.5": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Annotation.Experimental": "1.4.1.8",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.Fragment": "1.8.5.2",
- "Xamarin.AndroidX.RecyclerView": "1.3.2.10"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ViewPager2.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ViewPager2.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.ViewPager2.targets": {}
- }
- },
- "Xamarin.AndroidX.Window/1.3.0.5": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.Window.Extensions.Core.Core": "1.0.0.13",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Coroutines.Android": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Window.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Window.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Window.targets": {}
- }
- },
- "Xamarin.AndroidX.Window.Extensions.Core.Core/1.0.0.13": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Window.Extensions.Core.Core.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Window.Extensions.Core.Core.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Window.Extensions.Core.Core.targets": {}
- }
- },
- "Xamarin.Google.Android.Material/1.12.0.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Activity": "1.9.3.2",
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Annotation.Experimental": "1.4.1.8",
- "Xamarin.AndroidX.AppCompat": "1.7.0.5",
- "Xamarin.AndroidX.CardView": "1.0.0.33",
- "Xamarin.AndroidX.ConstraintLayout": "2.2.0.2",
- "Xamarin.AndroidX.CoordinatorLayout": "1.2.0.19",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.DrawerLayout": "1.2.0.15",
- "Xamarin.AndroidX.DynamicAnimation": "1.0.0.31",
- "Xamarin.AndroidX.Fragment": "1.8.5.2",
- "Xamarin.AndroidX.Lifecycle.Runtime": "2.8.7.2",
- "Xamarin.AndroidX.RecyclerView": "1.3.2.10",
- "Xamarin.AndroidX.ResourceInspection.Annotation": "1.0.1.19",
- "Xamarin.AndroidX.Transition": "1.5.1.4",
- "Xamarin.AndroidX.VectorDrawable": "1.2.0.5",
- "Xamarin.AndroidX.ViewPager2": "1.1.0.5",
- "Xamarin.Google.ErrorProne.Annotations": "2.36.0.1"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.Google.Android.Material.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.Google.Android.Material.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.Google.Android.Material.targets": {}
- }
- },
- "Xamarin.Google.Code.FindBugs.JSR305/3.0.2.18": {
- "type": "package",
- "compile": {
- "lib/net8.0-android34.0/Jsr305Binding.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Jsr305Binding.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.Google.Crypto.Tink.Android/1.16.0.1": {
- "type": "package",
- "dependencies": {
- "GoogleGson": "2.11.0.5",
- "Xamarin.AndroidX.Annotation.Jvm": "1.9.1.2",
- "Xamarin.Google.Code.FindBugs.JSR305": "3.0.2.18",
- "Xamarin.Google.ErrorProne.Annotations": "2.36.0.1"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.Google.Crypto.Tink.Android.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.Google.Crypto.Tink.Android.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.Google.ErrorProne.Annotations/2.36.0.1": {
- "type": "package",
- "compile": {
- "lib/net8.0-android34.0/Xamarin.Google.ErrorProne.Annotations.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.Google.ErrorProne.Annotations.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.Google.Guava.ListenableFuture/1.0.0.26": {
- "type": "package",
- "compile": {
- "lib/net8.0-android34.0/Xamarin.Google.Guava.ListenableFuture.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.Google.Guava.ListenableFuture.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.Jetbrains.Annotations/26.0.1.2": {
- "type": "package",
- "compile": {
- "lib/net8.0-android34.0/Xamarin.Jetbrains.Annotations.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.Jetbrains.Annotations.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.Kotlin.StdLib/2.0.21.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.Jetbrains.Annotations": "26.0.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.Kotlin.StdLib.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.Kotlin.StdLib.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.KotlinX.AtomicFU/0.26.1.1": {
- "type": "package",
- "dependencies": {
- "Xamarin.KotlinX.AtomicFU.Jvm": "0.26.1.1"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.AtomicFU.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.AtomicFU.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.KotlinX.AtomicFU.Jvm/0.26.1.1": {
- "type": "package",
- "dependencies": {
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.AtomicFU.Jvm.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.AtomicFU.Jvm.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.KotlinX.Coroutines.Android/1.9.0.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Coroutines.Core.Jvm": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.Coroutines.Android.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.Coroutines.Android.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.KotlinX.Coroutines.Core/1.9.0.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.KotlinX.Coroutines.Core.Jvm": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.Coroutines.Core.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.Coroutines.Core.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.KotlinX.Coroutines.Core.Jvm/1.9.0.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.Jetbrains.Annotations": "26.0.1.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.Coroutines.Core.Jvm.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.Coroutines.Core.Jvm.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.KotlinX.Serialization.Core/1.7.3.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.KotlinX.Serialization.Core.Jvm": "1.7.3.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.Serialization.Core.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.Serialization.Core.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.KotlinX.Serialization.Core.Jvm/1.7.3.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.Serialization.Core.Jvm.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.Serialization.Core.Jvm.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- }
- },
- "net9.0-android35.0/iossimulator-x64": {
- "FFMpegCore/5.2.0": {
- "type": "package",
- "dependencies": {
- "Instances": "3.0.1",
- "System.Text.Json": "9.0.2"
- },
- "compile": {
- "lib/netstandard2.0/FFMpegCore.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/FFMpegCore.dll": {}
- }
- },
- "GoogleGson/2.11.0.5": {
- "type": "package",
- "dependencies": {
- "Xamarin.Google.ErrorProne.Annotations": "2.36.0.1"
- },
- "compile": {
- "lib/net8.0-android34.0/GoogleGson.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/GoogleGson.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Instances/3.0.1": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/Instances.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/Instances.dll": {}
- },
- "contentFiles": {
- "contentFiles/any/any/_._": {
- "buildAction": "None",
- "codeLanguage": "any",
- "copyToOutput": false
- }
- }
- },
- "Microsoft.Extensions.Configuration/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Configuration.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Configuration.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Configuration.Abstractions/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": {
- "type": "package",
- "compile": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Logging/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Extensions.Options": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Logging.Abstractions/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets": {}
- }
- },
- "Microsoft.Extensions.Logging.Debug/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.Debug.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.Debug.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Options/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Options.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Options.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/Microsoft.Extensions.Options.targets": {}
- }
- },
- "Microsoft.Extensions.Primitives/9.0.0": {
- "type": "package",
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Primitives.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Primitives.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Maui.Controls/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Controls.Build.Tasks": "9.0.51",
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Controls.Xaml": "9.0.51",
- "Microsoft.Maui.Resizetizer": "9.0.51"
- }
- },
- "Microsoft.Maui.Controls.Build.Tasks/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Controls.Xaml": "9.0.51"
- },
- "build": {
- "buildTransitive/netstandard2.0/Microsoft.Maui.Controls.Build.Tasks.props": {},
- "buildTransitive/netstandard2.0/Microsoft.Maui.Controls.Build.Tasks.targets": {}
- }
- },
- "Microsoft.Maui.Controls.Core/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Maui.Core": "9.0.51"
- },
- "compile": {
- "lib/net9.0-android35.0/Microsoft.Maui.Controls.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-android35.0/Microsoft.Maui.Controls.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "resource": {
- "lib/net9.0-android35.0/ar/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ar"
- },
- "lib/net9.0-android35.0/ca/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ca"
- },
- "lib/net9.0-android35.0/cs/Microsoft.Maui.Controls.resources.dll": {
- "locale": "cs"
- },
- "lib/net9.0-android35.0/da/Microsoft.Maui.Controls.resources.dll": {
- "locale": "da"
- },
- "lib/net9.0-android35.0/de/Microsoft.Maui.Controls.resources.dll": {
- "locale": "de"
- },
- "lib/net9.0-android35.0/el/Microsoft.Maui.Controls.resources.dll": {
- "locale": "el"
- },
- "lib/net9.0-android35.0/es/Microsoft.Maui.Controls.resources.dll": {
- "locale": "es"
- },
- "lib/net9.0-android35.0/fi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "fi"
- },
- "lib/net9.0-android35.0/fr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "fr"
- },
- "lib/net9.0-android35.0/he/Microsoft.Maui.Controls.resources.dll": {
- "locale": "he"
- },
- "lib/net9.0-android35.0/hi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hi"
- },
- "lib/net9.0-android35.0/hr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hr"
- },
- "lib/net9.0-android35.0/hu/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hu"
- },
- "lib/net9.0-android35.0/id/Microsoft.Maui.Controls.resources.dll": {
- "locale": "id"
- },
- "lib/net9.0-android35.0/it/Microsoft.Maui.Controls.resources.dll": {
- "locale": "it"
- },
- "lib/net9.0-android35.0/ja/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ja"
- },
- "lib/net9.0-android35.0/ko/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ko"
- },
- "lib/net9.0-android35.0/ms/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ms"
- },
- "lib/net9.0-android35.0/nb/Microsoft.Maui.Controls.resources.dll": {
- "locale": "nb"
- },
- "lib/net9.0-android35.0/nl/Microsoft.Maui.Controls.resources.dll": {
- "locale": "nl"
- },
- "lib/net9.0-android35.0/pl/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pl"
- },
- "lib/net9.0-android35.0/pt-BR/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/net9.0-android35.0/pt/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pt"
- },
- "lib/net9.0-android35.0/ro/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ro"
- },
- "lib/net9.0-android35.0/ru/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ru"
- },
- "lib/net9.0-android35.0/sk/Microsoft.Maui.Controls.resources.dll": {
- "locale": "sk"
- },
- "lib/net9.0-android35.0/sv/Microsoft.Maui.Controls.resources.dll": {
- "locale": "sv"
- },
- "lib/net9.0-android35.0/th/Microsoft.Maui.Controls.resources.dll": {
- "locale": "th"
- },
- "lib/net9.0-android35.0/tr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "tr"
- },
- "lib/net9.0-android35.0/uk/Microsoft.Maui.Controls.resources.dll": {
- "locale": "uk"
- },
- "lib/net9.0-android35.0/vi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "vi"
- },
- "lib/net9.0-android35.0/zh-HK/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-HK"
- },
- "lib/net9.0-android35.0/zh-Hans/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/net9.0-android35.0/zh-Hant/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.Maui.Controls.Xaml/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Core": "9.0.51"
- },
- "compile": {
- "lib/net9.0-android35.0/Microsoft.Maui.Controls.Xaml.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-android35.0/Microsoft.Maui.Controls.Xaml.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Core/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Maui.Essentials": "9.0.51",
- "Microsoft.Maui.Graphics": "9.0.51",
- "Xamarin.Android.Glide": "4.16.0.11",
- "Xamarin.AndroidX.Lifecycle.LiveData": "2.8.7.2",
- "Xamarin.AndroidX.Navigation.Common": "2.8.5.1",
- "Xamarin.AndroidX.Navigation.Fragment": "2.8.5.1",
- "Xamarin.AndroidX.Navigation.Runtime": "2.8.5.1",
- "Xamarin.AndroidX.Navigation.UI": "2.8.5.1",
- "Xamarin.AndroidX.SwipeRefreshLayout": "1.1.0.24",
- "Xamarin.Google.Android.Material": "1.12.0.2"
- },
- "compile": {
- "lib/net9.0-android35.0/Microsoft.Maui.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-android35.0/Microsoft.Maui.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/Microsoft.Maui.Core.props": {},
- "buildTransitive/Microsoft.Maui.Core.targets": {}
- }
- },
- "Microsoft.Maui.Essentials/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Graphics": "9.0.51",
- "Xamarin.AndroidX.Browser": "1.8.0.8",
- "Xamarin.AndroidX.Security.SecurityCrypto": "1.1.0.2-alpha06",
- "Xamarin.Google.Crypto.Tink.Android": "1.16.0.1"
- },
- "compile": {
- "lib/net9.0-android35.0/Microsoft.Maui.Essentials.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-android35.0/Microsoft.Maui.Essentials.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Graphics/9.0.51": {
- "type": "package",
- "compile": {
- "lib/net9.0-android35.0/Microsoft.Maui.Graphics.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-android35.0/Microsoft.Maui.Graphics.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Resizetizer/9.0.51": {
- "type": "package",
- "build": {
- "buildTransitive/Microsoft.Maui.Resizetizer.props": {},
- "buildTransitive/Microsoft.Maui.Resizetizer.targets": {}
- }
- },
- "Microsoft.NET.ILLink.Tasks/9.0.6": {
- "type": "package",
- "build": {
- "build/Microsoft.NET.ILLink.Tasks.props": {}
- }
- },
- "System.Text.Json/9.0.2": {
- "type": "package",
- "compile": {
- "lib/net9.0/System.Text.Json.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/System.Text.Json.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/System.Text.Json.targets": {}
- }
- },
- "Xamarin.Android.Glide/4.16.0.11": {
- "type": "package",
- "dependencies": {
- "Xamarin.Android.Glide.Annotations": "4.16.0.11",
- "Xamarin.Android.Glide.DiskLruCache": "4.16.0.11",
- "Xamarin.Android.Glide.GifDecoder": "4.16.0.11",
- "Xamarin.AndroidX.ExifInterface": "1.3.7.9",
- "Xamarin.AndroidX.Fragment": "1.8.5.2",
- "Xamarin.AndroidX.Tracing.Tracing": "1.2.0.9",
- "Xamarin.AndroidX.VectorDrawable.Animated": "1.2.0.5"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.Android.Glide.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.Android.Glide.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Xamarin.Android.Glide.Annotations/4.16.0.11": {
- "type": "package",
- "compile": {
- "lib/net8.0-android34.0/Xamarin.Android.Glide.Annotations.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.Android.Glide.Annotations.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.Android.Glide.DiskLruCache/4.16.0.11": {
- "type": "package",
- "compile": {
- "lib/net8.0-android34.0/Xamarin.Android.Glide.DiskLruCache.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.Android.Glide.DiskLruCache.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.Android.Glide.GifDecoder/4.16.0.11": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.Android.Glide.GifDecoder.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.Android.Glide.GifDecoder.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Xamarin.AndroidX.Activity/1.9.3.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.Lifecycle.Runtime": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.ViewModel": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.ViewModelSavedState": "2.8.7.2",
- "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller": "1.4.1.2",
- "Xamarin.AndroidX.SavedState": "1.2.1.15",
- "Xamarin.AndroidX.Tracing.Tracing": "1.2.0.9",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Activity.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Activity.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Activity.targets": {}
- }
- },
- "Xamarin.AndroidX.Activity.Ktx/1.9.3.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Activity": "[1.9.3.2, 1.9.4)",
- "Xamarin.AndroidX.Core.Core.Ktx": "1.15.0.2",
- "Xamarin.AndroidX.Lifecycle.Runtime.Ktx": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx": "2.8.7.2",
- "Xamarin.AndroidX.SavedState.SavedState.Ktx": "1.2.1.15",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Activity.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Activity.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Activity.Ktx.targets": {}
- }
- },
- "Xamarin.AndroidX.Annotation/1.9.1.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation.Jvm": "1.9.1.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Annotation.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Annotation.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Annotation.targets": {}
- }
- },
- "Xamarin.AndroidX.Annotation.Experimental/1.4.1.8": {
- "type": "package",
- "dependencies": {
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Annotation.Experimental.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Annotation.Experimental.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Annotation.Experimental.targets": {}
- }
- },
- "Xamarin.AndroidX.Annotation.Jvm/1.9.1.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Annotation.Jvm.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Annotation.Jvm.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Annotation.Jvm.targets": {}
- }
- },
- "Xamarin.AndroidX.AppCompat/1.7.0.5": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Activity": "1.9.3.2",
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.AppCompat.AppCompatResources": "[1.7.0.5, 1.7.1)",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.Core.Core.Ktx": "1.15.0.2",
- "Xamarin.AndroidX.CursorAdapter": "1.0.0.31",
- "Xamarin.AndroidX.DrawerLayout": "1.2.0.15",
- "Xamarin.AndroidX.Emoji2": "1.5.0.3",
- "Xamarin.AndroidX.Emoji2.ViewsHelper": "1.5.0.3",
- "Xamarin.AndroidX.Fragment": "1.8.5.2",
- "Xamarin.AndroidX.Lifecycle.Runtime": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.ViewModel": "2.8.7.2",
- "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller": "1.4.1.2",
- "Xamarin.AndroidX.ResourceInspection.Annotation": "1.0.1.19",
- "Xamarin.AndroidX.SavedState": "1.2.1.15",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.AppCompat.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.AppCompat.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.AppCompat.targets": {}
- }
- },
- "Xamarin.AndroidX.AppCompat.AppCompatResources/1.7.0.5": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.VectorDrawable": "1.2.0.5",
- "Xamarin.AndroidX.VectorDrawable.Animated": "1.2.0.5"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.AppCompat.AppCompatResources.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.AppCompat.AppCompatResources.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.AppCompat.AppCompatResources.targets": {}
- }
- },
- "Xamarin.AndroidX.Arch.Core.Common/2.2.0.15": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Arch.Core.Common.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Arch.Core.Common.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Arch.Core.Common.targets": {}
- }
- },
- "Xamarin.AndroidX.Arch.Core.Runtime/2.2.0.15": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Arch.Core.Common": "[2.2.0.15, 2.2.1)"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Arch.Core.Runtime.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Arch.Core.Runtime.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Arch.Core.Runtime.targets": {}
- }
- },
- "Xamarin.AndroidX.Browser/1.8.0.8": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Annotation.Experimental": "1.4.1.8",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Concurrent.Futures": "1.2.0.5",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.Interpolator": "1.0.0.31",
- "Xamarin.Google.Guava.ListenableFuture": "1.0.0.26"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Browser.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Browser.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Browser.targets": {}
- }
- },
- "Xamarin.AndroidX.CardView/1.0.0.33": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.CardView.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.CardView.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.CardView.targets": {}
- }
- },
- "Xamarin.AndroidX.Collection/1.4.5.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection.Jvm": "1.4.5.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Collection.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Collection.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Collection.targets": {}
- }
- },
- "Xamarin.AndroidX.Collection.Jvm/1.4.5.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation.Jvm": "1.9.1.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Collection.Jvm.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Collection.Jvm.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Collection.Jvm.targets": {}
- }
- },
- "Xamarin.AndroidX.Collection.Ktx/1.4.5.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Collection.Jvm": "[1.4.5.2, 1.4.6)"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Collection.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Collection.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Collection.Ktx.targets": {}
- }
- },
- "Xamarin.AndroidX.Concurrent.Futures/1.2.0.5": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.Google.Guava.ListenableFuture": "1.0.0.26"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Concurrent.Futures.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Concurrent.Futures.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Concurrent.Futures.targets": {}
- }
- },
- "Xamarin.AndroidX.ConstraintLayout/2.2.0.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.AppCompat": "1.7.0.5",
- "Xamarin.AndroidX.ConstraintLayout.Core": "1.1.0.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller": "1.4.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ConstraintLayout.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ConstraintLayout.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.ConstraintLayout.targets": {}
- }
- },
- "Xamarin.AndroidX.ConstraintLayout.Core/1.1.0.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ConstraintLayout.Core.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ConstraintLayout.Core.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.ConstraintLayout.Core.targets": {}
- }
- },
- "Xamarin.AndroidX.CoordinatorLayout/1.2.0.19": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.CustomView": "1.1.0.30"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.CoordinatorLayout.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.CoordinatorLayout.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.CoordinatorLayout.targets": {}
- }
- },
- "Xamarin.AndroidX.Core/1.15.0.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Annotation.Experimental": "1.4.1.8",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Concurrent.Futures": "1.2.0.5",
- "Xamarin.AndroidX.Interpolator": "1.0.0.31",
- "Xamarin.AndroidX.Lifecycle.Runtime": "2.8.7.2",
- "Xamarin.AndroidX.Tracing.Tracing": "1.2.0.9",
- "Xamarin.AndroidX.VersionedParcelable": "1.2.0.9",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Core.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Core.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Core.targets": {}
- }
- },
- "Xamarin.AndroidX.Core.Core.Ktx/1.15.0.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Core.Core.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Core.Core.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Core.Core.Ktx.targets": {}
- }
- },
- "Xamarin.AndroidX.CursorAdapter/1.0.0.31": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.CursorAdapter.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.CursorAdapter.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.CursorAdapter.targets": {}
- }
- },
- "Xamarin.AndroidX.CustomView/1.1.0.30": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.CustomView.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.CustomView.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.CustomView.targets": {}
- }
- },
- "Xamarin.AndroidX.CustomView.PoolingContainer/1.0.0.17": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Core.Core.Ktx": "1.15.0.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.CustomView.PoolingContainer.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.CustomView.PoolingContainer.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.CustomView.PoolingContainer.targets": {}
- }
- },
- "Xamarin.AndroidX.DocumentFile/1.0.1.31": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.DocumentFile.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.DocumentFile.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.DocumentFile.targets": {}
- }
- },
- "Xamarin.AndroidX.DrawerLayout/1.2.0.15": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.CustomView": "1.1.0.30"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.DrawerLayout.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.DrawerLayout.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.DrawerLayout.targets": {}
- }
- },
- "Xamarin.AndroidX.DynamicAnimation/1.0.0.31": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.Legacy.Support.Core.Utils": "1.0.0.31"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.DynamicAnimation.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.DynamicAnimation.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.DynamicAnimation.targets": {}
- }
- },
- "Xamarin.AndroidX.Emoji2/1.5.0.3": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.Lifecycle.Process": "2.8.7.2",
- "Xamarin.AndroidX.Startup.StartupRuntime": "1.2.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Emoji2.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Emoji2.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Emoji2.targets": {}
- }
- },
- "Xamarin.AndroidX.Emoji2.ViewsHelper/1.5.0.3": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.Emoji2": "[1.5.0.3, 1.5.1)"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Emoji2.ViewsHelper.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Emoji2.ViewsHelper.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Emoji2.ViewsHelper.targets": {}
- }
- },
- "Xamarin.AndroidX.ExifInterface/1.3.7.9": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ExifInterface.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ExifInterface.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.ExifInterface.targets": {}
- }
- },
- "Xamarin.AndroidX.Fragment/1.8.5.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Activity": "1.9.3.2",
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Annotation.Experimental": "1.4.1.8",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core.Core.Ktx": "1.15.0.2",
- "Xamarin.AndroidX.Lifecycle.LiveData.Core": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.Runtime": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.ViewModel": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.ViewModelSavedState": "2.8.7.2",
- "Xamarin.AndroidX.Loader": "1.1.0.31",
- "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller": "1.4.1.2",
- "Xamarin.AndroidX.SavedState": "1.2.1.15",
- "Xamarin.AndroidX.ViewPager": "1.1.0.1",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Fragment.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Fragment.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Fragment.targets": {}
- }
- },
- "Xamarin.AndroidX.Fragment.Ktx/1.8.5.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Activity.Ktx": "1.9.3.2",
- "Xamarin.AndroidX.Collection.Ktx": "1.4.5.2",
- "Xamarin.AndroidX.Core.Core.Ktx": "1.15.0.2",
- "Xamarin.AndroidX.Fragment": "[1.8.5.2, 1.8.6)",
- "Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx": "2.8.7.2",
- "Xamarin.AndroidX.SavedState.SavedState.Ktx": "1.2.1.15",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Fragment.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Fragment.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Fragment.Ktx.targets": {}
- }
- },
- "Xamarin.AndroidX.Interpolator/1.0.0.31": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Interpolator.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Interpolator.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Interpolator.targets": {}
- }
- },
- "Xamarin.AndroidX.Legacy.Support.Core.Utils/1.0.0.31": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.DocumentFile": "1.0.1.31",
- "Xamarin.AndroidX.Loader": "1.1.0.31",
- "Xamarin.AndroidX.LocalBroadcastManager": "1.1.0.19",
- "Xamarin.AndroidX.Print": "1.0.0.31"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Legacy.Support.Core.Utils.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Legacy.Support.Core.Utils.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Legacy.Support.Core.Utils.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.Common/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Lifecycle.Common.Jvm": "2.8.7.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.AtomicFU": "0.26.1.1",
- "Xamarin.KotlinX.Coroutines.Core": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Common.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Common.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Common.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.Common.Jvm/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation.Jvm": "1.9.1.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Coroutines.Core": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Common.Jvm.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Common.Jvm.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Common.Jvm.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.LiveData/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Arch.Core.Common": "2.2.0.15",
- "Xamarin.AndroidX.Arch.Core.Runtime": "2.2.0.15",
- "Xamarin.AndroidX.Lifecycle.LiveData.Core": "[2.8.7.2, 2.8.8)",
- "Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx": "[2.8.7.2, 2.8.8)",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Coroutines.Core": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.LiveData.Core/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Arch.Core.Common": "2.2.0.15",
- "Xamarin.AndroidX.Arch.Core.Runtime": "2.2.0.15",
- "Xamarin.AndroidX.Lifecycle.Common": "[2.8.7.2, 2.8.8)",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Lifecycle.LiveData.Core": "[2.8.7.2, 2.8.8)",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.Process/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Lifecycle.Runtime": "[2.8.7.2, 2.8.8)",
- "Xamarin.AndroidX.Startup.StartupRuntime": "1.2.0.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Process.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Process.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Process.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.Runtime/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Arch.Core.Common": "2.2.0.15",
- "Xamarin.AndroidX.Lifecycle.Common": "[2.8.7.2, 2.8.8)",
- "Xamarin.AndroidX.Lifecycle.Runtime.Android": "2.8.7.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.Runtime.Android/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Arch.Core.Common": "2.2.0.15",
- "Xamarin.AndroidX.Arch.Core.Runtime": "2.2.0.15",
- "Xamarin.AndroidX.Lifecycle.Common": "[2.8.7.2, 2.8.8)",
- "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller": "1.4.1.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Coroutines.Android": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Android.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Android.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Android.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.Runtime.Ktx/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Lifecycle.Runtime": "[2.8.7.2, 2.8.8)",
- "Xamarin.AndroidX.Lifecycle.Runtime.Ktx.Android": "2.8.7.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.Runtime.Ktx.Android/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Lifecycle.Runtime": "[2.8.7.2, 2.8.8)",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Coroutines.Android": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.Android.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.Android.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.Android.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.ViewModel/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Lifecycle.ViewModel.Android": "2.8.7.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Coroutines.Core": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.ViewModel.Android/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation.Jvm": "1.9.1.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Coroutines.Android": "1.9.0.2",
- "Xamarin.KotlinX.Coroutines.Core.Jvm": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.Android.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.Android.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.Android.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Lifecycle.ViewModel": "[2.8.7.2, 2.8.8)",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Coroutines.Android": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.ViewModelSavedState/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Core.Core.Ktx": "1.15.0.2",
- "Xamarin.AndroidX.Lifecycle.LiveData.Core": "[2.8.7.2, 2.8.8)",
- "Xamarin.AndroidX.Lifecycle.ViewModel": "[2.8.7.2, 2.8.8)",
- "Xamarin.AndroidX.SavedState": "1.2.1.15",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Coroutines.Android": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModelSavedState.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModelSavedState.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModelSavedState.targets": {}
- }
- },
- "Xamarin.AndroidX.Loader/1.1.0.31": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.Lifecycle.LiveData.Core": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.ViewModel": "2.8.7.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Loader.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Loader.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Loader.targets": {}
- }
- },
- "Xamarin.AndroidX.LocalBroadcastManager/1.1.0.19": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.LocalBroadcastManager.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.LocalBroadcastManager.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.LocalBroadcastManager.targets": {}
- }
- },
- "Xamarin.AndroidX.Navigation.Common/2.8.5.1": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection.Ktx": "1.4.5.2",
- "Xamarin.AndroidX.Core.Core.Ktx": "1.15.0.2",
- "Xamarin.AndroidX.Lifecycle.Common": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.Runtime.Ktx": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.ViewModelSavedState": "2.8.7.2",
- "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller": "1.4.1.2",
- "Xamarin.AndroidX.SavedState.SavedState.Ktx": "1.2.1.15",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Serialization.Core": "1.7.3.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Navigation.Common.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Navigation.Common.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Navigation.Common.targets": {}
- }
- },
- "Xamarin.AndroidX.Navigation.Fragment/2.8.5.1": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Fragment.Ktx": "1.8.5.2",
- "Xamarin.AndroidX.Navigation.Runtime": "[2.8.5.1, 2.8.6)",
- "Xamarin.AndroidX.SlidingPaneLayout": "1.2.0.19",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Serialization.Core": "1.7.3.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Navigation.Fragment.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Navigation.Fragment.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Navigation.Fragment.targets": {}
- }
- },
- "Xamarin.AndroidX.Navigation.Runtime/2.8.5.1": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Activity.Ktx": "1.9.3.2",
- "Xamarin.AndroidX.Annotation.Experimental": "1.4.1.8",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Lifecycle.Runtime.Ktx": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx": "2.8.7.2",
- "Xamarin.AndroidX.Navigation.Common": "[2.8.5.1, 2.8.6)",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Serialization.Core": "1.7.3.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Navigation.Runtime.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Navigation.Runtime.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Navigation.Runtime.targets": {}
- }
- },
- "Xamarin.AndroidX.Navigation.UI/2.8.5.1": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation.Experimental": "1.4.1.8",
- "Xamarin.AndroidX.CustomView": "1.1.0.30",
- "Xamarin.AndroidX.DrawerLayout": "1.2.0.15",
- "Xamarin.AndroidX.Navigation.Runtime": "[2.8.5.1, 2.8.6)",
- "Xamarin.AndroidX.Transition": "1.5.1.4",
- "Xamarin.Google.Android.Material": "1.12.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Navigation.UI.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Navigation.UI.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Navigation.UI.targets": {}
- }
- },
- "Xamarin.AndroidX.Print/1.0.0.31": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Print.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Print.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Print.targets": {}
- }
- },
- "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller/1.4.1.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Concurrent.Futures": "1.2.0.5",
- "Xamarin.AndroidX.Startup.StartupRuntime": "1.2.0.2",
- "Xamarin.Google.Guava.ListenableFuture": "1.0.0.26"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.targets": {}
- }
- },
- "Xamarin.AndroidX.RecyclerView/1.3.2.10": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.CustomView": "1.1.0.30",
- "Xamarin.AndroidX.CustomView.PoolingContainer": "1.0.0.17"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.RecyclerView.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.RecyclerView.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.RecyclerView.targets": {}
- }
- },
- "Xamarin.AndroidX.ResourceInspection.Annotation/1.0.1.19": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ResourceInspection.Annotation.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ResourceInspection.Annotation.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.ResourceInspection.Annotation.targets": {}
- }
- },
- "Xamarin.AndroidX.SavedState/1.2.1.15": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Arch.Core.Common": "2.2.0.15",
- "Xamarin.AndroidX.Lifecycle.Common": "2.8.7.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.SavedState.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.SavedState.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.SavedState.targets": {}
- }
- },
- "Xamarin.AndroidX.SavedState.SavedState.Ktx/1.2.1.15": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.SavedState": "[1.2.1.15, 1.2.2)",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.SavedState.SavedState.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.SavedState.SavedState.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.SavedState.SavedState.Ktx.targets": {}
- }
- },
- "Xamarin.AndroidX.Security.SecurityCrypto/1.1.0.2-alpha06": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.7.1.4",
- "Xamarin.AndroidX.Collection": "1.4.0.5",
- "Xamarin.Google.Crypto.Tink.Android": "1.13.0.3"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Security.SecurityCrypto.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Security.SecurityCrypto.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Security.SecurityCrypto.targets": {}
- }
- },
- "Xamarin.AndroidX.SlidingPaneLayout/1.2.0.19": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.CustomView": "1.1.0.30",
- "Xamarin.AndroidX.Transition": "1.5.1.4",
- "Xamarin.AndroidX.Window": "1.3.0.5"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.SlidingPaneLayout.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.SlidingPaneLayout.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.SlidingPaneLayout.targets": {}
- }
- },
- "Xamarin.AndroidX.Startup.StartupRuntime/1.2.0.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Tracing.Tracing": "1.2.0.9"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Startup.StartupRuntime.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Startup.StartupRuntime.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Startup.StartupRuntime.targets": {}
- }
- },
- "Xamarin.AndroidX.SwipeRefreshLayout/1.1.0.24": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.8.2.1",
- "Xamarin.AndroidX.Core": "1.13.1.5",
- "Xamarin.AndroidX.Interpolator": "1.0.0.29"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.SwipeRefreshLayout.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.SwipeRefreshLayout.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.SwipeRefreshLayout.targets": {}
- }
- },
- "Xamarin.AndroidX.Tracing.Tracing/1.2.0.9": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Tracing.Tracing.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Tracing.Tracing.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Tracing.Tracing.targets": {}
- }
- },
- "Xamarin.AndroidX.Transition/1.5.1.4": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.DynamicAnimation": "1.0.0.31",
- "Xamarin.AndroidX.Fragment": "1.8.5.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Transition.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Transition.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Transition.targets": {}
- }
- },
- "Xamarin.AndroidX.VectorDrawable/1.2.0.5": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.VectorDrawable.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.VectorDrawable.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.VectorDrawable.targets": {}
- }
- },
- "Xamarin.AndroidX.VectorDrawable.Animated/1.2.0.5": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.Interpolator": "1.0.0.31",
- "Xamarin.AndroidX.VectorDrawable": "1.2.0.5"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.VectorDrawable.Animated.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.VectorDrawable.Animated.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.VectorDrawable.Animated.targets": {}
- }
- },
- "Xamarin.AndroidX.VersionedParcelable/1.2.0.9": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.VersionedParcelable.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.VersionedParcelable.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.VersionedParcelable.targets": {}
- }
- },
- "Xamarin.AndroidX.ViewPager/1.1.0.1": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.CustomView": "1.1.0.30"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ViewPager.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ViewPager.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.ViewPager.targets": {}
- }
- },
- "Xamarin.AndroidX.ViewPager2/1.1.0.5": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Annotation.Experimental": "1.4.1.8",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.Fragment": "1.8.5.2",
- "Xamarin.AndroidX.RecyclerView": "1.3.2.10"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ViewPager2.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ViewPager2.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.ViewPager2.targets": {}
- }
- },
- "Xamarin.AndroidX.Window/1.3.0.5": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.Window.Extensions.Core.Core": "1.0.0.13",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Coroutines.Android": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Window.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Window.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Window.targets": {}
- }
- },
- "Xamarin.AndroidX.Window.Extensions.Core.Core/1.0.0.13": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Window.Extensions.Core.Core.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Window.Extensions.Core.Core.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Window.Extensions.Core.Core.targets": {}
- }
- },
- "Xamarin.Google.Android.Material/1.12.0.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Activity": "1.9.3.2",
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Annotation.Experimental": "1.4.1.8",
- "Xamarin.AndroidX.AppCompat": "1.7.0.5",
- "Xamarin.AndroidX.CardView": "1.0.0.33",
- "Xamarin.AndroidX.ConstraintLayout": "2.2.0.2",
- "Xamarin.AndroidX.CoordinatorLayout": "1.2.0.19",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.DrawerLayout": "1.2.0.15",
- "Xamarin.AndroidX.DynamicAnimation": "1.0.0.31",
- "Xamarin.AndroidX.Fragment": "1.8.5.2",
- "Xamarin.AndroidX.Lifecycle.Runtime": "2.8.7.2",
- "Xamarin.AndroidX.RecyclerView": "1.3.2.10",
- "Xamarin.AndroidX.ResourceInspection.Annotation": "1.0.1.19",
- "Xamarin.AndroidX.Transition": "1.5.1.4",
- "Xamarin.AndroidX.VectorDrawable": "1.2.0.5",
- "Xamarin.AndroidX.ViewPager2": "1.1.0.5",
- "Xamarin.Google.ErrorProne.Annotations": "2.36.0.1"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.Google.Android.Material.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.Google.Android.Material.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.Google.Android.Material.targets": {}
- }
- },
- "Xamarin.Google.Code.FindBugs.JSR305/3.0.2.18": {
- "type": "package",
- "compile": {
- "lib/net8.0-android34.0/Jsr305Binding.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Jsr305Binding.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.Google.Crypto.Tink.Android/1.16.0.1": {
- "type": "package",
- "dependencies": {
- "GoogleGson": "2.11.0.5",
- "Xamarin.AndroidX.Annotation.Jvm": "1.9.1.2",
- "Xamarin.Google.Code.FindBugs.JSR305": "3.0.2.18",
- "Xamarin.Google.ErrorProne.Annotations": "2.36.0.1"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.Google.Crypto.Tink.Android.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.Google.Crypto.Tink.Android.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.Google.ErrorProne.Annotations/2.36.0.1": {
- "type": "package",
- "compile": {
- "lib/net8.0-android34.0/Xamarin.Google.ErrorProne.Annotations.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.Google.ErrorProne.Annotations.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.Google.Guava.ListenableFuture/1.0.0.26": {
- "type": "package",
- "compile": {
- "lib/net8.0-android34.0/Xamarin.Google.Guava.ListenableFuture.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.Google.Guava.ListenableFuture.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.Jetbrains.Annotations/26.0.1.2": {
- "type": "package",
- "compile": {
- "lib/net8.0-android34.0/Xamarin.Jetbrains.Annotations.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.Jetbrains.Annotations.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.Kotlin.StdLib/2.0.21.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.Jetbrains.Annotations": "26.0.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.Kotlin.StdLib.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.Kotlin.StdLib.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.KotlinX.AtomicFU/0.26.1.1": {
- "type": "package",
- "dependencies": {
- "Xamarin.KotlinX.AtomicFU.Jvm": "0.26.1.1"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.AtomicFU.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.AtomicFU.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.KotlinX.AtomicFU.Jvm/0.26.1.1": {
- "type": "package",
- "dependencies": {
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.AtomicFU.Jvm.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.AtomicFU.Jvm.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.KotlinX.Coroutines.Android/1.9.0.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Coroutines.Core.Jvm": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.Coroutines.Android.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.Coroutines.Android.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.KotlinX.Coroutines.Core/1.9.0.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.KotlinX.Coroutines.Core.Jvm": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.Coroutines.Core.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.Coroutines.Core.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.KotlinX.Coroutines.Core.Jvm/1.9.0.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.Jetbrains.Annotations": "26.0.1.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.Coroutines.Core.Jvm.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.Coroutines.Core.Jvm.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.KotlinX.Serialization.Core/1.7.3.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.KotlinX.Serialization.Core.Jvm": "1.7.3.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.Serialization.Core.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.Serialization.Core.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.KotlinX.Serialization.Core.Jvm/1.7.3.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.Serialization.Core.Jvm.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.Serialization.Core.Jvm.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- }
- },
- "net9.0-android35.0/maccatalyst-arm64": {
- "FFMpegCore/5.2.0": {
- "type": "package",
- "dependencies": {
- "Instances": "3.0.1",
- "System.Text.Json": "9.0.2"
- },
- "compile": {
- "lib/netstandard2.0/FFMpegCore.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/FFMpegCore.dll": {}
- }
- },
- "GoogleGson/2.11.0.5": {
- "type": "package",
- "dependencies": {
- "Xamarin.Google.ErrorProne.Annotations": "2.36.0.1"
- },
- "compile": {
- "lib/net8.0-android34.0/GoogleGson.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/GoogleGson.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Instances/3.0.1": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/Instances.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/Instances.dll": {}
- },
- "contentFiles": {
- "contentFiles/any/any/_._": {
- "buildAction": "None",
- "codeLanguage": "any",
- "copyToOutput": false
- }
- }
- },
- "Microsoft.Extensions.Configuration/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Configuration.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Configuration.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Configuration.Abstractions/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": {
- "type": "package",
- "compile": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Logging/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Extensions.Options": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Logging.Abstractions/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets": {}
- }
- },
- "Microsoft.Extensions.Logging.Debug/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.Debug.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.Debug.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Options/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Options.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Options.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/Microsoft.Extensions.Options.targets": {}
- }
- },
- "Microsoft.Extensions.Primitives/9.0.0": {
- "type": "package",
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Primitives.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Primitives.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Maui.Controls/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Controls.Build.Tasks": "9.0.51",
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Controls.Xaml": "9.0.51",
- "Microsoft.Maui.Resizetizer": "9.0.51"
- }
- },
- "Microsoft.Maui.Controls.Build.Tasks/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Controls.Xaml": "9.0.51"
- },
- "build": {
- "buildTransitive/netstandard2.0/Microsoft.Maui.Controls.Build.Tasks.props": {},
- "buildTransitive/netstandard2.0/Microsoft.Maui.Controls.Build.Tasks.targets": {}
- }
- },
- "Microsoft.Maui.Controls.Core/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Maui.Core": "9.0.51"
- },
- "compile": {
- "lib/net9.0-android35.0/Microsoft.Maui.Controls.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-android35.0/Microsoft.Maui.Controls.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "resource": {
- "lib/net9.0-android35.0/ar/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ar"
- },
- "lib/net9.0-android35.0/ca/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ca"
- },
- "lib/net9.0-android35.0/cs/Microsoft.Maui.Controls.resources.dll": {
- "locale": "cs"
- },
- "lib/net9.0-android35.0/da/Microsoft.Maui.Controls.resources.dll": {
- "locale": "da"
- },
- "lib/net9.0-android35.0/de/Microsoft.Maui.Controls.resources.dll": {
- "locale": "de"
- },
- "lib/net9.0-android35.0/el/Microsoft.Maui.Controls.resources.dll": {
- "locale": "el"
- },
- "lib/net9.0-android35.0/es/Microsoft.Maui.Controls.resources.dll": {
- "locale": "es"
- },
- "lib/net9.0-android35.0/fi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "fi"
- },
- "lib/net9.0-android35.0/fr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "fr"
- },
- "lib/net9.0-android35.0/he/Microsoft.Maui.Controls.resources.dll": {
- "locale": "he"
- },
- "lib/net9.0-android35.0/hi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hi"
- },
- "lib/net9.0-android35.0/hr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hr"
- },
- "lib/net9.0-android35.0/hu/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hu"
- },
- "lib/net9.0-android35.0/id/Microsoft.Maui.Controls.resources.dll": {
- "locale": "id"
- },
- "lib/net9.0-android35.0/it/Microsoft.Maui.Controls.resources.dll": {
- "locale": "it"
- },
- "lib/net9.0-android35.0/ja/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ja"
- },
- "lib/net9.0-android35.0/ko/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ko"
- },
- "lib/net9.0-android35.0/ms/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ms"
- },
- "lib/net9.0-android35.0/nb/Microsoft.Maui.Controls.resources.dll": {
- "locale": "nb"
- },
- "lib/net9.0-android35.0/nl/Microsoft.Maui.Controls.resources.dll": {
- "locale": "nl"
- },
- "lib/net9.0-android35.0/pl/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pl"
- },
- "lib/net9.0-android35.0/pt-BR/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/net9.0-android35.0/pt/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pt"
- },
- "lib/net9.0-android35.0/ro/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ro"
- },
- "lib/net9.0-android35.0/ru/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ru"
- },
- "lib/net9.0-android35.0/sk/Microsoft.Maui.Controls.resources.dll": {
- "locale": "sk"
- },
- "lib/net9.0-android35.0/sv/Microsoft.Maui.Controls.resources.dll": {
- "locale": "sv"
- },
- "lib/net9.0-android35.0/th/Microsoft.Maui.Controls.resources.dll": {
- "locale": "th"
- },
- "lib/net9.0-android35.0/tr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "tr"
- },
- "lib/net9.0-android35.0/uk/Microsoft.Maui.Controls.resources.dll": {
- "locale": "uk"
- },
- "lib/net9.0-android35.0/vi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "vi"
- },
- "lib/net9.0-android35.0/zh-HK/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-HK"
- },
- "lib/net9.0-android35.0/zh-Hans/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/net9.0-android35.0/zh-Hant/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.Maui.Controls.Xaml/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Core": "9.0.51"
- },
- "compile": {
- "lib/net9.0-android35.0/Microsoft.Maui.Controls.Xaml.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-android35.0/Microsoft.Maui.Controls.Xaml.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Core/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Maui.Essentials": "9.0.51",
- "Microsoft.Maui.Graphics": "9.0.51",
- "Xamarin.Android.Glide": "4.16.0.11",
- "Xamarin.AndroidX.Lifecycle.LiveData": "2.8.7.2",
- "Xamarin.AndroidX.Navigation.Common": "2.8.5.1",
- "Xamarin.AndroidX.Navigation.Fragment": "2.8.5.1",
- "Xamarin.AndroidX.Navigation.Runtime": "2.8.5.1",
- "Xamarin.AndroidX.Navigation.UI": "2.8.5.1",
- "Xamarin.AndroidX.SwipeRefreshLayout": "1.1.0.24",
- "Xamarin.Google.Android.Material": "1.12.0.2"
- },
- "compile": {
- "lib/net9.0-android35.0/Microsoft.Maui.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-android35.0/Microsoft.Maui.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/Microsoft.Maui.Core.props": {},
- "buildTransitive/Microsoft.Maui.Core.targets": {}
- }
- },
- "Microsoft.Maui.Essentials/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Graphics": "9.0.51",
- "Xamarin.AndroidX.Browser": "1.8.0.8",
- "Xamarin.AndroidX.Security.SecurityCrypto": "1.1.0.2-alpha06",
- "Xamarin.Google.Crypto.Tink.Android": "1.16.0.1"
- },
- "compile": {
- "lib/net9.0-android35.0/Microsoft.Maui.Essentials.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-android35.0/Microsoft.Maui.Essentials.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Graphics/9.0.51": {
- "type": "package",
- "compile": {
- "lib/net9.0-android35.0/Microsoft.Maui.Graphics.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-android35.0/Microsoft.Maui.Graphics.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Resizetizer/9.0.51": {
- "type": "package",
- "build": {
- "buildTransitive/Microsoft.Maui.Resizetizer.props": {},
- "buildTransitive/Microsoft.Maui.Resizetizer.targets": {}
- }
- },
- "Microsoft.NET.ILLink.Tasks/9.0.6": {
- "type": "package",
- "build": {
- "build/Microsoft.NET.ILLink.Tasks.props": {}
- }
- },
- "System.Text.Json/9.0.2": {
- "type": "package",
- "compile": {
- "lib/net9.0/System.Text.Json.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/System.Text.Json.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/System.Text.Json.targets": {}
- }
- },
- "Xamarin.Android.Glide/4.16.0.11": {
- "type": "package",
- "dependencies": {
- "Xamarin.Android.Glide.Annotations": "4.16.0.11",
- "Xamarin.Android.Glide.DiskLruCache": "4.16.0.11",
- "Xamarin.Android.Glide.GifDecoder": "4.16.0.11",
- "Xamarin.AndroidX.ExifInterface": "1.3.7.9",
- "Xamarin.AndroidX.Fragment": "1.8.5.2",
- "Xamarin.AndroidX.Tracing.Tracing": "1.2.0.9",
- "Xamarin.AndroidX.VectorDrawable.Animated": "1.2.0.5"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.Android.Glide.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.Android.Glide.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Xamarin.Android.Glide.Annotations/4.16.0.11": {
- "type": "package",
- "compile": {
- "lib/net8.0-android34.0/Xamarin.Android.Glide.Annotations.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.Android.Glide.Annotations.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.Android.Glide.DiskLruCache/4.16.0.11": {
- "type": "package",
- "compile": {
- "lib/net8.0-android34.0/Xamarin.Android.Glide.DiskLruCache.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.Android.Glide.DiskLruCache.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.Android.Glide.GifDecoder/4.16.0.11": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.Android.Glide.GifDecoder.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.Android.Glide.GifDecoder.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Xamarin.AndroidX.Activity/1.9.3.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.Lifecycle.Runtime": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.ViewModel": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.ViewModelSavedState": "2.8.7.2",
- "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller": "1.4.1.2",
- "Xamarin.AndroidX.SavedState": "1.2.1.15",
- "Xamarin.AndroidX.Tracing.Tracing": "1.2.0.9",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Activity.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Activity.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Activity.targets": {}
- }
- },
- "Xamarin.AndroidX.Activity.Ktx/1.9.3.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Activity": "[1.9.3.2, 1.9.4)",
- "Xamarin.AndroidX.Core.Core.Ktx": "1.15.0.2",
- "Xamarin.AndroidX.Lifecycle.Runtime.Ktx": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx": "2.8.7.2",
- "Xamarin.AndroidX.SavedState.SavedState.Ktx": "1.2.1.15",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Activity.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Activity.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Activity.Ktx.targets": {}
- }
- },
- "Xamarin.AndroidX.Annotation/1.9.1.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation.Jvm": "1.9.1.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Annotation.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Annotation.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Annotation.targets": {}
- }
- },
- "Xamarin.AndroidX.Annotation.Experimental/1.4.1.8": {
- "type": "package",
- "dependencies": {
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Annotation.Experimental.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Annotation.Experimental.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Annotation.Experimental.targets": {}
- }
- },
- "Xamarin.AndroidX.Annotation.Jvm/1.9.1.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Annotation.Jvm.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Annotation.Jvm.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Annotation.Jvm.targets": {}
- }
- },
- "Xamarin.AndroidX.AppCompat/1.7.0.5": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Activity": "1.9.3.2",
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.AppCompat.AppCompatResources": "[1.7.0.5, 1.7.1)",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.Core.Core.Ktx": "1.15.0.2",
- "Xamarin.AndroidX.CursorAdapter": "1.0.0.31",
- "Xamarin.AndroidX.DrawerLayout": "1.2.0.15",
- "Xamarin.AndroidX.Emoji2": "1.5.0.3",
- "Xamarin.AndroidX.Emoji2.ViewsHelper": "1.5.0.3",
- "Xamarin.AndroidX.Fragment": "1.8.5.2",
- "Xamarin.AndroidX.Lifecycle.Runtime": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.ViewModel": "2.8.7.2",
- "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller": "1.4.1.2",
- "Xamarin.AndroidX.ResourceInspection.Annotation": "1.0.1.19",
- "Xamarin.AndroidX.SavedState": "1.2.1.15",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.AppCompat.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.AppCompat.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.AppCompat.targets": {}
- }
- },
- "Xamarin.AndroidX.AppCompat.AppCompatResources/1.7.0.5": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.VectorDrawable": "1.2.0.5",
- "Xamarin.AndroidX.VectorDrawable.Animated": "1.2.0.5"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.AppCompat.AppCompatResources.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.AppCompat.AppCompatResources.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.AppCompat.AppCompatResources.targets": {}
- }
- },
- "Xamarin.AndroidX.Arch.Core.Common/2.2.0.15": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Arch.Core.Common.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Arch.Core.Common.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Arch.Core.Common.targets": {}
- }
- },
- "Xamarin.AndroidX.Arch.Core.Runtime/2.2.0.15": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Arch.Core.Common": "[2.2.0.15, 2.2.1)"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Arch.Core.Runtime.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Arch.Core.Runtime.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Arch.Core.Runtime.targets": {}
- }
- },
- "Xamarin.AndroidX.Browser/1.8.0.8": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Annotation.Experimental": "1.4.1.8",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Concurrent.Futures": "1.2.0.5",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.Interpolator": "1.0.0.31",
- "Xamarin.Google.Guava.ListenableFuture": "1.0.0.26"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Browser.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Browser.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Browser.targets": {}
- }
- },
- "Xamarin.AndroidX.CardView/1.0.0.33": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.CardView.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.CardView.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.CardView.targets": {}
- }
- },
- "Xamarin.AndroidX.Collection/1.4.5.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection.Jvm": "1.4.5.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Collection.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Collection.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Collection.targets": {}
- }
- },
- "Xamarin.AndroidX.Collection.Jvm/1.4.5.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation.Jvm": "1.9.1.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Collection.Jvm.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Collection.Jvm.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Collection.Jvm.targets": {}
- }
- },
- "Xamarin.AndroidX.Collection.Ktx/1.4.5.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Collection.Jvm": "[1.4.5.2, 1.4.6)"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Collection.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Collection.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Collection.Ktx.targets": {}
- }
- },
- "Xamarin.AndroidX.Concurrent.Futures/1.2.0.5": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.Google.Guava.ListenableFuture": "1.0.0.26"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Concurrent.Futures.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Concurrent.Futures.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Concurrent.Futures.targets": {}
- }
- },
- "Xamarin.AndroidX.ConstraintLayout/2.2.0.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.AppCompat": "1.7.0.5",
- "Xamarin.AndroidX.ConstraintLayout.Core": "1.1.0.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller": "1.4.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ConstraintLayout.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ConstraintLayout.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.ConstraintLayout.targets": {}
- }
- },
- "Xamarin.AndroidX.ConstraintLayout.Core/1.1.0.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ConstraintLayout.Core.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ConstraintLayout.Core.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.ConstraintLayout.Core.targets": {}
- }
- },
- "Xamarin.AndroidX.CoordinatorLayout/1.2.0.19": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.CustomView": "1.1.0.30"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.CoordinatorLayout.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.CoordinatorLayout.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.CoordinatorLayout.targets": {}
- }
- },
- "Xamarin.AndroidX.Core/1.15.0.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Annotation.Experimental": "1.4.1.8",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Concurrent.Futures": "1.2.0.5",
- "Xamarin.AndroidX.Interpolator": "1.0.0.31",
- "Xamarin.AndroidX.Lifecycle.Runtime": "2.8.7.2",
- "Xamarin.AndroidX.Tracing.Tracing": "1.2.0.9",
- "Xamarin.AndroidX.VersionedParcelable": "1.2.0.9",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Core.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Core.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Core.targets": {}
- }
- },
- "Xamarin.AndroidX.Core.Core.Ktx/1.15.0.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Core.Core.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Core.Core.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Core.Core.Ktx.targets": {}
- }
- },
- "Xamarin.AndroidX.CursorAdapter/1.0.0.31": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.CursorAdapter.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.CursorAdapter.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.CursorAdapter.targets": {}
- }
- },
- "Xamarin.AndroidX.CustomView/1.1.0.30": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.CustomView.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.CustomView.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.CustomView.targets": {}
- }
- },
- "Xamarin.AndroidX.CustomView.PoolingContainer/1.0.0.17": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Core.Core.Ktx": "1.15.0.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.CustomView.PoolingContainer.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.CustomView.PoolingContainer.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.CustomView.PoolingContainer.targets": {}
- }
- },
- "Xamarin.AndroidX.DocumentFile/1.0.1.31": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.DocumentFile.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.DocumentFile.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.DocumentFile.targets": {}
- }
- },
- "Xamarin.AndroidX.DrawerLayout/1.2.0.15": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.CustomView": "1.1.0.30"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.DrawerLayout.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.DrawerLayout.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.DrawerLayout.targets": {}
- }
- },
- "Xamarin.AndroidX.DynamicAnimation/1.0.0.31": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.Legacy.Support.Core.Utils": "1.0.0.31"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.DynamicAnimation.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.DynamicAnimation.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.DynamicAnimation.targets": {}
- }
- },
- "Xamarin.AndroidX.Emoji2/1.5.0.3": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.Lifecycle.Process": "2.8.7.2",
- "Xamarin.AndroidX.Startup.StartupRuntime": "1.2.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Emoji2.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Emoji2.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Emoji2.targets": {}
- }
- },
- "Xamarin.AndroidX.Emoji2.ViewsHelper/1.5.0.3": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.Emoji2": "[1.5.0.3, 1.5.1)"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Emoji2.ViewsHelper.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Emoji2.ViewsHelper.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Emoji2.ViewsHelper.targets": {}
- }
- },
- "Xamarin.AndroidX.ExifInterface/1.3.7.9": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ExifInterface.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ExifInterface.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.ExifInterface.targets": {}
- }
- },
- "Xamarin.AndroidX.Fragment/1.8.5.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Activity": "1.9.3.2",
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Annotation.Experimental": "1.4.1.8",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core.Core.Ktx": "1.15.0.2",
- "Xamarin.AndroidX.Lifecycle.LiveData.Core": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.Runtime": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.ViewModel": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.ViewModelSavedState": "2.8.7.2",
- "Xamarin.AndroidX.Loader": "1.1.0.31",
- "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller": "1.4.1.2",
- "Xamarin.AndroidX.SavedState": "1.2.1.15",
- "Xamarin.AndroidX.ViewPager": "1.1.0.1",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Fragment.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Fragment.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Fragment.targets": {}
- }
- },
- "Xamarin.AndroidX.Fragment.Ktx/1.8.5.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Activity.Ktx": "1.9.3.2",
- "Xamarin.AndroidX.Collection.Ktx": "1.4.5.2",
- "Xamarin.AndroidX.Core.Core.Ktx": "1.15.0.2",
- "Xamarin.AndroidX.Fragment": "[1.8.5.2, 1.8.6)",
- "Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx": "2.8.7.2",
- "Xamarin.AndroidX.SavedState.SavedState.Ktx": "1.2.1.15",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Fragment.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Fragment.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Fragment.Ktx.targets": {}
- }
- },
- "Xamarin.AndroidX.Interpolator/1.0.0.31": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Interpolator.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Interpolator.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Interpolator.targets": {}
- }
- },
- "Xamarin.AndroidX.Legacy.Support.Core.Utils/1.0.0.31": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.DocumentFile": "1.0.1.31",
- "Xamarin.AndroidX.Loader": "1.1.0.31",
- "Xamarin.AndroidX.LocalBroadcastManager": "1.1.0.19",
- "Xamarin.AndroidX.Print": "1.0.0.31"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Legacy.Support.Core.Utils.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Legacy.Support.Core.Utils.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Legacy.Support.Core.Utils.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.Common/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Lifecycle.Common.Jvm": "2.8.7.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.AtomicFU": "0.26.1.1",
- "Xamarin.KotlinX.Coroutines.Core": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Common.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Common.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Common.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.Common.Jvm/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation.Jvm": "1.9.1.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Coroutines.Core": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Common.Jvm.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Common.Jvm.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Common.Jvm.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.LiveData/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Arch.Core.Common": "2.2.0.15",
- "Xamarin.AndroidX.Arch.Core.Runtime": "2.2.0.15",
- "Xamarin.AndroidX.Lifecycle.LiveData.Core": "[2.8.7.2, 2.8.8)",
- "Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx": "[2.8.7.2, 2.8.8)",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Coroutines.Core": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.LiveData.Core/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Arch.Core.Common": "2.2.0.15",
- "Xamarin.AndroidX.Arch.Core.Runtime": "2.2.0.15",
- "Xamarin.AndroidX.Lifecycle.Common": "[2.8.7.2, 2.8.8)",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Lifecycle.LiveData.Core": "[2.8.7.2, 2.8.8)",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.Process/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Lifecycle.Runtime": "[2.8.7.2, 2.8.8)",
- "Xamarin.AndroidX.Startup.StartupRuntime": "1.2.0.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Process.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Process.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Process.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.Runtime/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Arch.Core.Common": "2.2.0.15",
- "Xamarin.AndroidX.Lifecycle.Common": "[2.8.7.2, 2.8.8)",
- "Xamarin.AndroidX.Lifecycle.Runtime.Android": "2.8.7.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.Runtime.Android/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Arch.Core.Common": "2.2.0.15",
- "Xamarin.AndroidX.Arch.Core.Runtime": "2.2.0.15",
- "Xamarin.AndroidX.Lifecycle.Common": "[2.8.7.2, 2.8.8)",
- "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller": "1.4.1.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Coroutines.Android": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Android.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Android.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Android.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.Runtime.Ktx/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Lifecycle.Runtime": "[2.8.7.2, 2.8.8)",
- "Xamarin.AndroidX.Lifecycle.Runtime.Ktx.Android": "2.8.7.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.Runtime.Ktx.Android/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Lifecycle.Runtime": "[2.8.7.2, 2.8.8)",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Coroutines.Android": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.Android.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.Android.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.Android.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.ViewModel/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Lifecycle.ViewModel.Android": "2.8.7.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Coroutines.Core": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.ViewModel.Android/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation.Jvm": "1.9.1.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Coroutines.Android": "1.9.0.2",
- "Xamarin.KotlinX.Coroutines.Core.Jvm": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.Android.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.Android.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.Android.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Lifecycle.ViewModel": "[2.8.7.2, 2.8.8)",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Coroutines.Android": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.ViewModelSavedState/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Core.Core.Ktx": "1.15.0.2",
- "Xamarin.AndroidX.Lifecycle.LiveData.Core": "[2.8.7.2, 2.8.8)",
- "Xamarin.AndroidX.Lifecycle.ViewModel": "[2.8.7.2, 2.8.8)",
- "Xamarin.AndroidX.SavedState": "1.2.1.15",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Coroutines.Android": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModelSavedState.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModelSavedState.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModelSavedState.targets": {}
- }
- },
- "Xamarin.AndroidX.Loader/1.1.0.31": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.Lifecycle.LiveData.Core": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.ViewModel": "2.8.7.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Loader.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Loader.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Loader.targets": {}
- }
- },
- "Xamarin.AndroidX.LocalBroadcastManager/1.1.0.19": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.LocalBroadcastManager.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.LocalBroadcastManager.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.LocalBroadcastManager.targets": {}
- }
- },
- "Xamarin.AndroidX.Navigation.Common/2.8.5.1": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection.Ktx": "1.4.5.2",
- "Xamarin.AndroidX.Core.Core.Ktx": "1.15.0.2",
- "Xamarin.AndroidX.Lifecycle.Common": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.Runtime.Ktx": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.ViewModelSavedState": "2.8.7.2",
- "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller": "1.4.1.2",
- "Xamarin.AndroidX.SavedState.SavedState.Ktx": "1.2.1.15",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Serialization.Core": "1.7.3.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Navigation.Common.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Navigation.Common.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Navigation.Common.targets": {}
- }
- },
- "Xamarin.AndroidX.Navigation.Fragment/2.8.5.1": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Fragment.Ktx": "1.8.5.2",
- "Xamarin.AndroidX.Navigation.Runtime": "[2.8.5.1, 2.8.6)",
- "Xamarin.AndroidX.SlidingPaneLayout": "1.2.0.19",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Serialization.Core": "1.7.3.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Navigation.Fragment.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Navigation.Fragment.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Navigation.Fragment.targets": {}
- }
- },
- "Xamarin.AndroidX.Navigation.Runtime/2.8.5.1": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Activity.Ktx": "1.9.3.2",
- "Xamarin.AndroidX.Annotation.Experimental": "1.4.1.8",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Lifecycle.Runtime.Ktx": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx": "2.8.7.2",
- "Xamarin.AndroidX.Navigation.Common": "[2.8.5.1, 2.8.6)",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Serialization.Core": "1.7.3.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Navigation.Runtime.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Navigation.Runtime.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Navigation.Runtime.targets": {}
- }
- },
- "Xamarin.AndroidX.Navigation.UI/2.8.5.1": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation.Experimental": "1.4.1.8",
- "Xamarin.AndroidX.CustomView": "1.1.0.30",
- "Xamarin.AndroidX.DrawerLayout": "1.2.0.15",
- "Xamarin.AndroidX.Navigation.Runtime": "[2.8.5.1, 2.8.6)",
- "Xamarin.AndroidX.Transition": "1.5.1.4",
- "Xamarin.Google.Android.Material": "1.12.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Navigation.UI.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Navigation.UI.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Navigation.UI.targets": {}
- }
- },
- "Xamarin.AndroidX.Print/1.0.0.31": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Print.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Print.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Print.targets": {}
- }
- },
- "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller/1.4.1.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Concurrent.Futures": "1.2.0.5",
- "Xamarin.AndroidX.Startup.StartupRuntime": "1.2.0.2",
- "Xamarin.Google.Guava.ListenableFuture": "1.0.0.26"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.targets": {}
- }
- },
- "Xamarin.AndroidX.RecyclerView/1.3.2.10": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.CustomView": "1.1.0.30",
- "Xamarin.AndroidX.CustomView.PoolingContainer": "1.0.0.17"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.RecyclerView.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.RecyclerView.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.RecyclerView.targets": {}
- }
- },
- "Xamarin.AndroidX.ResourceInspection.Annotation/1.0.1.19": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ResourceInspection.Annotation.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ResourceInspection.Annotation.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.ResourceInspection.Annotation.targets": {}
- }
- },
- "Xamarin.AndroidX.SavedState/1.2.1.15": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Arch.Core.Common": "2.2.0.15",
- "Xamarin.AndroidX.Lifecycle.Common": "2.8.7.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.SavedState.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.SavedState.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.SavedState.targets": {}
- }
- },
- "Xamarin.AndroidX.SavedState.SavedState.Ktx/1.2.1.15": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.SavedState": "[1.2.1.15, 1.2.2)",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.SavedState.SavedState.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.SavedState.SavedState.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.SavedState.SavedState.Ktx.targets": {}
- }
- },
- "Xamarin.AndroidX.Security.SecurityCrypto/1.1.0.2-alpha06": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.7.1.4",
- "Xamarin.AndroidX.Collection": "1.4.0.5",
- "Xamarin.Google.Crypto.Tink.Android": "1.13.0.3"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Security.SecurityCrypto.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Security.SecurityCrypto.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Security.SecurityCrypto.targets": {}
- }
- },
- "Xamarin.AndroidX.SlidingPaneLayout/1.2.0.19": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.CustomView": "1.1.0.30",
- "Xamarin.AndroidX.Transition": "1.5.1.4",
- "Xamarin.AndroidX.Window": "1.3.0.5"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.SlidingPaneLayout.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.SlidingPaneLayout.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.SlidingPaneLayout.targets": {}
- }
- },
- "Xamarin.AndroidX.Startup.StartupRuntime/1.2.0.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Tracing.Tracing": "1.2.0.9"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Startup.StartupRuntime.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Startup.StartupRuntime.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Startup.StartupRuntime.targets": {}
- }
- },
- "Xamarin.AndroidX.SwipeRefreshLayout/1.1.0.24": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.8.2.1",
- "Xamarin.AndroidX.Core": "1.13.1.5",
- "Xamarin.AndroidX.Interpolator": "1.0.0.29"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.SwipeRefreshLayout.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.SwipeRefreshLayout.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.SwipeRefreshLayout.targets": {}
- }
- },
- "Xamarin.AndroidX.Tracing.Tracing/1.2.0.9": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Tracing.Tracing.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Tracing.Tracing.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Tracing.Tracing.targets": {}
- }
- },
- "Xamarin.AndroidX.Transition/1.5.1.4": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.DynamicAnimation": "1.0.0.31",
- "Xamarin.AndroidX.Fragment": "1.8.5.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Transition.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Transition.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Transition.targets": {}
- }
- },
- "Xamarin.AndroidX.VectorDrawable/1.2.0.5": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.VectorDrawable.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.VectorDrawable.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.VectorDrawable.targets": {}
- }
- },
- "Xamarin.AndroidX.VectorDrawable.Animated/1.2.0.5": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.Interpolator": "1.0.0.31",
- "Xamarin.AndroidX.VectorDrawable": "1.2.0.5"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.VectorDrawable.Animated.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.VectorDrawable.Animated.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.VectorDrawable.Animated.targets": {}
- }
- },
- "Xamarin.AndroidX.VersionedParcelable/1.2.0.9": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.VersionedParcelable.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.VersionedParcelable.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.VersionedParcelable.targets": {}
- }
- },
- "Xamarin.AndroidX.ViewPager/1.1.0.1": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.CustomView": "1.1.0.30"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ViewPager.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ViewPager.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.ViewPager.targets": {}
- }
- },
- "Xamarin.AndroidX.ViewPager2/1.1.0.5": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Annotation.Experimental": "1.4.1.8",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.Fragment": "1.8.5.2",
- "Xamarin.AndroidX.RecyclerView": "1.3.2.10"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ViewPager2.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ViewPager2.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.ViewPager2.targets": {}
- }
- },
- "Xamarin.AndroidX.Window/1.3.0.5": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.Window.Extensions.Core.Core": "1.0.0.13",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Coroutines.Android": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Window.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Window.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Window.targets": {}
- }
- },
- "Xamarin.AndroidX.Window.Extensions.Core.Core/1.0.0.13": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Window.Extensions.Core.Core.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Window.Extensions.Core.Core.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Window.Extensions.Core.Core.targets": {}
- }
- },
- "Xamarin.Google.Android.Material/1.12.0.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Activity": "1.9.3.2",
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Annotation.Experimental": "1.4.1.8",
- "Xamarin.AndroidX.AppCompat": "1.7.0.5",
- "Xamarin.AndroidX.CardView": "1.0.0.33",
- "Xamarin.AndroidX.ConstraintLayout": "2.2.0.2",
- "Xamarin.AndroidX.CoordinatorLayout": "1.2.0.19",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.DrawerLayout": "1.2.0.15",
- "Xamarin.AndroidX.DynamicAnimation": "1.0.0.31",
- "Xamarin.AndroidX.Fragment": "1.8.5.2",
- "Xamarin.AndroidX.Lifecycle.Runtime": "2.8.7.2",
- "Xamarin.AndroidX.RecyclerView": "1.3.2.10",
- "Xamarin.AndroidX.ResourceInspection.Annotation": "1.0.1.19",
- "Xamarin.AndroidX.Transition": "1.5.1.4",
- "Xamarin.AndroidX.VectorDrawable": "1.2.0.5",
- "Xamarin.AndroidX.ViewPager2": "1.1.0.5",
- "Xamarin.Google.ErrorProne.Annotations": "2.36.0.1"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.Google.Android.Material.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.Google.Android.Material.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.Google.Android.Material.targets": {}
- }
- },
- "Xamarin.Google.Code.FindBugs.JSR305/3.0.2.18": {
- "type": "package",
- "compile": {
- "lib/net8.0-android34.0/Jsr305Binding.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Jsr305Binding.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.Google.Crypto.Tink.Android/1.16.0.1": {
- "type": "package",
- "dependencies": {
- "GoogleGson": "2.11.0.5",
- "Xamarin.AndroidX.Annotation.Jvm": "1.9.1.2",
- "Xamarin.Google.Code.FindBugs.JSR305": "3.0.2.18",
- "Xamarin.Google.ErrorProne.Annotations": "2.36.0.1"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.Google.Crypto.Tink.Android.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.Google.Crypto.Tink.Android.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.Google.ErrorProne.Annotations/2.36.0.1": {
- "type": "package",
- "compile": {
- "lib/net8.0-android34.0/Xamarin.Google.ErrorProne.Annotations.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.Google.ErrorProne.Annotations.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.Google.Guava.ListenableFuture/1.0.0.26": {
- "type": "package",
- "compile": {
- "lib/net8.0-android34.0/Xamarin.Google.Guava.ListenableFuture.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.Google.Guava.ListenableFuture.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.Jetbrains.Annotations/26.0.1.2": {
- "type": "package",
- "compile": {
- "lib/net8.0-android34.0/Xamarin.Jetbrains.Annotations.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.Jetbrains.Annotations.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.Kotlin.StdLib/2.0.21.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.Jetbrains.Annotations": "26.0.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.Kotlin.StdLib.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.Kotlin.StdLib.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.KotlinX.AtomicFU/0.26.1.1": {
- "type": "package",
- "dependencies": {
- "Xamarin.KotlinX.AtomicFU.Jvm": "0.26.1.1"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.AtomicFU.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.AtomicFU.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.KotlinX.AtomicFU.Jvm/0.26.1.1": {
- "type": "package",
- "dependencies": {
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.AtomicFU.Jvm.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.AtomicFU.Jvm.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.KotlinX.Coroutines.Android/1.9.0.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Coroutines.Core.Jvm": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.Coroutines.Android.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.Coroutines.Android.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.KotlinX.Coroutines.Core/1.9.0.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.KotlinX.Coroutines.Core.Jvm": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.Coroutines.Core.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.Coroutines.Core.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.KotlinX.Coroutines.Core.Jvm/1.9.0.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.Jetbrains.Annotations": "26.0.1.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.Coroutines.Core.Jvm.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.Coroutines.Core.Jvm.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.KotlinX.Serialization.Core/1.7.3.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.KotlinX.Serialization.Core.Jvm": "1.7.3.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.Serialization.Core.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.Serialization.Core.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.KotlinX.Serialization.Core.Jvm/1.7.3.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.Serialization.Core.Jvm.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.Serialization.Core.Jvm.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- }
- },
- "net9.0-android35.0/maccatalyst-x64": {
- "FFMpegCore/5.2.0": {
- "type": "package",
- "dependencies": {
- "Instances": "3.0.1",
- "System.Text.Json": "9.0.2"
- },
- "compile": {
- "lib/netstandard2.0/FFMpegCore.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/FFMpegCore.dll": {}
- }
- },
- "GoogleGson/2.11.0.5": {
- "type": "package",
- "dependencies": {
- "Xamarin.Google.ErrorProne.Annotations": "2.36.0.1"
- },
- "compile": {
- "lib/net8.0-android34.0/GoogleGson.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/GoogleGson.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Instances/3.0.1": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/Instances.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/Instances.dll": {}
- },
- "contentFiles": {
- "contentFiles/any/any/_._": {
- "buildAction": "None",
- "codeLanguage": "any",
- "copyToOutput": false
- }
- }
- },
- "Microsoft.Extensions.Configuration/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Configuration.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Configuration.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Configuration.Abstractions/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": {
- "type": "package",
- "compile": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Logging/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Extensions.Options": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Logging.Abstractions/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets": {}
- }
- },
- "Microsoft.Extensions.Logging.Debug/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.Debug.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.Debug.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Options/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Options.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Options.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/Microsoft.Extensions.Options.targets": {}
- }
- },
- "Microsoft.Extensions.Primitives/9.0.0": {
- "type": "package",
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Primitives.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Primitives.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Maui.Controls/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Controls.Build.Tasks": "9.0.51",
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Controls.Xaml": "9.0.51",
- "Microsoft.Maui.Resizetizer": "9.0.51"
- }
- },
- "Microsoft.Maui.Controls.Build.Tasks/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Controls.Xaml": "9.0.51"
- },
- "build": {
- "buildTransitive/netstandard2.0/Microsoft.Maui.Controls.Build.Tasks.props": {},
- "buildTransitive/netstandard2.0/Microsoft.Maui.Controls.Build.Tasks.targets": {}
- }
- },
- "Microsoft.Maui.Controls.Core/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Maui.Core": "9.0.51"
- },
- "compile": {
- "lib/net9.0-android35.0/Microsoft.Maui.Controls.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-android35.0/Microsoft.Maui.Controls.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "resource": {
- "lib/net9.0-android35.0/ar/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ar"
- },
- "lib/net9.0-android35.0/ca/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ca"
- },
- "lib/net9.0-android35.0/cs/Microsoft.Maui.Controls.resources.dll": {
- "locale": "cs"
- },
- "lib/net9.0-android35.0/da/Microsoft.Maui.Controls.resources.dll": {
- "locale": "da"
- },
- "lib/net9.0-android35.0/de/Microsoft.Maui.Controls.resources.dll": {
- "locale": "de"
- },
- "lib/net9.0-android35.0/el/Microsoft.Maui.Controls.resources.dll": {
- "locale": "el"
- },
- "lib/net9.0-android35.0/es/Microsoft.Maui.Controls.resources.dll": {
- "locale": "es"
- },
- "lib/net9.0-android35.0/fi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "fi"
- },
- "lib/net9.0-android35.0/fr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "fr"
- },
- "lib/net9.0-android35.0/he/Microsoft.Maui.Controls.resources.dll": {
- "locale": "he"
- },
- "lib/net9.0-android35.0/hi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hi"
- },
- "lib/net9.0-android35.0/hr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hr"
- },
- "lib/net9.0-android35.0/hu/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hu"
- },
- "lib/net9.0-android35.0/id/Microsoft.Maui.Controls.resources.dll": {
- "locale": "id"
- },
- "lib/net9.0-android35.0/it/Microsoft.Maui.Controls.resources.dll": {
- "locale": "it"
- },
- "lib/net9.0-android35.0/ja/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ja"
- },
- "lib/net9.0-android35.0/ko/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ko"
- },
- "lib/net9.0-android35.0/ms/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ms"
- },
- "lib/net9.0-android35.0/nb/Microsoft.Maui.Controls.resources.dll": {
- "locale": "nb"
- },
- "lib/net9.0-android35.0/nl/Microsoft.Maui.Controls.resources.dll": {
- "locale": "nl"
- },
- "lib/net9.0-android35.0/pl/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pl"
- },
- "lib/net9.0-android35.0/pt-BR/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/net9.0-android35.0/pt/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pt"
- },
- "lib/net9.0-android35.0/ro/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ro"
- },
- "lib/net9.0-android35.0/ru/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ru"
- },
- "lib/net9.0-android35.0/sk/Microsoft.Maui.Controls.resources.dll": {
- "locale": "sk"
- },
- "lib/net9.0-android35.0/sv/Microsoft.Maui.Controls.resources.dll": {
- "locale": "sv"
- },
- "lib/net9.0-android35.0/th/Microsoft.Maui.Controls.resources.dll": {
- "locale": "th"
- },
- "lib/net9.0-android35.0/tr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "tr"
- },
- "lib/net9.0-android35.0/uk/Microsoft.Maui.Controls.resources.dll": {
- "locale": "uk"
- },
- "lib/net9.0-android35.0/vi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "vi"
- },
- "lib/net9.0-android35.0/zh-HK/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-HK"
- },
- "lib/net9.0-android35.0/zh-Hans/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/net9.0-android35.0/zh-Hant/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.Maui.Controls.Xaml/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Core": "9.0.51"
- },
- "compile": {
- "lib/net9.0-android35.0/Microsoft.Maui.Controls.Xaml.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-android35.0/Microsoft.Maui.Controls.Xaml.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Core/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Maui.Essentials": "9.0.51",
- "Microsoft.Maui.Graphics": "9.0.51",
- "Xamarin.Android.Glide": "4.16.0.11",
- "Xamarin.AndroidX.Lifecycle.LiveData": "2.8.7.2",
- "Xamarin.AndroidX.Navigation.Common": "2.8.5.1",
- "Xamarin.AndroidX.Navigation.Fragment": "2.8.5.1",
- "Xamarin.AndroidX.Navigation.Runtime": "2.8.5.1",
- "Xamarin.AndroidX.Navigation.UI": "2.8.5.1",
- "Xamarin.AndroidX.SwipeRefreshLayout": "1.1.0.24",
- "Xamarin.Google.Android.Material": "1.12.0.2"
- },
- "compile": {
- "lib/net9.0-android35.0/Microsoft.Maui.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-android35.0/Microsoft.Maui.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/Microsoft.Maui.Core.props": {},
- "buildTransitive/Microsoft.Maui.Core.targets": {}
- }
- },
- "Microsoft.Maui.Essentials/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Graphics": "9.0.51",
- "Xamarin.AndroidX.Browser": "1.8.0.8",
- "Xamarin.AndroidX.Security.SecurityCrypto": "1.1.0.2-alpha06",
- "Xamarin.Google.Crypto.Tink.Android": "1.16.0.1"
- },
- "compile": {
- "lib/net9.0-android35.0/Microsoft.Maui.Essentials.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-android35.0/Microsoft.Maui.Essentials.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Graphics/9.0.51": {
- "type": "package",
- "compile": {
- "lib/net9.0-android35.0/Microsoft.Maui.Graphics.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-android35.0/Microsoft.Maui.Graphics.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Resizetizer/9.0.51": {
- "type": "package",
- "build": {
- "buildTransitive/Microsoft.Maui.Resizetizer.props": {},
- "buildTransitive/Microsoft.Maui.Resizetizer.targets": {}
- }
- },
- "Microsoft.NET.ILLink.Tasks/9.0.6": {
- "type": "package",
- "build": {
- "build/Microsoft.NET.ILLink.Tasks.props": {}
- }
- },
- "System.Text.Json/9.0.2": {
- "type": "package",
- "compile": {
- "lib/net9.0/System.Text.Json.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/System.Text.Json.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/System.Text.Json.targets": {}
- }
- },
- "Xamarin.Android.Glide/4.16.0.11": {
- "type": "package",
- "dependencies": {
- "Xamarin.Android.Glide.Annotations": "4.16.0.11",
- "Xamarin.Android.Glide.DiskLruCache": "4.16.0.11",
- "Xamarin.Android.Glide.GifDecoder": "4.16.0.11",
- "Xamarin.AndroidX.ExifInterface": "1.3.7.9",
- "Xamarin.AndroidX.Fragment": "1.8.5.2",
- "Xamarin.AndroidX.Tracing.Tracing": "1.2.0.9",
- "Xamarin.AndroidX.VectorDrawable.Animated": "1.2.0.5"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.Android.Glide.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.Android.Glide.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Xamarin.Android.Glide.Annotations/4.16.0.11": {
- "type": "package",
- "compile": {
- "lib/net8.0-android34.0/Xamarin.Android.Glide.Annotations.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.Android.Glide.Annotations.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.Android.Glide.DiskLruCache/4.16.0.11": {
- "type": "package",
- "compile": {
- "lib/net8.0-android34.0/Xamarin.Android.Glide.DiskLruCache.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.Android.Glide.DiskLruCache.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.Android.Glide.GifDecoder/4.16.0.11": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.Android.Glide.GifDecoder.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.Android.Glide.GifDecoder.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Xamarin.AndroidX.Activity/1.9.3.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.Lifecycle.Runtime": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.ViewModel": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.ViewModelSavedState": "2.8.7.2",
- "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller": "1.4.1.2",
- "Xamarin.AndroidX.SavedState": "1.2.1.15",
- "Xamarin.AndroidX.Tracing.Tracing": "1.2.0.9",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Activity.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Activity.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Activity.targets": {}
- }
- },
- "Xamarin.AndroidX.Activity.Ktx/1.9.3.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Activity": "[1.9.3.2, 1.9.4)",
- "Xamarin.AndroidX.Core.Core.Ktx": "1.15.0.2",
- "Xamarin.AndroidX.Lifecycle.Runtime.Ktx": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx": "2.8.7.2",
- "Xamarin.AndroidX.SavedState.SavedState.Ktx": "1.2.1.15",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Activity.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Activity.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Activity.Ktx.targets": {}
- }
- },
- "Xamarin.AndroidX.Annotation/1.9.1.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation.Jvm": "1.9.1.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Annotation.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Annotation.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Annotation.targets": {}
- }
- },
- "Xamarin.AndroidX.Annotation.Experimental/1.4.1.8": {
- "type": "package",
- "dependencies": {
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Annotation.Experimental.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Annotation.Experimental.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Annotation.Experimental.targets": {}
- }
- },
- "Xamarin.AndroidX.Annotation.Jvm/1.9.1.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Annotation.Jvm.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Annotation.Jvm.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Annotation.Jvm.targets": {}
- }
- },
- "Xamarin.AndroidX.AppCompat/1.7.0.5": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Activity": "1.9.3.2",
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.AppCompat.AppCompatResources": "[1.7.0.5, 1.7.1)",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.Core.Core.Ktx": "1.15.0.2",
- "Xamarin.AndroidX.CursorAdapter": "1.0.0.31",
- "Xamarin.AndroidX.DrawerLayout": "1.2.0.15",
- "Xamarin.AndroidX.Emoji2": "1.5.0.3",
- "Xamarin.AndroidX.Emoji2.ViewsHelper": "1.5.0.3",
- "Xamarin.AndroidX.Fragment": "1.8.5.2",
- "Xamarin.AndroidX.Lifecycle.Runtime": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.ViewModel": "2.8.7.2",
- "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller": "1.4.1.2",
- "Xamarin.AndroidX.ResourceInspection.Annotation": "1.0.1.19",
- "Xamarin.AndroidX.SavedState": "1.2.1.15",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.AppCompat.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.AppCompat.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.AppCompat.targets": {}
- }
- },
- "Xamarin.AndroidX.AppCompat.AppCompatResources/1.7.0.5": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.VectorDrawable": "1.2.0.5",
- "Xamarin.AndroidX.VectorDrawable.Animated": "1.2.0.5"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.AppCompat.AppCompatResources.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.AppCompat.AppCompatResources.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.AppCompat.AppCompatResources.targets": {}
- }
- },
- "Xamarin.AndroidX.Arch.Core.Common/2.2.0.15": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Arch.Core.Common.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Arch.Core.Common.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Arch.Core.Common.targets": {}
- }
- },
- "Xamarin.AndroidX.Arch.Core.Runtime/2.2.0.15": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Arch.Core.Common": "[2.2.0.15, 2.2.1)"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Arch.Core.Runtime.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Arch.Core.Runtime.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Arch.Core.Runtime.targets": {}
- }
- },
- "Xamarin.AndroidX.Browser/1.8.0.8": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Annotation.Experimental": "1.4.1.8",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Concurrent.Futures": "1.2.0.5",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.Interpolator": "1.0.0.31",
- "Xamarin.Google.Guava.ListenableFuture": "1.0.0.26"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Browser.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Browser.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Browser.targets": {}
- }
- },
- "Xamarin.AndroidX.CardView/1.0.0.33": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.CardView.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.CardView.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.CardView.targets": {}
- }
- },
- "Xamarin.AndroidX.Collection/1.4.5.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection.Jvm": "1.4.5.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Collection.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Collection.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Collection.targets": {}
- }
- },
- "Xamarin.AndroidX.Collection.Jvm/1.4.5.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation.Jvm": "1.9.1.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Collection.Jvm.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Collection.Jvm.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Collection.Jvm.targets": {}
- }
- },
- "Xamarin.AndroidX.Collection.Ktx/1.4.5.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Collection.Jvm": "[1.4.5.2, 1.4.6)"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Collection.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Collection.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Collection.Ktx.targets": {}
- }
- },
- "Xamarin.AndroidX.Concurrent.Futures/1.2.0.5": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.Google.Guava.ListenableFuture": "1.0.0.26"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Concurrent.Futures.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Concurrent.Futures.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Concurrent.Futures.targets": {}
- }
- },
- "Xamarin.AndroidX.ConstraintLayout/2.2.0.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.AppCompat": "1.7.0.5",
- "Xamarin.AndroidX.ConstraintLayout.Core": "1.1.0.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller": "1.4.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ConstraintLayout.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ConstraintLayout.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.ConstraintLayout.targets": {}
- }
- },
- "Xamarin.AndroidX.ConstraintLayout.Core/1.1.0.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ConstraintLayout.Core.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ConstraintLayout.Core.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.ConstraintLayout.Core.targets": {}
- }
- },
- "Xamarin.AndroidX.CoordinatorLayout/1.2.0.19": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.CustomView": "1.1.0.30"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.CoordinatorLayout.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.CoordinatorLayout.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.CoordinatorLayout.targets": {}
- }
- },
- "Xamarin.AndroidX.Core/1.15.0.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Annotation.Experimental": "1.4.1.8",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Concurrent.Futures": "1.2.0.5",
- "Xamarin.AndroidX.Interpolator": "1.0.0.31",
- "Xamarin.AndroidX.Lifecycle.Runtime": "2.8.7.2",
- "Xamarin.AndroidX.Tracing.Tracing": "1.2.0.9",
- "Xamarin.AndroidX.VersionedParcelable": "1.2.0.9",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Core.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Core.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Core.targets": {}
- }
- },
- "Xamarin.AndroidX.Core.Core.Ktx/1.15.0.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Core.Core.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Core.Core.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Core.Core.Ktx.targets": {}
- }
- },
- "Xamarin.AndroidX.CursorAdapter/1.0.0.31": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.CursorAdapter.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.CursorAdapter.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.CursorAdapter.targets": {}
- }
- },
- "Xamarin.AndroidX.CustomView/1.1.0.30": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.CustomView.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.CustomView.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.CustomView.targets": {}
- }
- },
- "Xamarin.AndroidX.CustomView.PoolingContainer/1.0.0.17": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Core.Core.Ktx": "1.15.0.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.CustomView.PoolingContainer.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.CustomView.PoolingContainer.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.CustomView.PoolingContainer.targets": {}
- }
- },
- "Xamarin.AndroidX.DocumentFile/1.0.1.31": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.DocumentFile.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.DocumentFile.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.DocumentFile.targets": {}
- }
- },
- "Xamarin.AndroidX.DrawerLayout/1.2.0.15": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.CustomView": "1.1.0.30"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.DrawerLayout.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.DrawerLayout.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.DrawerLayout.targets": {}
- }
- },
- "Xamarin.AndroidX.DynamicAnimation/1.0.0.31": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.Legacy.Support.Core.Utils": "1.0.0.31"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.DynamicAnimation.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.DynamicAnimation.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.DynamicAnimation.targets": {}
- }
- },
- "Xamarin.AndroidX.Emoji2/1.5.0.3": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.Lifecycle.Process": "2.8.7.2",
- "Xamarin.AndroidX.Startup.StartupRuntime": "1.2.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Emoji2.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Emoji2.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Emoji2.targets": {}
- }
- },
- "Xamarin.AndroidX.Emoji2.ViewsHelper/1.5.0.3": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.Emoji2": "[1.5.0.3, 1.5.1)"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Emoji2.ViewsHelper.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Emoji2.ViewsHelper.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Emoji2.ViewsHelper.targets": {}
- }
- },
- "Xamarin.AndroidX.ExifInterface/1.3.7.9": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ExifInterface.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ExifInterface.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.ExifInterface.targets": {}
- }
- },
- "Xamarin.AndroidX.Fragment/1.8.5.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Activity": "1.9.3.2",
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Annotation.Experimental": "1.4.1.8",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core.Core.Ktx": "1.15.0.2",
- "Xamarin.AndroidX.Lifecycle.LiveData.Core": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.Runtime": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.ViewModel": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.ViewModelSavedState": "2.8.7.2",
- "Xamarin.AndroidX.Loader": "1.1.0.31",
- "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller": "1.4.1.2",
- "Xamarin.AndroidX.SavedState": "1.2.1.15",
- "Xamarin.AndroidX.ViewPager": "1.1.0.1",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Fragment.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Fragment.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Fragment.targets": {}
- }
- },
- "Xamarin.AndroidX.Fragment.Ktx/1.8.5.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Activity.Ktx": "1.9.3.2",
- "Xamarin.AndroidX.Collection.Ktx": "1.4.5.2",
- "Xamarin.AndroidX.Core.Core.Ktx": "1.15.0.2",
- "Xamarin.AndroidX.Fragment": "[1.8.5.2, 1.8.6)",
- "Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx": "2.8.7.2",
- "Xamarin.AndroidX.SavedState.SavedState.Ktx": "1.2.1.15",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Fragment.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Fragment.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Fragment.Ktx.targets": {}
- }
- },
- "Xamarin.AndroidX.Interpolator/1.0.0.31": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Interpolator.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Interpolator.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Interpolator.targets": {}
- }
- },
- "Xamarin.AndroidX.Legacy.Support.Core.Utils/1.0.0.31": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.DocumentFile": "1.0.1.31",
- "Xamarin.AndroidX.Loader": "1.1.0.31",
- "Xamarin.AndroidX.LocalBroadcastManager": "1.1.0.19",
- "Xamarin.AndroidX.Print": "1.0.0.31"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Legacy.Support.Core.Utils.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Legacy.Support.Core.Utils.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Legacy.Support.Core.Utils.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.Common/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Lifecycle.Common.Jvm": "2.8.7.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.AtomicFU": "0.26.1.1",
- "Xamarin.KotlinX.Coroutines.Core": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Common.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Common.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Common.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.Common.Jvm/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation.Jvm": "1.9.1.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Coroutines.Core": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Common.Jvm.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Common.Jvm.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Common.Jvm.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.LiveData/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Arch.Core.Common": "2.2.0.15",
- "Xamarin.AndroidX.Arch.Core.Runtime": "2.2.0.15",
- "Xamarin.AndroidX.Lifecycle.LiveData.Core": "[2.8.7.2, 2.8.8)",
- "Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx": "[2.8.7.2, 2.8.8)",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Coroutines.Core": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.LiveData.Core/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Arch.Core.Common": "2.2.0.15",
- "Xamarin.AndroidX.Arch.Core.Runtime": "2.2.0.15",
- "Xamarin.AndroidX.Lifecycle.Common": "[2.8.7.2, 2.8.8)",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Lifecycle.LiveData.Core": "[2.8.7.2, 2.8.8)",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.Process/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Lifecycle.Runtime": "[2.8.7.2, 2.8.8)",
- "Xamarin.AndroidX.Startup.StartupRuntime": "1.2.0.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Process.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Process.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Process.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.Runtime/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Arch.Core.Common": "2.2.0.15",
- "Xamarin.AndroidX.Lifecycle.Common": "[2.8.7.2, 2.8.8)",
- "Xamarin.AndroidX.Lifecycle.Runtime.Android": "2.8.7.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.Runtime.Android/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Arch.Core.Common": "2.2.0.15",
- "Xamarin.AndroidX.Arch.Core.Runtime": "2.2.0.15",
- "Xamarin.AndroidX.Lifecycle.Common": "[2.8.7.2, 2.8.8)",
- "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller": "1.4.1.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Coroutines.Android": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Android.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Android.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Android.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.Runtime.Ktx/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Lifecycle.Runtime": "[2.8.7.2, 2.8.8)",
- "Xamarin.AndroidX.Lifecycle.Runtime.Ktx.Android": "2.8.7.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.Runtime.Ktx.Android/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Lifecycle.Runtime": "[2.8.7.2, 2.8.8)",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Coroutines.Android": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.Android.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.Android.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.Android.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.ViewModel/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Lifecycle.ViewModel.Android": "2.8.7.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Coroutines.Core": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.ViewModel.Android/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation.Jvm": "1.9.1.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Coroutines.Android": "1.9.0.2",
- "Xamarin.KotlinX.Coroutines.Core.Jvm": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.Android.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.Android.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.Android.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Lifecycle.ViewModel": "[2.8.7.2, 2.8.8)",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Coroutines.Android": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.ViewModelSavedState/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Core.Core.Ktx": "1.15.0.2",
- "Xamarin.AndroidX.Lifecycle.LiveData.Core": "[2.8.7.2, 2.8.8)",
- "Xamarin.AndroidX.Lifecycle.ViewModel": "[2.8.7.2, 2.8.8)",
- "Xamarin.AndroidX.SavedState": "1.2.1.15",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Coroutines.Android": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModelSavedState.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModelSavedState.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModelSavedState.targets": {}
- }
- },
- "Xamarin.AndroidX.Loader/1.1.0.31": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.Lifecycle.LiveData.Core": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.ViewModel": "2.8.7.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Loader.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Loader.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Loader.targets": {}
- }
- },
- "Xamarin.AndroidX.LocalBroadcastManager/1.1.0.19": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.LocalBroadcastManager.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.LocalBroadcastManager.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.LocalBroadcastManager.targets": {}
- }
- },
- "Xamarin.AndroidX.Navigation.Common/2.8.5.1": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection.Ktx": "1.4.5.2",
- "Xamarin.AndroidX.Core.Core.Ktx": "1.15.0.2",
- "Xamarin.AndroidX.Lifecycle.Common": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.Runtime.Ktx": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.ViewModelSavedState": "2.8.7.2",
- "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller": "1.4.1.2",
- "Xamarin.AndroidX.SavedState.SavedState.Ktx": "1.2.1.15",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Serialization.Core": "1.7.3.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Navigation.Common.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Navigation.Common.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Navigation.Common.targets": {}
- }
- },
- "Xamarin.AndroidX.Navigation.Fragment/2.8.5.1": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Fragment.Ktx": "1.8.5.2",
- "Xamarin.AndroidX.Navigation.Runtime": "[2.8.5.1, 2.8.6)",
- "Xamarin.AndroidX.SlidingPaneLayout": "1.2.0.19",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Serialization.Core": "1.7.3.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Navigation.Fragment.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Navigation.Fragment.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Navigation.Fragment.targets": {}
- }
- },
- "Xamarin.AndroidX.Navigation.Runtime/2.8.5.1": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Activity.Ktx": "1.9.3.2",
- "Xamarin.AndroidX.Annotation.Experimental": "1.4.1.8",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Lifecycle.Runtime.Ktx": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx": "2.8.7.2",
- "Xamarin.AndroidX.Navigation.Common": "[2.8.5.1, 2.8.6)",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Serialization.Core": "1.7.3.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Navigation.Runtime.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Navigation.Runtime.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Navigation.Runtime.targets": {}
- }
- },
- "Xamarin.AndroidX.Navigation.UI/2.8.5.1": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation.Experimental": "1.4.1.8",
- "Xamarin.AndroidX.CustomView": "1.1.0.30",
- "Xamarin.AndroidX.DrawerLayout": "1.2.0.15",
- "Xamarin.AndroidX.Navigation.Runtime": "[2.8.5.1, 2.8.6)",
- "Xamarin.AndroidX.Transition": "1.5.1.4",
- "Xamarin.Google.Android.Material": "1.12.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Navigation.UI.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Navigation.UI.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Navigation.UI.targets": {}
- }
- },
- "Xamarin.AndroidX.Print/1.0.0.31": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Print.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Print.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Print.targets": {}
- }
- },
- "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller/1.4.1.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Concurrent.Futures": "1.2.0.5",
- "Xamarin.AndroidX.Startup.StartupRuntime": "1.2.0.2",
- "Xamarin.Google.Guava.ListenableFuture": "1.0.0.26"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.targets": {}
- }
- },
- "Xamarin.AndroidX.RecyclerView/1.3.2.10": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.CustomView": "1.1.0.30",
- "Xamarin.AndroidX.CustomView.PoolingContainer": "1.0.0.17"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.RecyclerView.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.RecyclerView.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.RecyclerView.targets": {}
- }
- },
- "Xamarin.AndroidX.ResourceInspection.Annotation/1.0.1.19": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ResourceInspection.Annotation.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ResourceInspection.Annotation.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.ResourceInspection.Annotation.targets": {}
- }
- },
- "Xamarin.AndroidX.SavedState/1.2.1.15": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Arch.Core.Common": "2.2.0.15",
- "Xamarin.AndroidX.Lifecycle.Common": "2.8.7.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.SavedState.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.SavedState.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.SavedState.targets": {}
- }
- },
- "Xamarin.AndroidX.SavedState.SavedState.Ktx/1.2.1.15": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.SavedState": "[1.2.1.15, 1.2.2)",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.SavedState.SavedState.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.SavedState.SavedState.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.SavedState.SavedState.Ktx.targets": {}
- }
- },
- "Xamarin.AndroidX.Security.SecurityCrypto/1.1.0.2-alpha06": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.7.1.4",
- "Xamarin.AndroidX.Collection": "1.4.0.5",
- "Xamarin.Google.Crypto.Tink.Android": "1.13.0.3"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Security.SecurityCrypto.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Security.SecurityCrypto.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Security.SecurityCrypto.targets": {}
- }
- },
- "Xamarin.AndroidX.SlidingPaneLayout/1.2.0.19": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.CustomView": "1.1.0.30",
- "Xamarin.AndroidX.Transition": "1.5.1.4",
- "Xamarin.AndroidX.Window": "1.3.0.5"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.SlidingPaneLayout.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.SlidingPaneLayout.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.SlidingPaneLayout.targets": {}
- }
- },
- "Xamarin.AndroidX.Startup.StartupRuntime/1.2.0.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Tracing.Tracing": "1.2.0.9"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Startup.StartupRuntime.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Startup.StartupRuntime.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Startup.StartupRuntime.targets": {}
- }
- },
- "Xamarin.AndroidX.SwipeRefreshLayout/1.1.0.24": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.8.2.1",
- "Xamarin.AndroidX.Core": "1.13.1.5",
- "Xamarin.AndroidX.Interpolator": "1.0.0.29"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.SwipeRefreshLayout.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.SwipeRefreshLayout.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.SwipeRefreshLayout.targets": {}
- }
- },
- "Xamarin.AndroidX.Tracing.Tracing/1.2.0.9": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Tracing.Tracing.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Tracing.Tracing.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Tracing.Tracing.targets": {}
- }
- },
- "Xamarin.AndroidX.Transition/1.5.1.4": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.DynamicAnimation": "1.0.0.31",
- "Xamarin.AndroidX.Fragment": "1.8.5.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Transition.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Transition.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Transition.targets": {}
- }
- },
- "Xamarin.AndroidX.VectorDrawable/1.2.0.5": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.VectorDrawable.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.VectorDrawable.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.VectorDrawable.targets": {}
- }
- },
- "Xamarin.AndroidX.VectorDrawable.Animated/1.2.0.5": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.Interpolator": "1.0.0.31",
- "Xamarin.AndroidX.VectorDrawable": "1.2.0.5"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.VectorDrawable.Animated.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.VectorDrawable.Animated.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.VectorDrawable.Animated.targets": {}
- }
- },
- "Xamarin.AndroidX.VersionedParcelable/1.2.0.9": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.VersionedParcelable.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.VersionedParcelable.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.VersionedParcelable.targets": {}
- }
- },
- "Xamarin.AndroidX.ViewPager/1.1.0.1": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.CustomView": "1.1.0.30"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ViewPager.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ViewPager.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.ViewPager.targets": {}
- }
- },
- "Xamarin.AndroidX.ViewPager2/1.1.0.5": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Annotation.Experimental": "1.4.1.8",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.Fragment": "1.8.5.2",
- "Xamarin.AndroidX.RecyclerView": "1.3.2.10"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ViewPager2.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ViewPager2.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.ViewPager2.targets": {}
- }
- },
- "Xamarin.AndroidX.Window/1.3.0.5": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.Window.Extensions.Core.Core": "1.0.0.13",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Coroutines.Android": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Window.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Window.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Window.targets": {}
- }
- },
- "Xamarin.AndroidX.Window.Extensions.Core.Core/1.0.0.13": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Window.Extensions.Core.Core.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Window.Extensions.Core.Core.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Window.Extensions.Core.Core.targets": {}
- }
- },
- "Xamarin.Google.Android.Material/1.12.0.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Activity": "1.9.3.2",
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Annotation.Experimental": "1.4.1.8",
- "Xamarin.AndroidX.AppCompat": "1.7.0.5",
- "Xamarin.AndroidX.CardView": "1.0.0.33",
- "Xamarin.AndroidX.ConstraintLayout": "2.2.0.2",
- "Xamarin.AndroidX.CoordinatorLayout": "1.2.0.19",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.DrawerLayout": "1.2.0.15",
- "Xamarin.AndroidX.DynamicAnimation": "1.0.0.31",
- "Xamarin.AndroidX.Fragment": "1.8.5.2",
- "Xamarin.AndroidX.Lifecycle.Runtime": "2.8.7.2",
- "Xamarin.AndroidX.RecyclerView": "1.3.2.10",
- "Xamarin.AndroidX.ResourceInspection.Annotation": "1.0.1.19",
- "Xamarin.AndroidX.Transition": "1.5.1.4",
- "Xamarin.AndroidX.VectorDrawable": "1.2.0.5",
- "Xamarin.AndroidX.ViewPager2": "1.1.0.5",
- "Xamarin.Google.ErrorProne.Annotations": "2.36.0.1"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.Google.Android.Material.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.Google.Android.Material.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.Google.Android.Material.targets": {}
- }
- },
- "Xamarin.Google.Code.FindBugs.JSR305/3.0.2.18": {
- "type": "package",
- "compile": {
- "lib/net8.0-android34.0/Jsr305Binding.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Jsr305Binding.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.Google.Crypto.Tink.Android/1.16.0.1": {
- "type": "package",
- "dependencies": {
- "GoogleGson": "2.11.0.5",
- "Xamarin.AndroidX.Annotation.Jvm": "1.9.1.2",
- "Xamarin.Google.Code.FindBugs.JSR305": "3.0.2.18",
- "Xamarin.Google.ErrorProne.Annotations": "2.36.0.1"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.Google.Crypto.Tink.Android.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.Google.Crypto.Tink.Android.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.Google.ErrorProne.Annotations/2.36.0.1": {
- "type": "package",
- "compile": {
- "lib/net8.0-android34.0/Xamarin.Google.ErrorProne.Annotations.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.Google.ErrorProne.Annotations.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.Google.Guava.ListenableFuture/1.0.0.26": {
- "type": "package",
- "compile": {
- "lib/net8.0-android34.0/Xamarin.Google.Guava.ListenableFuture.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.Google.Guava.ListenableFuture.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.Jetbrains.Annotations/26.0.1.2": {
- "type": "package",
- "compile": {
- "lib/net8.0-android34.0/Xamarin.Jetbrains.Annotations.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.Jetbrains.Annotations.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.Kotlin.StdLib/2.0.21.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.Jetbrains.Annotations": "26.0.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.Kotlin.StdLib.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.Kotlin.StdLib.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.KotlinX.AtomicFU/0.26.1.1": {
- "type": "package",
- "dependencies": {
- "Xamarin.KotlinX.AtomicFU.Jvm": "0.26.1.1"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.AtomicFU.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.AtomicFU.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.KotlinX.AtomicFU.Jvm/0.26.1.1": {
- "type": "package",
- "dependencies": {
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.AtomicFU.Jvm.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.AtomicFU.Jvm.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.KotlinX.Coroutines.Android/1.9.0.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Coroutines.Core.Jvm": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.Coroutines.Android.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.Coroutines.Android.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.KotlinX.Coroutines.Core/1.9.0.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.KotlinX.Coroutines.Core.Jvm": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.Coroutines.Core.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.Coroutines.Core.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.KotlinX.Coroutines.Core.Jvm/1.9.0.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.Jetbrains.Annotations": "26.0.1.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.Coroutines.Core.Jvm.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.Coroutines.Core.Jvm.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.KotlinX.Serialization.Core/1.7.3.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.KotlinX.Serialization.Core.Jvm": "1.7.3.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.Serialization.Core.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.Serialization.Core.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.KotlinX.Serialization.Core.Jvm/1.7.3.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.Serialization.Core.Jvm.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.Serialization.Core.Jvm.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- }
- },
- "net9.0-android35.0/win10-x64": {
- "FFMpegCore/5.2.0": {
- "type": "package",
- "dependencies": {
- "Instances": "3.0.1",
- "System.Text.Json": "9.0.2"
- },
- "compile": {
- "lib/netstandard2.0/FFMpegCore.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/FFMpegCore.dll": {}
- }
- },
- "GoogleGson/2.11.0.5": {
- "type": "package",
- "dependencies": {
- "Xamarin.Google.ErrorProne.Annotations": "2.36.0.1"
- },
- "compile": {
- "lib/net8.0-android34.0/GoogleGson.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/GoogleGson.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Instances/3.0.1": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/Instances.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/Instances.dll": {}
- },
- "contentFiles": {
- "contentFiles/any/any/_._": {
- "buildAction": "None",
- "codeLanguage": "any",
- "copyToOutput": false
- }
- }
- },
- "Microsoft.Extensions.Configuration/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Configuration.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Configuration.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Configuration.Abstractions/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": {
- "type": "package",
- "compile": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Logging/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Extensions.Options": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Logging.Abstractions/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets": {}
- }
- },
- "Microsoft.Extensions.Logging.Debug/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.Debug.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.Debug.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Options/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Options.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Options.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/Microsoft.Extensions.Options.targets": {}
- }
- },
- "Microsoft.Extensions.Primitives/9.0.0": {
- "type": "package",
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Primitives.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Primitives.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Maui.Controls/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Controls.Build.Tasks": "9.0.51",
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Controls.Xaml": "9.0.51",
- "Microsoft.Maui.Resizetizer": "9.0.51"
- }
- },
- "Microsoft.Maui.Controls.Build.Tasks/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Controls.Xaml": "9.0.51"
- },
- "build": {
- "buildTransitive/netstandard2.0/Microsoft.Maui.Controls.Build.Tasks.props": {},
- "buildTransitive/netstandard2.0/Microsoft.Maui.Controls.Build.Tasks.targets": {}
- }
- },
- "Microsoft.Maui.Controls.Core/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Maui.Core": "9.0.51"
- },
- "compile": {
- "lib/net9.0-android35.0/Microsoft.Maui.Controls.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-android35.0/Microsoft.Maui.Controls.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "resource": {
- "lib/net9.0-android35.0/ar/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ar"
- },
- "lib/net9.0-android35.0/ca/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ca"
- },
- "lib/net9.0-android35.0/cs/Microsoft.Maui.Controls.resources.dll": {
- "locale": "cs"
- },
- "lib/net9.0-android35.0/da/Microsoft.Maui.Controls.resources.dll": {
- "locale": "da"
- },
- "lib/net9.0-android35.0/de/Microsoft.Maui.Controls.resources.dll": {
- "locale": "de"
- },
- "lib/net9.0-android35.0/el/Microsoft.Maui.Controls.resources.dll": {
- "locale": "el"
- },
- "lib/net9.0-android35.0/es/Microsoft.Maui.Controls.resources.dll": {
- "locale": "es"
- },
- "lib/net9.0-android35.0/fi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "fi"
- },
- "lib/net9.0-android35.0/fr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "fr"
- },
- "lib/net9.0-android35.0/he/Microsoft.Maui.Controls.resources.dll": {
- "locale": "he"
- },
- "lib/net9.0-android35.0/hi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hi"
- },
- "lib/net9.0-android35.0/hr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hr"
- },
- "lib/net9.0-android35.0/hu/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hu"
- },
- "lib/net9.0-android35.0/id/Microsoft.Maui.Controls.resources.dll": {
- "locale": "id"
- },
- "lib/net9.0-android35.0/it/Microsoft.Maui.Controls.resources.dll": {
- "locale": "it"
- },
- "lib/net9.0-android35.0/ja/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ja"
- },
- "lib/net9.0-android35.0/ko/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ko"
- },
- "lib/net9.0-android35.0/ms/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ms"
- },
- "lib/net9.0-android35.0/nb/Microsoft.Maui.Controls.resources.dll": {
- "locale": "nb"
- },
- "lib/net9.0-android35.0/nl/Microsoft.Maui.Controls.resources.dll": {
- "locale": "nl"
- },
- "lib/net9.0-android35.0/pl/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pl"
- },
- "lib/net9.0-android35.0/pt-BR/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/net9.0-android35.0/pt/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pt"
- },
- "lib/net9.0-android35.0/ro/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ro"
- },
- "lib/net9.0-android35.0/ru/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ru"
- },
- "lib/net9.0-android35.0/sk/Microsoft.Maui.Controls.resources.dll": {
- "locale": "sk"
- },
- "lib/net9.0-android35.0/sv/Microsoft.Maui.Controls.resources.dll": {
- "locale": "sv"
- },
- "lib/net9.0-android35.0/th/Microsoft.Maui.Controls.resources.dll": {
- "locale": "th"
- },
- "lib/net9.0-android35.0/tr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "tr"
- },
- "lib/net9.0-android35.0/uk/Microsoft.Maui.Controls.resources.dll": {
- "locale": "uk"
- },
- "lib/net9.0-android35.0/vi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "vi"
- },
- "lib/net9.0-android35.0/zh-HK/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-HK"
- },
- "lib/net9.0-android35.0/zh-Hans/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/net9.0-android35.0/zh-Hant/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.Maui.Controls.Xaml/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Core": "9.0.51"
- },
- "compile": {
- "lib/net9.0-android35.0/Microsoft.Maui.Controls.Xaml.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-android35.0/Microsoft.Maui.Controls.Xaml.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Core/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Maui.Essentials": "9.0.51",
- "Microsoft.Maui.Graphics": "9.0.51",
- "Xamarin.Android.Glide": "4.16.0.11",
- "Xamarin.AndroidX.Lifecycle.LiveData": "2.8.7.2",
- "Xamarin.AndroidX.Navigation.Common": "2.8.5.1",
- "Xamarin.AndroidX.Navigation.Fragment": "2.8.5.1",
- "Xamarin.AndroidX.Navigation.Runtime": "2.8.5.1",
- "Xamarin.AndroidX.Navigation.UI": "2.8.5.1",
- "Xamarin.AndroidX.SwipeRefreshLayout": "1.1.0.24",
- "Xamarin.Google.Android.Material": "1.12.0.2"
- },
- "compile": {
- "lib/net9.0-android35.0/Microsoft.Maui.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-android35.0/Microsoft.Maui.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/Microsoft.Maui.Core.props": {},
- "buildTransitive/Microsoft.Maui.Core.targets": {}
- }
- },
- "Microsoft.Maui.Essentials/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Graphics": "9.0.51",
- "Xamarin.AndroidX.Browser": "1.8.0.8",
- "Xamarin.AndroidX.Security.SecurityCrypto": "1.1.0.2-alpha06",
- "Xamarin.Google.Crypto.Tink.Android": "1.16.0.1"
- },
- "compile": {
- "lib/net9.0-android35.0/Microsoft.Maui.Essentials.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-android35.0/Microsoft.Maui.Essentials.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Graphics/9.0.51": {
- "type": "package",
- "compile": {
- "lib/net9.0-android35.0/Microsoft.Maui.Graphics.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-android35.0/Microsoft.Maui.Graphics.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Resizetizer/9.0.51": {
- "type": "package",
- "build": {
- "buildTransitive/Microsoft.Maui.Resizetizer.props": {},
- "buildTransitive/Microsoft.Maui.Resizetizer.targets": {}
- }
- },
- "Microsoft.NET.ILLink.Tasks/9.0.6": {
- "type": "package",
- "build": {
- "build/Microsoft.NET.ILLink.Tasks.props": {}
- }
- },
- "System.Text.Json/9.0.2": {
- "type": "package",
- "compile": {
- "lib/net9.0/System.Text.Json.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/System.Text.Json.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/System.Text.Json.targets": {}
- }
- },
- "Xamarin.Android.Glide/4.16.0.11": {
- "type": "package",
- "dependencies": {
- "Xamarin.Android.Glide.Annotations": "4.16.0.11",
- "Xamarin.Android.Glide.DiskLruCache": "4.16.0.11",
- "Xamarin.Android.Glide.GifDecoder": "4.16.0.11",
- "Xamarin.AndroidX.ExifInterface": "1.3.7.9",
- "Xamarin.AndroidX.Fragment": "1.8.5.2",
- "Xamarin.AndroidX.Tracing.Tracing": "1.2.0.9",
- "Xamarin.AndroidX.VectorDrawable.Animated": "1.2.0.5"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.Android.Glide.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.Android.Glide.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Xamarin.Android.Glide.Annotations/4.16.0.11": {
- "type": "package",
- "compile": {
- "lib/net8.0-android34.0/Xamarin.Android.Glide.Annotations.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.Android.Glide.Annotations.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.Android.Glide.DiskLruCache/4.16.0.11": {
- "type": "package",
- "compile": {
- "lib/net8.0-android34.0/Xamarin.Android.Glide.DiskLruCache.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.Android.Glide.DiskLruCache.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.Android.Glide.GifDecoder/4.16.0.11": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.Android.Glide.GifDecoder.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.Android.Glide.GifDecoder.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Xamarin.AndroidX.Activity/1.9.3.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.Lifecycle.Runtime": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.ViewModel": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.ViewModelSavedState": "2.8.7.2",
- "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller": "1.4.1.2",
- "Xamarin.AndroidX.SavedState": "1.2.1.15",
- "Xamarin.AndroidX.Tracing.Tracing": "1.2.0.9",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Activity.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Activity.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Activity.targets": {}
- }
- },
- "Xamarin.AndroidX.Activity.Ktx/1.9.3.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Activity": "[1.9.3.2, 1.9.4)",
- "Xamarin.AndroidX.Core.Core.Ktx": "1.15.0.2",
- "Xamarin.AndroidX.Lifecycle.Runtime.Ktx": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx": "2.8.7.2",
- "Xamarin.AndroidX.SavedState.SavedState.Ktx": "1.2.1.15",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Activity.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Activity.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Activity.Ktx.targets": {}
- }
- },
- "Xamarin.AndroidX.Annotation/1.9.1.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation.Jvm": "1.9.1.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Annotation.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Annotation.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Annotation.targets": {}
- }
- },
- "Xamarin.AndroidX.Annotation.Experimental/1.4.1.8": {
- "type": "package",
- "dependencies": {
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Annotation.Experimental.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Annotation.Experimental.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Annotation.Experimental.targets": {}
- }
- },
- "Xamarin.AndroidX.Annotation.Jvm/1.9.1.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Annotation.Jvm.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Annotation.Jvm.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Annotation.Jvm.targets": {}
- }
- },
- "Xamarin.AndroidX.AppCompat/1.7.0.5": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Activity": "1.9.3.2",
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.AppCompat.AppCompatResources": "[1.7.0.5, 1.7.1)",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.Core.Core.Ktx": "1.15.0.2",
- "Xamarin.AndroidX.CursorAdapter": "1.0.0.31",
- "Xamarin.AndroidX.DrawerLayout": "1.2.0.15",
- "Xamarin.AndroidX.Emoji2": "1.5.0.3",
- "Xamarin.AndroidX.Emoji2.ViewsHelper": "1.5.0.3",
- "Xamarin.AndroidX.Fragment": "1.8.5.2",
- "Xamarin.AndroidX.Lifecycle.Runtime": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.ViewModel": "2.8.7.2",
- "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller": "1.4.1.2",
- "Xamarin.AndroidX.ResourceInspection.Annotation": "1.0.1.19",
- "Xamarin.AndroidX.SavedState": "1.2.1.15",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.AppCompat.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.AppCompat.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.AppCompat.targets": {}
- }
- },
- "Xamarin.AndroidX.AppCompat.AppCompatResources/1.7.0.5": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.VectorDrawable": "1.2.0.5",
- "Xamarin.AndroidX.VectorDrawable.Animated": "1.2.0.5"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.AppCompat.AppCompatResources.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.AppCompat.AppCompatResources.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.AppCompat.AppCompatResources.targets": {}
- }
- },
- "Xamarin.AndroidX.Arch.Core.Common/2.2.0.15": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Arch.Core.Common.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Arch.Core.Common.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Arch.Core.Common.targets": {}
- }
- },
- "Xamarin.AndroidX.Arch.Core.Runtime/2.2.0.15": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Arch.Core.Common": "[2.2.0.15, 2.2.1)"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Arch.Core.Runtime.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Arch.Core.Runtime.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Arch.Core.Runtime.targets": {}
- }
- },
- "Xamarin.AndroidX.Browser/1.8.0.8": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Annotation.Experimental": "1.4.1.8",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Concurrent.Futures": "1.2.0.5",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.Interpolator": "1.0.0.31",
- "Xamarin.Google.Guava.ListenableFuture": "1.0.0.26"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Browser.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Browser.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Browser.targets": {}
- }
- },
- "Xamarin.AndroidX.CardView/1.0.0.33": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.CardView.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.CardView.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.CardView.targets": {}
- }
- },
- "Xamarin.AndroidX.Collection/1.4.5.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection.Jvm": "1.4.5.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Collection.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Collection.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Collection.targets": {}
- }
- },
- "Xamarin.AndroidX.Collection.Jvm/1.4.5.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation.Jvm": "1.9.1.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Collection.Jvm.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Collection.Jvm.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Collection.Jvm.targets": {}
- }
- },
- "Xamarin.AndroidX.Collection.Ktx/1.4.5.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Collection.Jvm": "[1.4.5.2, 1.4.6)"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Collection.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Collection.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Collection.Ktx.targets": {}
- }
- },
- "Xamarin.AndroidX.Concurrent.Futures/1.2.0.5": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.Google.Guava.ListenableFuture": "1.0.0.26"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Concurrent.Futures.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Concurrent.Futures.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Concurrent.Futures.targets": {}
- }
- },
- "Xamarin.AndroidX.ConstraintLayout/2.2.0.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.AppCompat": "1.7.0.5",
- "Xamarin.AndroidX.ConstraintLayout.Core": "1.1.0.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller": "1.4.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ConstraintLayout.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ConstraintLayout.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.ConstraintLayout.targets": {}
- }
- },
- "Xamarin.AndroidX.ConstraintLayout.Core/1.1.0.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ConstraintLayout.Core.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ConstraintLayout.Core.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.ConstraintLayout.Core.targets": {}
- }
- },
- "Xamarin.AndroidX.CoordinatorLayout/1.2.0.19": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.CustomView": "1.1.0.30"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.CoordinatorLayout.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.CoordinatorLayout.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.CoordinatorLayout.targets": {}
- }
- },
- "Xamarin.AndroidX.Core/1.15.0.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Annotation.Experimental": "1.4.1.8",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Concurrent.Futures": "1.2.0.5",
- "Xamarin.AndroidX.Interpolator": "1.0.0.31",
- "Xamarin.AndroidX.Lifecycle.Runtime": "2.8.7.2",
- "Xamarin.AndroidX.Tracing.Tracing": "1.2.0.9",
- "Xamarin.AndroidX.VersionedParcelable": "1.2.0.9",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Core.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Core.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Core.targets": {}
- }
- },
- "Xamarin.AndroidX.Core.Core.Ktx/1.15.0.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Core.Core.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Core.Core.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Core.Core.Ktx.targets": {}
- }
- },
- "Xamarin.AndroidX.CursorAdapter/1.0.0.31": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.CursorAdapter.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.CursorAdapter.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.CursorAdapter.targets": {}
- }
- },
- "Xamarin.AndroidX.CustomView/1.1.0.30": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.CustomView.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.CustomView.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.CustomView.targets": {}
- }
- },
- "Xamarin.AndroidX.CustomView.PoolingContainer/1.0.0.17": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Core.Core.Ktx": "1.15.0.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.CustomView.PoolingContainer.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.CustomView.PoolingContainer.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.CustomView.PoolingContainer.targets": {}
- }
- },
- "Xamarin.AndroidX.DocumentFile/1.0.1.31": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.DocumentFile.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.DocumentFile.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.DocumentFile.targets": {}
- }
- },
- "Xamarin.AndroidX.DrawerLayout/1.2.0.15": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.CustomView": "1.1.0.30"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.DrawerLayout.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.DrawerLayout.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.DrawerLayout.targets": {}
- }
- },
- "Xamarin.AndroidX.DynamicAnimation/1.0.0.31": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.Legacy.Support.Core.Utils": "1.0.0.31"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.DynamicAnimation.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.DynamicAnimation.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.DynamicAnimation.targets": {}
- }
- },
- "Xamarin.AndroidX.Emoji2/1.5.0.3": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.Lifecycle.Process": "2.8.7.2",
- "Xamarin.AndroidX.Startup.StartupRuntime": "1.2.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Emoji2.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Emoji2.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Emoji2.targets": {}
- }
- },
- "Xamarin.AndroidX.Emoji2.ViewsHelper/1.5.0.3": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.Emoji2": "[1.5.0.3, 1.5.1)"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Emoji2.ViewsHelper.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Emoji2.ViewsHelper.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Emoji2.ViewsHelper.targets": {}
- }
- },
- "Xamarin.AndroidX.ExifInterface/1.3.7.9": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ExifInterface.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ExifInterface.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.ExifInterface.targets": {}
- }
- },
- "Xamarin.AndroidX.Fragment/1.8.5.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Activity": "1.9.3.2",
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Annotation.Experimental": "1.4.1.8",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core.Core.Ktx": "1.15.0.2",
- "Xamarin.AndroidX.Lifecycle.LiveData.Core": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.Runtime": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.ViewModel": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.ViewModelSavedState": "2.8.7.2",
- "Xamarin.AndroidX.Loader": "1.1.0.31",
- "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller": "1.4.1.2",
- "Xamarin.AndroidX.SavedState": "1.2.1.15",
- "Xamarin.AndroidX.ViewPager": "1.1.0.1",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Fragment.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Fragment.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Fragment.targets": {}
- }
- },
- "Xamarin.AndroidX.Fragment.Ktx/1.8.5.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Activity.Ktx": "1.9.3.2",
- "Xamarin.AndroidX.Collection.Ktx": "1.4.5.2",
- "Xamarin.AndroidX.Core.Core.Ktx": "1.15.0.2",
- "Xamarin.AndroidX.Fragment": "[1.8.5.2, 1.8.6)",
- "Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx": "2.8.7.2",
- "Xamarin.AndroidX.SavedState.SavedState.Ktx": "1.2.1.15",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Fragment.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Fragment.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Fragment.Ktx.targets": {}
- }
- },
- "Xamarin.AndroidX.Interpolator/1.0.0.31": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Interpolator.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Interpolator.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Interpolator.targets": {}
- }
- },
- "Xamarin.AndroidX.Legacy.Support.Core.Utils/1.0.0.31": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.DocumentFile": "1.0.1.31",
- "Xamarin.AndroidX.Loader": "1.1.0.31",
- "Xamarin.AndroidX.LocalBroadcastManager": "1.1.0.19",
- "Xamarin.AndroidX.Print": "1.0.0.31"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Legacy.Support.Core.Utils.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Legacy.Support.Core.Utils.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Legacy.Support.Core.Utils.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.Common/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Lifecycle.Common.Jvm": "2.8.7.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.AtomicFU": "0.26.1.1",
- "Xamarin.KotlinX.Coroutines.Core": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Common.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Common.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Common.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.Common.Jvm/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation.Jvm": "1.9.1.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Coroutines.Core": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Common.Jvm.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Common.Jvm.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Common.Jvm.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.LiveData/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Arch.Core.Common": "2.2.0.15",
- "Xamarin.AndroidX.Arch.Core.Runtime": "2.2.0.15",
- "Xamarin.AndroidX.Lifecycle.LiveData.Core": "[2.8.7.2, 2.8.8)",
- "Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx": "[2.8.7.2, 2.8.8)",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Coroutines.Core": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.LiveData.Core/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Arch.Core.Common": "2.2.0.15",
- "Xamarin.AndroidX.Arch.Core.Runtime": "2.2.0.15",
- "Xamarin.AndroidX.Lifecycle.Common": "[2.8.7.2, 2.8.8)",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Lifecycle.LiveData.Core": "[2.8.7.2, 2.8.8)",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.Process/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Lifecycle.Runtime": "[2.8.7.2, 2.8.8)",
- "Xamarin.AndroidX.Startup.StartupRuntime": "1.2.0.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Process.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Process.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Process.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.Runtime/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Arch.Core.Common": "2.2.0.15",
- "Xamarin.AndroidX.Lifecycle.Common": "[2.8.7.2, 2.8.8)",
- "Xamarin.AndroidX.Lifecycle.Runtime.Android": "2.8.7.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.Runtime.Android/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Arch.Core.Common": "2.2.0.15",
- "Xamarin.AndroidX.Arch.Core.Runtime": "2.2.0.15",
- "Xamarin.AndroidX.Lifecycle.Common": "[2.8.7.2, 2.8.8)",
- "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller": "1.4.1.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Coroutines.Android": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Android.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Android.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Android.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.Runtime.Ktx/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Lifecycle.Runtime": "[2.8.7.2, 2.8.8)",
- "Xamarin.AndroidX.Lifecycle.Runtime.Ktx.Android": "2.8.7.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.Runtime.Ktx.Android/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Lifecycle.Runtime": "[2.8.7.2, 2.8.8)",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Coroutines.Android": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.Android.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.Android.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.Android.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.ViewModel/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Lifecycle.ViewModel.Android": "2.8.7.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Coroutines.Core": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.ViewModel.Android/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation.Jvm": "1.9.1.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Coroutines.Android": "1.9.0.2",
- "Xamarin.KotlinX.Coroutines.Core.Jvm": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.Android.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.Android.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.Android.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Lifecycle.ViewModel": "[2.8.7.2, 2.8.8)",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Coroutines.Android": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.targets": {}
- }
- },
- "Xamarin.AndroidX.Lifecycle.ViewModelSavedState/2.8.7.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Core.Core.Ktx": "1.15.0.2",
- "Xamarin.AndroidX.Lifecycle.LiveData.Core": "[2.8.7.2, 2.8.8)",
- "Xamarin.AndroidX.Lifecycle.ViewModel": "[2.8.7.2, 2.8.8)",
- "Xamarin.AndroidX.SavedState": "1.2.1.15",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Coroutines.Android": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModelSavedState.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModelSavedState.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModelSavedState.targets": {}
- }
- },
- "Xamarin.AndroidX.Loader/1.1.0.31": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.Lifecycle.LiveData.Core": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.ViewModel": "2.8.7.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Loader.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Loader.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Loader.targets": {}
- }
- },
- "Xamarin.AndroidX.LocalBroadcastManager/1.1.0.19": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.LocalBroadcastManager.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.LocalBroadcastManager.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.LocalBroadcastManager.targets": {}
- }
- },
- "Xamarin.AndroidX.Navigation.Common/2.8.5.1": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection.Ktx": "1.4.5.2",
- "Xamarin.AndroidX.Core.Core.Ktx": "1.15.0.2",
- "Xamarin.AndroidX.Lifecycle.Common": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.Runtime.Ktx": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.ViewModelSavedState": "2.8.7.2",
- "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller": "1.4.1.2",
- "Xamarin.AndroidX.SavedState.SavedState.Ktx": "1.2.1.15",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Serialization.Core": "1.7.3.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Navigation.Common.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Navigation.Common.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Navigation.Common.targets": {}
- }
- },
- "Xamarin.AndroidX.Navigation.Fragment/2.8.5.1": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Fragment.Ktx": "1.8.5.2",
- "Xamarin.AndroidX.Navigation.Runtime": "[2.8.5.1, 2.8.6)",
- "Xamarin.AndroidX.SlidingPaneLayout": "1.2.0.19",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Serialization.Core": "1.7.3.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Navigation.Fragment.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Navigation.Fragment.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Navigation.Fragment.targets": {}
- }
- },
- "Xamarin.AndroidX.Navigation.Runtime/2.8.5.1": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Activity.Ktx": "1.9.3.2",
- "Xamarin.AndroidX.Annotation.Experimental": "1.4.1.8",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Lifecycle.Runtime.Ktx": "2.8.7.2",
- "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx": "2.8.7.2",
- "Xamarin.AndroidX.Navigation.Common": "[2.8.5.1, 2.8.6)",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Serialization.Core": "1.7.3.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Navigation.Runtime.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Navigation.Runtime.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Navigation.Runtime.targets": {}
- }
- },
- "Xamarin.AndroidX.Navigation.UI/2.8.5.1": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation.Experimental": "1.4.1.8",
- "Xamarin.AndroidX.CustomView": "1.1.0.30",
- "Xamarin.AndroidX.DrawerLayout": "1.2.0.15",
- "Xamarin.AndroidX.Navigation.Runtime": "[2.8.5.1, 2.8.6)",
- "Xamarin.AndroidX.Transition": "1.5.1.4",
- "Xamarin.Google.Android.Material": "1.12.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Navigation.UI.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Navigation.UI.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Navigation.UI.targets": {}
- }
- },
- "Xamarin.AndroidX.Print/1.0.0.31": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Print.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Print.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Print.targets": {}
- }
- },
- "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller/1.4.1.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Concurrent.Futures": "1.2.0.5",
- "Xamarin.AndroidX.Startup.StartupRuntime": "1.2.0.2",
- "Xamarin.Google.Guava.ListenableFuture": "1.0.0.26"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.targets": {}
- }
- },
- "Xamarin.AndroidX.RecyclerView/1.3.2.10": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.CustomView": "1.1.0.30",
- "Xamarin.AndroidX.CustomView.PoolingContainer": "1.0.0.17"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.RecyclerView.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.RecyclerView.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.RecyclerView.targets": {}
- }
- },
- "Xamarin.AndroidX.ResourceInspection.Annotation/1.0.1.19": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ResourceInspection.Annotation.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ResourceInspection.Annotation.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.ResourceInspection.Annotation.targets": {}
- }
- },
- "Xamarin.AndroidX.SavedState/1.2.1.15": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Arch.Core.Common": "2.2.0.15",
- "Xamarin.AndroidX.Lifecycle.Common": "2.8.7.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.SavedState.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.SavedState.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.SavedState.targets": {}
- }
- },
- "Xamarin.AndroidX.SavedState.SavedState.Ktx/1.2.1.15": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.SavedState": "[1.2.1.15, 1.2.2)",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.SavedState.SavedState.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.SavedState.SavedState.Ktx.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.SavedState.SavedState.Ktx.targets": {}
- }
- },
- "Xamarin.AndroidX.Security.SecurityCrypto/1.1.0.2-alpha06": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.7.1.4",
- "Xamarin.AndroidX.Collection": "1.4.0.5",
- "Xamarin.Google.Crypto.Tink.Android": "1.13.0.3"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Security.SecurityCrypto.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Security.SecurityCrypto.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Security.SecurityCrypto.targets": {}
- }
- },
- "Xamarin.AndroidX.SlidingPaneLayout/1.2.0.19": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.CustomView": "1.1.0.30",
- "Xamarin.AndroidX.Transition": "1.5.1.4",
- "Xamarin.AndroidX.Window": "1.3.0.5"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.SlidingPaneLayout.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.SlidingPaneLayout.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.SlidingPaneLayout.targets": {}
- }
- },
- "Xamarin.AndroidX.Startup.StartupRuntime/1.2.0.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Tracing.Tracing": "1.2.0.9"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Startup.StartupRuntime.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Startup.StartupRuntime.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Startup.StartupRuntime.targets": {}
- }
- },
- "Xamarin.AndroidX.SwipeRefreshLayout/1.1.0.24": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.8.2.1",
- "Xamarin.AndroidX.Core": "1.13.1.5",
- "Xamarin.AndroidX.Interpolator": "1.0.0.29"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.SwipeRefreshLayout.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.SwipeRefreshLayout.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.SwipeRefreshLayout.targets": {}
- }
- },
- "Xamarin.AndroidX.Tracing.Tracing/1.2.0.9": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Tracing.Tracing.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Tracing.Tracing.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Tracing.Tracing.targets": {}
- }
- },
- "Xamarin.AndroidX.Transition/1.5.1.4": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.DynamicAnimation": "1.0.0.31",
- "Xamarin.AndroidX.Fragment": "1.8.5.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Transition.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Transition.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Transition.targets": {}
- }
- },
- "Xamarin.AndroidX.VectorDrawable/1.2.0.5": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.VectorDrawable.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.VectorDrawable.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.VectorDrawable.targets": {}
- }
- },
- "Xamarin.AndroidX.VectorDrawable.Animated/1.2.0.5": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.Interpolator": "1.0.0.31",
- "Xamarin.AndroidX.VectorDrawable": "1.2.0.5"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.VectorDrawable.Animated.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.VectorDrawable.Animated.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.VectorDrawable.Animated.targets": {}
- }
- },
- "Xamarin.AndroidX.VersionedParcelable/1.2.0.9": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.VersionedParcelable.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.VersionedParcelable.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.VersionedParcelable.targets": {}
- }
- },
- "Xamarin.AndroidX.ViewPager/1.1.0.1": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.CustomView": "1.1.0.30"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ViewPager.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ViewPager.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.ViewPager.targets": {}
- }
- },
- "Xamarin.AndroidX.ViewPager2/1.1.0.5": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Annotation.Experimental": "1.4.1.8",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.Fragment": "1.8.5.2",
- "Xamarin.AndroidX.RecyclerView": "1.3.2.10"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ViewPager2.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.ViewPager2.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.ViewPager2.targets": {}
- }
- },
- "Xamarin.AndroidX.Window/1.3.0.5": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Collection": "1.4.5.2",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.Window.Extensions.Core.Core": "1.0.0.13",
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Coroutines.Android": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Window.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Window.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Window.targets": {}
- }
- },
- "Xamarin.AndroidX.Window.Extensions.Core.Core/1.0.0.13": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Window.Extensions.Core.Core.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.AndroidX.Window.Extensions.Core.Core.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Window.Extensions.Core.Core.targets": {}
- }
- },
- "Xamarin.Google.Android.Material/1.12.0.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.AndroidX.Activity": "1.9.3.2",
- "Xamarin.AndroidX.Annotation": "1.9.1.2",
- "Xamarin.AndroidX.Annotation.Experimental": "1.4.1.8",
- "Xamarin.AndroidX.AppCompat": "1.7.0.5",
- "Xamarin.AndroidX.CardView": "1.0.0.33",
- "Xamarin.AndroidX.ConstraintLayout": "2.2.0.2",
- "Xamarin.AndroidX.CoordinatorLayout": "1.2.0.19",
- "Xamarin.AndroidX.Core": "1.15.0.2",
- "Xamarin.AndroidX.DrawerLayout": "1.2.0.15",
- "Xamarin.AndroidX.DynamicAnimation": "1.0.0.31",
- "Xamarin.AndroidX.Fragment": "1.8.5.2",
- "Xamarin.AndroidX.Lifecycle.Runtime": "2.8.7.2",
- "Xamarin.AndroidX.RecyclerView": "1.3.2.10",
- "Xamarin.AndroidX.ResourceInspection.Annotation": "1.0.1.19",
- "Xamarin.AndroidX.Transition": "1.5.1.4",
- "Xamarin.AndroidX.VectorDrawable": "1.2.0.5",
- "Xamarin.AndroidX.ViewPager2": "1.1.0.5",
- "Xamarin.Google.ErrorProne.Annotations": "2.36.0.1"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.Google.Android.Material.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.Google.Android.Material.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net8.0-android34.0/Xamarin.Google.Android.Material.targets": {}
- }
- },
- "Xamarin.Google.Code.FindBugs.JSR305/3.0.2.18": {
- "type": "package",
- "compile": {
- "lib/net8.0-android34.0/Jsr305Binding.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Jsr305Binding.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.Google.Crypto.Tink.Android/1.16.0.1": {
- "type": "package",
- "dependencies": {
- "GoogleGson": "2.11.0.5",
- "Xamarin.AndroidX.Annotation.Jvm": "1.9.1.2",
- "Xamarin.Google.Code.FindBugs.JSR305": "3.0.2.18",
- "Xamarin.Google.ErrorProne.Annotations": "2.36.0.1"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.Google.Crypto.Tink.Android.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.Google.Crypto.Tink.Android.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.Google.ErrorProne.Annotations/2.36.0.1": {
- "type": "package",
- "compile": {
- "lib/net8.0-android34.0/Xamarin.Google.ErrorProne.Annotations.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.Google.ErrorProne.Annotations.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.Google.Guava.ListenableFuture/1.0.0.26": {
- "type": "package",
- "compile": {
- "lib/net8.0-android34.0/Xamarin.Google.Guava.ListenableFuture.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.Google.Guava.ListenableFuture.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.Jetbrains.Annotations/26.0.1.2": {
- "type": "package",
- "compile": {
- "lib/net8.0-android34.0/Xamarin.Jetbrains.Annotations.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.Jetbrains.Annotations.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.Kotlin.StdLib/2.0.21.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.Jetbrains.Annotations": "26.0.1.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.Kotlin.StdLib.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.Kotlin.StdLib.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.KotlinX.AtomicFU/0.26.1.1": {
- "type": "package",
- "dependencies": {
- "Xamarin.KotlinX.AtomicFU.Jvm": "0.26.1.1"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.AtomicFU.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.AtomicFU.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.KotlinX.AtomicFU.Jvm/0.26.1.1": {
- "type": "package",
- "dependencies": {
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.AtomicFU.Jvm.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.AtomicFU.Jvm.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.KotlinX.Coroutines.Android/1.9.0.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.Kotlin.StdLib": "2.0.21.2",
- "Xamarin.KotlinX.Coroutines.Core.Jvm": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.Coroutines.Android.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.Coroutines.Android.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.KotlinX.Coroutines.Core/1.9.0.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.KotlinX.Coroutines.Core.Jvm": "1.9.0.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.Coroutines.Core.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.Coroutines.Core.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.KotlinX.Coroutines.Core.Jvm/1.9.0.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.Jetbrains.Annotations": "26.0.1.2",
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.Coroutines.Core.Jvm.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.Coroutines.Core.Jvm.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.KotlinX.Serialization.Core/1.7.3.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.KotlinX.Serialization.Core.Jvm": "1.7.3.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.Serialization.Core.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.Serialization.Core.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- },
- "Xamarin.KotlinX.Serialization.Core.Jvm/1.7.3.2": {
- "type": "package",
- "dependencies": {
- "Xamarin.Kotlin.StdLib": "2.0.21.2"
- },
- "compile": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.Serialization.Core.Jvm.dll": {
- "related": ".aar;.pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0-android34.0/Xamarin.KotlinX.Serialization.Core.Jvm.dll": {
- "related": ".aar;.pdb;.xml"
- }
- }
- }
- },
- "net9.0-ios18.5": {
- "FFMpegCore/5.2.0": {
- "type": "package",
- "dependencies": {
- "Instances": "3.0.1",
- "System.Text.Json": "9.0.2"
- },
- "compile": {
- "lib/netstandard2.0/FFMpegCore.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/FFMpegCore.dll": {}
- }
- },
- "Instances/3.0.1": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/Instances.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/Instances.dll": {}
- },
- "contentFiles": {
- "contentFiles/any/any/_._": {
- "buildAction": "None",
- "codeLanguage": "any",
- "copyToOutput": false
- }
- }
- },
- "Microsoft.Extensions.Configuration/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Configuration.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Configuration.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Configuration.Abstractions/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": {
- "type": "package",
- "compile": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Logging/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Extensions.Options": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Logging.Abstractions/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets": {}
- }
- },
- "Microsoft.Extensions.Logging.Debug/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.Debug.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.Debug.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Options/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Options.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Options.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/Microsoft.Extensions.Options.targets": {}
- }
- },
- "Microsoft.Extensions.Primitives/9.0.0": {
- "type": "package",
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Primitives.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Primitives.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Maui.Controls/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Controls.Build.Tasks": "9.0.51",
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Controls.Xaml": "9.0.51",
- "Microsoft.Maui.Resizetizer": "9.0.51"
- }
- },
- "Microsoft.Maui.Controls.Build.Tasks/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Controls.Xaml": "9.0.51"
- },
- "build": {
- "buildTransitive/net6.0-ios10.0/Microsoft.Maui.Controls.Build.Tasks.props": {},
- "buildTransitive/net6.0-ios10.0/Microsoft.Maui.Controls.Build.Tasks.targets": {}
- }
- },
- "Microsoft.Maui.Controls.Core/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Maui.Core": "9.0.51"
- },
- "compile": {
- "lib/net9.0-ios18.0/Microsoft.Maui.Controls.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-ios18.0/Microsoft.Maui.Controls.dll": {
- "related": ".pdb;.xml"
- }
- },
- "resource": {
- "lib/net9.0-ios18.0/ar/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ar"
- },
- "lib/net9.0-ios18.0/ca/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ca"
- },
- "lib/net9.0-ios18.0/cs/Microsoft.Maui.Controls.resources.dll": {
- "locale": "cs"
- },
- "lib/net9.0-ios18.0/da/Microsoft.Maui.Controls.resources.dll": {
- "locale": "da"
- },
- "lib/net9.0-ios18.0/de/Microsoft.Maui.Controls.resources.dll": {
- "locale": "de"
- },
- "lib/net9.0-ios18.0/el/Microsoft.Maui.Controls.resources.dll": {
- "locale": "el"
- },
- "lib/net9.0-ios18.0/es/Microsoft.Maui.Controls.resources.dll": {
- "locale": "es"
- },
- "lib/net9.0-ios18.0/fi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "fi"
- },
- "lib/net9.0-ios18.0/fr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "fr"
- },
- "lib/net9.0-ios18.0/he/Microsoft.Maui.Controls.resources.dll": {
- "locale": "he"
- },
- "lib/net9.0-ios18.0/hi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hi"
- },
- "lib/net9.0-ios18.0/hr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hr"
- },
- "lib/net9.0-ios18.0/hu/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hu"
- },
- "lib/net9.0-ios18.0/id/Microsoft.Maui.Controls.resources.dll": {
- "locale": "id"
- },
- "lib/net9.0-ios18.0/it/Microsoft.Maui.Controls.resources.dll": {
- "locale": "it"
- },
- "lib/net9.0-ios18.0/ja/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ja"
- },
- "lib/net9.0-ios18.0/ko/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ko"
- },
- "lib/net9.0-ios18.0/ms/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ms"
- },
- "lib/net9.0-ios18.0/nb/Microsoft.Maui.Controls.resources.dll": {
- "locale": "nb"
- },
- "lib/net9.0-ios18.0/nl/Microsoft.Maui.Controls.resources.dll": {
- "locale": "nl"
- },
- "lib/net9.0-ios18.0/pl/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pl"
- },
- "lib/net9.0-ios18.0/pt-BR/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/net9.0-ios18.0/pt/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pt"
- },
- "lib/net9.0-ios18.0/ro/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ro"
- },
- "lib/net9.0-ios18.0/ru/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ru"
- },
- "lib/net9.0-ios18.0/sk/Microsoft.Maui.Controls.resources.dll": {
- "locale": "sk"
- },
- "lib/net9.0-ios18.0/sv/Microsoft.Maui.Controls.resources.dll": {
- "locale": "sv"
- },
- "lib/net9.0-ios18.0/th/Microsoft.Maui.Controls.resources.dll": {
- "locale": "th"
- },
- "lib/net9.0-ios18.0/tr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "tr"
- },
- "lib/net9.0-ios18.0/uk/Microsoft.Maui.Controls.resources.dll": {
- "locale": "uk"
- },
- "lib/net9.0-ios18.0/vi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "vi"
- },
- "lib/net9.0-ios18.0/zh-HK/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-HK"
- },
- "lib/net9.0-ios18.0/zh-Hans/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/net9.0-ios18.0/zh-Hant/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.Maui.Controls.Xaml/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Core": "9.0.51"
- },
- "compile": {
- "lib/net9.0-ios18.0/Microsoft.Maui.Controls.Xaml.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-ios18.0/Microsoft.Maui.Controls.Xaml.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Core/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Maui.Essentials": "9.0.51",
- "Microsoft.Maui.Graphics": "9.0.51"
- },
- "compile": {
- "lib/net9.0-ios18.0/Microsoft.Maui.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-ios18.0/Microsoft.Maui.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/Microsoft.Maui.Core.props": {},
- "buildTransitive/Microsoft.Maui.Core.targets": {}
- }
- },
- "Microsoft.Maui.Essentials/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Graphics": "9.0.51"
- },
- "compile": {
- "lib/net9.0-ios18.0/Microsoft.Maui.Essentials.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-ios18.0/Microsoft.Maui.Essentials.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Graphics/9.0.51": {
- "type": "package",
- "compile": {
- "lib/net9.0-ios18.0/Microsoft.Maui.Graphics.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-ios18.0/Microsoft.Maui.Graphics.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Resizetizer/9.0.51": {
- "type": "package",
- "build": {
- "buildTransitive/Microsoft.Maui.Resizetizer.props": {},
- "buildTransitive/Microsoft.Maui.Resizetizer.targets": {}
- }
- },
- "Microsoft.NET.ILLink.Tasks/9.0.6": {
- "type": "package",
- "build": {
- "build/Microsoft.NET.ILLink.Tasks.props": {}
- }
- },
- "System.Text.Json/9.0.2": {
- "type": "package",
- "compile": {
- "lib/net9.0/System.Text.Json.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/System.Text.Json.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/System.Text.Json.targets": {}
- }
- }
- },
- "net9.0-ios18.5/android-arm64": {
- "FFMpegCore/5.2.0": {
- "type": "package",
- "dependencies": {
- "Instances": "3.0.1",
- "System.Text.Json": "9.0.2"
- },
- "compile": {
- "lib/netstandard2.0/FFMpegCore.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/FFMpegCore.dll": {}
- }
- },
- "Instances/3.0.1": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/Instances.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/Instances.dll": {}
- },
- "contentFiles": {
- "contentFiles/any/any/_._": {
- "buildAction": "None",
- "codeLanguage": "any",
- "copyToOutput": false
- }
- }
- },
- "Microsoft.Extensions.Configuration/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Configuration.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Configuration.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Configuration.Abstractions/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": {
- "type": "package",
- "compile": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Logging/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Extensions.Options": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Logging.Abstractions/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets": {}
- }
- },
- "Microsoft.Extensions.Logging.Debug/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.Debug.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.Debug.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Options/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Options.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Options.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/Microsoft.Extensions.Options.targets": {}
- }
- },
- "Microsoft.Extensions.Primitives/9.0.0": {
- "type": "package",
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Primitives.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Primitives.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Maui.Controls/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Controls.Build.Tasks": "9.0.51",
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Controls.Xaml": "9.0.51",
- "Microsoft.Maui.Resizetizer": "9.0.51"
- }
- },
- "Microsoft.Maui.Controls.Build.Tasks/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Controls.Xaml": "9.0.51"
- },
- "build": {
- "buildTransitive/net6.0-ios10.0/Microsoft.Maui.Controls.Build.Tasks.props": {},
- "buildTransitive/net6.0-ios10.0/Microsoft.Maui.Controls.Build.Tasks.targets": {}
- }
- },
- "Microsoft.Maui.Controls.Core/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Maui.Core": "9.0.51"
- },
- "compile": {
- "lib/net9.0-ios18.0/Microsoft.Maui.Controls.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-ios18.0/Microsoft.Maui.Controls.dll": {
- "related": ".pdb;.xml"
- }
- },
- "resource": {
- "lib/net9.0-ios18.0/ar/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ar"
- },
- "lib/net9.0-ios18.0/ca/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ca"
- },
- "lib/net9.0-ios18.0/cs/Microsoft.Maui.Controls.resources.dll": {
- "locale": "cs"
- },
- "lib/net9.0-ios18.0/da/Microsoft.Maui.Controls.resources.dll": {
- "locale": "da"
- },
- "lib/net9.0-ios18.0/de/Microsoft.Maui.Controls.resources.dll": {
- "locale": "de"
- },
- "lib/net9.0-ios18.0/el/Microsoft.Maui.Controls.resources.dll": {
- "locale": "el"
- },
- "lib/net9.0-ios18.0/es/Microsoft.Maui.Controls.resources.dll": {
- "locale": "es"
- },
- "lib/net9.0-ios18.0/fi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "fi"
- },
- "lib/net9.0-ios18.0/fr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "fr"
- },
- "lib/net9.0-ios18.0/he/Microsoft.Maui.Controls.resources.dll": {
- "locale": "he"
- },
- "lib/net9.0-ios18.0/hi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hi"
- },
- "lib/net9.0-ios18.0/hr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hr"
- },
- "lib/net9.0-ios18.0/hu/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hu"
- },
- "lib/net9.0-ios18.0/id/Microsoft.Maui.Controls.resources.dll": {
- "locale": "id"
- },
- "lib/net9.0-ios18.0/it/Microsoft.Maui.Controls.resources.dll": {
- "locale": "it"
- },
- "lib/net9.0-ios18.0/ja/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ja"
- },
- "lib/net9.0-ios18.0/ko/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ko"
- },
- "lib/net9.0-ios18.0/ms/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ms"
- },
- "lib/net9.0-ios18.0/nb/Microsoft.Maui.Controls.resources.dll": {
- "locale": "nb"
- },
- "lib/net9.0-ios18.0/nl/Microsoft.Maui.Controls.resources.dll": {
- "locale": "nl"
- },
- "lib/net9.0-ios18.0/pl/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pl"
- },
- "lib/net9.0-ios18.0/pt-BR/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/net9.0-ios18.0/pt/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pt"
- },
- "lib/net9.0-ios18.0/ro/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ro"
- },
- "lib/net9.0-ios18.0/ru/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ru"
- },
- "lib/net9.0-ios18.0/sk/Microsoft.Maui.Controls.resources.dll": {
- "locale": "sk"
- },
- "lib/net9.0-ios18.0/sv/Microsoft.Maui.Controls.resources.dll": {
- "locale": "sv"
- },
- "lib/net9.0-ios18.0/th/Microsoft.Maui.Controls.resources.dll": {
- "locale": "th"
- },
- "lib/net9.0-ios18.0/tr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "tr"
- },
- "lib/net9.0-ios18.0/uk/Microsoft.Maui.Controls.resources.dll": {
- "locale": "uk"
- },
- "lib/net9.0-ios18.0/vi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "vi"
- },
- "lib/net9.0-ios18.0/zh-HK/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-HK"
- },
- "lib/net9.0-ios18.0/zh-Hans/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/net9.0-ios18.0/zh-Hant/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.Maui.Controls.Xaml/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Core": "9.0.51"
- },
- "compile": {
- "lib/net9.0-ios18.0/Microsoft.Maui.Controls.Xaml.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-ios18.0/Microsoft.Maui.Controls.Xaml.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Core/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Maui.Essentials": "9.0.51",
- "Microsoft.Maui.Graphics": "9.0.51"
- },
- "compile": {
- "lib/net9.0-ios18.0/Microsoft.Maui.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-ios18.0/Microsoft.Maui.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/Microsoft.Maui.Core.props": {},
- "buildTransitive/Microsoft.Maui.Core.targets": {}
- }
- },
- "Microsoft.Maui.Essentials/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Graphics": "9.0.51"
- },
- "compile": {
- "lib/net9.0-ios18.0/Microsoft.Maui.Essentials.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-ios18.0/Microsoft.Maui.Essentials.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Graphics/9.0.51": {
- "type": "package",
- "compile": {
- "lib/net9.0-ios18.0/Microsoft.Maui.Graphics.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-ios18.0/Microsoft.Maui.Graphics.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Resizetizer/9.0.51": {
- "type": "package",
- "build": {
- "buildTransitive/Microsoft.Maui.Resizetizer.props": {},
- "buildTransitive/Microsoft.Maui.Resizetizer.targets": {}
- }
- },
- "Microsoft.NET.ILLink.Tasks/9.0.6": {
- "type": "package",
- "build": {
- "build/Microsoft.NET.ILLink.Tasks.props": {}
- }
- },
- "System.Text.Json/9.0.2": {
- "type": "package",
- "compile": {
- "lib/net9.0/System.Text.Json.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/System.Text.Json.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/System.Text.Json.targets": {}
- }
- }
- },
- "net9.0-ios18.5/android-x64": {
- "FFMpegCore/5.2.0": {
- "type": "package",
- "dependencies": {
- "Instances": "3.0.1",
- "System.Text.Json": "9.0.2"
- },
- "compile": {
- "lib/netstandard2.0/FFMpegCore.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/FFMpegCore.dll": {}
- }
- },
- "Instances/3.0.1": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/Instances.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/Instances.dll": {}
- },
- "contentFiles": {
- "contentFiles/any/any/_._": {
- "buildAction": "None",
- "codeLanguage": "any",
- "copyToOutput": false
- }
- }
- },
- "Microsoft.Extensions.Configuration/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Configuration.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Configuration.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Configuration.Abstractions/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": {
- "type": "package",
- "compile": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Logging/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Extensions.Options": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Logging.Abstractions/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets": {}
- }
- },
- "Microsoft.Extensions.Logging.Debug/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.Debug.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.Debug.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Options/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Options.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Options.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/Microsoft.Extensions.Options.targets": {}
- }
- },
- "Microsoft.Extensions.Primitives/9.0.0": {
- "type": "package",
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Primitives.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Primitives.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Maui.Controls/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Controls.Build.Tasks": "9.0.51",
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Controls.Xaml": "9.0.51",
- "Microsoft.Maui.Resizetizer": "9.0.51"
- }
- },
- "Microsoft.Maui.Controls.Build.Tasks/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Controls.Xaml": "9.0.51"
- },
- "build": {
- "buildTransitive/net6.0-ios10.0/Microsoft.Maui.Controls.Build.Tasks.props": {},
- "buildTransitive/net6.0-ios10.0/Microsoft.Maui.Controls.Build.Tasks.targets": {}
- }
- },
- "Microsoft.Maui.Controls.Core/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Maui.Core": "9.0.51"
- },
- "compile": {
- "lib/net9.0-ios18.0/Microsoft.Maui.Controls.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-ios18.0/Microsoft.Maui.Controls.dll": {
- "related": ".pdb;.xml"
- }
- },
- "resource": {
- "lib/net9.0-ios18.0/ar/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ar"
- },
- "lib/net9.0-ios18.0/ca/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ca"
- },
- "lib/net9.0-ios18.0/cs/Microsoft.Maui.Controls.resources.dll": {
- "locale": "cs"
- },
- "lib/net9.0-ios18.0/da/Microsoft.Maui.Controls.resources.dll": {
- "locale": "da"
- },
- "lib/net9.0-ios18.0/de/Microsoft.Maui.Controls.resources.dll": {
- "locale": "de"
- },
- "lib/net9.0-ios18.0/el/Microsoft.Maui.Controls.resources.dll": {
- "locale": "el"
- },
- "lib/net9.0-ios18.0/es/Microsoft.Maui.Controls.resources.dll": {
- "locale": "es"
- },
- "lib/net9.0-ios18.0/fi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "fi"
- },
- "lib/net9.0-ios18.0/fr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "fr"
- },
- "lib/net9.0-ios18.0/he/Microsoft.Maui.Controls.resources.dll": {
- "locale": "he"
- },
- "lib/net9.0-ios18.0/hi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hi"
- },
- "lib/net9.0-ios18.0/hr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hr"
- },
- "lib/net9.0-ios18.0/hu/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hu"
- },
- "lib/net9.0-ios18.0/id/Microsoft.Maui.Controls.resources.dll": {
- "locale": "id"
- },
- "lib/net9.0-ios18.0/it/Microsoft.Maui.Controls.resources.dll": {
- "locale": "it"
- },
- "lib/net9.0-ios18.0/ja/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ja"
- },
- "lib/net9.0-ios18.0/ko/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ko"
- },
- "lib/net9.0-ios18.0/ms/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ms"
- },
- "lib/net9.0-ios18.0/nb/Microsoft.Maui.Controls.resources.dll": {
- "locale": "nb"
- },
- "lib/net9.0-ios18.0/nl/Microsoft.Maui.Controls.resources.dll": {
- "locale": "nl"
- },
- "lib/net9.0-ios18.0/pl/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pl"
- },
- "lib/net9.0-ios18.0/pt-BR/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/net9.0-ios18.0/pt/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pt"
- },
- "lib/net9.0-ios18.0/ro/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ro"
- },
- "lib/net9.0-ios18.0/ru/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ru"
- },
- "lib/net9.0-ios18.0/sk/Microsoft.Maui.Controls.resources.dll": {
- "locale": "sk"
- },
- "lib/net9.0-ios18.0/sv/Microsoft.Maui.Controls.resources.dll": {
- "locale": "sv"
- },
- "lib/net9.0-ios18.0/th/Microsoft.Maui.Controls.resources.dll": {
- "locale": "th"
- },
- "lib/net9.0-ios18.0/tr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "tr"
- },
- "lib/net9.0-ios18.0/uk/Microsoft.Maui.Controls.resources.dll": {
- "locale": "uk"
- },
- "lib/net9.0-ios18.0/vi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "vi"
- },
- "lib/net9.0-ios18.0/zh-HK/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-HK"
- },
- "lib/net9.0-ios18.0/zh-Hans/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/net9.0-ios18.0/zh-Hant/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.Maui.Controls.Xaml/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Core": "9.0.51"
- },
- "compile": {
- "lib/net9.0-ios18.0/Microsoft.Maui.Controls.Xaml.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-ios18.0/Microsoft.Maui.Controls.Xaml.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Core/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Maui.Essentials": "9.0.51",
- "Microsoft.Maui.Graphics": "9.0.51"
- },
- "compile": {
- "lib/net9.0-ios18.0/Microsoft.Maui.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-ios18.0/Microsoft.Maui.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/Microsoft.Maui.Core.props": {},
- "buildTransitive/Microsoft.Maui.Core.targets": {}
- }
- },
- "Microsoft.Maui.Essentials/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Graphics": "9.0.51"
- },
- "compile": {
- "lib/net9.0-ios18.0/Microsoft.Maui.Essentials.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-ios18.0/Microsoft.Maui.Essentials.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Graphics/9.0.51": {
- "type": "package",
- "compile": {
- "lib/net9.0-ios18.0/Microsoft.Maui.Graphics.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-ios18.0/Microsoft.Maui.Graphics.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Resizetizer/9.0.51": {
- "type": "package",
- "build": {
- "buildTransitive/Microsoft.Maui.Resizetizer.props": {},
- "buildTransitive/Microsoft.Maui.Resizetizer.targets": {}
- }
- },
- "Microsoft.NET.ILLink.Tasks/9.0.6": {
- "type": "package",
- "build": {
- "build/Microsoft.NET.ILLink.Tasks.props": {}
- }
- },
- "System.Text.Json/9.0.2": {
- "type": "package",
- "compile": {
- "lib/net9.0/System.Text.Json.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/System.Text.Json.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/System.Text.Json.targets": {}
- }
- }
- },
- "net9.0-ios18.5/iossimulator-x64": {
- "FFMpegCore/5.2.0": {
- "type": "package",
- "dependencies": {
- "Instances": "3.0.1",
- "System.Text.Json": "9.0.2"
- },
- "compile": {
- "lib/netstandard2.0/FFMpegCore.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/FFMpegCore.dll": {}
- }
- },
- "Instances/3.0.1": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/Instances.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/Instances.dll": {}
- },
- "contentFiles": {
- "contentFiles/any/any/_._": {
- "buildAction": "None",
- "codeLanguage": "any",
- "copyToOutput": false
- }
- }
- },
- "Microsoft.Extensions.Configuration/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Configuration.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Configuration.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Configuration.Abstractions/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": {
- "type": "package",
- "compile": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Logging/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Extensions.Options": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Logging.Abstractions/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets": {}
- }
- },
- "Microsoft.Extensions.Logging.Debug/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.Debug.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.Debug.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Options/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Options.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Options.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/Microsoft.Extensions.Options.targets": {}
- }
- },
- "Microsoft.Extensions.Primitives/9.0.0": {
- "type": "package",
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Primitives.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Primitives.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Maui.Controls/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Controls.Build.Tasks": "9.0.51",
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Controls.Xaml": "9.0.51",
- "Microsoft.Maui.Resizetizer": "9.0.51"
- }
- },
- "Microsoft.Maui.Controls.Build.Tasks/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Controls.Xaml": "9.0.51"
- },
- "build": {
- "buildTransitive/net6.0-ios10.0/Microsoft.Maui.Controls.Build.Tasks.props": {},
- "buildTransitive/net6.0-ios10.0/Microsoft.Maui.Controls.Build.Tasks.targets": {}
- }
- },
- "Microsoft.Maui.Controls.Core/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Maui.Core": "9.0.51"
- },
- "compile": {
- "lib/net9.0-ios18.0/Microsoft.Maui.Controls.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-ios18.0/Microsoft.Maui.Controls.dll": {
- "related": ".pdb;.xml"
- }
- },
- "resource": {
- "lib/net9.0-ios18.0/ar/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ar"
- },
- "lib/net9.0-ios18.0/ca/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ca"
- },
- "lib/net9.0-ios18.0/cs/Microsoft.Maui.Controls.resources.dll": {
- "locale": "cs"
- },
- "lib/net9.0-ios18.0/da/Microsoft.Maui.Controls.resources.dll": {
- "locale": "da"
- },
- "lib/net9.0-ios18.0/de/Microsoft.Maui.Controls.resources.dll": {
- "locale": "de"
- },
- "lib/net9.0-ios18.0/el/Microsoft.Maui.Controls.resources.dll": {
- "locale": "el"
- },
- "lib/net9.0-ios18.0/es/Microsoft.Maui.Controls.resources.dll": {
- "locale": "es"
- },
- "lib/net9.0-ios18.0/fi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "fi"
- },
- "lib/net9.0-ios18.0/fr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "fr"
- },
- "lib/net9.0-ios18.0/he/Microsoft.Maui.Controls.resources.dll": {
- "locale": "he"
- },
- "lib/net9.0-ios18.0/hi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hi"
- },
- "lib/net9.0-ios18.0/hr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hr"
- },
- "lib/net9.0-ios18.0/hu/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hu"
- },
- "lib/net9.0-ios18.0/id/Microsoft.Maui.Controls.resources.dll": {
- "locale": "id"
- },
- "lib/net9.0-ios18.0/it/Microsoft.Maui.Controls.resources.dll": {
- "locale": "it"
- },
- "lib/net9.0-ios18.0/ja/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ja"
- },
- "lib/net9.0-ios18.0/ko/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ko"
- },
- "lib/net9.0-ios18.0/ms/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ms"
- },
- "lib/net9.0-ios18.0/nb/Microsoft.Maui.Controls.resources.dll": {
- "locale": "nb"
- },
- "lib/net9.0-ios18.0/nl/Microsoft.Maui.Controls.resources.dll": {
- "locale": "nl"
- },
- "lib/net9.0-ios18.0/pl/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pl"
- },
- "lib/net9.0-ios18.0/pt-BR/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/net9.0-ios18.0/pt/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pt"
- },
- "lib/net9.0-ios18.0/ro/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ro"
- },
- "lib/net9.0-ios18.0/ru/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ru"
- },
- "lib/net9.0-ios18.0/sk/Microsoft.Maui.Controls.resources.dll": {
- "locale": "sk"
- },
- "lib/net9.0-ios18.0/sv/Microsoft.Maui.Controls.resources.dll": {
- "locale": "sv"
- },
- "lib/net9.0-ios18.0/th/Microsoft.Maui.Controls.resources.dll": {
- "locale": "th"
- },
- "lib/net9.0-ios18.0/tr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "tr"
- },
- "lib/net9.0-ios18.0/uk/Microsoft.Maui.Controls.resources.dll": {
- "locale": "uk"
- },
- "lib/net9.0-ios18.0/vi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "vi"
- },
- "lib/net9.0-ios18.0/zh-HK/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-HK"
- },
- "lib/net9.0-ios18.0/zh-Hans/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/net9.0-ios18.0/zh-Hant/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.Maui.Controls.Xaml/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Core": "9.0.51"
- },
- "compile": {
- "lib/net9.0-ios18.0/Microsoft.Maui.Controls.Xaml.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-ios18.0/Microsoft.Maui.Controls.Xaml.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Core/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Maui.Essentials": "9.0.51",
- "Microsoft.Maui.Graphics": "9.0.51"
- },
- "compile": {
- "lib/net9.0-ios18.0/Microsoft.Maui.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-ios18.0/Microsoft.Maui.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/Microsoft.Maui.Core.props": {},
- "buildTransitive/Microsoft.Maui.Core.targets": {}
- }
- },
- "Microsoft.Maui.Essentials/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Graphics": "9.0.51"
- },
- "compile": {
- "lib/net9.0-ios18.0/Microsoft.Maui.Essentials.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-ios18.0/Microsoft.Maui.Essentials.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Graphics/9.0.51": {
- "type": "package",
- "compile": {
- "lib/net9.0-ios18.0/Microsoft.Maui.Graphics.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-ios18.0/Microsoft.Maui.Graphics.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Resizetizer/9.0.51": {
- "type": "package",
- "build": {
- "buildTransitive/Microsoft.Maui.Resizetizer.props": {},
- "buildTransitive/Microsoft.Maui.Resizetizer.targets": {}
- }
- },
- "Microsoft.NET.ILLink.Tasks/9.0.6": {
- "type": "package",
- "build": {
- "build/Microsoft.NET.ILLink.Tasks.props": {}
- }
- },
- "System.Text.Json/9.0.2": {
- "type": "package",
- "compile": {
- "lib/net9.0/System.Text.Json.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/System.Text.Json.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/System.Text.Json.targets": {}
- }
- }
- },
- "net9.0-ios18.5/maccatalyst-arm64": {
- "FFMpegCore/5.2.0": {
- "type": "package",
- "dependencies": {
- "Instances": "3.0.1",
- "System.Text.Json": "9.0.2"
- },
- "compile": {
- "lib/netstandard2.0/FFMpegCore.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/FFMpegCore.dll": {}
- }
- },
- "Instances/3.0.1": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/Instances.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/Instances.dll": {}
- },
- "contentFiles": {
- "contentFiles/any/any/_._": {
- "buildAction": "None",
- "codeLanguage": "any",
- "copyToOutput": false
- }
- }
- },
- "Microsoft.Extensions.Configuration/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Configuration.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Configuration.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Configuration.Abstractions/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": {
- "type": "package",
- "compile": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Logging/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Extensions.Options": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Logging.Abstractions/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets": {}
- }
- },
- "Microsoft.Extensions.Logging.Debug/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.Debug.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.Debug.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Options/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Options.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Options.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/Microsoft.Extensions.Options.targets": {}
- }
- },
- "Microsoft.Extensions.Primitives/9.0.0": {
- "type": "package",
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Primitives.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Primitives.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Maui.Controls/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Controls.Build.Tasks": "9.0.51",
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Controls.Xaml": "9.0.51",
- "Microsoft.Maui.Resizetizer": "9.0.51"
- }
- },
- "Microsoft.Maui.Controls.Build.Tasks/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Controls.Xaml": "9.0.51"
- },
- "build": {
- "buildTransitive/net6.0-ios10.0/Microsoft.Maui.Controls.Build.Tasks.props": {},
- "buildTransitive/net6.0-ios10.0/Microsoft.Maui.Controls.Build.Tasks.targets": {}
- }
- },
- "Microsoft.Maui.Controls.Core/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Maui.Core": "9.0.51"
- },
- "compile": {
- "lib/net9.0-ios18.0/Microsoft.Maui.Controls.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-ios18.0/Microsoft.Maui.Controls.dll": {
- "related": ".pdb;.xml"
- }
- },
- "resource": {
- "lib/net9.0-ios18.0/ar/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ar"
- },
- "lib/net9.0-ios18.0/ca/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ca"
- },
- "lib/net9.0-ios18.0/cs/Microsoft.Maui.Controls.resources.dll": {
- "locale": "cs"
- },
- "lib/net9.0-ios18.0/da/Microsoft.Maui.Controls.resources.dll": {
- "locale": "da"
- },
- "lib/net9.0-ios18.0/de/Microsoft.Maui.Controls.resources.dll": {
- "locale": "de"
- },
- "lib/net9.0-ios18.0/el/Microsoft.Maui.Controls.resources.dll": {
- "locale": "el"
- },
- "lib/net9.0-ios18.0/es/Microsoft.Maui.Controls.resources.dll": {
- "locale": "es"
- },
- "lib/net9.0-ios18.0/fi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "fi"
- },
- "lib/net9.0-ios18.0/fr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "fr"
- },
- "lib/net9.0-ios18.0/he/Microsoft.Maui.Controls.resources.dll": {
- "locale": "he"
- },
- "lib/net9.0-ios18.0/hi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hi"
- },
- "lib/net9.0-ios18.0/hr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hr"
- },
- "lib/net9.0-ios18.0/hu/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hu"
- },
- "lib/net9.0-ios18.0/id/Microsoft.Maui.Controls.resources.dll": {
- "locale": "id"
- },
- "lib/net9.0-ios18.0/it/Microsoft.Maui.Controls.resources.dll": {
- "locale": "it"
- },
- "lib/net9.0-ios18.0/ja/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ja"
- },
- "lib/net9.0-ios18.0/ko/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ko"
- },
- "lib/net9.0-ios18.0/ms/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ms"
- },
- "lib/net9.0-ios18.0/nb/Microsoft.Maui.Controls.resources.dll": {
- "locale": "nb"
- },
- "lib/net9.0-ios18.0/nl/Microsoft.Maui.Controls.resources.dll": {
- "locale": "nl"
- },
- "lib/net9.0-ios18.0/pl/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pl"
- },
- "lib/net9.0-ios18.0/pt-BR/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/net9.0-ios18.0/pt/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pt"
- },
- "lib/net9.0-ios18.0/ro/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ro"
- },
- "lib/net9.0-ios18.0/ru/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ru"
- },
- "lib/net9.0-ios18.0/sk/Microsoft.Maui.Controls.resources.dll": {
- "locale": "sk"
- },
- "lib/net9.0-ios18.0/sv/Microsoft.Maui.Controls.resources.dll": {
- "locale": "sv"
- },
- "lib/net9.0-ios18.0/th/Microsoft.Maui.Controls.resources.dll": {
- "locale": "th"
- },
- "lib/net9.0-ios18.0/tr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "tr"
- },
- "lib/net9.0-ios18.0/uk/Microsoft.Maui.Controls.resources.dll": {
- "locale": "uk"
- },
- "lib/net9.0-ios18.0/vi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "vi"
- },
- "lib/net9.0-ios18.0/zh-HK/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-HK"
- },
- "lib/net9.0-ios18.0/zh-Hans/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/net9.0-ios18.0/zh-Hant/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.Maui.Controls.Xaml/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Core": "9.0.51"
- },
- "compile": {
- "lib/net9.0-ios18.0/Microsoft.Maui.Controls.Xaml.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-ios18.0/Microsoft.Maui.Controls.Xaml.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Core/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Maui.Essentials": "9.0.51",
- "Microsoft.Maui.Graphics": "9.0.51"
- },
- "compile": {
- "lib/net9.0-ios18.0/Microsoft.Maui.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-ios18.0/Microsoft.Maui.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/Microsoft.Maui.Core.props": {},
- "buildTransitive/Microsoft.Maui.Core.targets": {}
- }
- },
- "Microsoft.Maui.Essentials/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Graphics": "9.0.51"
- },
- "compile": {
- "lib/net9.0-ios18.0/Microsoft.Maui.Essentials.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-ios18.0/Microsoft.Maui.Essentials.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Graphics/9.0.51": {
- "type": "package",
- "compile": {
- "lib/net9.0-ios18.0/Microsoft.Maui.Graphics.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-ios18.0/Microsoft.Maui.Graphics.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Resizetizer/9.0.51": {
- "type": "package",
- "build": {
- "buildTransitive/Microsoft.Maui.Resizetizer.props": {},
- "buildTransitive/Microsoft.Maui.Resizetizer.targets": {}
- }
- },
- "Microsoft.NET.ILLink.Tasks/9.0.6": {
- "type": "package",
- "build": {
- "build/Microsoft.NET.ILLink.Tasks.props": {}
- }
- },
- "System.Text.Json/9.0.2": {
- "type": "package",
- "compile": {
- "lib/net9.0/System.Text.Json.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/System.Text.Json.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/System.Text.Json.targets": {}
- }
- }
- },
- "net9.0-ios18.5/maccatalyst-x64": {
- "FFMpegCore/5.2.0": {
- "type": "package",
- "dependencies": {
- "Instances": "3.0.1",
- "System.Text.Json": "9.0.2"
- },
- "compile": {
- "lib/netstandard2.0/FFMpegCore.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/FFMpegCore.dll": {}
- }
- },
- "Instances/3.0.1": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/Instances.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/Instances.dll": {}
- },
- "contentFiles": {
- "contentFiles/any/any/_._": {
- "buildAction": "None",
- "codeLanguage": "any",
- "copyToOutput": false
- }
- }
- },
- "Microsoft.Extensions.Configuration/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Configuration.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Configuration.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Configuration.Abstractions/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": {
- "type": "package",
- "compile": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Logging/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Extensions.Options": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Logging.Abstractions/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets": {}
- }
- },
- "Microsoft.Extensions.Logging.Debug/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.Debug.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.Debug.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Options/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Options.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Options.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/Microsoft.Extensions.Options.targets": {}
- }
- },
- "Microsoft.Extensions.Primitives/9.0.0": {
- "type": "package",
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Primitives.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Primitives.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Maui.Controls/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Controls.Build.Tasks": "9.0.51",
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Controls.Xaml": "9.0.51",
- "Microsoft.Maui.Resizetizer": "9.0.51"
- }
- },
- "Microsoft.Maui.Controls.Build.Tasks/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Controls.Xaml": "9.0.51"
- },
- "build": {
- "buildTransitive/net6.0-ios10.0/Microsoft.Maui.Controls.Build.Tasks.props": {},
- "buildTransitive/net6.0-ios10.0/Microsoft.Maui.Controls.Build.Tasks.targets": {}
- }
- },
- "Microsoft.Maui.Controls.Core/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Maui.Core": "9.0.51"
- },
- "compile": {
- "lib/net9.0-ios18.0/Microsoft.Maui.Controls.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-ios18.0/Microsoft.Maui.Controls.dll": {
- "related": ".pdb;.xml"
- }
- },
- "resource": {
- "lib/net9.0-ios18.0/ar/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ar"
- },
- "lib/net9.0-ios18.0/ca/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ca"
- },
- "lib/net9.0-ios18.0/cs/Microsoft.Maui.Controls.resources.dll": {
- "locale": "cs"
- },
- "lib/net9.0-ios18.0/da/Microsoft.Maui.Controls.resources.dll": {
- "locale": "da"
- },
- "lib/net9.0-ios18.0/de/Microsoft.Maui.Controls.resources.dll": {
- "locale": "de"
- },
- "lib/net9.0-ios18.0/el/Microsoft.Maui.Controls.resources.dll": {
- "locale": "el"
- },
- "lib/net9.0-ios18.0/es/Microsoft.Maui.Controls.resources.dll": {
- "locale": "es"
- },
- "lib/net9.0-ios18.0/fi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "fi"
- },
- "lib/net9.0-ios18.0/fr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "fr"
- },
- "lib/net9.0-ios18.0/he/Microsoft.Maui.Controls.resources.dll": {
- "locale": "he"
- },
- "lib/net9.0-ios18.0/hi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hi"
- },
- "lib/net9.0-ios18.0/hr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hr"
- },
- "lib/net9.0-ios18.0/hu/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hu"
- },
- "lib/net9.0-ios18.0/id/Microsoft.Maui.Controls.resources.dll": {
- "locale": "id"
- },
- "lib/net9.0-ios18.0/it/Microsoft.Maui.Controls.resources.dll": {
- "locale": "it"
- },
- "lib/net9.0-ios18.0/ja/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ja"
- },
- "lib/net9.0-ios18.0/ko/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ko"
- },
- "lib/net9.0-ios18.0/ms/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ms"
- },
- "lib/net9.0-ios18.0/nb/Microsoft.Maui.Controls.resources.dll": {
- "locale": "nb"
- },
- "lib/net9.0-ios18.0/nl/Microsoft.Maui.Controls.resources.dll": {
- "locale": "nl"
- },
- "lib/net9.0-ios18.0/pl/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pl"
- },
- "lib/net9.0-ios18.0/pt-BR/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/net9.0-ios18.0/pt/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pt"
- },
- "lib/net9.0-ios18.0/ro/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ro"
- },
- "lib/net9.0-ios18.0/ru/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ru"
- },
- "lib/net9.0-ios18.0/sk/Microsoft.Maui.Controls.resources.dll": {
- "locale": "sk"
- },
- "lib/net9.0-ios18.0/sv/Microsoft.Maui.Controls.resources.dll": {
- "locale": "sv"
- },
- "lib/net9.0-ios18.0/th/Microsoft.Maui.Controls.resources.dll": {
- "locale": "th"
- },
- "lib/net9.0-ios18.0/tr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "tr"
- },
- "lib/net9.0-ios18.0/uk/Microsoft.Maui.Controls.resources.dll": {
- "locale": "uk"
- },
- "lib/net9.0-ios18.0/vi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "vi"
- },
- "lib/net9.0-ios18.0/zh-HK/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-HK"
- },
- "lib/net9.0-ios18.0/zh-Hans/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/net9.0-ios18.0/zh-Hant/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.Maui.Controls.Xaml/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Core": "9.0.51"
- },
- "compile": {
- "lib/net9.0-ios18.0/Microsoft.Maui.Controls.Xaml.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-ios18.0/Microsoft.Maui.Controls.Xaml.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Core/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Maui.Essentials": "9.0.51",
- "Microsoft.Maui.Graphics": "9.0.51"
- },
- "compile": {
- "lib/net9.0-ios18.0/Microsoft.Maui.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-ios18.0/Microsoft.Maui.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/Microsoft.Maui.Core.props": {},
- "buildTransitive/Microsoft.Maui.Core.targets": {}
- }
- },
- "Microsoft.Maui.Essentials/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Graphics": "9.0.51"
- },
- "compile": {
- "lib/net9.0-ios18.0/Microsoft.Maui.Essentials.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-ios18.0/Microsoft.Maui.Essentials.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Graphics/9.0.51": {
- "type": "package",
- "compile": {
- "lib/net9.0-ios18.0/Microsoft.Maui.Graphics.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-ios18.0/Microsoft.Maui.Graphics.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Resizetizer/9.0.51": {
- "type": "package",
- "build": {
- "buildTransitive/Microsoft.Maui.Resizetizer.props": {},
- "buildTransitive/Microsoft.Maui.Resizetizer.targets": {}
- }
- },
- "Microsoft.NET.ILLink.Tasks/9.0.6": {
- "type": "package",
- "build": {
- "build/Microsoft.NET.ILLink.Tasks.props": {}
- }
- },
- "System.Text.Json/9.0.2": {
- "type": "package",
- "compile": {
- "lib/net9.0/System.Text.Json.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/System.Text.Json.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/System.Text.Json.targets": {}
- }
- }
- },
- "net9.0-ios18.5/win10-x64": {
- "FFMpegCore/5.2.0": {
- "type": "package",
- "dependencies": {
- "Instances": "3.0.1",
- "System.Text.Json": "9.0.2"
- },
- "compile": {
- "lib/netstandard2.0/FFMpegCore.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/FFMpegCore.dll": {}
- }
- },
- "Instances/3.0.1": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/Instances.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/Instances.dll": {}
- },
- "contentFiles": {
- "contentFiles/any/any/_._": {
- "buildAction": "None",
- "codeLanguage": "any",
- "copyToOutput": false
- }
- }
- },
- "Microsoft.Extensions.Configuration/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Configuration.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Configuration.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Configuration.Abstractions/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": {
- "type": "package",
- "compile": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Logging/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Extensions.Options": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Logging.Abstractions/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets": {}
- }
- },
- "Microsoft.Extensions.Logging.Debug/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.Debug.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.Debug.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Options/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Options.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Options.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/Microsoft.Extensions.Options.targets": {}
- }
- },
- "Microsoft.Extensions.Primitives/9.0.0": {
- "type": "package",
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Primitives.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Primitives.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Maui.Controls/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Controls.Build.Tasks": "9.0.51",
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Controls.Xaml": "9.0.51",
- "Microsoft.Maui.Resizetizer": "9.0.51"
- }
- },
- "Microsoft.Maui.Controls.Build.Tasks/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Controls.Xaml": "9.0.51"
- },
- "build": {
- "buildTransitive/net6.0-ios10.0/Microsoft.Maui.Controls.Build.Tasks.props": {},
- "buildTransitive/net6.0-ios10.0/Microsoft.Maui.Controls.Build.Tasks.targets": {}
- }
- },
- "Microsoft.Maui.Controls.Core/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Maui.Core": "9.0.51"
- },
- "compile": {
- "lib/net9.0-ios18.0/Microsoft.Maui.Controls.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-ios18.0/Microsoft.Maui.Controls.dll": {
- "related": ".pdb;.xml"
- }
- },
- "resource": {
- "lib/net9.0-ios18.0/ar/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ar"
- },
- "lib/net9.0-ios18.0/ca/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ca"
- },
- "lib/net9.0-ios18.0/cs/Microsoft.Maui.Controls.resources.dll": {
- "locale": "cs"
- },
- "lib/net9.0-ios18.0/da/Microsoft.Maui.Controls.resources.dll": {
- "locale": "da"
- },
- "lib/net9.0-ios18.0/de/Microsoft.Maui.Controls.resources.dll": {
- "locale": "de"
- },
- "lib/net9.0-ios18.0/el/Microsoft.Maui.Controls.resources.dll": {
- "locale": "el"
- },
- "lib/net9.0-ios18.0/es/Microsoft.Maui.Controls.resources.dll": {
- "locale": "es"
- },
- "lib/net9.0-ios18.0/fi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "fi"
- },
- "lib/net9.0-ios18.0/fr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "fr"
- },
- "lib/net9.0-ios18.0/he/Microsoft.Maui.Controls.resources.dll": {
- "locale": "he"
- },
- "lib/net9.0-ios18.0/hi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hi"
- },
- "lib/net9.0-ios18.0/hr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hr"
- },
- "lib/net9.0-ios18.0/hu/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hu"
- },
- "lib/net9.0-ios18.0/id/Microsoft.Maui.Controls.resources.dll": {
- "locale": "id"
- },
- "lib/net9.0-ios18.0/it/Microsoft.Maui.Controls.resources.dll": {
- "locale": "it"
- },
- "lib/net9.0-ios18.0/ja/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ja"
- },
- "lib/net9.0-ios18.0/ko/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ko"
- },
- "lib/net9.0-ios18.0/ms/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ms"
- },
- "lib/net9.0-ios18.0/nb/Microsoft.Maui.Controls.resources.dll": {
- "locale": "nb"
- },
- "lib/net9.0-ios18.0/nl/Microsoft.Maui.Controls.resources.dll": {
- "locale": "nl"
- },
- "lib/net9.0-ios18.0/pl/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pl"
- },
- "lib/net9.0-ios18.0/pt-BR/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/net9.0-ios18.0/pt/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pt"
- },
- "lib/net9.0-ios18.0/ro/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ro"
- },
- "lib/net9.0-ios18.0/ru/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ru"
- },
- "lib/net9.0-ios18.0/sk/Microsoft.Maui.Controls.resources.dll": {
- "locale": "sk"
- },
- "lib/net9.0-ios18.0/sv/Microsoft.Maui.Controls.resources.dll": {
- "locale": "sv"
- },
- "lib/net9.0-ios18.0/th/Microsoft.Maui.Controls.resources.dll": {
- "locale": "th"
- },
- "lib/net9.0-ios18.0/tr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "tr"
- },
- "lib/net9.0-ios18.0/uk/Microsoft.Maui.Controls.resources.dll": {
- "locale": "uk"
- },
- "lib/net9.0-ios18.0/vi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "vi"
- },
- "lib/net9.0-ios18.0/zh-HK/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-HK"
- },
- "lib/net9.0-ios18.0/zh-Hans/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/net9.0-ios18.0/zh-Hant/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.Maui.Controls.Xaml/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Core": "9.0.51"
- },
- "compile": {
- "lib/net9.0-ios18.0/Microsoft.Maui.Controls.Xaml.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-ios18.0/Microsoft.Maui.Controls.Xaml.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Core/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Maui.Essentials": "9.0.51",
- "Microsoft.Maui.Graphics": "9.0.51"
- },
- "compile": {
- "lib/net9.0-ios18.0/Microsoft.Maui.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-ios18.0/Microsoft.Maui.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/Microsoft.Maui.Core.props": {},
- "buildTransitive/Microsoft.Maui.Core.targets": {}
- }
- },
- "Microsoft.Maui.Essentials/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Graphics": "9.0.51"
- },
- "compile": {
- "lib/net9.0-ios18.0/Microsoft.Maui.Essentials.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-ios18.0/Microsoft.Maui.Essentials.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Graphics/9.0.51": {
- "type": "package",
- "compile": {
- "lib/net9.0-ios18.0/Microsoft.Maui.Graphics.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-ios18.0/Microsoft.Maui.Graphics.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Resizetizer/9.0.51": {
- "type": "package",
- "build": {
- "buildTransitive/Microsoft.Maui.Resizetizer.props": {},
- "buildTransitive/Microsoft.Maui.Resizetizer.targets": {}
- }
- },
- "Microsoft.NET.ILLink.Tasks/9.0.6": {
- "type": "package",
- "build": {
- "build/Microsoft.NET.ILLink.Tasks.props": {}
- }
- },
- "System.Text.Json/9.0.2": {
- "type": "package",
- "compile": {
- "lib/net9.0/System.Text.Json.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/System.Text.Json.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/System.Text.Json.targets": {}
- }
- }
- },
- "net9.0-maccatalyst18.5": {
- "FFMpegCore/5.2.0": {
- "type": "package",
- "dependencies": {
- "Instances": "3.0.1",
- "System.Text.Json": "9.0.2"
- },
- "compile": {
- "lib/netstandard2.0/FFMpegCore.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/FFMpegCore.dll": {}
- }
- },
- "Instances/3.0.1": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/Instances.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/Instances.dll": {}
- },
- "contentFiles": {
- "contentFiles/any/any/_._": {
- "buildAction": "None",
- "codeLanguage": "any",
- "copyToOutput": false
- }
- }
- },
- "Microsoft.Extensions.Configuration/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Configuration.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Configuration.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Configuration.Abstractions/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": {
- "type": "package",
- "compile": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Logging/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Extensions.Options": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Logging.Abstractions/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets": {}
- }
- },
- "Microsoft.Extensions.Logging.Debug/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.Debug.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.Debug.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Options/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Options.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Options.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/Microsoft.Extensions.Options.targets": {}
- }
- },
- "Microsoft.Extensions.Primitives/9.0.0": {
- "type": "package",
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Primitives.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Primitives.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Maui.Controls/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Controls.Build.Tasks": "9.0.51",
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Controls.Xaml": "9.0.51",
- "Microsoft.Maui.Resizetizer": "9.0.51"
- }
- },
- "Microsoft.Maui.Controls.Build.Tasks/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Controls.Xaml": "9.0.51"
- },
- "build": {
- "buildTransitive/net6.0-maccatalyst13.1/Microsoft.Maui.Controls.Build.Tasks.props": {},
- "buildTransitive/net6.0-maccatalyst13.1/Microsoft.Maui.Controls.Build.Tasks.targets": {}
- }
- },
- "Microsoft.Maui.Controls.Core/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Maui.Core": "9.0.51"
- },
- "compile": {
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.Controls.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.Controls.dll": {
- "related": ".pdb;.xml"
- }
- },
- "resource": {
- "lib/net9.0-maccatalyst18.0/ar/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ar"
- },
- "lib/net9.0-maccatalyst18.0/ca/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ca"
- },
- "lib/net9.0-maccatalyst18.0/cs/Microsoft.Maui.Controls.resources.dll": {
- "locale": "cs"
- },
- "lib/net9.0-maccatalyst18.0/da/Microsoft.Maui.Controls.resources.dll": {
- "locale": "da"
- },
- "lib/net9.0-maccatalyst18.0/de/Microsoft.Maui.Controls.resources.dll": {
- "locale": "de"
- },
- "lib/net9.0-maccatalyst18.0/el/Microsoft.Maui.Controls.resources.dll": {
- "locale": "el"
- },
- "lib/net9.0-maccatalyst18.0/es/Microsoft.Maui.Controls.resources.dll": {
- "locale": "es"
- },
- "lib/net9.0-maccatalyst18.0/fi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "fi"
- },
- "lib/net9.0-maccatalyst18.0/fr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "fr"
- },
- "lib/net9.0-maccatalyst18.0/he/Microsoft.Maui.Controls.resources.dll": {
- "locale": "he"
- },
- "lib/net9.0-maccatalyst18.0/hi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hi"
- },
- "lib/net9.0-maccatalyst18.0/hr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hr"
- },
- "lib/net9.0-maccatalyst18.0/hu/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hu"
- },
- "lib/net9.0-maccatalyst18.0/id/Microsoft.Maui.Controls.resources.dll": {
- "locale": "id"
- },
- "lib/net9.0-maccatalyst18.0/it/Microsoft.Maui.Controls.resources.dll": {
- "locale": "it"
- },
- "lib/net9.0-maccatalyst18.0/ja/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ja"
- },
- "lib/net9.0-maccatalyst18.0/ko/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ko"
- },
- "lib/net9.0-maccatalyst18.0/ms/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ms"
- },
- "lib/net9.0-maccatalyst18.0/nb/Microsoft.Maui.Controls.resources.dll": {
- "locale": "nb"
- },
- "lib/net9.0-maccatalyst18.0/nl/Microsoft.Maui.Controls.resources.dll": {
- "locale": "nl"
- },
- "lib/net9.0-maccatalyst18.0/pl/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pl"
- },
- "lib/net9.0-maccatalyst18.0/pt-BR/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/net9.0-maccatalyst18.0/pt/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pt"
- },
- "lib/net9.0-maccatalyst18.0/ro/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ro"
- },
- "lib/net9.0-maccatalyst18.0/ru/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ru"
- },
- "lib/net9.0-maccatalyst18.0/sk/Microsoft.Maui.Controls.resources.dll": {
- "locale": "sk"
- },
- "lib/net9.0-maccatalyst18.0/sv/Microsoft.Maui.Controls.resources.dll": {
- "locale": "sv"
- },
- "lib/net9.0-maccatalyst18.0/th/Microsoft.Maui.Controls.resources.dll": {
- "locale": "th"
- },
- "lib/net9.0-maccatalyst18.0/tr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "tr"
- },
- "lib/net9.0-maccatalyst18.0/uk/Microsoft.Maui.Controls.resources.dll": {
- "locale": "uk"
- },
- "lib/net9.0-maccatalyst18.0/vi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "vi"
- },
- "lib/net9.0-maccatalyst18.0/zh-HK/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-HK"
- },
- "lib/net9.0-maccatalyst18.0/zh-Hans/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/net9.0-maccatalyst18.0/zh-Hant/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.Maui.Controls.Xaml/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Core": "9.0.51"
- },
- "compile": {
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.Controls.Xaml.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.Controls.Xaml.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Core/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Maui.Essentials": "9.0.51",
- "Microsoft.Maui.Graphics": "9.0.51"
- },
- "compile": {
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/Microsoft.Maui.Core.props": {},
- "buildTransitive/Microsoft.Maui.Core.targets": {}
- }
- },
- "Microsoft.Maui.Essentials/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Graphics": "9.0.51"
- },
- "compile": {
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.Essentials.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.Essentials.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Graphics/9.0.51": {
- "type": "package",
- "compile": {
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.Graphics.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.Graphics.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Resizetizer/9.0.51": {
- "type": "package",
- "build": {
- "buildTransitive/Microsoft.Maui.Resizetizer.props": {},
- "buildTransitive/Microsoft.Maui.Resizetizer.targets": {}
- }
- },
- "Microsoft.NET.ILLink.Tasks/9.0.6": {
- "type": "package",
- "build": {
- "build/Microsoft.NET.ILLink.Tasks.props": {}
- }
- },
- "System.Text.Json/9.0.2": {
- "type": "package",
- "compile": {
- "lib/net9.0/System.Text.Json.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/System.Text.Json.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/System.Text.Json.targets": {}
- }
- }
- },
- "net9.0-maccatalyst18.5/android-arm64": {
- "FFMpegCore/5.2.0": {
- "type": "package",
- "dependencies": {
- "Instances": "3.0.1",
- "System.Text.Json": "9.0.2"
- },
- "compile": {
- "lib/netstandard2.0/FFMpegCore.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/FFMpegCore.dll": {}
- }
- },
- "Instances/3.0.1": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/Instances.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/Instances.dll": {}
- },
- "contentFiles": {
- "contentFiles/any/any/_._": {
- "buildAction": "None",
- "codeLanguage": "any",
- "copyToOutput": false
- }
- }
- },
- "Microsoft.Extensions.Configuration/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Configuration.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Configuration.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Configuration.Abstractions/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": {
- "type": "package",
- "compile": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Logging/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Extensions.Options": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Logging.Abstractions/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets": {}
- }
- },
- "Microsoft.Extensions.Logging.Debug/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.Debug.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.Debug.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Options/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Options.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Options.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/Microsoft.Extensions.Options.targets": {}
- }
- },
- "Microsoft.Extensions.Primitives/9.0.0": {
- "type": "package",
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Primitives.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Primitives.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Maui.Controls/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Controls.Build.Tasks": "9.0.51",
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Controls.Xaml": "9.0.51",
- "Microsoft.Maui.Resizetizer": "9.0.51"
- }
- },
- "Microsoft.Maui.Controls.Build.Tasks/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Controls.Xaml": "9.0.51"
- },
- "build": {
- "buildTransitive/net6.0-maccatalyst13.1/Microsoft.Maui.Controls.Build.Tasks.props": {},
- "buildTransitive/net6.0-maccatalyst13.1/Microsoft.Maui.Controls.Build.Tasks.targets": {}
- }
- },
- "Microsoft.Maui.Controls.Core/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Maui.Core": "9.0.51"
- },
- "compile": {
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.Controls.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.Controls.dll": {
- "related": ".pdb;.xml"
- }
- },
- "resource": {
- "lib/net9.0-maccatalyst18.0/ar/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ar"
- },
- "lib/net9.0-maccatalyst18.0/ca/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ca"
- },
- "lib/net9.0-maccatalyst18.0/cs/Microsoft.Maui.Controls.resources.dll": {
- "locale": "cs"
- },
- "lib/net9.0-maccatalyst18.0/da/Microsoft.Maui.Controls.resources.dll": {
- "locale": "da"
- },
- "lib/net9.0-maccatalyst18.0/de/Microsoft.Maui.Controls.resources.dll": {
- "locale": "de"
- },
- "lib/net9.0-maccatalyst18.0/el/Microsoft.Maui.Controls.resources.dll": {
- "locale": "el"
- },
- "lib/net9.0-maccatalyst18.0/es/Microsoft.Maui.Controls.resources.dll": {
- "locale": "es"
- },
- "lib/net9.0-maccatalyst18.0/fi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "fi"
- },
- "lib/net9.0-maccatalyst18.0/fr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "fr"
- },
- "lib/net9.0-maccatalyst18.0/he/Microsoft.Maui.Controls.resources.dll": {
- "locale": "he"
- },
- "lib/net9.0-maccatalyst18.0/hi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hi"
- },
- "lib/net9.0-maccatalyst18.0/hr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hr"
- },
- "lib/net9.0-maccatalyst18.0/hu/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hu"
- },
- "lib/net9.0-maccatalyst18.0/id/Microsoft.Maui.Controls.resources.dll": {
- "locale": "id"
- },
- "lib/net9.0-maccatalyst18.0/it/Microsoft.Maui.Controls.resources.dll": {
- "locale": "it"
- },
- "lib/net9.0-maccatalyst18.0/ja/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ja"
- },
- "lib/net9.0-maccatalyst18.0/ko/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ko"
- },
- "lib/net9.0-maccatalyst18.0/ms/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ms"
- },
- "lib/net9.0-maccatalyst18.0/nb/Microsoft.Maui.Controls.resources.dll": {
- "locale": "nb"
- },
- "lib/net9.0-maccatalyst18.0/nl/Microsoft.Maui.Controls.resources.dll": {
- "locale": "nl"
- },
- "lib/net9.0-maccatalyst18.0/pl/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pl"
- },
- "lib/net9.0-maccatalyst18.0/pt-BR/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/net9.0-maccatalyst18.0/pt/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pt"
- },
- "lib/net9.0-maccatalyst18.0/ro/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ro"
- },
- "lib/net9.0-maccatalyst18.0/ru/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ru"
- },
- "lib/net9.0-maccatalyst18.0/sk/Microsoft.Maui.Controls.resources.dll": {
- "locale": "sk"
- },
- "lib/net9.0-maccatalyst18.0/sv/Microsoft.Maui.Controls.resources.dll": {
- "locale": "sv"
- },
- "lib/net9.0-maccatalyst18.0/th/Microsoft.Maui.Controls.resources.dll": {
- "locale": "th"
- },
- "lib/net9.0-maccatalyst18.0/tr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "tr"
- },
- "lib/net9.0-maccatalyst18.0/uk/Microsoft.Maui.Controls.resources.dll": {
- "locale": "uk"
- },
- "lib/net9.0-maccatalyst18.0/vi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "vi"
- },
- "lib/net9.0-maccatalyst18.0/zh-HK/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-HK"
- },
- "lib/net9.0-maccatalyst18.0/zh-Hans/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/net9.0-maccatalyst18.0/zh-Hant/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.Maui.Controls.Xaml/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Core": "9.0.51"
- },
- "compile": {
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.Controls.Xaml.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.Controls.Xaml.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Core/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Maui.Essentials": "9.0.51",
- "Microsoft.Maui.Graphics": "9.0.51"
- },
- "compile": {
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/Microsoft.Maui.Core.props": {},
- "buildTransitive/Microsoft.Maui.Core.targets": {}
- }
- },
- "Microsoft.Maui.Essentials/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Graphics": "9.0.51"
- },
- "compile": {
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.Essentials.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.Essentials.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Graphics/9.0.51": {
- "type": "package",
- "compile": {
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.Graphics.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.Graphics.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Resizetizer/9.0.51": {
- "type": "package",
- "build": {
- "buildTransitive/Microsoft.Maui.Resizetizer.props": {},
- "buildTransitive/Microsoft.Maui.Resizetizer.targets": {}
- }
- },
- "Microsoft.NET.ILLink.Tasks/9.0.6": {
- "type": "package",
- "build": {
- "build/Microsoft.NET.ILLink.Tasks.props": {}
- }
- },
- "System.Text.Json/9.0.2": {
- "type": "package",
- "compile": {
- "lib/net9.0/System.Text.Json.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/System.Text.Json.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/System.Text.Json.targets": {}
- }
- }
- },
- "net9.0-maccatalyst18.5/android-x64": {
- "FFMpegCore/5.2.0": {
- "type": "package",
- "dependencies": {
- "Instances": "3.0.1",
- "System.Text.Json": "9.0.2"
- },
- "compile": {
- "lib/netstandard2.0/FFMpegCore.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/FFMpegCore.dll": {}
- }
- },
- "Instances/3.0.1": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/Instances.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/Instances.dll": {}
- },
- "contentFiles": {
- "contentFiles/any/any/_._": {
- "buildAction": "None",
- "codeLanguage": "any",
- "copyToOutput": false
- }
- }
- },
- "Microsoft.Extensions.Configuration/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Configuration.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Configuration.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Configuration.Abstractions/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": {
- "type": "package",
- "compile": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Logging/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Extensions.Options": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Logging.Abstractions/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets": {}
- }
- },
- "Microsoft.Extensions.Logging.Debug/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.Debug.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.Debug.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Options/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Options.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Options.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/Microsoft.Extensions.Options.targets": {}
- }
- },
- "Microsoft.Extensions.Primitives/9.0.0": {
- "type": "package",
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Primitives.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Primitives.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Maui.Controls/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Controls.Build.Tasks": "9.0.51",
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Controls.Xaml": "9.0.51",
- "Microsoft.Maui.Resizetizer": "9.0.51"
- }
- },
- "Microsoft.Maui.Controls.Build.Tasks/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Controls.Xaml": "9.0.51"
- },
- "build": {
- "buildTransitive/net6.0-maccatalyst13.1/Microsoft.Maui.Controls.Build.Tasks.props": {},
- "buildTransitive/net6.0-maccatalyst13.1/Microsoft.Maui.Controls.Build.Tasks.targets": {}
- }
- },
- "Microsoft.Maui.Controls.Core/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Maui.Core": "9.0.51"
- },
- "compile": {
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.Controls.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.Controls.dll": {
- "related": ".pdb;.xml"
- }
- },
- "resource": {
- "lib/net9.0-maccatalyst18.0/ar/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ar"
- },
- "lib/net9.0-maccatalyst18.0/ca/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ca"
- },
- "lib/net9.0-maccatalyst18.0/cs/Microsoft.Maui.Controls.resources.dll": {
- "locale": "cs"
- },
- "lib/net9.0-maccatalyst18.0/da/Microsoft.Maui.Controls.resources.dll": {
- "locale": "da"
- },
- "lib/net9.0-maccatalyst18.0/de/Microsoft.Maui.Controls.resources.dll": {
- "locale": "de"
- },
- "lib/net9.0-maccatalyst18.0/el/Microsoft.Maui.Controls.resources.dll": {
- "locale": "el"
- },
- "lib/net9.0-maccatalyst18.0/es/Microsoft.Maui.Controls.resources.dll": {
- "locale": "es"
- },
- "lib/net9.0-maccatalyst18.0/fi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "fi"
- },
- "lib/net9.0-maccatalyst18.0/fr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "fr"
- },
- "lib/net9.0-maccatalyst18.0/he/Microsoft.Maui.Controls.resources.dll": {
- "locale": "he"
- },
- "lib/net9.0-maccatalyst18.0/hi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hi"
- },
- "lib/net9.0-maccatalyst18.0/hr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hr"
- },
- "lib/net9.0-maccatalyst18.0/hu/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hu"
- },
- "lib/net9.0-maccatalyst18.0/id/Microsoft.Maui.Controls.resources.dll": {
- "locale": "id"
- },
- "lib/net9.0-maccatalyst18.0/it/Microsoft.Maui.Controls.resources.dll": {
- "locale": "it"
- },
- "lib/net9.0-maccatalyst18.0/ja/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ja"
- },
- "lib/net9.0-maccatalyst18.0/ko/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ko"
- },
- "lib/net9.0-maccatalyst18.0/ms/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ms"
- },
- "lib/net9.0-maccatalyst18.0/nb/Microsoft.Maui.Controls.resources.dll": {
- "locale": "nb"
- },
- "lib/net9.0-maccatalyst18.0/nl/Microsoft.Maui.Controls.resources.dll": {
- "locale": "nl"
- },
- "lib/net9.0-maccatalyst18.0/pl/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pl"
- },
- "lib/net9.0-maccatalyst18.0/pt-BR/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/net9.0-maccatalyst18.0/pt/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pt"
- },
- "lib/net9.0-maccatalyst18.0/ro/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ro"
- },
- "lib/net9.0-maccatalyst18.0/ru/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ru"
- },
- "lib/net9.0-maccatalyst18.0/sk/Microsoft.Maui.Controls.resources.dll": {
- "locale": "sk"
- },
- "lib/net9.0-maccatalyst18.0/sv/Microsoft.Maui.Controls.resources.dll": {
- "locale": "sv"
- },
- "lib/net9.0-maccatalyst18.0/th/Microsoft.Maui.Controls.resources.dll": {
- "locale": "th"
- },
- "lib/net9.0-maccatalyst18.0/tr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "tr"
- },
- "lib/net9.0-maccatalyst18.0/uk/Microsoft.Maui.Controls.resources.dll": {
- "locale": "uk"
- },
- "lib/net9.0-maccatalyst18.0/vi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "vi"
- },
- "lib/net9.0-maccatalyst18.0/zh-HK/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-HK"
- },
- "lib/net9.0-maccatalyst18.0/zh-Hans/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/net9.0-maccatalyst18.0/zh-Hant/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.Maui.Controls.Xaml/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Core": "9.0.51"
- },
- "compile": {
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.Controls.Xaml.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.Controls.Xaml.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Core/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Maui.Essentials": "9.0.51",
- "Microsoft.Maui.Graphics": "9.0.51"
- },
- "compile": {
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/Microsoft.Maui.Core.props": {},
- "buildTransitive/Microsoft.Maui.Core.targets": {}
- }
- },
- "Microsoft.Maui.Essentials/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Graphics": "9.0.51"
- },
- "compile": {
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.Essentials.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.Essentials.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Graphics/9.0.51": {
- "type": "package",
- "compile": {
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.Graphics.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.Graphics.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Resizetizer/9.0.51": {
- "type": "package",
- "build": {
- "buildTransitive/Microsoft.Maui.Resizetizer.props": {},
- "buildTransitive/Microsoft.Maui.Resizetizer.targets": {}
- }
- },
- "Microsoft.NET.ILLink.Tasks/9.0.6": {
- "type": "package",
- "build": {
- "build/Microsoft.NET.ILLink.Tasks.props": {}
- }
- },
- "System.Text.Json/9.0.2": {
- "type": "package",
- "compile": {
- "lib/net9.0/System.Text.Json.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/System.Text.Json.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/System.Text.Json.targets": {}
- }
- }
- },
- "net9.0-maccatalyst18.5/iossimulator-x64": {
- "FFMpegCore/5.2.0": {
- "type": "package",
- "dependencies": {
- "Instances": "3.0.1",
- "System.Text.Json": "9.0.2"
- },
- "compile": {
- "lib/netstandard2.0/FFMpegCore.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/FFMpegCore.dll": {}
- }
- },
- "Instances/3.0.1": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/Instances.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/Instances.dll": {}
- },
- "contentFiles": {
- "contentFiles/any/any/_._": {
- "buildAction": "None",
- "codeLanguage": "any",
- "copyToOutput": false
- }
- }
- },
- "Microsoft.Extensions.Configuration/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Configuration.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Configuration.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Configuration.Abstractions/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": {
- "type": "package",
- "compile": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Logging/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Extensions.Options": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Logging.Abstractions/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets": {}
- }
- },
- "Microsoft.Extensions.Logging.Debug/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.Debug.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.Debug.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Options/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Options.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Options.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/Microsoft.Extensions.Options.targets": {}
- }
- },
- "Microsoft.Extensions.Primitives/9.0.0": {
- "type": "package",
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Primitives.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Primitives.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Maui.Controls/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Controls.Build.Tasks": "9.0.51",
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Controls.Xaml": "9.0.51",
- "Microsoft.Maui.Resizetizer": "9.0.51"
- }
- },
- "Microsoft.Maui.Controls.Build.Tasks/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Controls.Xaml": "9.0.51"
- },
- "build": {
- "buildTransitive/net6.0-maccatalyst13.1/Microsoft.Maui.Controls.Build.Tasks.props": {},
- "buildTransitive/net6.0-maccatalyst13.1/Microsoft.Maui.Controls.Build.Tasks.targets": {}
- }
- },
- "Microsoft.Maui.Controls.Core/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Maui.Core": "9.0.51"
- },
- "compile": {
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.Controls.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.Controls.dll": {
- "related": ".pdb;.xml"
- }
- },
- "resource": {
- "lib/net9.0-maccatalyst18.0/ar/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ar"
- },
- "lib/net9.0-maccatalyst18.0/ca/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ca"
- },
- "lib/net9.0-maccatalyst18.0/cs/Microsoft.Maui.Controls.resources.dll": {
- "locale": "cs"
- },
- "lib/net9.0-maccatalyst18.0/da/Microsoft.Maui.Controls.resources.dll": {
- "locale": "da"
- },
- "lib/net9.0-maccatalyst18.0/de/Microsoft.Maui.Controls.resources.dll": {
- "locale": "de"
- },
- "lib/net9.0-maccatalyst18.0/el/Microsoft.Maui.Controls.resources.dll": {
- "locale": "el"
- },
- "lib/net9.0-maccatalyst18.0/es/Microsoft.Maui.Controls.resources.dll": {
- "locale": "es"
- },
- "lib/net9.0-maccatalyst18.0/fi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "fi"
- },
- "lib/net9.0-maccatalyst18.0/fr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "fr"
- },
- "lib/net9.0-maccatalyst18.0/he/Microsoft.Maui.Controls.resources.dll": {
- "locale": "he"
- },
- "lib/net9.0-maccatalyst18.0/hi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hi"
- },
- "lib/net9.0-maccatalyst18.0/hr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hr"
- },
- "lib/net9.0-maccatalyst18.0/hu/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hu"
- },
- "lib/net9.0-maccatalyst18.0/id/Microsoft.Maui.Controls.resources.dll": {
- "locale": "id"
- },
- "lib/net9.0-maccatalyst18.0/it/Microsoft.Maui.Controls.resources.dll": {
- "locale": "it"
- },
- "lib/net9.0-maccatalyst18.0/ja/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ja"
- },
- "lib/net9.0-maccatalyst18.0/ko/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ko"
- },
- "lib/net9.0-maccatalyst18.0/ms/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ms"
- },
- "lib/net9.0-maccatalyst18.0/nb/Microsoft.Maui.Controls.resources.dll": {
- "locale": "nb"
- },
- "lib/net9.0-maccatalyst18.0/nl/Microsoft.Maui.Controls.resources.dll": {
- "locale": "nl"
- },
- "lib/net9.0-maccatalyst18.0/pl/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pl"
- },
- "lib/net9.0-maccatalyst18.0/pt-BR/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/net9.0-maccatalyst18.0/pt/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pt"
- },
- "lib/net9.0-maccatalyst18.0/ro/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ro"
- },
- "lib/net9.0-maccatalyst18.0/ru/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ru"
- },
- "lib/net9.0-maccatalyst18.0/sk/Microsoft.Maui.Controls.resources.dll": {
- "locale": "sk"
- },
- "lib/net9.0-maccatalyst18.0/sv/Microsoft.Maui.Controls.resources.dll": {
- "locale": "sv"
- },
- "lib/net9.0-maccatalyst18.0/th/Microsoft.Maui.Controls.resources.dll": {
- "locale": "th"
- },
- "lib/net9.0-maccatalyst18.0/tr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "tr"
- },
- "lib/net9.0-maccatalyst18.0/uk/Microsoft.Maui.Controls.resources.dll": {
- "locale": "uk"
- },
- "lib/net9.0-maccatalyst18.0/vi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "vi"
- },
- "lib/net9.0-maccatalyst18.0/zh-HK/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-HK"
- },
- "lib/net9.0-maccatalyst18.0/zh-Hans/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/net9.0-maccatalyst18.0/zh-Hant/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.Maui.Controls.Xaml/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Core": "9.0.51"
- },
- "compile": {
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.Controls.Xaml.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.Controls.Xaml.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Core/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Maui.Essentials": "9.0.51",
- "Microsoft.Maui.Graphics": "9.0.51"
- },
- "compile": {
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/Microsoft.Maui.Core.props": {},
- "buildTransitive/Microsoft.Maui.Core.targets": {}
- }
- },
- "Microsoft.Maui.Essentials/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Graphics": "9.0.51"
- },
- "compile": {
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.Essentials.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.Essentials.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Graphics/9.0.51": {
- "type": "package",
- "compile": {
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.Graphics.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.Graphics.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Resizetizer/9.0.51": {
- "type": "package",
- "build": {
- "buildTransitive/Microsoft.Maui.Resizetizer.props": {},
- "buildTransitive/Microsoft.Maui.Resizetizer.targets": {}
- }
- },
- "Microsoft.NET.ILLink.Tasks/9.0.6": {
- "type": "package",
- "build": {
- "build/Microsoft.NET.ILLink.Tasks.props": {}
- }
- },
- "System.Text.Json/9.0.2": {
- "type": "package",
- "compile": {
- "lib/net9.0/System.Text.Json.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/System.Text.Json.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/System.Text.Json.targets": {}
- }
- }
- },
- "net9.0-maccatalyst18.5/maccatalyst-arm64": {
- "FFMpegCore/5.2.0": {
- "type": "package",
- "dependencies": {
- "Instances": "3.0.1",
- "System.Text.Json": "9.0.2"
- },
- "compile": {
- "lib/netstandard2.0/FFMpegCore.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/FFMpegCore.dll": {}
- }
- },
- "Instances/3.0.1": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/Instances.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/Instances.dll": {}
- },
- "contentFiles": {
- "contentFiles/any/any/_._": {
- "buildAction": "None",
- "codeLanguage": "any",
- "copyToOutput": false
- }
- }
- },
- "Microsoft.Extensions.Configuration/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Configuration.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Configuration.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Configuration.Abstractions/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": {
- "type": "package",
- "compile": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Logging/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Extensions.Options": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Logging.Abstractions/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets": {}
- }
- },
- "Microsoft.Extensions.Logging.Debug/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.Debug.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.Debug.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Options/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Options.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Options.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/Microsoft.Extensions.Options.targets": {}
- }
- },
- "Microsoft.Extensions.Primitives/9.0.0": {
- "type": "package",
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Primitives.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Primitives.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Maui.Controls/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Controls.Build.Tasks": "9.0.51",
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Controls.Xaml": "9.0.51",
- "Microsoft.Maui.Resizetizer": "9.0.51"
- }
- },
- "Microsoft.Maui.Controls.Build.Tasks/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Controls.Xaml": "9.0.51"
- },
- "build": {
- "buildTransitive/net6.0-maccatalyst13.1/Microsoft.Maui.Controls.Build.Tasks.props": {},
- "buildTransitive/net6.0-maccatalyst13.1/Microsoft.Maui.Controls.Build.Tasks.targets": {}
- }
- },
- "Microsoft.Maui.Controls.Core/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Maui.Core": "9.0.51"
- },
- "compile": {
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.Controls.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.Controls.dll": {
- "related": ".pdb;.xml"
- }
- },
- "resource": {
- "lib/net9.0-maccatalyst18.0/ar/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ar"
- },
- "lib/net9.0-maccatalyst18.0/ca/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ca"
- },
- "lib/net9.0-maccatalyst18.0/cs/Microsoft.Maui.Controls.resources.dll": {
- "locale": "cs"
- },
- "lib/net9.0-maccatalyst18.0/da/Microsoft.Maui.Controls.resources.dll": {
- "locale": "da"
- },
- "lib/net9.0-maccatalyst18.0/de/Microsoft.Maui.Controls.resources.dll": {
- "locale": "de"
- },
- "lib/net9.0-maccatalyst18.0/el/Microsoft.Maui.Controls.resources.dll": {
- "locale": "el"
- },
- "lib/net9.0-maccatalyst18.0/es/Microsoft.Maui.Controls.resources.dll": {
- "locale": "es"
- },
- "lib/net9.0-maccatalyst18.0/fi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "fi"
- },
- "lib/net9.0-maccatalyst18.0/fr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "fr"
- },
- "lib/net9.0-maccatalyst18.0/he/Microsoft.Maui.Controls.resources.dll": {
- "locale": "he"
- },
- "lib/net9.0-maccatalyst18.0/hi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hi"
- },
- "lib/net9.0-maccatalyst18.0/hr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hr"
- },
- "lib/net9.0-maccatalyst18.0/hu/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hu"
- },
- "lib/net9.0-maccatalyst18.0/id/Microsoft.Maui.Controls.resources.dll": {
- "locale": "id"
- },
- "lib/net9.0-maccatalyst18.0/it/Microsoft.Maui.Controls.resources.dll": {
- "locale": "it"
- },
- "lib/net9.0-maccatalyst18.0/ja/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ja"
- },
- "lib/net9.0-maccatalyst18.0/ko/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ko"
- },
- "lib/net9.0-maccatalyst18.0/ms/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ms"
- },
- "lib/net9.0-maccatalyst18.0/nb/Microsoft.Maui.Controls.resources.dll": {
- "locale": "nb"
- },
- "lib/net9.0-maccatalyst18.0/nl/Microsoft.Maui.Controls.resources.dll": {
- "locale": "nl"
- },
- "lib/net9.0-maccatalyst18.0/pl/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pl"
- },
- "lib/net9.0-maccatalyst18.0/pt-BR/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/net9.0-maccatalyst18.0/pt/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pt"
- },
- "lib/net9.0-maccatalyst18.0/ro/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ro"
- },
- "lib/net9.0-maccatalyst18.0/ru/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ru"
- },
- "lib/net9.0-maccatalyst18.0/sk/Microsoft.Maui.Controls.resources.dll": {
- "locale": "sk"
- },
- "lib/net9.0-maccatalyst18.0/sv/Microsoft.Maui.Controls.resources.dll": {
- "locale": "sv"
- },
- "lib/net9.0-maccatalyst18.0/th/Microsoft.Maui.Controls.resources.dll": {
- "locale": "th"
- },
- "lib/net9.0-maccatalyst18.0/tr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "tr"
- },
- "lib/net9.0-maccatalyst18.0/uk/Microsoft.Maui.Controls.resources.dll": {
- "locale": "uk"
- },
- "lib/net9.0-maccatalyst18.0/vi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "vi"
- },
- "lib/net9.0-maccatalyst18.0/zh-HK/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-HK"
- },
- "lib/net9.0-maccatalyst18.0/zh-Hans/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/net9.0-maccatalyst18.0/zh-Hant/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.Maui.Controls.Xaml/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Core": "9.0.51"
- },
- "compile": {
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.Controls.Xaml.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.Controls.Xaml.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Core/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Maui.Essentials": "9.0.51",
- "Microsoft.Maui.Graphics": "9.0.51"
- },
- "compile": {
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/Microsoft.Maui.Core.props": {},
- "buildTransitive/Microsoft.Maui.Core.targets": {}
- }
- },
- "Microsoft.Maui.Essentials/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Graphics": "9.0.51"
- },
- "compile": {
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.Essentials.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.Essentials.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Graphics/9.0.51": {
- "type": "package",
- "compile": {
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.Graphics.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.Graphics.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Resizetizer/9.0.51": {
- "type": "package",
- "build": {
- "buildTransitive/Microsoft.Maui.Resizetizer.props": {},
- "buildTransitive/Microsoft.Maui.Resizetizer.targets": {}
- }
- },
- "Microsoft.NET.ILLink.Tasks/9.0.6": {
- "type": "package",
- "build": {
- "build/Microsoft.NET.ILLink.Tasks.props": {}
- }
- },
- "System.Text.Json/9.0.2": {
- "type": "package",
- "compile": {
- "lib/net9.0/System.Text.Json.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/System.Text.Json.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/System.Text.Json.targets": {}
- }
- }
- },
- "net9.0-maccatalyst18.5/maccatalyst-x64": {
- "FFMpegCore/5.2.0": {
- "type": "package",
- "dependencies": {
- "Instances": "3.0.1",
- "System.Text.Json": "9.0.2"
- },
- "compile": {
- "lib/netstandard2.0/FFMpegCore.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/FFMpegCore.dll": {}
- }
- },
- "Instances/3.0.1": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/Instances.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/Instances.dll": {}
- },
- "contentFiles": {
- "contentFiles/any/any/_._": {
- "buildAction": "None",
- "codeLanguage": "any",
- "copyToOutput": false
- }
- }
- },
- "Microsoft.Extensions.Configuration/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Configuration.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Configuration.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Configuration.Abstractions/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": {
- "type": "package",
- "compile": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Logging/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Extensions.Options": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Logging.Abstractions/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets": {}
- }
- },
- "Microsoft.Extensions.Logging.Debug/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.Debug.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.Debug.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Options/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Options.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Options.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/Microsoft.Extensions.Options.targets": {}
- }
- },
- "Microsoft.Extensions.Primitives/9.0.0": {
- "type": "package",
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Primitives.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Primitives.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Maui.Controls/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Controls.Build.Tasks": "9.0.51",
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Controls.Xaml": "9.0.51",
- "Microsoft.Maui.Resizetizer": "9.0.51"
- }
- },
- "Microsoft.Maui.Controls.Build.Tasks/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Controls.Xaml": "9.0.51"
- },
- "build": {
- "buildTransitive/net6.0-maccatalyst13.1/Microsoft.Maui.Controls.Build.Tasks.props": {},
- "buildTransitive/net6.0-maccatalyst13.1/Microsoft.Maui.Controls.Build.Tasks.targets": {}
- }
- },
- "Microsoft.Maui.Controls.Core/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Maui.Core": "9.0.51"
- },
- "compile": {
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.Controls.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.Controls.dll": {
- "related": ".pdb;.xml"
- }
- },
- "resource": {
- "lib/net9.0-maccatalyst18.0/ar/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ar"
- },
- "lib/net9.0-maccatalyst18.0/ca/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ca"
- },
- "lib/net9.0-maccatalyst18.0/cs/Microsoft.Maui.Controls.resources.dll": {
- "locale": "cs"
- },
- "lib/net9.0-maccatalyst18.0/da/Microsoft.Maui.Controls.resources.dll": {
- "locale": "da"
- },
- "lib/net9.0-maccatalyst18.0/de/Microsoft.Maui.Controls.resources.dll": {
- "locale": "de"
- },
- "lib/net9.0-maccatalyst18.0/el/Microsoft.Maui.Controls.resources.dll": {
- "locale": "el"
- },
- "lib/net9.0-maccatalyst18.0/es/Microsoft.Maui.Controls.resources.dll": {
- "locale": "es"
- },
- "lib/net9.0-maccatalyst18.0/fi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "fi"
- },
- "lib/net9.0-maccatalyst18.0/fr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "fr"
- },
- "lib/net9.0-maccatalyst18.0/he/Microsoft.Maui.Controls.resources.dll": {
- "locale": "he"
- },
- "lib/net9.0-maccatalyst18.0/hi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hi"
- },
- "lib/net9.0-maccatalyst18.0/hr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hr"
- },
- "lib/net9.0-maccatalyst18.0/hu/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hu"
- },
- "lib/net9.0-maccatalyst18.0/id/Microsoft.Maui.Controls.resources.dll": {
- "locale": "id"
- },
- "lib/net9.0-maccatalyst18.0/it/Microsoft.Maui.Controls.resources.dll": {
- "locale": "it"
- },
- "lib/net9.0-maccatalyst18.0/ja/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ja"
- },
- "lib/net9.0-maccatalyst18.0/ko/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ko"
- },
- "lib/net9.0-maccatalyst18.0/ms/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ms"
- },
- "lib/net9.0-maccatalyst18.0/nb/Microsoft.Maui.Controls.resources.dll": {
- "locale": "nb"
- },
- "lib/net9.0-maccatalyst18.0/nl/Microsoft.Maui.Controls.resources.dll": {
- "locale": "nl"
- },
- "lib/net9.0-maccatalyst18.0/pl/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pl"
- },
- "lib/net9.0-maccatalyst18.0/pt-BR/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/net9.0-maccatalyst18.0/pt/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pt"
- },
- "lib/net9.0-maccatalyst18.0/ro/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ro"
- },
- "lib/net9.0-maccatalyst18.0/ru/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ru"
- },
- "lib/net9.0-maccatalyst18.0/sk/Microsoft.Maui.Controls.resources.dll": {
- "locale": "sk"
- },
- "lib/net9.0-maccatalyst18.0/sv/Microsoft.Maui.Controls.resources.dll": {
- "locale": "sv"
- },
- "lib/net9.0-maccatalyst18.0/th/Microsoft.Maui.Controls.resources.dll": {
- "locale": "th"
- },
- "lib/net9.0-maccatalyst18.0/tr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "tr"
- },
- "lib/net9.0-maccatalyst18.0/uk/Microsoft.Maui.Controls.resources.dll": {
- "locale": "uk"
- },
- "lib/net9.0-maccatalyst18.0/vi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "vi"
- },
- "lib/net9.0-maccatalyst18.0/zh-HK/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-HK"
- },
- "lib/net9.0-maccatalyst18.0/zh-Hans/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/net9.0-maccatalyst18.0/zh-Hant/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.Maui.Controls.Xaml/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Core": "9.0.51"
- },
- "compile": {
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.Controls.Xaml.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.Controls.Xaml.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Core/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Maui.Essentials": "9.0.51",
- "Microsoft.Maui.Graphics": "9.0.51"
- },
- "compile": {
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/Microsoft.Maui.Core.props": {},
- "buildTransitive/Microsoft.Maui.Core.targets": {}
- }
- },
- "Microsoft.Maui.Essentials/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Graphics": "9.0.51"
- },
- "compile": {
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.Essentials.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.Essentials.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Graphics/9.0.51": {
- "type": "package",
- "compile": {
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.Graphics.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.Graphics.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Resizetizer/9.0.51": {
- "type": "package",
- "build": {
- "buildTransitive/Microsoft.Maui.Resizetizer.props": {},
- "buildTransitive/Microsoft.Maui.Resizetizer.targets": {}
- }
- },
- "Microsoft.NET.ILLink.Tasks/9.0.6": {
- "type": "package",
- "build": {
- "build/Microsoft.NET.ILLink.Tasks.props": {}
- }
- },
- "System.Text.Json/9.0.2": {
- "type": "package",
- "compile": {
- "lib/net9.0/System.Text.Json.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/System.Text.Json.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/System.Text.Json.targets": {}
- }
- }
- },
- "net9.0-maccatalyst18.5/win10-x64": {
- "FFMpegCore/5.2.0": {
- "type": "package",
- "dependencies": {
- "Instances": "3.0.1",
- "System.Text.Json": "9.0.2"
- },
- "compile": {
- "lib/netstandard2.0/FFMpegCore.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/FFMpegCore.dll": {}
- }
- },
- "Instances/3.0.1": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/Instances.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/Instances.dll": {}
- },
- "contentFiles": {
- "contentFiles/any/any/_._": {
- "buildAction": "None",
- "codeLanguage": "any",
- "copyToOutput": false
- }
- }
- },
- "Microsoft.Extensions.Configuration/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Configuration.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Configuration.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Configuration.Abstractions/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": {
- "type": "package",
- "compile": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Logging/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Extensions.Options": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Logging.Abstractions/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets": {}
- }
- },
- "Microsoft.Extensions.Logging.Debug/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.Debug.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.Debug.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Options/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Options.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Options.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/Microsoft.Extensions.Options.targets": {}
- }
- },
- "Microsoft.Extensions.Primitives/9.0.0": {
- "type": "package",
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Primitives.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Primitives.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Maui.Controls/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Controls.Build.Tasks": "9.0.51",
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Controls.Xaml": "9.0.51",
- "Microsoft.Maui.Resizetizer": "9.0.51"
- }
- },
- "Microsoft.Maui.Controls.Build.Tasks/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Controls.Xaml": "9.0.51"
- },
- "build": {
- "buildTransitive/net6.0-maccatalyst13.1/Microsoft.Maui.Controls.Build.Tasks.props": {},
- "buildTransitive/net6.0-maccatalyst13.1/Microsoft.Maui.Controls.Build.Tasks.targets": {}
- }
- },
- "Microsoft.Maui.Controls.Core/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Maui.Core": "9.0.51"
- },
- "compile": {
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.Controls.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.Controls.dll": {
- "related": ".pdb;.xml"
- }
- },
- "resource": {
- "lib/net9.0-maccatalyst18.0/ar/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ar"
- },
- "lib/net9.0-maccatalyst18.0/ca/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ca"
- },
- "lib/net9.0-maccatalyst18.0/cs/Microsoft.Maui.Controls.resources.dll": {
- "locale": "cs"
- },
- "lib/net9.0-maccatalyst18.0/da/Microsoft.Maui.Controls.resources.dll": {
- "locale": "da"
- },
- "lib/net9.0-maccatalyst18.0/de/Microsoft.Maui.Controls.resources.dll": {
- "locale": "de"
- },
- "lib/net9.0-maccatalyst18.0/el/Microsoft.Maui.Controls.resources.dll": {
- "locale": "el"
- },
- "lib/net9.0-maccatalyst18.0/es/Microsoft.Maui.Controls.resources.dll": {
- "locale": "es"
- },
- "lib/net9.0-maccatalyst18.0/fi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "fi"
- },
- "lib/net9.0-maccatalyst18.0/fr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "fr"
- },
- "lib/net9.0-maccatalyst18.0/he/Microsoft.Maui.Controls.resources.dll": {
- "locale": "he"
- },
- "lib/net9.0-maccatalyst18.0/hi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hi"
- },
- "lib/net9.0-maccatalyst18.0/hr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hr"
- },
- "lib/net9.0-maccatalyst18.0/hu/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hu"
- },
- "lib/net9.0-maccatalyst18.0/id/Microsoft.Maui.Controls.resources.dll": {
- "locale": "id"
- },
- "lib/net9.0-maccatalyst18.0/it/Microsoft.Maui.Controls.resources.dll": {
- "locale": "it"
- },
- "lib/net9.0-maccatalyst18.0/ja/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ja"
- },
- "lib/net9.0-maccatalyst18.0/ko/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ko"
- },
- "lib/net9.0-maccatalyst18.0/ms/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ms"
- },
- "lib/net9.0-maccatalyst18.0/nb/Microsoft.Maui.Controls.resources.dll": {
- "locale": "nb"
- },
- "lib/net9.0-maccatalyst18.0/nl/Microsoft.Maui.Controls.resources.dll": {
- "locale": "nl"
- },
- "lib/net9.0-maccatalyst18.0/pl/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pl"
- },
- "lib/net9.0-maccatalyst18.0/pt-BR/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/net9.0-maccatalyst18.0/pt/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pt"
- },
- "lib/net9.0-maccatalyst18.0/ro/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ro"
- },
- "lib/net9.0-maccatalyst18.0/ru/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ru"
- },
- "lib/net9.0-maccatalyst18.0/sk/Microsoft.Maui.Controls.resources.dll": {
- "locale": "sk"
- },
- "lib/net9.0-maccatalyst18.0/sv/Microsoft.Maui.Controls.resources.dll": {
- "locale": "sv"
- },
- "lib/net9.0-maccatalyst18.0/th/Microsoft.Maui.Controls.resources.dll": {
- "locale": "th"
- },
- "lib/net9.0-maccatalyst18.0/tr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "tr"
- },
- "lib/net9.0-maccatalyst18.0/uk/Microsoft.Maui.Controls.resources.dll": {
- "locale": "uk"
- },
- "lib/net9.0-maccatalyst18.0/vi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "vi"
- },
- "lib/net9.0-maccatalyst18.0/zh-HK/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-HK"
- },
- "lib/net9.0-maccatalyst18.0/zh-Hans/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/net9.0-maccatalyst18.0/zh-Hant/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.Maui.Controls.Xaml/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Core": "9.0.51"
- },
- "compile": {
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.Controls.Xaml.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.Controls.Xaml.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Core/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Maui.Essentials": "9.0.51",
- "Microsoft.Maui.Graphics": "9.0.51"
- },
- "compile": {
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/Microsoft.Maui.Core.props": {},
- "buildTransitive/Microsoft.Maui.Core.targets": {}
- }
- },
- "Microsoft.Maui.Essentials/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Graphics": "9.0.51"
- },
- "compile": {
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.Essentials.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.Essentials.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Graphics/9.0.51": {
- "type": "package",
- "compile": {
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.Graphics.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.Graphics.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Resizetizer/9.0.51": {
- "type": "package",
- "build": {
- "buildTransitive/Microsoft.Maui.Resizetizer.props": {},
- "buildTransitive/Microsoft.Maui.Resizetizer.targets": {}
- }
- },
- "Microsoft.NET.ILLink.Tasks/9.0.6": {
- "type": "package",
- "build": {
- "build/Microsoft.NET.ILLink.Tasks.props": {}
- }
- },
- "System.Text.Json/9.0.2": {
- "type": "package",
- "compile": {
- "lib/net9.0/System.Text.Json.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/System.Text.Json.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/System.Text.Json.targets": {}
- }
- }
- },
- "net9.0-windows10.0.19041": {
- "FFMpegCore/5.2.0": {
- "type": "package",
- "dependencies": {
- "Instances": "3.0.1",
- "System.Text.Json": "9.0.2"
- },
- "compile": {
- "lib/netstandard2.0/FFMpegCore.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/FFMpegCore.dll": {}
- }
- },
- "Instances/3.0.1": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/Instances.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/Instances.dll": {}
- },
- "contentFiles": {
- "contentFiles/any/any/_._": {
- "buildAction": "None",
- "codeLanguage": "any",
- "copyToOutput": false
- }
- }
- },
- "Microsoft.Extensions.Configuration/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Configuration.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Configuration.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Configuration.Abstractions/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": {
- "type": "package",
- "compile": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Logging/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Extensions.Options": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Logging.Abstractions/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets": {}
- }
- },
- "Microsoft.Extensions.Logging.Debug/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.Debug.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.Debug.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Options/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Options.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Options.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/Microsoft.Extensions.Options.targets": {}
- }
- },
- "Microsoft.Extensions.Primitives/9.0.0": {
- "type": "package",
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Primitives.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Primitives.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Graphics.Win2D/1.2.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.WindowsAppSDK": "1.5.240227000"
- },
- "compile": {
- "lib/net6.0-windows10.0.19041.0/Microsoft.Graphics.Canvas.Interop.dll": {}
- },
- "runtime": {
- "lib/net6.0-windows10.0.19041.0/Microsoft.Graphics.Canvas.Interop.dll": {}
- },
- "build": {
- "build/net6.0-windows10.0.19041.0/_._": {}
- },
- "runtimeTargets": {
- "runtimes/win-arm64/native/Microsoft.Graphics.Canvas.dll": {
- "assetType": "native",
- "rid": "win-arm64"
- },
- "runtimes/win-x64/native/Microsoft.Graphics.Canvas.dll": {
- "assetType": "native",
- "rid": "win-x64"
- },
- "runtimes/win-x86/native/Microsoft.Graphics.Canvas.dll": {
- "assetType": "native",
- "rid": "win-x86"
- }
- }
- },
- "Microsoft.IO.RecyclableMemoryStream/3.0.1": {
- "type": "package",
- "compile": {
- "lib/net6.0/Microsoft.IO.RecyclableMemoryStream.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/Microsoft.IO.RecyclableMemoryStream.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Maui.Controls/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Controls.Build.Tasks": "9.0.51",
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Controls.Xaml": "9.0.51",
- "Microsoft.Maui.Resizetizer": "9.0.51"
- }
- },
- "Microsoft.Maui.Controls.Build.Tasks/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Controls.Xaml": "9.0.51"
- },
- "build": {
- "buildTransitive/net6.0-windows10.0.17763.0/Microsoft.Maui.Controls.Build.Tasks.props": {},
- "buildTransitive/net6.0-windows10.0.17763.0/Microsoft.Maui.Controls.Build.Tasks.targets": {}
- }
- },
- "Microsoft.Maui.Controls.Core/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Maui.Core": "9.0.51"
- },
- "compile": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Controls.dll": {
- "related": ".pdb;.pri;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Controls.dll": {
- "related": ".pdb;.pri;.xml"
- }
- },
- "resource": {
- "lib/net9.0-windows10.0.19041/ar/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ar"
- },
- "lib/net9.0-windows10.0.19041/ca/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ca"
- },
- "lib/net9.0-windows10.0.19041/cs/Microsoft.Maui.Controls.resources.dll": {
- "locale": "cs"
- },
- "lib/net9.0-windows10.0.19041/da/Microsoft.Maui.Controls.resources.dll": {
- "locale": "da"
- },
- "lib/net9.0-windows10.0.19041/de/Microsoft.Maui.Controls.resources.dll": {
- "locale": "de"
- },
- "lib/net9.0-windows10.0.19041/el/Microsoft.Maui.Controls.resources.dll": {
- "locale": "el"
- },
- "lib/net9.0-windows10.0.19041/es/Microsoft.Maui.Controls.resources.dll": {
- "locale": "es"
- },
- "lib/net9.0-windows10.0.19041/fi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "fi"
- },
- "lib/net9.0-windows10.0.19041/fr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "fr"
- },
- "lib/net9.0-windows10.0.19041/he/Microsoft.Maui.Controls.resources.dll": {
- "locale": "he"
- },
- "lib/net9.0-windows10.0.19041/hi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hi"
- },
- "lib/net9.0-windows10.0.19041/hr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hr"
- },
- "lib/net9.0-windows10.0.19041/hu/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hu"
- },
- "lib/net9.0-windows10.0.19041/id/Microsoft.Maui.Controls.resources.dll": {
- "locale": "id"
- },
- "lib/net9.0-windows10.0.19041/it/Microsoft.Maui.Controls.resources.dll": {
- "locale": "it"
- },
- "lib/net9.0-windows10.0.19041/ja/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ja"
- },
- "lib/net9.0-windows10.0.19041/ko/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ko"
- },
- "lib/net9.0-windows10.0.19041/ms/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ms"
- },
- "lib/net9.0-windows10.0.19041/nb/Microsoft.Maui.Controls.resources.dll": {
- "locale": "nb"
- },
- "lib/net9.0-windows10.0.19041/nl/Microsoft.Maui.Controls.resources.dll": {
- "locale": "nl"
- },
- "lib/net9.0-windows10.0.19041/pl/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pl"
- },
- "lib/net9.0-windows10.0.19041/pt-BR/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/net9.0-windows10.0.19041/pt/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pt"
- },
- "lib/net9.0-windows10.0.19041/ro/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ro"
- },
- "lib/net9.0-windows10.0.19041/ru/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ru"
- },
- "lib/net9.0-windows10.0.19041/sk/Microsoft.Maui.Controls.resources.dll": {
- "locale": "sk"
- },
- "lib/net9.0-windows10.0.19041/sv/Microsoft.Maui.Controls.resources.dll": {
- "locale": "sv"
- },
- "lib/net9.0-windows10.0.19041/th/Microsoft.Maui.Controls.resources.dll": {
- "locale": "th"
- },
- "lib/net9.0-windows10.0.19041/tr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "tr"
- },
- "lib/net9.0-windows10.0.19041/uk/Microsoft.Maui.Controls.resources.dll": {
- "locale": "uk"
- },
- "lib/net9.0-windows10.0.19041/vi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "vi"
- },
- "lib/net9.0-windows10.0.19041/zh-HK/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-HK"
- },
- "lib/net9.0-windows10.0.19041/zh-Hans/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/net9.0-windows10.0.19041/zh-Hant/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.Maui.Controls.Xaml/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Core": "9.0.51"
- },
- "compile": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Controls.Xaml.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Controls.Xaml.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Core/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Graphics.Win2D": "1.2.0",
- "Microsoft.Maui.Essentials": "9.0.51",
- "Microsoft.Maui.Graphics": "9.0.51",
- "Microsoft.Maui.Graphics.Win2D.WinUI.Desktop": "9.0.51",
- "Microsoft.Web.WebView2": "1.0.2903.40",
- "Microsoft.Windows.SDK.BuildTools": "10.0.22621.756",
- "Microsoft.WindowsAppSDK": "1.6.250205002"
- },
- "compile": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.dll": {
- "related": ".pdb;.pri;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.dll": {
- "related": ".pdb;.pri;.xml"
- }
- },
- "build": {
- "buildTransitive/net9.0-windows10.0.17763.0/Microsoft.Maui.Core.props": {},
- "buildTransitive/net9.0-windows10.0.17763.0/Microsoft.Maui.Core.targets": {}
- }
- },
- "Microsoft.Maui.Essentials/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Graphics": "9.0.51"
- },
- "compile": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Essentials.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Essentials.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Graphics/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Graphics.Win2D": "1.2.0",
- "Microsoft.IO.RecyclableMemoryStream": "3.0.1"
- },
- "compile": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Graphics.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Graphics.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Graphics.Win2D.WinUI.Desktop/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Graphics.Win2D": "1.2.0",
- "Microsoft.Maui.Graphics": "9.0.51"
- },
- "compile": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop.dll": {
- "related": ".pdb"
- }
- },
- "runtime": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop.dll": {
- "related": ".pdb"
- }
- }
- },
- "Microsoft.Maui.Resizetizer/9.0.51": {
- "type": "package",
- "build": {
- "buildTransitive/Microsoft.Maui.Resizetizer.props": {},
- "buildTransitive/Microsoft.Maui.Resizetizer.targets": {}
- }
- },
- "Microsoft.Web.WebView2/1.0.2903.40": {
- "type": "package",
- "build": {
- "buildTransitive/Microsoft.Web.WebView2.targets": {}
- },
- "runtimeTargets": {
- "runtimes/win-arm64/native/WebView2Loader.dll": {
- "assetType": "native",
- "rid": "win-arm64"
- },
- "runtimes/win-x64/native/WebView2Loader.dll": {
- "assetType": "native",
- "rid": "win-x64"
- },
- "runtimes/win-x86/native/WebView2Loader.dll": {
- "assetType": "native",
- "rid": "win-x86"
- }
- }
- },
- "Microsoft.Windows.SDK.BuildTools/10.0.22621.756": {
- "type": "package",
- "build": {
- "buildTransitive/Microsoft.Windows.SDK.BuildTools.props": {},
- "buildTransitive/Microsoft.Windows.SDK.BuildTools.targets": {}
- }
- },
- "Microsoft.WindowsAppSDK/1.6.250205002": {
- "type": "package",
- "dependencies": {
- "Microsoft.Web.WebView2": "1.0.2651.64",
- "Microsoft.Windows.SDK.BuildTools": "10.0.22621.756"
- },
- "compile": {
- "lib/net6.0-windows10.0.18362.0/Microsoft.InteractiveExperiences.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.WinUI.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppLifecycle.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Builder.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.DynamicDependency.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.Resources.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.WindowsAppRuntime.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Management.Deployment.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.PushNotifications.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Security.AccessControl.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Storage.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.System.Power.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.System.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Widgets.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.WindowsAppRuntime.Bootstrap.Net.dll": {}
- },
- "runtime": {
- "lib/net6.0-windows10.0.18362.0/Microsoft.InteractiveExperiences.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.WinUI.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppLifecycle.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Builder.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.DynamicDependency.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.Resources.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.WindowsAppRuntime.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Management.Deployment.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.PushNotifications.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Security.AccessControl.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Storage.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.System.Power.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.System.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Widgets.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.WindowsAppRuntime.Bootstrap.Net.dll": {}
- },
- "build": {
- "buildTransitive/Microsoft.WindowsAppSDK.props": {},
- "buildTransitive/Microsoft.WindowsAppSDK.targets": {}
- },
- "runtimeTargets": {
- "runtimes/win-arm64/native/Microsoft.WindowsAppRuntime.Bootstrap.dll": {
- "assetType": "native",
- "rid": "win-arm64"
- },
- "runtimes/win-x64/native/Microsoft.WindowsAppRuntime.Bootstrap.dll": {
- "assetType": "native",
- "rid": "win-x64"
- },
- "runtimes/win-x86/native/Microsoft.WindowsAppRuntime.Bootstrap.dll": {
- "assetType": "native",
- "rid": "win-x86"
- }
- }
- },
- "System.Text.Json/9.0.2": {
- "type": "package",
- "compile": {
- "lib/net9.0/System.Text.Json.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/System.Text.Json.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/System.Text.Json.targets": {}
- }
- }
- },
- "net9.0-windows10.0.19041/android-arm64": {
- "FFMpegCore/5.2.0": {
- "type": "package",
- "dependencies": {
- "Instances": "3.0.1",
- "System.Text.Json": "9.0.2"
- },
- "compile": {
- "lib/netstandard2.0/FFMpegCore.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/FFMpegCore.dll": {}
- }
- },
- "Instances/3.0.1": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/Instances.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/Instances.dll": {}
- },
- "contentFiles": {
- "contentFiles/any/any/_._": {
- "buildAction": "None",
- "codeLanguage": "any",
- "copyToOutput": false
- }
- }
- },
- "Microsoft.Extensions.Configuration/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Configuration.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Configuration.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Configuration.Abstractions/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": {
- "type": "package",
- "compile": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Logging/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Extensions.Options": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Logging.Abstractions/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets": {}
- }
- },
- "Microsoft.Extensions.Logging.Debug/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.Debug.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.Debug.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Options/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Options.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Options.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/Microsoft.Extensions.Options.targets": {}
- }
- },
- "Microsoft.Extensions.Primitives/9.0.0": {
- "type": "package",
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Primitives.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Primitives.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Graphics.Win2D/1.2.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.WindowsAppSDK": "1.5.240227000"
- },
- "compile": {
- "lib/net6.0-windows10.0.19041.0/Microsoft.Graphics.Canvas.Interop.dll": {}
- },
- "runtime": {
- "lib/net6.0-windows10.0.19041.0/Microsoft.Graphics.Canvas.Interop.dll": {}
- },
- "build": {
- "build/net6.0-windows10.0.19041.0/_._": {}
- }
- },
- "Microsoft.IO.RecyclableMemoryStream/3.0.1": {
- "type": "package",
- "compile": {
- "lib/net6.0/Microsoft.IO.RecyclableMemoryStream.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/Microsoft.IO.RecyclableMemoryStream.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Maui.Controls/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Controls.Build.Tasks": "9.0.51",
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Controls.Xaml": "9.0.51",
- "Microsoft.Maui.Resizetizer": "9.0.51"
- }
- },
- "Microsoft.Maui.Controls.Build.Tasks/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Controls.Xaml": "9.0.51"
- },
- "build": {
- "buildTransitive/net6.0-windows10.0.17763.0/Microsoft.Maui.Controls.Build.Tasks.props": {},
- "buildTransitive/net6.0-windows10.0.17763.0/Microsoft.Maui.Controls.Build.Tasks.targets": {}
- }
- },
- "Microsoft.Maui.Controls.Core/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Maui.Core": "9.0.51"
- },
- "compile": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Controls.dll": {
- "related": ".pdb;.pri;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Controls.dll": {
- "related": ".pdb;.pri;.xml"
- }
- },
- "resource": {
- "lib/net9.0-windows10.0.19041/ar/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ar"
- },
- "lib/net9.0-windows10.0.19041/ca/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ca"
- },
- "lib/net9.0-windows10.0.19041/cs/Microsoft.Maui.Controls.resources.dll": {
- "locale": "cs"
- },
- "lib/net9.0-windows10.0.19041/da/Microsoft.Maui.Controls.resources.dll": {
- "locale": "da"
- },
- "lib/net9.0-windows10.0.19041/de/Microsoft.Maui.Controls.resources.dll": {
- "locale": "de"
- },
- "lib/net9.0-windows10.0.19041/el/Microsoft.Maui.Controls.resources.dll": {
- "locale": "el"
- },
- "lib/net9.0-windows10.0.19041/es/Microsoft.Maui.Controls.resources.dll": {
- "locale": "es"
- },
- "lib/net9.0-windows10.0.19041/fi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "fi"
- },
- "lib/net9.0-windows10.0.19041/fr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "fr"
- },
- "lib/net9.0-windows10.0.19041/he/Microsoft.Maui.Controls.resources.dll": {
- "locale": "he"
- },
- "lib/net9.0-windows10.0.19041/hi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hi"
- },
- "lib/net9.0-windows10.0.19041/hr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hr"
- },
- "lib/net9.0-windows10.0.19041/hu/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hu"
- },
- "lib/net9.0-windows10.0.19041/id/Microsoft.Maui.Controls.resources.dll": {
- "locale": "id"
- },
- "lib/net9.0-windows10.0.19041/it/Microsoft.Maui.Controls.resources.dll": {
- "locale": "it"
- },
- "lib/net9.0-windows10.0.19041/ja/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ja"
- },
- "lib/net9.0-windows10.0.19041/ko/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ko"
- },
- "lib/net9.0-windows10.0.19041/ms/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ms"
- },
- "lib/net9.0-windows10.0.19041/nb/Microsoft.Maui.Controls.resources.dll": {
- "locale": "nb"
- },
- "lib/net9.0-windows10.0.19041/nl/Microsoft.Maui.Controls.resources.dll": {
- "locale": "nl"
- },
- "lib/net9.0-windows10.0.19041/pl/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pl"
- },
- "lib/net9.0-windows10.0.19041/pt-BR/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/net9.0-windows10.0.19041/pt/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pt"
- },
- "lib/net9.0-windows10.0.19041/ro/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ro"
- },
- "lib/net9.0-windows10.0.19041/ru/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ru"
- },
- "lib/net9.0-windows10.0.19041/sk/Microsoft.Maui.Controls.resources.dll": {
- "locale": "sk"
- },
- "lib/net9.0-windows10.0.19041/sv/Microsoft.Maui.Controls.resources.dll": {
- "locale": "sv"
- },
- "lib/net9.0-windows10.0.19041/th/Microsoft.Maui.Controls.resources.dll": {
- "locale": "th"
- },
- "lib/net9.0-windows10.0.19041/tr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "tr"
- },
- "lib/net9.0-windows10.0.19041/uk/Microsoft.Maui.Controls.resources.dll": {
- "locale": "uk"
- },
- "lib/net9.0-windows10.0.19041/vi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "vi"
- },
- "lib/net9.0-windows10.0.19041/zh-HK/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-HK"
- },
- "lib/net9.0-windows10.0.19041/zh-Hans/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/net9.0-windows10.0.19041/zh-Hant/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.Maui.Controls.Xaml/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Core": "9.0.51"
- },
- "compile": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Controls.Xaml.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Controls.Xaml.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Core/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Graphics.Win2D": "1.2.0",
- "Microsoft.Maui.Essentials": "9.0.51",
- "Microsoft.Maui.Graphics": "9.0.51",
- "Microsoft.Maui.Graphics.Win2D.WinUI.Desktop": "9.0.51",
- "Microsoft.Web.WebView2": "1.0.2903.40",
- "Microsoft.Windows.SDK.BuildTools": "10.0.22621.756",
- "Microsoft.WindowsAppSDK": "1.6.250205002"
- },
- "compile": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.dll": {
- "related": ".pdb;.pri;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.dll": {
- "related": ".pdb;.pri;.xml"
- }
- },
- "build": {
- "buildTransitive/net9.0-windows10.0.17763.0/Microsoft.Maui.Core.props": {},
- "buildTransitive/net9.0-windows10.0.17763.0/Microsoft.Maui.Core.targets": {}
- }
- },
- "Microsoft.Maui.Essentials/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Graphics": "9.0.51"
- },
- "compile": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Essentials.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Essentials.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Graphics/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Graphics.Win2D": "1.2.0",
- "Microsoft.IO.RecyclableMemoryStream": "3.0.1"
- },
- "compile": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Graphics.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Graphics.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Graphics.Win2D.WinUI.Desktop/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Graphics.Win2D": "1.2.0",
- "Microsoft.Maui.Graphics": "9.0.51"
- },
- "compile": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop.dll": {
- "related": ".pdb"
- }
- },
- "runtime": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop.dll": {
- "related": ".pdb"
- }
- }
- },
- "Microsoft.Maui.Resizetizer/9.0.51": {
- "type": "package",
- "build": {
- "buildTransitive/Microsoft.Maui.Resizetizer.props": {},
- "buildTransitive/Microsoft.Maui.Resizetizer.targets": {}
- }
- },
- "Microsoft.Web.WebView2/1.0.2903.40": {
- "type": "package",
- "build": {
- "buildTransitive/Microsoft.Web.WebView2.targets": {}
- }
- },
- "Microsoft.Windows.SDK.BuildTools/10.0.22621.756": {
- "type": "package",
- "build": {
- "buildTransitive/Microsoft.Windows.SDK.BuildTools.props": {},
- "buildTransitive/Microsoft.Windows.SDK.BuildTools.targets": {}
- }
- },
- "Microsoft.WindowsAppSDK/1.6.250205002": {
- "type": "package",
- "dependencies": {
- "Microsoft.Web.WebView2": "1.0.2651.64",
- "Microsoft.Windows.SDK.BuildTools": "10.0.22621.756"
- },
- "compile": {
- "lib/net6.0-windows10.0.18362.0/Microsoft.InteractiveExperiences.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.WinUI.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppLifecycle.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Builder.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.DynamicDependency.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.Resources.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.WindowsAppRuntime.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Management.Deployment.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.PushNotifications.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Security.AccessControl.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Storage.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.System.Power.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.System.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Widgets.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.WindowsAppRuntime.Bootstrap.Net.dll": {}
- },
- "runtime": {
- "lib/net6.0-windows10.0.18362.0/Microsoft.InteractiveExperiences.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.WinUI.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppLifecycle.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Builder.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.DynamicDependency.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.Resources.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.WindowsAppRuntime.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Management.Deployment.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.PushNotifications.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Security.AccessControl.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Storage.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.System.Power.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.System.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Widgets.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.WindowsAppRuntime.Bootstrap.Net.dll": {}
- },
- "build": {
- "buildTransitive/Microsoft.WindowsAppSDK.props": {},
- "buildTransitive/Microsoft.WindowsAppSDK.targets": {}
- }
- },
- "System.Text.Json/9.0.2": {
- "type": "package",
- "compile": {
- "lib/net9.0/System.Text.Json.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/System.Text.Json.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/System.Text.Json.targets": {}
- }
- }
- },
- "net9.0-windows10.0.19041/android-x64": {
- "FFMpegCore/5.2.0": {
- "type": "package",
- "dependencies": {
- "Instances": "3.0.1",
- "System.Text.Json": "9.0.2"
- },
- "compile": {
- "lib/netstandard2.0/FFMpegCore.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/FFMpegCore.dll": {}
- }
- },
- "Instances/3.0.1": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/Instances.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/Instances.dll": {}
- },
- "contentFiles": {
- "contentFiles/any/any/_._": {
- "buildAction": "None",
- "codeLanguage": "any",
- "copyToOutput": false
- }
- }
- },
- "Microsoft.Extensions.Configuration/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Configuration.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Configuration.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Configuration.Abstractions/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": {
- "type": "package",
- "compile": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Logging/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Extensions.Options": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Logging.Abstractions/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets": {}
- }
- },
- "Microsoft.Extensions.Logging.Debug/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.Debug.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.Debug.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Options/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Options.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Options.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/Microsoft.Extensions.Options.targets": {}
- }
- },
- "Microsoft.Extensions.Primitives/9.0.0": {
- "type": "package",
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Primitives.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Primitives.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Graphics.Win2D/1.2.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.WindowsAppSDK": "1.5.240227000"
- },
- "compile": {
- "lib/net6.0-windows10.0.19041.0/Microsoft.Graphics.Canvas.Interop.dll": {}
- },
- "runtime": {
- "lib/net6.0-windows10.0.19041.0/Microsoft.Graphics.Canvas.Interop.dll": {}
- },
- "build": {
- "build/net6.0-windows10.0.19041.0/_._": {}
- }
- },
- "Microsoft.IO.RecyclableMemoryStream/3.0.1": {
- "type": "package",
- "compile": {
- "lib/net6.0/Microsoft.IO.RecyclableMemoryStream.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/Microsoft.IO.RecyclableMemoryStream.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Maui.Controls/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Controls.Build.Tasks": "9.0.51",
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Controls.Xaml": "9.0.51",
- "Microsoft.Maui.Resizetizer": "9.0.51"
- }
- },
- "Microsoft.Maui.Controls.Build.Tasks/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Controls.Xaml": "9.0.51"
- },
- "build": {
- "buildTransitive/net6.0-windows10.0.17763.0/Microsoft.Maui.Controls.Build.Tasks.props": {},
- "buildTransitive/net6.0-windows10.0.17763.0/Microsoft.Maui.Controls.Build.Tasks.targets": {}
- }
- },
- "Microsoft.Maui.Controls.Core/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Maui.Core": "9.0.51"
- },
- "compile": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Controls.dll": {
- "related": ".pdb;.pri;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Controls.dll": {
- "related": ".pdb;.pri;.xml"
- }
- },
- "resource": {
- "lib/net9.0-windows10.0.19041/ar/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ar"
- },
- "lib/net9.0-windows10.0.19041/ca/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ca"
- },
- "lib/net9.0-windows10.0.19041/cs/Microsoft.Maui.Controls.resources.dll": {
- "locale": "cs"
- },
- "lib/net9.0-windows10.0.19041/da/Microsoft.Maui.Controls.resources.dll": {
- "locale": "da"
- },
- "lib/net9.0-windows10.0.19041/de/Microsoft.Maui.Controls.resources.dll": {
- "locale": "de"
- },
- "lib/net9.0-windows10.0.19041/el/Microsoft.Maui.Controls.resources.dll": {
- "locale": "el"
- },
- "lib/net9.0-windows10.0.19041/es/Microsoft.Maui.Controls.resources.dll": {
- "locale": "es"
- },
- "lib/net9.0-windows10.0.19041/fi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "fi"
- },
- "lib/net9.0-windows10.0.19041/fr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "fr"
- },
- "lib/net9.0-windows10.0.19041/he/Microsoft.Maui.Controls.resources.dll": {
- "locale": "he"
- },
- "lib/net9.0-windows10.0.19041/hi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hi"
- },
- "lib/net9.0-windows10.0.19041/hr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hr"
- },
- "lib/net9.0-windows10.0.19041/hu/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hu"
- },
- "lib/net9.0-windows10.0.19041/id/Microsoft.Maui.Controls.resources.dll": {
- "locale": "id"
- },
- "lib/net9.0-windows10.0.19041/it/Microsoft.Maui.Controls.resources.dll": {
- "locale": "it"
- },
- "lib/net9.0-windows10.0.19041/ja/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ja"
- },
- "lib/net9.0-windows10.0.19041/ko/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ko"
- },
- "lib/net9.0-windows10.0.19041/ms/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ms"
- },
- "lib/net9.0-windows10.0.19041/nb/Microsoft.Maui.Controls.resources.dll": {
- "locale": "nb"
- },
- "lib/net9.0-windows10.0.19041/nl/Microsoft.Maui.Controls.resources.dll": {
- "locale": "nl"
- },
- "lib/net9.0-windows10.0.19041/pl/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pl"
- },
- "lib/net9.0-windows10.0.19041/pt-BR/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/net9.0-windows10.0.19041/pt/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pt"
- },
- "lib/net9.0-windows10.0.19041/ro/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ro"
- },
- "lib/net9.0-windows10.0.19041/ru/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ru"
- },
- "lib/net9.0-windows10.0.19041/sk/Microsoft.Maui.Controls.resources.dll": {
- "locale": "sk"
- },
- "lib/net9.0-windows10.0.19041/sv/Microsoft.Maui.Controls.resources.dll": {
- "locale": "sv"
- },
- "lib/net9.0-windows10.0.19041/th/Microsoft.Maui.Controls.resources.dll": {
- "locale": "th"
- },
- "lib/net9.0-windows10.0.19041/tr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "tr"
- },
- "lib/net9.0-windows10.0.19041/uk/Microsoft.Maui.Controls.resources.dll": {
- "locale": "uk"
- },
- "lib/net9.0-windows10.0.19041/vi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "vi"
- },
- "lib/net9.0-windows10.0.19041/zh-HK/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-HK"
- },
- "lib/net9.0-windows10.0.19041/zh-Hans/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/net9.0-windows10.0.19041/zh-Hant/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.Maui.Controls.Xaml/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Core": "9.0.51"
- },
- "compile": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Controls.Xaml.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Controls.Xaml.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Core/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Graphics.Win2D": "1.2.0",
- "Microsoft.Maui.Essentials": "9.0.51",
- "Microsoft.Maui.Graphics": "9.0.51",
- "Microsoft.Maui.Graphics.Win2D.WinUI.Desktop": "9.0.51",
- "Microsoft.Web.WebView2": "1.0.2903.40",
- "Microsoft.Windows.SDK.BuildTools": "10.0.22621.756",
- "Microsoft.WindowsAppSDK": "1.6.250205002"
- },
- "compile": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.dll": {
- "related": ".pdb;.pri;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.dll": {
- "related": ".pdb;.pri;.xml"
- }
- },
- "build": {
- "buildTransitive/net9.0-windows10.0.17763.0/Microsoft.Maui.Core.props": {},
- "buildTransitive/net9.0-windows10.0.17763.0/Microsoft.Maui.Core.targets": {}
- }
- },
- "Microsoft.Maui.Essentials/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Graphics": "9.0.51"
- },
- "compile": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Essentials.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Essentials.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Graphics/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Graphics.Win2D": "1.2.0",
- "Microsoft.IO.RecyclableMemoryStream": "3.0.1"
- },
- "compile": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Graphics.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Graphics.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Graphics.Win2D.WinUI.Desktop/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Graphics.Win2D": "1.2.0",
- "Microsoft.Maui.Graphics": "9.0.51"
- },
- "compile": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop.dll": {
- "related": ".pdb"
- }
- },
- "runtime": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop.dll": {
- "related": ".pdb"
- }
- }
- },
- "Microsoft.Maui.Resizetizer/9.0.51": {
- "type": "package",
- "build": {
- "buildTransitive/Microsoft.Maui.Resizetizer.props": {},
- "buildTransitive/Microsoft.Maui.Resizetizer.targets": {}
- }
- },
- "Microsoft.Web.WebView2/1.0.2903.40": {
- "type": "package",
- "build": {
- "buildTransitive/Microsoft.Web.WebView2.targets": {}
- }
- },
- "Microsoft.Windows.SDK.BuildTools/10.0.22621.756": {
- "type": "package",
- "build": {
- "buildTransitive/Microsoft.Windows.SDK.BuildTools.props": {},
- "buildTransitive/Microsoft.Windows.SDK.BuildTools.targets": {}
- }
- },
- "Microsoft.WindowsAppSDK/1.6.250205002": {
- "type": "package",
- "dependencies": {
- "Microsoft.Web.WebView2": "1.0.2651.64",
- "Microsoft.Windows.SDK.BuildTools": "10.0.22621.756"
- },
- "compile": {
- "lib/net6.0-windows10.0.18362.0/Microsoft.InteractiveExperiences.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.WinUI.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppLifecycle.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Builder.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.DynamicDependency.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.Resources.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.WindowsAppRuntime.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Management.Deployment.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.PushNotifications.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Security.AccessControl.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Storage.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.System.Power.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.System.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Widgets.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.WindowsAppRuntime.Bootstrap.Net.dll": {}
- },
- "runtime": {
- "lib/net6.0-windows10.0.18362.0/Microsoft.InteractiveExperiences.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.WinUI.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppLifecycle.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Builder.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.DynamicDependency.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.Resources.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.WindowsAppRuntime.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Management.Deployment.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.PushNotifications.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Security.AccessControl.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Storage.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.System.Power.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.System.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Widgets.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.WindowsAppRuntime.Bootstrap.Net.dll": {}
- },
- "build": {
- "buildTransitive/Microsoft.WindowsAppSDK.props": {},
- "buildTransitive/Microsoft.WindowsAppSDK.targets": {}
- }
- },
- "System.Text.Json/9.0.2": {
- "type": "package",
- "compile": {
- "lib/net9.0/System.Text.Json.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/System.Text.Json.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/System.Text.Json.targets": {}
- }
- }
- },
- "net9.0-windows10.0.19041/iossimulator-x64": {
- "FFMpegCore/5.2.0": {
- "type": "package",
- "dependencies": {
- "Instances": "3.0.1",
- "System.Text.Json": "9.0.2"
- },
- "compile": {
- "lib/netstandard2.0/FFMpegCore.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/FFMpegCore.dll": {}
- }
- },
- "Instances/3.0.1": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/Instances.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/Instances.dll": {}
- },
- "contentFiles": {
- "contentFiles/any/any/_._": {
- "buildAction": "None",
- "codeLanguage": "any",
- "copyToOutput": false
- }
- }
- },
- "Microsoft.Extensions.Configuration/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Configuration.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Configuration.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Configuration.Abstractions/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": {
- "type": "package",
- "compile": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Logging/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Extensions.Options": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Logging.Abstractions/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets": {}
- }
- },
- "Microsoft.Extensions.Logging.Debug/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.Debug.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.Debug.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Options/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Options.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Options.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/Microsoft.Extensions.Options.targets": {}
- }
- },
- "Microsoft.Extensions.Primitives/9.0.0": {
- "type": "package",
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Primitives.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Primitives.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Graphics.Win2D/1.2.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.WindowsAppSDK": "1.5.240227000"
- },
- "compile": {
- "lib/net6.0-windows10.0.19041.0/Microsoft.Graphics.Canvas.Interop.dll": {}
- },
- "runtime": {
- "lib/net6.0-windows10.0.19041.0/Microsoft.Graphics.Canvas.Interop.dll": {}
- },
- "build": {
- "build/net6.0-windows10.0.19041.0/_._": {}
- }
- },
- "Microsoft.IO.RecyclableMemoryStream/3.0.1": {
- "type": "package",
- "compile": {
- "lib/net6.0/Microsoft.IO.RecyclableMemoryStream.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/Microsoft.IO.RecyclableMemoryStream.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Maui.Controls/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Controls.Build.Tasks": "9.0.51",
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Controls.Xaml": "9.0.51",
- "Microsoft.Maui.Resizetizer": "9.0.51"
- }
- },
- "Microsoft.Maui.Controls.Build.Tasks/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Controls.Xaml": "9.0.51"
- },
- "build": {
- "buildTransitive/net6.0-windows10.0.17763.0/Microsoft.Maui.Controls.Build.Tasks.props": {},
- "buildTransitive/net6.0-windows10.0.17763.0/Microsoft.Maui.Controls.Build.Tasks.targets": {}
- }
- },
- "Microsoft.Maui.Controls.Core/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Maui.Core": "9.0.51"
- },
- "compile": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Controls.dll": {
- "related": ".pdb;.pri;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Controls.dll": {
- "related": ".pdb;.pri;.xml"
- }
- },
- "resource": {
- "lib/net9.0-windows10.0.19041/ar/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ar"
- },
- "lib/net9.0-windows10.0.19041/ca/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ca"
- },
- "lib/net9.0-windows10.0.19041/cs/Microsoft.Maui.Controls.resources.dll": {
- "locale": "cs"
- },
- "lib/net9.0-windows10.0.19041/da/Microsoft.Maui.Controls.resources.dll": {
- "locale": "da"
- },
- "lib/net9.0-windows10.0.19041/de/Microsoft.Maui.Controls.resources.dll": {
- "locale": "de"
- },
- "lib/net9.0-windows10.0.19041/el/Microsoft.Maui.Controls.resources.dll": {
- "locale": "el"
- },
- "lib/net9.0-windows10.0.19041/es/Microsoft.Maui.Controls.resources.dll": {
- "locale": "es"
- },
- "lib/net9.0-windows10.0.19041/fi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "fi"
- },
- "lib/net9.0-windows10.0.19041/fr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "fr"
- },
- "lib/net9.0-windows10.0.19041/he/Microsoft.Maui.Controls.resources.dll": {
- "locale": "he"
- },
- "lib/net9.0-windows10.0.19041/hi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hi"
- },
- "lib/net9.0-windows10.0.19041/hr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hr"
- },
- "lib/net9.0-windows10.0.19041/hu/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hu"
- },
- "lib/net9.0-windows10.0.19041/id/Microsoft.Maui.Controls.resources.dll": {
- "locale": "id"
- },
- "lib/net9.0-windows10.0.19041/it/Microsoft.Maui.Controls.resources.dll": {
- "locale": "it"
- },
- "lib/net9.0-windows10.0.19041/ja/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ja"
- },
- "lib/net9.0-windows10.0.19041/ko/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ko"
- },
- "lib/net9.0-windows10.0.19041/ms/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ms"
- },
- "lib/net9.0-windows10.0.19041/nb/Microsoft.Maui.Controls.resources.dll": {
- "locale": "nb"
- },
- "lib/net9.0-windows10.0.19041/nl/Microsoft.Maui.Controls.resources.dll": {
- "locale": "nl"
- },
- "lib/net9.0-windows10.0.19041/pl/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pl"
- },
- "lib/net9.0-windows10.0.19041/pt-BR/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/net9.0-windows10.0.19041/pt/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pt"
- },
- "lib/net9.0-windows10.0.19041/ro/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ro"
- },
- "lib/net9.0-windows10.0.19041/ru/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ru"
- },
- "lib/net9.0-windows10.0.19041/sk/Microsoft.Maui.Controls.resources.dll": {
- "locale": "sk"
- },
- "lib/net9.0-windows10.0.19041/sv/Microsoft.Maui.Controls.resources.dll": {
- "locale": "sv"
- },
- "lib/net9.0-windows10.0.19041/th/Microsoft.Maui.Controls.resources.dll": {
- "locale": "th"
- },
- "lib/net9.0-windows10.0.19041/tr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "tr"
- },
- "lib/net9.0-windows10.0.19041/uk/Microsoft.Maui.Controls.resources.dll": {
- "locale": "uk"
- },
- "lib/net9.0-windows10.0.19041/vi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "vi"
- },
- "lib/net9.0-windows10.0.19041/zh-HK/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-HK"
- },
- "lib/net9.0-windows10.0.19041/zh-Hans/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/net9.0-windows10.0.19041/zh-Hant/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.Maui.Controls.Xaml/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Core": "9.0.51"
- },
- "compile": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Controls.Xaml.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Controls.Xaml.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Core/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Graphics.Win2D": "1.2.0",
- "Microsoft.Maui.Essentials": "9.0.51",
- "Microsoft.Maui.Graphics": "9.0.51",
- "Microsoft.Maui.Graphics.Win2D.WinUI.Desktop": "9.0.51",
- "Microsoft.Web.WebView2": "1.0.2903.40",
- "Microsoft.Windows.SDK.BuildTools": "10.0.22621.756",
- "Microsoft.WindowsAppSDK": "1.6.250205002"
- },
- "compile": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.dll": {
- "related": ".pdb;.pri;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.dll": {
- "related": ".pdb;.pri;.xml"
- }
- },
- "build": {
- "buildTransitive/net9.0-windows10.0.17763.0/Microsoft.Maui.Core.props": {},
- "buildTransitive/net9.0-windows10.0.17763.0/Microsoft.Maui.Core.targets": {}
- }
- },
- "Microsoft.Maui.Essentials/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Graphics": "9.0.51"
- },
- "compile": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Essentials.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Essentials.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Graphics/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Graphics.Win2D": "1.2.0",
- "Microsoft.IO.RecyclableMemoryStream": "3.0.1"
- },
- "compile": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Graphics.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Graphics.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Graphics.Win2D.WinUI.Desktop/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Graphics.Win2D": "1.2.0",
- "Microsoft.Maui.Graphics": "9.0.51"
- },
- "compile": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop.dll": {
- "related": ".pdb"
- }
- },
- "runtime": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop.dll": {
- "related": ".pdb"
- }
- }
- },
- "Microsoft.Maui.Resizetizer/9.0.51": {
- "type": "package",
- "build": {
- "buildTransitive/Microsoft.Maui.Resizetizer.props": {},
- "buildTransitive/Microsoft.Maui.Resizetizer.targets": {}
- }
- },
- "Microsoft.Web.WebView2/1.0.2903.40": {
- "type": "package",
- "build": {
- "buildTransitive/Microsoft.Web.WebView2.targets": {}
- }
- },
- "Microsoft.Windows.SDK.BuildTools/10.0.22621.756": {
- "type": "package",
- "build": {
- "buildTransitive/Microsoft.Windows.SDK.BuildTools.props": {},
- "buildTransitive/Microsoft.Windows.SDK.BuildTools.targets": {}
- }
- },
- "Microsoft.WindowsAppSDK/1.6.250205002": {
- "type": "package",
- "dependencies": {
- "Microsoft.Web.WebView2": "1.0.2651.64",
- "Microsoft.Windows.SDK.BuildTools": "10.0.22621.756"
- },
- "compile": {
- "lib/net6.0-windows10.0.18362.0/Microsoft.InteractiveExperiences.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.WinUI.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppLifecycle.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Builder.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.DynamicDependency.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.Resources.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.WindowsAppRuntime.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Management.Deployment.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.PushNotifications.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Security.AccessControl.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Storage.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.System.Power.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.System.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Widgets.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.WindowsAppRuntime.Bootstrap.Net.dll": {}
- },
- "runtime": {
- "lib/net6.0-windows10.0.18362.0/Microsoft.InteractiveExperiences.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.WinUI.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppLifecycle.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Builder.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.DynamicDependency.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.Resources.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.WindowsAppRuntime.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Management.Deployment.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.PushNotifications.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Security.AccessControl.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Storage.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.System.Power.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.System.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Widgets.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.WindowsAppRuntime.Bootstrap.Net.dll": {}
- },
- "build": {
- "buildTransitive/Microsoft.WindowsAppSDK.props": {},
- "buildTransitive/Microsoft.WindowsAppSDK.targets": {}
- }
- },
- "System.Text.Json/9.0.2": {
- "type": "package",
- "compile": {
- "lib/net9.0/System.Text.Json.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/System.Text.Json.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/System.Text.Json.targets": {}
- }
- }
- },
- "net9.0-windows10.0.19041/maccatalyst-arm64": {
- "FFMpegCore/5.2.0": {
- "type": "package",
- "dependencies": {
- "Instances": "3.0.1",
- "System.Text.Json": "9.0.2"
- },
- "compile": {
- "lib/netstandard2.0/FFMpegCore.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/FFMpegCore.dll": {}
- }
- },
- "Instances/3.0.1": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/Instances.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/Instances.dll": {}
- },
- "contentFiles": {
- "contentFiles/any/any/_._": {
- "buildAction": "None",
- "codeLanguage": "any",
- "copyToOutput": false
- }
- }
- },
- "Microsoft.Extensions.Configuration/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Configuration.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Configuration.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Configuration.Abstractions/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": {
- "type": "package",
- "compile": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Logging/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Extensions.Options": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Logging.Abstractions/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets": {}
- }
- },
- "Microsoft.Extensions.Logging.Debug/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.Debug.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.Debug.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Options/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Options.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Options.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/Microsoft.Extensions.Options.targets": {}
- }
- },
- "Microsoft.Extensions.Primitives/9.0.0": {
- "type": "package",
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Primitives.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Primitives.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Graphics.Win2D/1.2.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.WindowsAppSDK": "1.5.240227000"
- },
- "compile": {
- "lib/net6.0-windows10.0.19041.0/Microsoft.Graphics.Canvas.Interop.dll": {}
- },
- "runtime": {
- "lib/net6.0-windows10.0.19041.0/Microsoft.Graphics.Canvas.Interop.dll": {}
- },
- "build": {
- "build/net6.0-windows10.0.19041.0/_._": {}
- }
- },
- "Microsoft.IO.RecyclableMemoryStream/3.0.1": {
- "type": "package",
- "compile": {
- "lib/net6.0/Microsoft.IO.RecyclableMemoryStream.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/Microsoft.IO.RecyclableMemoryStream.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Maui.Controls/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Controls.Build.Tasks": "9.0.51",
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Controls.Xaml": "9.0.51",
- "Microsoft.Maui.Resizetizer": "9.0.51"
- }
- },
- "Microsoft.Maui.Controls.Build.Tasks/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Controls.Xaml": "9.0.51"
- },
- "build": {
- "buildTransitive/net6.0-windows10.0.17763.0/Microsoft.Maui.Controls.Build.Tasks.props": {},
- "buildTransitive/net6.0-windows10.0.17763.0/Microsoft.Maui.Controls.Build.Tasks.targets": {}
- }
- },
- "Microsoft.Maui.Controls.Core/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Maui.Core": "9.0.51"
- },
- "compile": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Controls.dll": {
- "related": ".pdb;.pri;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Controls.dll": {
- "related": ".pdb;.pri;.xml"
- }
- },
- "resource": {
- "lib/net9.0-windows10.0.19041/ar/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ar"
- },
- "lib/net9.0-windows10.0.19041/ca/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ca"
- },
- "lib/net9.0-windows10.0.19041/cs/Microsoft.Maui.Controls.resources.dll": {
- "locale": "cs"
- },
- "lib/net9.0-windows10.0.19041/da/Microsoft.Maui.Controls.resources.dll": {
- "locale": "da"
- },
- "lib/net9.0-windows10.0.19041/de/Microsoft.Maui.Controls.resources.dll": {
- "locale": "de"
- },
- "lib/net9.0-windows10.0.19041/el/Microsoft.Maui.Controls.resources.dll": {
- "locale": "el"
- },
- "lib/net9.0-windows10.0.19041/es/Microsoft.Maui.Controls.resources.dll": {
- "locale": "es"
- },
- "lib/net9.0-windows10.0.19041/fi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "fi"
- },
- "lib/net9.0-windows10.0.19041/fr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "fr"
- },
- "lib/net9.0-windows10.0.19041/he/Microsoft.Maui.Controls.resources.dll": {
- "locale": "he"
- },
- "lib/net9.0-windows10.0.19041/hi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hi"
- },
- "lib/net9.0-windows10.0.19041/hr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hr"
- },
- "lib/net9.0-windows10.0.19041/hu/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hu"
- },
- "lib/net9.0-windows10.0.19041/id/Microsoft.Maui.Controls.resources.dll": {
- "locale": "id"
- },
- "lib/net9.0-windows10.0.19041/it/Microsoft.Maui.Controls.resources.dll": {
- "locale": "it"
- },
- "lib/net9.0-windows10.0.19041/ja/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ja"
- },
- "lib/net9.0-windows10.0.19041/ko/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ko"
- },
- "lib/net9.0-windows10.0.19041/ms/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ms"
- },
- "lib/net9.0-windows10.0.19041/nb/Microsoft.Maui.Controls.resources.dll": {
- "locale": "nb"
- },
- "lib/net9.0-windows10.0.19041/nl/Microsoft.Maui.Controls.resources.dll": {
- "locale": "nl"
- },
- "lib/net9.0-windows10.0.19041/pl/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pl"
- },
- "lib/net9.0-windows10.0.19041/pt-BR/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/net9.0-windows10.0.19041/pt/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pt"
- },
- "lib/net9.0-windows10.0.19041/ro/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ro"
- },
- "lib/net9.0-windows10.0.19041/ru/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ru"
- },
- "lib/net9.0-windows10.0.19041/sk/Microsoft.Maui.Controls.resources.dll": {
- "locale": "sk"
- },
- "lib/net9.0-windows10.0.19041/sv/Microsoft.Maui.Controls.resources.dll": {
- "locale": "sv"
- },
- "lib/net9.0-windows10.0.19041/th/Microsoft.Maui.Controls.resources.dll": {
- "locale": "th"
- },
- "lib/net9.0-windows10.0.19041/tr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "tr"
- },
- "lib/net9.0-windows10.0.19041/uk/Microsoft.Maui.Controls.resources.dll": {
- "locale": "uk"
- },
- "lib/net9.0-windows10.0.19041/vi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "vi"
- },
- "lib/net9.0-windows10.0.19041/zh-HK/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-HK"
- },
- "lib/net9.0-windows10.0.19041/zh-Hans/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/net9.0-windows10.0.19041/zh-Hant/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.Maui.Controls.Xaml/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Core": "9.0.51"
- },
- "compile": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Controls.Xaml.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Controls.Xaml.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Core/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Graphics.Win2D": "1.2.0",
- "Microsoft.Maui.Essentials": "9.0.51",
- "Microsoft.Maui.Graphics": "9.0.51",
- "Microsoft.Maui.Graphics.Win2D.WinUI.Desktop": "9.0.51",
- "Microsoft.Web.WebView2": "1.0.2903.40",
- "Microsoft.Windows.SDK.BuildTools": "10.0.22621.756",
- "Microsoft.WindowsAppSDK": "1.6.250205002"
- },
- "compile": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.dll": {
- "related": ".pdb;.pri;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.dll": {
- "related": ".pdb;.pri;.xml"
- }
- },
- "build": {
- "buildTransitive/net9.0-windows10.0.17763.0/Microsoft.Maui.Core.props": {},
- "buildTransitive/net9.0-windows10.0.17763.0/Microsoft.Maui.Core.targets": {}
- }
- },
- "Microsoft.Maui.Essentials/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Graphics": "9.0.51"
- },
- "compile": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Essentials.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Essentials.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Graphics/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Graphics.Win2D": "1.2.0",
- "Microsoft.IO.RecyclableMemoryStream": "3.0.1"
- },
- "compile": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Graphics.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Graphics.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Graphics.Win2D.WinUI.Desktop/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Graphics.Win2D": "1.2.0",
- "Microsoft.Maui.Graphics": "9.0.51"
- },
- "compile": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop.dll": {
- "related": ".pdb"
- }
- },
- "runtime": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop.dll": {
- "related": ".pdb"
- }
- }
- },
- "Microsoft.Maui.Resizetizer/9.0.51": {
- "type": "package",
- "build": {
- "buildTransitive/Microsoft.Maui.Resizetizer.props": {},
- "buildTransitive/Microsoft.Maui.Resizetizer.targets": {}
- }
- },
- "Microsoft.Web.WebView2/1.0.2903.40": {
- "type": "package",
- "build": {
- "buildTransitive/Microsoft.Web.WebView2.targets": {}
- }
- },
- "Microsoft.Windows.SDK.BuildTools/10.0.22621.756": {
- "type": "package",
- "build": {
- "buildTransitive/Microsoft.Windows.SDK.BuildTools.props": {},
- "buildTransitive/Microsoft.Windows.SDK.BuildTools.targets": {}
- }
- },
- "Microsoft.WindowsAppSDK/1.6.250205002": {
- "type": "package",
- "dependencies": {
- "Microsoft.Web.WebView2": "1.0.2651.64",
- "Microsoft.Windows.SDK.BuildTools": "10.0.22621.756"
- },
- "compile": {
- "lib/net6.0-windows10.0.18362.0/Microsoft.InteractiveExperiences.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.WinUI.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppLifecycle.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Builder.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.DynamicDependency.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.Resources.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.WindowsAppRuntime.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Management.Deployment.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.PushNotifications.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Security.AccessControl.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Storage.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.System.Power.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.System.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Widgets.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.WindowsAppRuntime.Bootstrap.Net.dll": {}
- },
- "runtime": {
- "lib/net6.0-windows10.0.18362.0/Microsoft.InteractiveExperiences.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.WinUI.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppLifecycle.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Builder.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.DynamicDependency.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.Resources.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.WindowsAppRuntime.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Management.Deployment.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.PushNotifications.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Security.AccessControl.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Storage.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.System.Power.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.System.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Widgets.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.WindowsAppRuntime.Bootstrap.Net.dll": {}
- },
- "build": {
- "buildTransitive/Microsoft.WindowsAppSDK.props": {},
- "buildTransitive/Microsoft.WindowsAppSDK.targets": {}
- }
- },
- "System.Text.Json/9.0.2": {
- "type": "package",
- "compile": {
- "lib/net9.0/System.Text.Json.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/System.Text.Json.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/System.Text.Json.targets": {}
- }
- }
- },
- "net9.0-windows10.0.19041/maccatalyst-x64": {
- "FFMpegCore/5.2.0": {
- "type": "package",
- "dependencies": {
- "Instances": "3.0.1",
- "System.Text.Json": "9.0.2"
- },
- "compile": {
- "lib/netstandard2.0/FFMpegCore.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/FFMpegCore.dll": {}
- }
- },
- "Instances/3.0.1": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/Instances.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/Instances.dll": {}
- },
- "contentFiles": {
- "contentFiles/any/any/_._": {
- "buildAction": "None",
- "codeLanguage": "any",
- "copyToOutput": false
- }
- }
- },
- "Microsoft.Extensions.Configuration/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Configuration.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Configuration.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Configuration.Abstractions/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": {
- "type": "package",
- "compile": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Logging/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Extensions.Options": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Logging.Abstractions/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets": {}
- }
- },
- "Microsoft.Extensions.Logging.Debug/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.Debug.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.Debug.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Options/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Options.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Options.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/Microsoft.Extensions.Options.targets": {}
- }
- },
- "Microsoft.Extensions.Primitives/9.0.0": {
- "type": "package",
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Primitives.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Primitives.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Graphics.Win2D/1.2.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.WindowsAppSDK": "1.5.240227000"
- },
- "compile": {
- "lib/net6.0-windows10.0.19041.0/Microsoft.Graphics.Canvas.Interop.dll": {}
- },
- "runtime": {
- "lib/net6.0-windows10.0.19041.0/Microsoft.Graphics.Canvas.Interop.dll": {}
- },
- "build": {
- "build/net6.0-windows10.0.19041.0/_._": {}
- }
- },
- "Microsoft.IO.RecyclableMemoryStream/3.0.1": {
- "type": "package",
- "compile": {
- "lib/net6.0/Microsoft.IO.RecyclableMemoryStream.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/Microsoft.IO.RecyclableMemoryStream.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Maui.Controls/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Controls.Build.Tasks": "9.0.51",
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Controls.Xaml": "9.0.51",
- "Microsoft.Maui.Resizetizer": "9.0.51"
- }
- },
- "Microsoft.Maui.Controls.Build.Tasks/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Controls.Xaml": "9.0.51"
- },
- "build": {
- "buildTransitive/net6.0-windows10.0.17763.0/Microsoft.Maui.Controls.Build.Tasks.props": {},
- "buildTransitive/net6.0-windows10.0.17763.0/Microsoft.Maui.Controls.Build.Tasks.targets": {}
- }
- },
- "Microsoft.Maui.Controls.Core/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Maui.Core": "9.0.51"
- },
- "compile": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Controls.dll": {
- "related": ".pdb;.pri;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Controls.dll": {
- "related": ".pdb;.pri;.xml"
- }
- },
- "resource": {
- "lib/net9.0-windows10.0.19041/ar/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ar"
- },
- "lib/net9.0-windows10.0.19041/ca/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ca"
- },
- "lib/net9.0-windows10.0.19041/cs/Microsoft.Maui.Controls.resources.dll": {
- "locale": "cs"
- },
- "lib/net9.0-windows10.0.19041/da/Microsoft.Maui.Controls.resources.dll": {
- "locale": "da"
- },
- "lib/net9.0-windows10.0.19041/de/Microsoft.Maui.Controls.resources.dll": {
- "locale": "de"
- },
- "lib/net9.0-windows10.0.19041/el/Microsoft.Maui.Controls.resources.dll": {
- "locale": "el"
- },
- "lib/net9.0-windows10.0.19041/es/Microsoft.Maui.Controls.resources.dll": {
- "locale": "es"
- },
- "lib/net9.0-windows10.0.19041/fi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "fi"
- },
- "lib/net9.0-windows10.0.19041/fr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "fr"
- },
- "lib/net9.0-windows10.0.19041/he/Microsoft.Maui.Controls.resources.dll": {
- "locale": "he"
- },
- "lib/net9.0-windows10.0.19041/hi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hi"
- },
- "lib/net9.0-windows10.0.19041/hr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hr"
- },
- "lib/net9.0-windows10.0.19041/hu/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hu"
- },
- "lib/net9.0-windows10.0.19041/id/Microsoft.Maui.Controls.resources.dll": {
- "locale": "id"
- },
- "lib/net9.0-windows10.0.19041/it/Microsoft.Maui.Controls.resources.dll": {
- "locale": "it"
- },
- "lib/net9.0-windows10.0.19041/ja/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ja"
- },
- "lib/net9.0-windows10.0.19041/ko/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ko"
- },
- "lib/net9.0-windows10.0.19041/ms/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ms"
- },
- "lib/net9.0-windows10.0.19041/nb/Microsoft.Maui.Controls.resources.dll": {
- "locale": "nb"
- },
- "lib/net9.0-windows10.0.19041/nl/Microsoft.Maui.Controls.resources.dll": {
- "locale": "nl"
- },
- "lib/net9.0-windows10.0.19041/pl/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pl"
- },
- "lib/net9.0-windows10.0.19041/pt-BR/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/net9.0-windows10.0.19041/pt/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pt"
- },
- "lib/net9.0-windows10.0.19041/ro/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ro"
- },
- "lib/net9.0-windows10.0.19041/ru/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ru"
- },
- "lib/net9.0-windows10.0.19041/sk/Microsoft.Maui.Controls.resources.dll": {
- "locale": "sk"
- },
- "lib/net9.0-windows10.0.19041/sv/Microsoft.Maui.Controls.resources.dll": {
- "locale": "sv"
- },
- "lib/net9.0-windows10.0.19041/th/Microsoft.Maui.Controls.resources.dll": {
- "locale": "th"
- },
- "lib/net9.0-windows10.0.19041/tr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "tr"
- },
- "lib/net9.0-windows10.0.19041/uk/Microsoft.Maui.Controls.resources.dll": {
- "locale": "uk"
- },
- "lib/net9.0-windows10.0.19041/vi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "vi"
- },
- "lib/net9.0-windows10.0.19041/zh-HK/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-HK"
- },
- "lib/net9.0-windows10.0.19041/zh-Hans/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/net9.0-windows10.0.19041/zh-Hant/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.Maui.Controls.Xaml/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Core": "9.0.51"
- },
- "compile": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Controls.Xaml.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Controls.Xaml.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Core/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Graphics.Win2D": "1.2.0",
- "Microsoft.Maui.Essentials": "9.0.51",
- "Microsoft.Maui.Graphics": "9.0.51",
- "Microsoft.Maui.Graphics.Win2D.WinUI.Desktop": "9.0.51",
- "Microsoft.Web.WebView2": "1.0.2903.40",
- "Microsoft.Windows.SDK.BuildTools": "10.0.22621.756",
- "Microsoft.WindowsAppSDK": "1.6.250205002"
- },
- "compile": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.dll": {
- "related": ".pdb;.pri;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.dll": {
- "related": ".pdb;.pri;.xml"
- }
- },
- "build": {
- "buildTransitive/net9.0-windows10.0.17763.0/Microsoft.Maui.Core.props": {},
- "buildTransitive/net9.0-windows10.0.17763.0/Microsoft.Maui.Core.targets": {}
- }
- },
- "Microsoft.Maui.Essentials/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Graphics": "9.0.51"
- },
- "compile": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Essentials.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Essentials.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Graphics/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Graphics.Win2D": "1.2.0",
- "Microsoft.IO.RecyclableMemoryStream": "3.0.1"
- },
- "compile": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Graphics.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Graphics.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Graphics.Win2D.WinUI.Desktop/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Graphics.Win2D": "1.2.0",
- "Microsoft.Maui.Graphics": "9.0.51"
- },
- "compile": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop.dll": {
- "related": ".pdb"
- }
- },
- "runtime": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop.dll": {
- "related": ".pdb"
- }
- }
- },
- "Microsoft.Maui.Resizetizer/9.0.51": {
- "type": "package",
- "build": {
- "buildTransitive/Microsoft.Maui.Resizetizer.props": {},
- "buildTransitive/Microsoft.Maui.Resizetizer.targets": {}
- }
- },
- "Microsoft.Web.WebView2/1.0.2903.40": {
- "type": "package",
- "build": {
- "buildTransitive/Microsoft.Web.WebView2.targets": {}
- }
- },
- "Microsoft.Windows.SDK.BuildTools/10.0.22621.756": {
- "type": "package",
- "build": {
- "buildTransitive/Microsoft.Windows.SDK.BuildTools.props": {},
- "buildTransitive/Microsoft.Windows.SDK.BuildTools.targets": {}
- }
- },
- "Microsoft.WindowsAppSDK/1.6.250205002": {
- "type": "package",
- "dependencies": {
- "Microsoft.Web.WebView2": "1.0.2651.64",
- "Microsoft.Windows.SDK.BuildTools": "10.0.22621.756"
- },
- "compile": {
- "lib/net6.0-windows10.0.18362.0/Microsoft.InteractiveExperiences.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.WinUI.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppLifecycle.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Builder.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.DynamicDependency.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.Resources.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.WindowsAppRuntime.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Management.Deployment.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.PushNotifications.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Security.AccessControl.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Storage.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.System.Power.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.System.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Widgets.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.WindowsAppRuntime.Bootstrap.Net.dll": {}
- },
- "runtime": {
- "lib/net6.0-windows10.0.18362.0/Microsoft.InteractiveExperiences.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.WinUI.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppLifecycle.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Builder.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.DynamicDependency.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.Resources.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.WindowsAppRuntime.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Management.Deployment.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.PushNotifications.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Security.AccessControl.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Storage.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.System.Power.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.System.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Widgets.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.WindowsAppRuntime.Bootstrap.Net.dll": {}
- },
- "build": {
- "buildTransitive/Microsoft.WindowsAppSDK.props": {},
- "buildTransitive/Microsoft.WindowsAppSDK.targets": {}
- }
- },
- "System.Text.Json/9.0.2": {
- "type": "package",
- "compile": {
- "lib/net9.0/System.Text.Json.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/System.Text.Json.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/System.Text.Json.targets": {}
- }
- }
- },
- "net9.0-windows10.0.19041/win10-x64": {
- "FFMpegCore/5.2.0": {
- "type": "package",
- "dependencies": {
- "Instances": "3.0.1",
- "System.Text.Json": "9.0.2"
- },
- "compile": {
- "lib/netstandard2.0/FFMpegCore.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/FFMpegCore.dll": {}
- }
- },
- "Instances/3.0.1": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/Instances.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/Instances.dll": {}
- },
- "contentFiles": {
- "contentFiles/any/any/_._": {
- "buildAction": "None",
- "codeLanguage": "any",
- "copyToOutput": false
- }
- }
- },
- "Microsoft.Extensions.Configuration/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "9.0.0",
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Configuration.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Configuration.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Configuration.Abstractions/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": {
- "type": "package",
- "compile": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Logging/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Extensions.Options": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Logging.Abstractions/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets": {}
- }
- },
- "Microsoft.Extensions.Logging.Debug/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.Debug.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.Debug.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Options/9.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
- "Microsoft.Extensions.Primitives": "9.0.0"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Options.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Options.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/Microsoft.Extensions.Options.targets": {}
- }
- },
- "Microsoft.Extensions.Primitives/9.0.0": {
- "type": "package",
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Primitives.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Primitives.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Graphics.Win2D/1.2.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.WindowsAppSDK": "1.5.240227000"
- },
- "compile": {
- "lib/net6.0-windows10.0.19041.0/Microsoft.Graphics.Canvas.Interop.dll": {}
- },
- "runtime": {
- "lib/net6.0-windows10.0.19041.0/Microsoft.Graphics.Canvas.Interop.dll": {}
- },
- "native": {
- "runtimes/win-x64/native/Microsoft.Graphics.Canvas.dll": {}
- },
- "build": {
- "build/net6.0-windows10.0.19041.0/_._": {}
- }
- },
- "Microsoft.IO.RecyclableMemoryStream/3.0.1": {
- "type": "package",
- "compile": {
- "lib/net6.0/Microsoft.IO.RecyclableMemoryStream.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/Microsoft.IO.RecyclableMemoryStream.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Maui.Controls/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Controls.Build.Tasks": "9.0.51",
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Controls.Xaml": "9.0.51",
- "Microsoft.Maui.Resizetizer": "9.0.51"
- }
- },
- "Microsoft.Maui.Controls.Build.Tasks/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Controls.Xaml": "9.0.51"
- },
- "build": {
- "buildTransitive/net6.0-windows10.0.17763.0/Microsoft.Maui.Controls.Build.Tasks.props": {},
- "buildTransitive/net6.0-windows10.0.17763.0/Microsoft.Maui.Controls.Build.Tasks.targets": {}
- }
- },
- "Microsoft.Maui.Controls.Core/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Maui.Core": "9.0.51"
- },
- "compile": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Controls.dll": {
- "related": ".pdb;.pri;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Controls.dll": {
- "related": ".pdb;.pri;.xml"
- }
- },
- "resource": {
- "lib/net9.0-windows10.0.19041/ar/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ar"
- },
- "lib/net9.0-windows10.0.19041/ca/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ca"
- },
- "lib/net9.0-windows10.0.19041/cs/Microsoft.Maui.Controls.resources.dll": {
- "locale": "cs"
- },
- "lib/net9.0-windows10.0.19041/da/Microsoft.Maui.Controls.resources.dll": {
- "locale": "da"
- },
- "lib/net9.0-windows10.0.19041/de/Microsoft.Maui.Controls.resources.dll": {
- "locale": "de"
- },
- "lib/net9.0-windows10.0.19041/el/Microsoft.Maui.Controls.resources.dll": {
- "locale": "el"
- },
- "lib/net9.0-windows10.0.19041/es/Microsoft.Maui.Controls.resources.dll": {
- "locale": "es"
- },
- "lib/net9.0-windows10.0.19041/fi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "fi"
- },
- "lib/net9.0-windows10.0.19041/fr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "fr"
- },
- "lib/net9.0-windows10.0.19041/he/Microsoft.Maui.Controls.resources.dll": {
- "locale": "he"
- },
- "lib/net9.0-windows10.0.19041/hi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hi"
- },
- "lib/net9.0-windows10.0.19041/hr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hr"
- },
- "lib/net9.0-windows10.0.19041/hu/Microsoft.Maui.Controls.resources.dll": {
- "locale": "hu"
- },
- "lib/net9.0-windows10.0.19041/id/Microsoft.Maui.Controls.resources.dll": {
- "locale": "id"
- },
- "lib/net9.0-windows10.0.19041/it/Microsoft.Maui.Controls.resources.dll": {
- "locale": "it"
- },
- "lib/net9.0-windows10.0.19041/ja/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ja"
- },
- "lib/net9.0-windows10.0.19041/ko/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ko"
- },
- "lib/net9.0-windows10.0.19041/ms/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ms"
- },
- "lib/net9.0-windows10.0.19041/nb/Microsoft.Maui.Controls.resources.dll": {
- "locale": "nb"
- },
- "lib/net9.0-windows10.0.19041/nl/Microsoft.Maui.Controls.resources.dll": {
- "locale": "nl"
- },
- "lib/net9.0-windows10.0.19041/pl/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pl"
- },
- "lib/net9.0-windows10.0.19041/pt-BR/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/net9.0-windows10.0.19041/pt/Microsoft.Maui.Controls.resources.dll": {
- "locale": "pt"
- },
- "lib/net9.0-windows10.0.19041/ro/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ro"
- },
- "lib/net9.0-windows10.0.19041/ru/Microsoft.Maui.Controls.resources.dll": {
- "locale": "ru"
- },
- "lib/net9.0-windows10.0.19041/sk/Microsoft.Maui.Controls.resources.dll": {
- "locale": "sk"
- },
- "lib/net9.0-windows10.0.19041/sv/Microsoft.Maui.Controls.resources.dll": {
- "locale": "sv"
- },
- "lib/net9.0-windows10.0.19041/th/Microsoft.Maui.Controls.resources.dll": {
- "locale": "th"
- },
- "lib/net9.0-windows10.0.19041/tr/Microsoft.Maui.Controls.resources.dll": {
- "locale": "tr"
- },
- "lib/net9.0-windows10.0.19041/uk/Microsoft.Maui.Controls.resources.dll": {
- "locale": "uk"
- },
- "lib/net9.0-windows10.0.19041/vi/Microsoft.Maui.Controls.resources.dll": {
- "locale": "vi"
- },
- "lib/net9.0-windows10.0.19041/zh-HK/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-HK"
- },
- "lib/net9.0-windows10.0.19041/zh-Hans/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/net9.0-windows10.0.19041/zh-Hant/Microsoft.Maui.Controls.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.Maui.Controls.Xaml/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Maui.Controls.Core": "9.0.51",
- "Microsoft.Maui.Core": "9.0.51"
- },
- "compile": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Controls.Xaml.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Controls.Xaml.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Core/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "9.0.0",
- "Microsoft.Extensions.DependencyInjection": "9.0.0",
- "Microsoft.Extensions.Logging": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
- "Microsoft.Graphics.Win2D": "1.2.0",
- "Microsoft.Maui.Essentials": "9.0.51",
- "Microsoft.Maui.Graphics": "9.0.51",
- "Microsoft.Maui.Graphics.Win2D.WinUI.Desktop": "9.0.51",
- "Microsoft.Web.WebView2": "1.0.2903.40",
- "Microsoft.Windows.SDK.BuildTools": "10.0.22621.756",
- "Microsoft.WindowsAppSDK": "1.6.250205002"
- },
- "compile": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.dll": {
- "related": ".pdb;.pri;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.dll": {
- "related": ".pdb;.pri;.xml"
- }
- },
- "build": {
- "buildTransitive/net9.0-windows10.0.17763.0/Microsoft.Maui.Core.props": {},
- "buildTransitive/net9.0-windows10.0.17763.0/Microsoft.Maui.Core.targets": {}
- }
- },
- "Microsoft.Maui.Essentials/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Maui.Graphics": "9.0.51"
- },
- "compile": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Essentials.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Essentials.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Graphics/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Graphics.Win2D": "1.2.0",
- "Microsoft.IO.RecyclableMemoryStream": "3.0.1"
- },
- "compile": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Graphics.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Graphics.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Maui.Graphics.Win2D.WinUI.Desktop/9.0.51": {
- "type": "package",
- "dependencies": {
- "Microsoft.Graphics.Win2D": "1.2.0",
- "Microsoft.Maui.Graphics": "9.0.51"
- },
- "compile": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop.dll": {
- "related": ".pdb"
- }
- },
- "runtime": {
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop.dll": {
- "related": ".pdb"
- }
- }
- },
- "Microsoft.Maui.Resizetizer/9.0.51": {
- "type": "package",
- "build": {
- "buildTransitive/Microsoft.Maui.Resizetizer.props": {},
- "buildTransitive/Microsoft.Maui.Resizetizer.targets": {}
- }
- },
- "Microsoft.Web.WebView2/1.0.2903.40": {
- "type": "package",
- "native": {
- "runtimes/win-x64/native/WebView2Loader.dll": {}
- },
- "build": {
- "buildTransitive/Microsoft.Web.WebView2.targets": {}
- }
- },
- "Microsoft.Windows.SDK.BuildTools/10.0.22621.756": {
- "type": "package",
- "build": {
- "buildTransitive/Microsoft.Windows.SDK.BuildTools.props": {},
- "buildTransitive/Microsoft.Windows.SDK.BuildTools.targets": {}
- }
- },
- "Microsoft.WindowsAppSDK/1.6.250205002": {
- "type": "package",
- "dependencies": {
- "Microsoft.Web.WebView2": "1.0.2651.64",
- "Microsoft.Windows.SDK.BuildTools": "10.0.22621.756"
- },
- "compile": {
- "lib/net6.0-windows10.0.18362.0/Microsoft.InteractiveExperiences.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.WinUI.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppLifecycle.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Builder.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.DynamicDependency.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.Resources.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.WindowsAppRuntime.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Management.Deployment.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.PushNotifications.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Security.AccessControl.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Storage.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.System.Power.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.System.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Widgets.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.WindowsAppRuntime.Bootstrap.Net.dll": {}
- },
- "runtime": {
- "lib/net6.0-windows10.0.18362.0/Microsoft.InteractiveExperiences.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.WinUI.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppLifecycle.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Builder.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.DynamicDependency.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.Resources.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.WindowsAppRuntime.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Management.Deployment.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.PushNotifications.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Security.AccessControl.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Storage.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.System.Power.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.System.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Widgets.Projection.dll": {
- "related": ".xml"
- },
- "lib/net6.0-windows10.0.18362.0/Microsoft.WindowsAppRuntime.Bootstrap.Net.dll": {}
- },
- "native": {
- "runtimes/win-x64/native/Microsoft.WindowsAppRuntime.Bootstrap.dll": {}
- },
- "build": {
- "buildTransitive/Microsoft.WindowsAppSDK.props": {},
- "buildTransitive/Microsoft.WindowsAppSDK.targets": {}
- }
- },
- "System.Text.Json/9.0.2": {
- "type": "package",
- "compile": {
- "lib/net9.0/System.Text.Json.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/System.Text.Json.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/System.Text.Json.targets": {}
- }
- }
- }
- },
- "libraries": {
- "FFMpegCore/5.2.0": {
- "sha512": "VpTM8mNo41Upj2zrlroEroQp7TGaXa+jDlGbekvy7Vcvz7bQTesUhf0LWvvwgakcCo9j9OlhP1bzkaZpEyn8WA==",
- "type": "package",
- "path": "ffmpegcore/5.2.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "README.md",
- "ffmpegcore.5.2.0.nupkg.sha512",
- "ffmpegcore.nuspec",
- "lib/netstandard2.0/FFMpegCore.dll"
- ]
- },
- "GoogleGson/2.11.0.5": {
- "sha512": "nz4LvUF6znGVT7fTji44yxb9YQN8A40D51UIhJCupa0Q8r9uggM0WJ5rjHsaIDbRzn6znxAGi2Bqx8/a5Mjekg==",
- "type": "package",
- "path": "googlegson/2.11.0.5",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "googlegson.2.11.0.5.nupkg.sha512",
- "googlegson.nuspec",
- "icon.png",
- "lib/net8.0-android34.0/GoogleGson.aar",
- "lib/net8.0-android34.0/GoogleGson.dll",
- "lib/net8.0-android34.0/GoogleGson.pdb",
- "lib/net8.0-android34.0/GoogleGson.xml",
- "readme.md"
- ]
- },
- "Instances/3.0.1": {
- "sha512": "HSMGZF4g/VcmVyoWH2fRkgZMAW50FcsKvDttwH1jVS2oIz7V9xw9e/b2KhbCO4RSJKJEgTuPKQb6sQvqcDOl2A==",
- "type": "package",
- "path": "instances/3.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "README.md",
- "content/README.md",
- "contentFiles/any/netstandard2.0/README.md",
- "instances.3.0.1.nupkg.sha512",
- "instances.nuspec",
- "lib/netstandard2.0/Instances.dll"
- ]
- },
- "Microsoft.Extensions.Configuration/9.0.0": {
- "sha512": "YIMO9T3JL8MeEXgVozKt2v79hquo/EFtnY0vgxmLnUvk1Rei/halI7kOWZL2RBeV9FMGzgM9LZA8CVaNwFMaNA==",
- "type": "package",
- "path": "microsoft.extensions.configuration/9.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "PACKAGE.md",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/Microsoft.Extensions.Configuration.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net8.0/_._",
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.targets",
- "lib/net462/Microsoft.Extensions.Configuration.dll",
- "lib/net462/Microsoft.Extensions.Configuration.xml",
- "lib/net8.0/Microsoft.Extensions.Configuration.dll",
- "lib/net8.0/Microsoft.Extensions.Configuration.xml",
- "lib/net9.0/Microsoft.Extensions.Configuration.dll",
- "lib/net9.0/Microsoft.Extensions.Configuration.xml",
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
- "microsoft.extensions.configuration.9.0.0.nupkg.sha512",
- "microsoft.extensions.configuration.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "Microsoft.Extensions.Configuration.Abstractions/9.0.0": {
- "sha512": "lqvd7W3FGKUO1+ZoUEMaZ5XDJeWvjpy2/M/ptCGz3tXLD4HWVaSzjufsAsjemasBEg+2SxXVtYVvGt5r2nKDlg==",
- "type": "package",
- "path": "microsoft.extensions.configuration.abstractions/9.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "PACKAGE.md",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/Microsoft.Extensions.Configuration.Abstractions.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net8.0/_._",
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Abstractions.targets",
- "lib/net462/Microsoft.Extensions.Configuration.Abstractions.dll",
- "lib/net462/Microsoft.Extensions.Configuration.Abstractions.xml",
- "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll",
- "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.xml",
- "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll",
- "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.xml",
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
- "microsoft.extensions.configuration.abstractions.9.0.0.nupkg.sha512",
- "microsoft.extensions.configuration.abstractions.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "Microsoft.Extensions.DependencyInjection/9.0.0": {
- "sha512": "MCPrg7v3QgNMr0vX4vzRXvkNGgLg8vKWX0nKCWUxu2uPyMsaRgiRc1tHBnbTcfJMhMKj2slE/j2M9oGkd25DNw==",
- "type": "package",
- "path": "microsoft.extensions.dependencyinjection/9.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "PACKAGE.md",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net8.0/_._",
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets",
- "lib/net462/Microsoft.Extensions.DependencyInjection.dll",
- "lib/net462/Microsoft.Extensions.DependencyInjection.xml",
- "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll",
- "lib/net8.0/Microsoft.Extensions.DependencyInjection.xml",
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll",
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.xml",
- "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
- "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
- "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
- "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
- "microsoft.extensions.dependencyinjection.9.0.0.nupkg.sha512",
- "microsoft.extensions.dependencyinjection.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": {
- "sha512": "+6f2qv2a3dLwd5w6JanPIPs47CxRbnk+ZocMJUhv9NxP88VlOcJYZs9jY+MYSjxvady08bUZn6qgiNh7DadGgg==",
- "type": "package",
- "path": "microsoft.extensions.dependencyinjection.abstractions/9.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "PACKAGE.md",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net8.0/_._",
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
- "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
- "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
- "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
- "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
- "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
- "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
- "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
- "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
- "microsoft.extensions.dependencyinjection.abstractions.9.0.0.nupkg.sha512",
- "microsoft.extensions.dependencyinjection.abstractions.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "Microsoft.Extensions.Logging/9.0.0": {
- "sha512": "crjWyORoug0kK7RSNJBTeSE6VX8IQgLf3nUpTB9m62bPXp/tzbnOsnbe8TXEG0AASNaKZddnpHKw7fET8E++Pg==",
- "type": "package",
- "path": "microsoft.extensions.logging/9.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "PACKAGE.md",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/Microsoft.Extensions.Logging.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net8.0/_._",
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets",
- "lib/net462/Microsoft.Extensions.Logging.dll",
- "lib/net462/Microsoft.Extensions.Logging.xml",
- "lib/net8.0/Microsoft.Extensions.Logging.dll",
- "lib/net8.0/Microsoft.Extensions.Logging.xml",
- "lib/net9.0/Microsoft.Extensions.Logging.dll",
- "lib/net9.0/Microsoft.Extensions.Logging.xml",
- "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
- "lib/netstandard2.1/Microsoft.Extensions.Logging.dll",
- "lib/netstandard2.1/Microsoft.Extensions.Logging.xml",
- "microsoft.extensions.logging.9.0.0.nupkg.sha512",
- "microsoft.extensions.logging.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "Microsoft.Extensions.Logging.Abstractions/9.0.0": {
- "sha512": "g0UfujELzlLbHoVG8kPKVBaW470Ewi+jnptGS9KUi6jcb+k2StujtK3m26DFSGGwQ/+bVgZfsWqNzlP6YOejvw==",
- "type": "package",
- "path": "microsoft.extensions.logging.abstractions/9.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "PACKAGE.md",
- "THIRD-PARTY-NOTICES.TXT",
- "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll",
- "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll",
- "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll",
- "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
- "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets",
- "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets",
- "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets",
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets",
- "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets",
- "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll",
- "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml",
- "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll",
- "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.xml",
- "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll",
- "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.xml",
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
- "microsoft.extensions.logging.abstractions.9.0.0.nupkg.sha512",
- "microsoft.extensions.logging.abstractions.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "Microsoft.Extensions.Logging.Debug/9.0.0": {
- "sha512": "4wGlHsrLhYjLw4sFkfRixu2w4DK7dv60OjbvgbLGhUJk0eUPxYHhnszZ/P18nnAkfrPryvtOJ3ZTVev0kpqM6A==",
- "type": "package",
- "path": "microsoft.extensions.logging.debug/9.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "PACKAGE.md",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/Microsoft.Extensions.Logging.Debug.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net8.0/_._",
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Debug.targets",
- "lib/net462/Microsoft.Extensions.Logging.Debug.dll",
- "lib/net462/Microsoft.Extensions.Logging.Debug.xml",
- "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll",
- "lib/net8.0/Microsoft.Extensions.Logging.Debug.xml",
- "lib/net9.0/Microsoft.Extensions.Logging.Debug.dll",
- "lib/net9.0/Microsoft.Extensions.Logging.Debug.xml",
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.xml",
- "microsoft.extensions.logging.debug.9.0.0.nupkg.sha512",
- "microsoft.extensions.logging.debug.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "Microsoft.Extensions.Options/9.0.0": {
- "sha512": "y2146b3jrPI3Q0lokKXdKLpmXqakYbDIPDV6r3M8SqvSf45WwOTzkyfDpxnZXJsJQEpAsAqjUq5Pu8RCJMjubg==",
- "type": "package",
- "path": "microsoft.extensions.options/9.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "PACKAGE.md",
- "THIRD-PARTY-NOTICES.TXT",
- "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Options.SourceGeneration.dll",
- "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
- "buildTransitive/net461/Microsoft.Extensions.Options.targets",
- "buildTransitive/net462/Microsoft.Extensions.Options.targets",
- "buildTransitive/net8.0/Microsoft.Extensions.Options.targets",
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets",
- "buildTransitive/netstandard2.0/Microsoft.Extensions.Options.targets",
- "lib/net462/Microsoft.Extensions.Options.dll",
- "lib/net462/Microsoft.Extensions.Options.xml",
- "lib/net8.0/Microsoft.Extensions.Options.dll",
- "lib/net8.0/Microsoft.Extensions.Options.xml",
- "lib/net9.0/Microsoft.Extensions.Options.dll",
- "lib/net9.0/Microsoft.Extensions.Options.xml",
- "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
- "lib/netstandard2.1/Microsoft.Extensions.Options.dll",
- "lib/netstandard2.1/Microsoft.Extensions.Options.xml",
- "microsoft.extensions.options.9.0.0.nupkg.sha512",
- "microsoft.extensions.options.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "Microsoft.Extensions.Primitives/9.0.0": {
- "sha512": "N3qEBzmLMYiASUlKxxFIISP4AiwuPTHF5uCh+2CWSwwzAJiIYx0kBJsS30cp1nvhSySFAVi30jecD307jV+8Kg==",
- "type": "package",
- "path": "microsoft.extensions.primitives/9.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "PACKAGE.md",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/Microsoft.Extensions.Primitives.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net8.0/_._",
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets",
- "lib/net462/Microsoft.Extensions.Primitives.dll",
- "lib/net462/Microsoft.Extensions.Primitives.xml",
- "lib/net8.0/Microsoft.Extensions.Primitives.dll",
- "lib/net8.0/Microsoft.Extensions.Primitives.xml",
- "lib/net9.0/Microsoft.Extensions.Primitives.dll",
- "lib/net9.0/Microsoft.Extensions.Primitives.xml",
- "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
- "microsoft.extensions.primitives.9.0.0.nupkg.sha512",
- "microsoft.extensions.primitives.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "Microsoft.Graphics.Win2D/1.2.0": {
- "sha512": "7bAo8ObjCy/br0eW0nONRfVKehJu5aDe/KQekWeNXslwTOO2rhrIfWaVGepsXyVqmqwHoLJ31g1HsT7FLdBCoQ==",
- "type": "package",
- "path": "microsoft.graphics.win2d/1.2.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Win2d.githash.txt",
- "build/Win2D.common.targets",
- "build/native/Microsoft.Graphics.Win2D.targets",
- "build/net45/Microsoft.Graphics.Win2D.targets",
- "build/net6.0-windows10.0.19041.0/Microsoft.Graphics.Win2D.targets",
- "build/win10/Microsoft.Graphics.Win2D.targets",
- "icon.png",
- "include/Microsoft.Graphics.Canvas.native.h",
- "include/arm64/Microsoft.Graphics.Canvas.h",
- "include/x64/Microsoft.Graphics.Canvas.h",
- "include/x86/Microsoft.Graphics.Canvas.h",
- "lib/net45/Microsoft.Graphics.Canvas.winmd",
- "lib/net6.0-windows10.0.19041.0/Microsoft.Graphics.Canvas.Interop.dll",
- "lib/uap10.0/Microsoft.Graphics.Canvas.winmd",
- "microsoft.graphics.win2d.1.2.0.nupkg.sha512",
- "microsoft.graphics.win2d.nuspec",
- "runtimes/win-arm64/native/Microsoft.Graphics.Canvas.dll",
- "runtimes/win-x64/native/Microsoft.Graphics.Canvas.dll",
- "runtimes/win-x86/native/Microsoft.Graphics.Canvas.dll"
- ]
- },
- "Microsoft.IO.RecyclableMemoryStream/3.0.1": {
- "sha512": "s/s20YTVY9r9TPfTrN5g8zPF1YhwxyqO6PxUkrYTGI2B+OGPe9AdajWZrLhFqXIvqIW23fnUE4+ztrUWNU1+9g==",
- "type": "package",
- "path": "microsoft.io.recyclablememorystream/3.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "README.md",
- "lib/net6.0/Microsoft.IO.RecyclableMemoryStream.dll",
- "lib/net6.0/Microsoft.IO.RecyclableMemoryStream.xml",
- "lib/netstandard2.0/Microsoft.IO.RecyclableMemoryStream.dll",
- "lib/netstandard2.0/Microsoft.IO.RecyclableMemoryStream.xml",
- "lib/netstandard2.1/Microsoft.IO.RecyclableMemoryStream.dll",
- "lib/netstandard2.1/Microsoft.IO.RecyclableMemoryStream.xml",
- "microsoft.io.recyclablememorystream.3.0.1.nupkg.sha512",
- "microsoft.io.recyclablememorystream.nuspec"
- ]
- },
- "Microsoft.Maui.Controls/9.0.51": {
- "sha512": "CgPNvvs19rilUQt0UMzfk3vNnZ9e+YnWzeCV+CDn2Ba0DfU6fs6RabJs2fydDCd0jJuCfxF4VW3uVdJQ49bYWg==",
- "type": "package",
- "path": "microsoft.maui.controls/9.0.51",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "README.md",
- "THIRD-PARTY-NOTICES.TXT",
- "microsoft.maui.controls.9.0.51.nupkg.sha512",
- "microsoft.maui.controls.nuspec"
- ]
- },
- "Microsoft.Maui.Controls.Build.Tasks/9.0.51": {
- "sha512": "16XjZKXGK7TMdPzRRjrsL6fwsGk6ODqmaME/x9xpQEF1sMzfabotu4n/tTMQ5j1VpKM59RDgtsnGkQ0x3UAUrw==",
- "type": "package",
- "path": "microsoft.maui.controls.build.tasks/9.0.51",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "README.md",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/Microsoft.Maui.Controls.Build.Tasks.props",
- "buildTransitive/Microsoft.Maui.Controls.Build.Tasks.targets",
- "buildTransitive/net6.0-ios10.0/Microsoft.Maui.Controls.Build.Tasks.props",
- "buildTransitive/net6.0-ios10.0/Microsoft.Maui.Controls.Build.Tasks.targets",
- "buildTransitive/net6.0-ios10.0/Microsoft.Maui.Controls.iOS.targets",
- "buildTransitive/net6.0-maccatalyst13.1/Microsoft.Maui.Controls.Build.Tasks.props",
- "buildTransitive/net6.0-maccatalyst13.1/Microsoft.Maui.Controls.Build.Tasks.targets",
- "buildTransitive/net6.0-maccatalyst13.1/Microsoft.Maui.Controls.MacCatalyst.targets",
- "buildTransitive/net6.0-windows10.0.17763.0/Microsoft.Maui.Controls.Build.Tasks.props",
- "buildTransitive/net6.0-windows10.0.17763.0/Microsoft.Maui.Controls.Build.Tasks.targets",
- "buildTransitive/net6.0-windows10.0.17763.0/Microsoft.Maui.Sdk.Windows.targets",
- "buildTransitive/netstandard2.0/Microsoft.Maui.Controls.BindingSourceGen.dll",
- "buildTransitive/netstandard2.0/Microsoft.Maui.Controls.BindingSourceGen.pdb",
- "buildTransitive/netstandard2.0/Microsoft.Maui.Controls.Build.Tasks.After.targets",
- "buildTransitive/netstandard2.0/Microsoft.Maui.Controls.Build.Tasks.Before.targets",
- "buildTransitive/netstandard2.0/Microsoft.Maui.Controls.Build.Tasks.dll",
- "buildTransitive/netstandard2.0/Microsoft.Maui.Controls.Build.Tasks.pdb",
- "buildTransitive/netstandard2.0/Microsoft.Maui.Controls.Build.Tasks.props",
- "buildTransitive/netstandard2.0/Microsoft.Maui.Controls.Build.Tasks.targets",
- "buildTransitive/netstandard2.0/Microsoft.Maui.Controls.Common.targets",
- "buildTransitive/netstandard2.0/Microsoft.Maui.Controls.DefaultItems.targets",
- "buildTransitive/netstandard2.0/Microsoft.Maui.Controls.Globs.props",
- "buildTransitive/netstandard2.0/Microsoft.Maui.Controls.SingleProject.Before.targets",
- "buildTransitive/netstandard2.0/Microsoft.Maui.Controls.SingleProject.targets",
- "buildTransitive/netstandard2.0/Microsoft.Maui.Controls.SourceGen.dll",
- "buildTransitive/netstandard2.0/Microsoft.Maui.Controls.SourceGen.pdb",
- "buildTransitive/netstandard2.0/Microsoft.Maui.Controls.targets",
- "buildTransitive/netstandard2.0/Mono.Cecil.Mdb.dll",
- "buildTransitive/netstandard2.0/Mono.Cecil.Mdb.pdb",
- "buildTransitive/netstandard2.0/Mono.Cecil.Pdb.dll",
- "buildTransitive/netstandard2.0/Mono.Cecil.Pdb.pdb",
- "buildTransitive/netstandard2.0/Mono.Cecil.Rocks.dll",
- "buildTransitive/netstandard2.0/Mono.Cecil.Rocks.pdb",
- "buildTransitive/netstandard2.0/Mono.Cecil.dll",
- "buildTransitive/netstandard2.0/Mono.Cecil.pdb",
- "buildTransitive/netstandard2.0/System.CodeDom.dll",
- "buildTransitive/netstandard2.0/ar/Microsoft.Maui.Controls.Build.Tasks.resources.dll",
- "buildTransitive/netstandard2.0/ca/Microsoft.Maui.Controls.Build.Tasks.resources.dll",
- "buildTransitive/netstandard2.0/cs/Microsoft.Maui.Controls.Build.Tasks.resources.dll",
- "buildTransitive/netstandard2.0/da/Microsoft.Maui.Controls.Build.Tasks.resources.dll",
- "buildTransitive/netstandard2.0/de/Microsoft.Maui.Controls.Build.Tasks.resources.dll",
- "buildTransitive/netstandard2.0/el/Microsoft.Maui.Controls.Build.Tasks.resources.dll",
- "buildTransitive/netstandard2.0/es/Microsoft.Maui.Controls.Build.Tasks.resources.dll",
- "buildTransitive/netstandard2.0/fi/Microsoft.Maui.Controls.Build.Tasks.resources.dll",
- "buildTransitive/netstandard2.0/fr/Microsoft.Maui.Controls.Build.Tasks.resources.dll",
- "buildTransitive/netstandard2.0/he/Microsoft.Maui.Controls.Build.Tasks.resources.dll",
- "buildTransitive/netstandard2.0/hi/Microsoft.Maui.Controls.Build.Tasks.resources.dll",
- "buildTransitive/netstandard2.0/hr/Microsoft.Maui.Controls.Build.Tasks.resources.dll",
- "buildTransitive/netstandard2.0/hu/Microsoft.Maui.Controls.Build.Tasks.resources.dll",
- "buildTransitive/netstandard2.0/id/Microsoft.Maui.Controls.Build.Tasks.resources.dll",
- "buildTransitive/netstandard2.0/it/Microsoft.Maui.Controls.Build.Tasks.resources.dll",
- "buildTransitive/netstandard2.0/ja/Microsoft.Maui.Controls.Build.Tasks.resources.dll",
- "buildTransitive/netstandard2.0/ko/Microsoft.Maui.Controls.Build.Tasks.resources.dll",
- "buildTransitive/netstandard2.0/maui-blazor.aotprofile",
- "buildTransitive/netstandard2.0/maui-sc.aotprofile",
- "buildTransitive/netstandard2.0/maui.aotprofile",
- "buildTransitive/netstandard2.0/ms/Microsoft.Maui.Controls.Build.Tasks.resources.dll",
- "buildTransitive/netstandard2.0/nb/Microsoft.Maui.Controls.Build.Tasks.resources.dll",
- "buildTransitive/netstandard2.0/nl/Microsoft.Maui.Controls.Build.Tasks.resources.dll",
- "buildTransitive/netstandard2.0/pl/Microsoft.Maui.Controls.Build.Tasks.resources.dll",
- "buildTransitive/netstandard2.0/proguard.cfg",
- "buildTransitive/netstandard2.0/pt-BR/Microsoft.Maui.Controls.Build.Tasks.resources.dll",
- "buildTransitive/netstandard2.0/pt/Microsoft.Maui.Controls.Build.Tasks.resources.dll",
- "buildTransitive/netstandard2.0/ro/Microsoft.Maui.Controls.Build.Tasks.resources.dll",
- "buildTransitive/netstandard2.0/ru/Microsoft.Maui.Controls.Build.Tasks.resources.dll",
- "buildTransitive/netstandard2.0/sk/Microsoft.Maui.Controls.Build.Tasks.resources.dll",
- "buildTransitive/netstandard2.0/sv/Microsoft.Maui.Controls.Build.Tasks.resources.dll",
- "buildTransitive/netstandard2.0/th/Microsoft.Maui.Controls.Build.Tasks.resources.dll",
- "buildTransitive/netstandard2.0/tr/Microsoft.Maui.Controls.Build.Tasks.resources.dll",
- "buildTransitive/netstandard2.0/uk/Microsoft.Maui.Controls.Build.Tasks.resources.dll",
- "buildTransitive/netstandard2.0/vi/Microsoft.Maui.Controls.Build.Tasks.resources.dll",
- "buildTransitive/netstandard2.0/zh-HK/Microsoft.Maui.Controls.Build.Tasks.resources.dll",
- "buildTransitive/netstandard2.0/zh-Hans/Microsoft.Maui.Controls.Build.Tasks.resources.dll",
- "buildTransitive/netstandard2.0/zh-Hant/Microsoft.Maui.Controls.Build.Tasks.resources.dll",
- "microsoft.maui.controls.build.tasks.9.0.51.nupkg.sha512",
- "microsoft.maui.controls.build.tasks.nuspec"
- ]
- },
- "Microsoft.Maui.Controls.Core/9.0.51": {
- "sha512": "T+t6NOKMWgx/nrFkwAAvTkSV0AnwChgBmjKStiOxIUYIYJtqzBa3ve5nBL4FZf0kG5PRpInGVLMp47cu6P8/JA==",
- "type": "package",
- "path": "microsoft.maui.controls.core/9.0.51",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "README.md",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net9.0-android35.0/Design/Microsoft.Maui.Controls.DesignTools.dll",
- "lib/net9.0-android35.0/Design/Microsoft.Maui.Controls.DesignTools.pdb",
- "lib/net9.0-android35.0/Microsoft.Maui.Controls.aar",
- "lib/net9.0-android35.0/Microsoft.Maui.Controls.dll",
- "lib/net9.0-android35.0/Microsoft.Maui.Controls.pdb",
- "lib/net9.0-android35.0/Microsoft.Maui.Controls.xml",
- "lib/net9.0-android35.0/ar/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-android35.0/ca/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-android35.0/cs/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-android35.0/da/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-android35.0/de/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-android35.0/el/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-android35.0/es/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-android35.0/fi/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-android35.0/fr/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-android35.0/he/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-android35.0/hi/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-android35.0/hr/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-android35.0/hu/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-android35.0/id/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-android35.0/it/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-android35.0/ja/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-android35.0/ko/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-android35.0/ms/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-android35.0/nb/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-android35.0/nl/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-android35.0/pl/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-android35.0/pt-BR/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-android35.0/pt/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-android35.0/ro/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-android35.0/ru/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-android35.0/sk/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-android35.0/sv/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-android35.0/th/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-android35.0/tr/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-android35.0/uk/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-android35.0/vi/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-android35.0/zh-HK/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-android35.0/zh-Hans/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-android35.0/zh-Hant/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-ios18.0/Design/Microsoft.Maui.Controls.DesignTools.dll",
- "lib/net9.0-ios18.0/Design/Microsoft.Maui.Controls.DesignTools.pdb",
- "lib/net9.0-ios18.0/Microsoft.Maui.Controls.dll",
- "lib/net9.0-ios18.0/Microsoft.Maui.Controls.pdb",
- "lib/net9.0-ios18.0/Microsoft.Maui.Controls.xml",
- "lib/net9.0-ios18.0/ar/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-ios18.0/ca/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-ios18.0/cs/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-ios18.0/da/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-ios18.0/de/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-ios18.0/el/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-ios18.0/es/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-ios18.0/fi/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-ios18.0/fr/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-ios18.0/he/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-ios18.0/hi/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-ios18.0/hr/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-ios18.0/hu/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-ios18.0/id/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-ios18.0/it/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-ios18.0/ja/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-ios18.0/ko/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-ios18.0/ms/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-ios18.0/nb/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-ios18.0/nl/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-ios18.0/pl/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-ios18.0/pt-BR/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-ios18.0/pt/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-ios18.0/ro/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-ios18.0/ru/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-ios18.0/sk/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-ios18.0/sv/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-ios18.0/th/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-ios18.0/tr/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-ios18.0/uk/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-ios18.0/vi/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-ios18.0/zh-HK/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-ios18.0/zh-Hans/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-ios18.0/zh-Hant/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-maccatalyst18.0/Design/Microsoft.Maui.Controls.DesignTools.dll",
- "lib/net9.0-maccatalyst18.0/Design/Microsoft.Maui.Controls.DesignTools.pdb",
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.Controls.dll",
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.Controls.pdb",
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.Controls.xml",
- "lib/net9.0-maccatalyst18.0/ar/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-maccatalyst18.0/ca/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-maccatalyst18.0/cs/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-maccatalyst18.0/da/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-maccatalyst18.0/de/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-maccatalyst18.0/el/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-maccatalyst18.0/es/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-maccatalyst18.0/fi/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-maccatalyst18.0/fr/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-maccatalyst18.0/he/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-maccatalyst18.0/hi/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-maccatalyst18.0/hr/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-maccatalyst18.0/hu/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-maccatalyst18.0/id/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-maccatalyst18.0/it/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-maccatalyst18.0/ja/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-maccatalyst18.0/ko/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-maccatalyst18.0/ms/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-maccatalyst18.0/nb/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-maccatalyst18.0/nl/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-maccatalyst18.0/pl/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-maccatalyst18.0/pt-BR/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-maccatalyst18.0/pt/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-maccatalyst18.0/ro/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-maccatalyst18.0/ru/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-maccatalyst18.0/sk/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-maccatalyst18.0/sv/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-maccatalyst18.0/th/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-maccatalyst18.0/tr/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-maccatalyst18.0/uk/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-maccatalyst18.0/vi/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-maccatalyst18.0/zh-HK/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-maccatalyst18.0/zh-Hans/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-maccatalyst18.0/zh-Hant/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-tizen7.0/Design/Microsoft.Maui.Controls.DesignTools.dll",
- "lib/net9.0-tizen7.0/Design/Microsoft.Maui.Controls.DesignTools.pdb",
- "lib/net9.0-tizen7.0/Microsoft.Maui.Controls.dll",
- "lib/net9.0-tizen7.0/Microsoft.Maui.Controls.pdb",
- "lib/net9.0-tizen7.0/Microsoft.Maui.Controls.xml",
- "lib/net9.0-tizen7.0/ar/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-tizen7.0/ca/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-tizen7.0/cs/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-tizen7.0/da/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-tizen7.0/de/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-tizen7.0/el/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-tizen7.0/es/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-tizen7.0/fi/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-tizen7.0/fr/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-tizen7.0/he/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-tizen7.0/hi/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-tizen7.0/hr/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-tizen7.0/hu/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-tizen7.0/id/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-tizen7.0/it/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-tizen7.0/ja/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-tizen7.0/ko/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-tizen7.0/ms/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-tizen7.0/nb/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-tizen7.0/nl/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-tizen7.0/pl/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-tizen7.0/pt-BR/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-tizen7.0/pt/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-tizen7.0/ro/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-tizen7.0/ru/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-tizen7.0/sk/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-tizen7.0/sv/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-tizen7.0/th/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-tizen7.0/tr/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-tizen7.0/uk/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-tizen7.0/vi/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-tizen7.0/zh-HK/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-tizen7.0/zh-Hans/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-tizen7.0/zh-Hant/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-windows10.0.19041/Design/Microsoft.Maui.Controls.DesignTools.dll",
- "lib/net9.0-windows10.0.19041/Design/Microsoft.Maui.Controls.DesignTools.pdb",
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Controls.dll",
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Controls.pdb",
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Controls.pri",
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Controls.xml",
- "lib/net9.0-windows10.0.19041/ar/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-windows10.0.19041/ca/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-windows10.0.19041/cs/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-windows10.0.19041/da/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-windows10.0.19041/de/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-windows10.0.19041/el/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-windows10.0.19041/es/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-windows10.0.19041/fi/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-windows10.0.19041/fr/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-windows10.0.19041/he/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-windows10.0.19041/hi/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-windows10.0.19041/hr/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-windows10.0.19041/hu/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-windows10.0.19041/id/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-windows10.0.19041/it/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-windows10.0.19041/ja/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-windows10.0.19041/ko/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-windows10.0.19041/ms/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-windows10.0.19041/nb/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-windows10.0.19041/nl/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-windows10.0.19041/pl/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-windows10.0.19041/pt-BR/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-windows10.0.19041/pt/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-windows10.0.19041/ro/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-windows10.0.19041/ru/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-windows10.0.19041/sk/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-windows10.0.19041/sv/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-windows10.0.19041/th/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-windows10.0.19041/tr/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-windows10.0.19041/uk/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-windows10.0.19041/vi/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-windows10.0.19041/zh-HK/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-windows10.0.19041/zh-Hans/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-windows10.0.19041/zh-Hant/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-windows10.0.20348/Design/Microsoft.Maui.Controls.DesignTools.dll",
- "lib/net9.0-windows10.0.20348/Design/Microsoft.Maui.Controls.DesignTools.pdb",
- "lib/net9.0-windows10.0.20348/Microsoft.Maui.Controls.dll",
- "lib/net9.0-windows10.0.20348/Microsoft.Maui.Controls.pdb",
- "lib/net9.0-windows10.0.20348/Microsoft.Maui.Controls.pri",
- "lib/net9.0-windows10.0.20348/Microsoft.Maui.Controls.xml",
- "lib/net9.0-windows10.0.20348/ar/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-windows10.0.20348/ca/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-windows10.0.20348/cs/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-windows10.0.20348/da/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-windows10.0.20348/de/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-windows10.0.20348/el/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-windows10.0.20348/es/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-windows10.0.20348/fi/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-windows10.0.20348/fr/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-windows10.0.20348/he/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-windows10.0.20348/hi/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-windows10.0.20348/hr/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-windows10.0.20348/hu/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-windows10.0.20348/id/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-windows10.0.20348/it/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-windows10.0.20348/ja/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-windows10.0.20348/ko/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-windows10.0.20348/ms/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-windows10.0.20348/nb/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-windows10.0.20348/nl/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-windows10.0.20348/pl/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-windows10.0.20348/pt-BR/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-windows10.0.20348/pt/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-windows10.0.20348/ro/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-windows10.0.20348/ru/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-windows10.0.20348/sk/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-windows10.0.20348/sv/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-windows10.0.20348/th/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-windows10.0.20348/tr/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-windows10.0.20348/uk/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-windows10.0.20348/vi/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-windows10.0.20348/zh-HK/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-windows10.0.20348/zh-Hans/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0-windows10.0.20348/zh-Hant/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0/Design/Microsoft.Maui.Controls.DesignTools.dll",
- "lib/net9.0/Design/Microsoft.Maui.Controls.DesignTools.pdb",
- "lib/net9.0/Microsoft.Maui.Controls.dll",
- "lib/net9.0/Microsoft.Maui.Controls.pdb",
- "lib/net9.0/Microsoft.Maui.Controls.xml",
- "lib/net9.0/ar/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0/ca/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0/cs/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0/da/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0/de/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0/el/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0/es/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0/fi/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0/fr/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0/he/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0/hi/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0/hr/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0/hu/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0/id/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0/it/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0/ja/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0/ko/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0/ms/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0/nb/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0/nl/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0/pl/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0/pt-BR/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0/pt/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0/ro/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0/ru/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0/sk/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0/sv/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0/th/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0/tr/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0/uk/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0/vi/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0/zh-HK/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0/zh-Hans/Microsoft.Maui.Controls.resources.dll",
- "lib/net9.0/zh-Hant/Microsoft.Maui.Controls.resources.dll",
- "lib/netstandard2.0/Design/Microsoft.Maui.Controls.DesignTools.dll",
- "lib/netstandard2.0/Design/Microsoft.Maui.Controls.DesignTools.pdb",
- "lib/netstandard2.0/Microsoft.Maui.Controls.dll",
- "lib/netstandard2.0/Microsoft.Maui.Controls.pdb",
- "lib/netstandard2.0/Microsoft.Maui.Controls.xml",
- "lib/netstandard2.0/ar/Microsoft.Maui.Controls.resources.dll",
- "lib/netstandard2.0/ca/Microsoft.Maui.Controls.resources.dll",
- "lib/netstandard2.0/cs/Microsoft.Maui.Controls.resources.dll",
- "lib/netstandard2.0/da/Microsoft.Maui.Controls.resources.dll",
- "lib/netstandard2.0/de/Microsoft.Maui.Controls.resources.dll",
- "lib/netstandard2.0/el/Microsoft.Maui.Controls.resources.dll",
- "lib/netstandard2.0/es/Microsoft.Maui.Controls.resources.dll",
- "lib/netstandard2.0/fi/Microsoft.Maui.Controls.resources.dll",
- "lib/netstandard2.0/fr/Microsoft.Maui.Controls.resources.dll",
- "lib/netstandard2.0/he/Microsoft.Maui.Controls.resources.dll",
- "lib/netstandard2.0/hi/Microsoft.Maui.Controls.resources.dll",
- "lib/netstandard2.0/hr/Microsoft.Maui.Controls.resources.dll",
- "lib/netstandard2.0/hu/Microsoft.Maui.Controls.resources.dll",
- "lib/netstandard2.0/id/Microsoft.Maui.Controls.resources.dll",
- "lib/netstandard2.0/it/Microsoft.Maui.Controls.resources.dll",
- "lib/netstandard2.0/ja/Microsoft.Maui.Controls.resources.dll",
- "lib/netstandard2.0/ko/Microsoft.Maui.Controls.resources.dll",
- "lib/netstandard2.0/ms/Microsoft.Maui.Controls.resources.dll",
- "lib/netstandard2.0/nb/Microsoft.Maui.Controls.resources.dll",
- "lib/netstandard2.0/nl/Microsoft.Maui.Controls.resources.dll",
- "lib/netstandard2.0/pl/Microsoft.Maui.Controls.resources.dll",
- "lib/netstandard2.0/pt-BR/Microsoft.Maui.Controls.resources.dll",
- "lib/netstandard2.0/pt/Microsoft.Maui.Controls.resources.dll",
- "lib/netstandard2.0/ro/Microsoft.Maui.Controls.resources.dll",
- "lib/netstandard2.0/ru/Microsoft.Maui.Controls.resources.dll",
- "lib/netstandard2.0/sk/Microsoft.Maui.Controls.resources.dll",
- "lib/netstandard2.0/sv/Microsoft.Maui.Controls.resources.dll",
- "lib/netstandard2.0/th/Microsoft.Maui.Controls.resources.dll",
- "lib/netstandard2.0/tr/Microsoft.Maui.Controls.resources.dll",
- "lib/netstandard2.0/uk/Microsoft.Maui.Controls.resources.dll",
- "lib/netstandard2.0/vi/Microsoft.Maui.Controls.resources.dll",
- "lib/netstandard2.0/zh-HK/Microsoft.Maui.Controls.resources.dll",
- "lib/netstandard2.0/zh-Hans/Microsoft.Maui.Controls.resources.dll",
- "lib/netstandard2.0/zh-Hant/Microsoft.Maui.Controls.resources.dll",
- "lib/netstandard2.1/Design/Microsoft.Maui.Controls.DesignTools.dll",
- "lib/netstandard2.1/Design/Microsoft.Maui.Controls.DesignTools.pdb",
- "lib/netstandard2.1/Microsoft.Maui.Controls.dll",
- "lib/netstandard2.1/Microsoft.Maui.Controls.pdb",
- "lib/netstandard2.1/Microsoft.Maui.Controls.xml",
- "lib/netstandard2.1/ar/Microsoft.Maui.Controls.resources.dll",
- "lib/netstandard2.1/ca/Microsoft.Maui.Controls.resources.dll",
- "lib/netstandard2.1/cs/Microsoft.Maui.Controls.resources.dll",
- "lib/netstandard2.1/da/Microsoft.Maui.Controls.resources.dll",
- "lib/netstandard2.1/de/Microsoft.Maui.Controls.resources.dll",
- "lib/netstandard2.1/el/Microsoft.Maui.Controls.resources.dll",
- "lib/netstandard2.1/es/Microsoft.Maui.Controls.resources.dll",
- "lib/netstandard2.1/fi/Microsoft.Maui.Controls.resources.dll",
- "lib/netstandard2.1/fr/Microsoft.Maui.Controls.resources.dll",
- "lib/netstandard2.1/he/Microsoft.Maui.Controls.resources.dll",
- "lib/netstandard2.1/hi/Microsoft.Maui.Controls.resources.dll",
- "lib/netstandard2.1/hr/Microsoft.Maui.Controls.resources.dll",
- "lib/netstandard2.1/hu/Microsoft.Maui.Controls.resources.dll",
- "lib/netstandard2.1/id/Microsoft.Maui.Controls.resources.dll",
- "lib/netstandard2.1/it/Microsoft.Maui.Controls.resources.dll",
- "lib/netstandard2.1/ja/Microsoft.Maui.Controls.resources.dll",
- "lib/netstandard2.1/ko/Microsoft.Maui.Controls.resources.dll",
- "lib/netstandard2.1/ms/Microsoft.Maui.Controls.resources.dll",
- "lib/netstandard2.1/nb/Microsoft.Maui.Controls.resources.dll",
- "lib/netstandard2.1/nl/Microsoft.Maui.Controls.resources.dll",
- "lib/netstandard2.1/pl/Microsoft.Maui.Controls.resources.dll",
- "lib/netstandard2.1/pt-BR/Microsoft.Maui.Controls.resources.dll",
- "lib/netstandard2.1/pt/Microsoft.Maui.Controls.resources.dll",
- "lib/netstandard2.1/ro/Microsoft.Maui.Controls.resources.dll",
- "lib/netstandard2.1/ru/Microsoft.Maui.Controls.resources.dll",
- "lib/netstandard2.1/sk/Microsoft.Maui.Controls.resources.dll",
- "lib/netstandard2.1/sv/Microsoft.Maui.Controls.resources.dll",
- "lib/netstandard2.1/th/Microsoft.Maui.Controls.resources.dll",
- "lib/netstandard2.1/tr/Microsoft.Maui.Controls.resources.dll",
- "lib/netstandard2.1/uk/Microsoft.Maui.Controls.resources.dll",
- "lib/netstandard2.1/vi/Microsoft.Maui.Controls.resources.dll",
- "lib/netstandard2.1/zh-HK/Microsoft.Maui.Controls.resources.dll",
- "lib/netstandard2.1/zh-Hans/Microsoft.Maui.Controls.resources.dll",
- "lib/netstandard2.1/zh-Hant/Microsoft.Maui.Controls.resources.dll",
- "microsoft.maui.controls.core.9.0.51.nupkg.sha512",
- "microsoft.maui.controls.core.nuspec"
- ]
- },
- "Microsoft.Maui.Controls.Xaml/9.0.51": {
- "sha512": "6TX4tuhw7OE++Kdq3yr7kd+RjCVxR48O7+IVRkFl/vLmlaxxOOwv6BuOejBvIHTGKi6ug5U9MywVa4Sbh38qeg==",
- "type": "package",
- "path": "microsoft.maui.controls.xaml/9.0.51",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "README.md",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net9.0-android35.0/Design/Microsoft.Maui.Controls.Xaml.DesignTools.dll",
- "lib/net9.0-android35.0/Design/Microsoft.Maui.Controls.Xaml.DesignTools.pdb",
- "lib/net9.0-android35.0/Microsoft.Maui.Controls.Xaml.dll",
- "lib/net9.0-android35.0/Microsoft.Maui.Controls.Xaml.pdb",
- "lib/net9.0-android35.0/Microsoft.Maui.Controls.Xaml.xml",
- "lib/net9.0-ios18.0/Design/Microsoft.Maui.Controls.Xaml.DesignTools.dll",
- "lib/net9.0-ios18.0/Design/Microsoft.Maui.Controls.Xaml.DesignTools.pdb",
- "lib/net9.0-ios18.0/Microsoft.Maui.Controls.Xaml.dll",
- "lib/net9.0-ios18.0/Microsoft.Maui.Controls.Xaml.pdb",
- "lib/net9.0-ios18.0/Microsoft.Maui.Controls.Xaml.xml",
- "lib/net9.0-maccatalyst18.0/Design/Microsoft.Maui.Controls.Xaml.DesignTools.dll",
- "lib/net9.0-maccatalyst18.0/Design/Microsoft.Maui.Controls.Xaml.DesignTools.pdb",
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.Controls.Xaml.dll",
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.Controls.Xaml.pdb",
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.Controls.Xaml.xml",
- "lib/net9.0-tizen7.0/Design/Microsoft.Maui.Controls.Xaml.DesignTools.dll",
- "lib/net9.0-tizen7.0/Design/Microsoft.Maui.Controls.Xaml.DesignTools.pdb",
- "lib/net9.0-tizen7.0/Microsoft.Maui.Controls.Xaml.dll",
- "lib/net9.0-tizen7.0/Microsoft.Maui.Controls.Xaml.pdb",
- "lib/net9.0-tizen7.0/Microsoft.Maui.Controls.Xaml.xml",
- "lib/net9.0-windows10.0.19041/Design/Microsoft.Maui.Controls.Xaml.DesignTools.dll",
- "lib/net9.0-windows10.0.19041/Design/Microsoft.Maui.Controls.Xaml.DesignTools.pdb",
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Controls.Xaml.dll",
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Controls.Xaml.pdb",
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Controls.Xaml.xml",
- "lib/net9.0-windows10.0.20348/Design/Microsoft.Maui.Controls.Xaml.DesignTools.dll",
- "lib/net9.0-windows10.0.20348/Design/Microsoft.Maui.Controls.Xaml.DesignTools.pdb",
- "lib/net9.0-windows10.0.20348/Microsoft.Maui.Controls.Xaml.dll",
- "lib/net9.0-windows10.0.20348/Microsoft.Maui.Controls.Xaml.pdb",
- "lib/net9.0-windows10.0.20348/Microsoft.Maui.Controls.Xaml.xml",
- "lib/net9.0/Design/Microsoft.Maui.Controls.Xaml.DesignTools.dll",
- "lib/net9.0/Design/Microsoft.Maui.Controls.Xaml.DesignTools.pdb",
- "lib/net9.0/Microsoft.Maui.Controls.Xaml.dll",
- "lib/net9.0/Microsoft.Maui.Controls.Xaml.pdb",
- "lib/net9.0/Microsoft.Maui.Controls.Xaml.xml",
- "lib/netstandard2.0/Design/Microsoft.Maui.Controls.Xaml.DesignTools.dll",
- "lib/netstandard2.0/Design/Microsoft.Maui.Controls.Xaml.DesignTools.pdb",
- "lib/netstandard2.0/Microsoft.Maui.Controls.Xaml.dll",
- "lib/netstandard2.0/Microsoft.Maui.Controls.Xaml.pdb",
- "lib/netstandard2.0/Microsoft.Maui.Controls.Xaml.xml",
- "lib/netstandard2.1/Design/Microsoft.Maui.Controls.Xaml.DesignTools.dll",
- "lib/netstandard2.1/Design/Microsoft.Maui.Controls.Xaml.DesignTools.pdb",
- "lib/netstandard2.1/Microsoft.Maui.Controls.Xaml.dll",
- "lib/netstandard2.1/Microsoft.Maui.Controls.Xaml.pdb",
- "lib/netstandard2.1/Microsoft.Maui.Controls.Xaml.xml",
- "microsoft.maui.controls.xaml.9.0.51.nupkg.sha512",
- "microsoft.maui.controls.xaml.nuspec"
- ]
- },
- "Microsoft.Maui.Core/9.0.51": {
- "sha512": "tWelEPORzTc2JBWM2Bw2KzJCsRlG6CGJI+Jn5IyXOpa3zr/Uu7eU1VUNlv1LCqnRWa28YTxqdPeu7gWX0jS6/g==",
- "type": "package",
- "path": "microsoft.maui.core/9.0.51",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "README.md",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/Microsoft.Maui.Core.After.targets",
- "buildTransitive/Microsoft.Maui.Core.Before.targets",
- "buildTransitive/Microsoft.Maui.Core.BundledVersions.targets",
- "buildTransitive/Microsoft.Maui.Core.props",
- "buildTransitive/Microsoft.Maui.Core.targets",
- "buildTransitive/WinUI.targets",
- "buildTransitive/net9.0-windows10.0.17763.0/Microsoft.Maui.Core.props",
- "buildTransitive/net9.0-windows10.0.17763.0/Microsoft.Maui.Core.targets",
- "lib/net9.0-android35.0/Microsoft.Maui.aar",
- "lib/net9.0-android35.0/Microsoft.Maui.dll",
- "lib/net9.0-android35.0/Microsoft.Maui.pdb",
- "lib/net9.0-android35.0/Microsoft.Maui.xml",
- "lib/net9.0-android35.0/maui.aar",
- "lib/net9.0-ios18.0/Microsoft.Maui.dll",
- "lib/net9.0-ios18.0/Microsoft.Maui.pdb",
- "lib/net9.0-ios18.0/Microsoft.Maui.xml",
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.dll",
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.pdb",
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.xml",
- "lib/net9.0-tizen7.0/Microsoft.Maui.dll",
- "lib/net9.0-tizen7.0/Microsoft.Maui.pdb",
- "lib/net9.0-tizen7.0/Microsoft.Maui.xml",
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.dll",
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.pdb",
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.pri",
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.xml",
- "lib/net9.0-windows10.0.20348/Microsoft.Maui.dll",
- "lib/net9.0-windows10.0.20348/Microsoft.Maui.pdb",
- "lib/net9.0-windows10.0.20348/Microsoft.Maui.pri",
- "lib/net9.0-windows10.0.20348/Microsoft.Maui.xml",
- "lib/net9.0/Microsoft.Maui.dll",
- "lib/net9.0/Microsoft.Maui.pdb",
- "lib/net9.0/Microsoft.Maui.xml",
- "lib/netstandard2.0/Microsoft.Maui.dll",
- "lib/netstandard2.0/Microsoft.Maui.pdb",
- "lib/netstandard2.0/Microsoft.Maui.xml",
- "lib/netstandard2.1/Microsoft.Maui.dll",
- "lib/netstandard2.1/Microsoft.Maui.pdb",
- "lib/netstandard2.1/Microsoft.Maui.xml",
- "microsoft.maui.core.9.0.51.nupkg.sha512",
- "microsoft.maui.core.nuspec"
- ]
- },
- "Microsoft.Maui.Essentials/9.0.51": {
- "sha512": "x2Fl8NLUjtVxfH7bTTsTQUTqEWll/RMl6C3EbJPKQ5WCFDGBNKAF7yYa2XOOvS1M2B/IXKhHfW2Q7pGR3gpPAA==",
- "type": "package",
- "path": "microsoft.maui.essentials/9.0.51",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "README.md",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net9.0-android35.0/Microsoft.Maui.Essentials.aar",
- "lib/net9.0-android35.0/Microsoft.Maui.Essentials.dll",
- "lib/net9.0-android35.0/Microsoft.Maui.Essentials.pdb",
- "lib/net9.0-android35.0/Microsoft.Maui.Essentials.xml",
- "lib/net9.0-ios18.0/Microsoft.Maui.Essentials.dll",
- "lib/net9.0-ios18.0/Microsoft.Maui.Essentials.pdb",
- "lib/net9.0-ios18.0/Microsoft.Maui.Essentials.xml",
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.Essentials.dll",
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.Essentials.pdb",
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.Essentials.xml",
- "lib/net9.0-tizen7.0/Microsoft.Maui.Essentials.dll",
- "lib/net9.0-tizen7.0/Microsoft.Maui.Essentials.pdb",
- "lib/net9.0-tizen7.0/Microsoft.Maui.Essentials.xml",
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Essentials.dll",
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Essentials.pdb",
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Essentials.xml",
- "lib/net9.0-windows10.0.20348/Microsoft.Maui.Essentials.dll",
- "lib/net9.0-windows10.0.20348/Microsoft.Maui.Essentials.pdb",
- "lib/net9.0-windows10.0.20348/Microsoft.Maui.Essentials.xml",
- "lib/net9.0/Microsoft.Maui.Essentials.dll",
- "lib/net9.0/Microsoft.Maui.Essentials.pdb",
- "lib/net9.0/Microsoft.Maui.Essentials.xml",
- "lib/netstandard2.0/Microsoft.Maui.Essentials.dll",
- "lib/netstandard2.0/Microsoft.Maui.Essentials.pdb",
- "lib/netstandard2.0/Microsoft.Maui.Essentials.xml",
- "lib/netstandard2.1/Microsoft.Maui.Essentials.dll",
- "lib/netstandard2.1/Microsoft.Maui.Essentials.pdb",
- "lib/netstandard2.1/Microsoft.Maui.Essentials.xml",
- "microsoft.maui.essentials.9.0.51.nupkg.sha512",
- "microsoft.maui.essentials.nuspec"
- ]
- },
- "Microsoft.Maui.Graphics/9.0.51": {
- "sha512": "ouoAmPCnPhzTkZXSbRzDlhWjxC63zKJTLqHrTUBht0gXPn4jN0CGCPVGy+h3cuXo3sH9KKRf91m9WWXNyp2awg==",
- "type": "package",
- "path": "microsoft.maui.graphics/9.0.51",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "README.md",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net9.0-android35.0/Microsoft.Maui.Graphics.dll",
- "lib/net9.0-android35.0/Microsoft.Maui.Graphics.pdb",
- "lib/net9.0-android35.0/Microsoft.Maui.Graphics.xml",
- "lib/net9.0-ios18.0/Microsoft.Maui.Graphics.dll",
- "lib/net9.0-ios18.0/Microsoft.Maui.Graphics.pdb",
- "lib/net9.0-ios18.0/Microsoft.Maui.Graphics.xml",
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.Graphics.dll",
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.Graphics.pdb",
- "lib/net9.0-maccatalyst18.0/Microsoft.Maui.Graphics.xml",
- "lib/net9.0-macos15.0/Microsoft.Maui.Graphics.dll",
- "lib/net9.0-macos15.0/Microsoft.Maui.Graphics.pdb",
- "lib/net9.0-macos15.0/Microsoft.Maui.Graphics.xml",
- "lib/net9.0-tizen7.0/Microsoft.Maui.Graphics.dll",
- "lib/net9.0-tizen7.0/Microsoft.Maui.Graphics.pdb",
- "lib/net9.0-tizen7.0/Microsoft.Maui.Graphics.xml",
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Graphics.dll",
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Graphics.pdb",
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Graphics.xml",
- "lib/net9.0-windows10.0.20348/Microsoft.Maui.Graphics.dll",
- "lib/net9.0-windows10.0.20348/Microsoft.Maui.Graphics.pdb",
- "lib/net9.0-windows10.0.20348/Microsoft.Maui.Graphics.xml",
- "lib/net9.0/Microsoft.Maui.Graphics.dll",
- "lib/net9.0/Microsoft.Maui.Graphics.pdb",
- "lib/net9.0/Microsoft.Maui.Graphics.xml",
- "lib/netstandard2.0/Microsoft.Maui.Graphics.dll",
- "lib/netstandard2.0/Microsoft.Maui.Graphics.pdb",
- "lib/netstandard2.0/Microsoft.Maui.Graphics.xml",
- "lib/netstandard2.1/Microsoft.Maui.Graphics.dll",
- "lib/netstandard2.1/Microsoft.Maui.Graphics.pdb",
- "lib/netstandard2.1/Microsoft.Maui.Graphics.xml",
- "microsoft.maui.graphics.9.0.51.nupkg.sha512",
- "microsoft.maui.graphics.nuspec"
- ]
- },
- "Microsoft.Maui.Graphics.Win2D.WinUI.Desktop/9.0.51": {
- "sha512": "q7TTf70nd6KiG9xKoh7/hYfWq3IZcReO6E147nuD8cekF/6emLT5kbYe+jqKEKOpZlpBmos8+Frb/sC1L+0nsA==",
- "type": "package",
- "path": "microsoft.maui.graphics.win2d.winui.desktop/9.0.51",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "README.md",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop.dll",
- "lib/net9.0-windows10.0.19041/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop.pdb",
- "lib/net9.0-windows10.0.20348/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop.dll",
- "lib/net9.0-windows10.0.20348/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop.pdb",
- "microsoft.maui.graphics.win2d.winui.desktop.9.0.51.nupkg.sha512",
- "microsoft.maui.graphics.win2d.winui.desktop.nuspec"
- ]
- },
- "Microsoft.Maui.Resizetizer/9.0.51": {
- "sha512": "NED69beD094siWE5jZwCEfTdcHS1TeZec0oIAjT+ByOflHjWX2KYo9z7mUnZNUxPxpjs7JmYGdZPw5MFKcstJA==",
- "type": "package",
- "path": "microsoft.maui.resizetizer/9.0.51",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "README.md",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/ExCSS.dll",
- "buildTransitive/Fizzler.dll",
- "buildTransitive/HarfBuzzSharp.dll",
- "buildTransitive/HarfBuzzSharp.pdb",
- "buildTransitive/Microsoft.Bcl.AsyncInterfaces.dll",
- "buildTransitive/Microsoft.Maui.Resizetizer.After.targets",
- "buildTransitive/Microsoft.Maui.Resizetizer.Before.targets",
- "buildTransitive/Microsoft.Maui.Resizetizer.dll",
- "buildTransitive/Microsoft.Maui.Resizetizer.pdb",
- "buildTransitive/Microsoft.Maui.Resizetizer.props",
- "buildTransitive/Microsoft.Maui.Resizetizer.targets",
- "buildTransitive/ShimSkiaSharp.dll",
- "buildTransitive/SkiaSharp.HarfBuzz.dll",
- "buildTransitive/SkiaSharp.HarfBuzz.pdb",
- "buildTransitive/SkiaSharp.dll",
- "buildTransitive/SkiaSharp.pdb",
- "buildTransitive/Svg.Custom.dll",
- "buildTransitive/Svg.Model.dll",
- "buildTransitive/Svg.Skia.dll",
- "buildTransitive/System.Buffers.dll",
- "buildTransitive/System.IO.UnmanagedMemoryStream.dll",
- "buildTransitive/System.Memory.dll",
- "buildTransitive/System.Numerics.Vectors.dll",
- "buildTransitive/System.ObjectModel.dll",
- "buildTransitive/System.Runtime.CompilerServices.Unsafe.dll",
- "buildTransitive/arm/libHarfBuzzSharp.so",
- "buildTransitive/arm/libSkiaSharp.so",
- "buildTransitive/arm64/libHarfBuzzSharp.dll",
- "buildTransitive/arm64/libHarfBuzzSharp.so",
- "buildTransitive/arm64/libSkiaSharp.dll",
- "buildTransitive/arm64/libSkiaSharp.so",
- "buildTransitive/libHarfBuzzSharp.dylib",
- "buildTransitive/libSkiaSharp.dylib",
- "buildTransitive/musl-x64/libHarfBuzzSharp.so",
- "buildTransitive/musl-x64/libSkiaSharp.so",
- "buildTransitive/x64/libHarfBuzzSharp.dll",
- "buildTransitive/x64/libHarfBuzzSharp.so",
- "buildTransitive/x64/libSkiaSharp.dll",
- "buildTransitive/x64/libSkiaSharp.so",
- "buildTransitive/x86/libHarfBuzzSharp.dll",
- "buildTransitive/x86/libSkiaSharp.dll",
- "microsoft.maui.resizetizer.9.0.51.nupkg.sha512",
- "microsoft.maui.resizetizer.nuspec"
- ]
- },
- "Microsoft.NET.ILLink.Tasks/9.0.6": {
- "sha512": "TXy3SbJzGXQbxxIxCjdrp8bwEyTDImyYNpTpd6v7P3JL2Y7dno8EYG7dPezfYTa5SoWKdhbH9cbnwHHs3BR5gA==",
- "type": "package",
- "path": "microsoft.net.illink.tasks/9.0.6",
- "hasTools": true,
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "Sdk/Sdk.props",
- "THIRD-PARTY-NOTICES.TXT",
- "analyzers/dotnet/cs/ILLink.CodeFixProvider.dll",
- "analyzers/dotnet/cs/ILLink.RoslynAnalyzer.dll",
- "build/Microsoft.NET.ILLink.Analyzers.props",
- "build/Microsoft.NET.ILLink.Tasks.props",
- "build/Microsoft.NET.ILLink.targets",
- "microsoft.net.illink.tasks.9.0.6.nupkg.sha512",
- "microsoft.net.illink.tasks.nuspec",
- "tools/net472/ILLink.Tasks.dll",
- "tools/net472/ILLink.Tasks.dll.config",
- "tools/net472/Mono.Cecil.Mdb.dll",
- "tools/net472/Mono.Cecil.Pdb.dll",
- "tools/net472/Mono.Cecil.Rocks.dll",
- "tools/net472/Mono.Cecil.dll",
- "tools/net472/Sdk/Sdk.props",
- "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.Reflection.Metadata.dll",
- "tools/net472/System.Runtime.CompilerServices.Unsafe.dll",
- "tools/net472/build/Microsoft.NET.ILLink.Analyzers.props",
- "tools/net472/build/Microsoft.NET.ILLink.Tasks.props",
- "tools/net472/build/Microsoft.NET.ILLink.targets",
- "tools/net9.0/ILLink.Tasks.deps.json",
- "tools/net9.0/ILLink.Tasks.dll",
- "tools/net9.0/Mono.Cecil.Mdb.dll",
- "tools/net9.0/Mono.Cecil.Pdb.dll",
- "tools/net9.0/Mono.Cecil.Rocks.dll",
- "tools/net9.0/Mono.Cecil.dll",
- "tools/net9.0/Sdk/Sdk.props",
- "tools/net9.0/build/Microsoft.NET.ILLink.Analyzers.props",
- "tools/net9.0/build/Microsoft.NET.ILLink.Tasks.props",
- "tools/net9.0/build/Microsoft.NET.ILLink.targets",
- "tools/net9.0/illink.deps.json",
- "tools/net9.0/illink.dll",
- "tools/net9.0/illink.runtimeconfig.json",
- "useSharedDesignerContext.txt"
- ]
- },
- "Microsoft.Web.WebView2/1.0.2903.40": {
- "sha512": "THrzYAnJgE3+cNH+9Epr44XjoZoRELdVpXlWGPs6K9C9G6TqyDfVCeVAR/Er8ljLitIUX5gaSkPsy9wRhD1sgQ==",
- "type": "package",
- "path": "microsoft.web.webview2/1.0.2903.40",
- "hasTools": true,
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.txt",
- "NOTICE.txt",
- "WebView2.idl",
- "WebView2.tlb",
- "build/Common.targets",
- "build/Microsoft.Web.WebView2.targets",
- "build/WebView2Rules.Project.xml",
- "build/native/Microsoft.Web.WebView2.targets",
- "build/native/arm64/WebView2Loader.dll",
- "build/native/arm64/WebView2Loader.dll.lib",
- "build/native/arm64/WebView2LoaderStatic.lib",
- "build/native/include-winrt/WebView2Interop.h",
- "build/native/include-winrt/WebView2Interop.idl",
- "build/native/include-winrt/WebView2Interop.tlb",
- "build/native/include/WebView2.h",
- "build/native/include/WebView2EnvironmentOptions.h",
- "build/native/x64/WebView2Loader.dll",
- "build/native/x64/WebView2Loader.dll.lib",
- "build/native/x64/WebView2LoaderStatic.lib",
- "build/native/x86/WebView2Loader.dll",
- "build/native/x86/WebView2Loader.dll.lib",
- "build/native/x86/WebView2LoaderStatic.lib",
- "build/wv2winrt.targets",
- "buildTransitive/Microsoft.Web.WebView2.targets",
- "lib/Microsoft.Web.WebView2.Core.winmd",
- "lib/net462/Microsoft.Web.WebView2.Core.dll",
- "lib/net462/Microsoft.Web.WebView2.Core.xml",
- "lib/net462/Microsoft.Web.WebView2.WinForms.dll",
- "lib/net462/Microsoft.Web.WebView2.WinForms.xml",
- "lib/net462/Microsoft.Web.WebView2.Wpf.dll",
- "lib/net462/Microsoft.Web.WebView2.Wpf.xml",
- "lib_manual/net5.0-windows10.0.17763.0/Microsoft.Web.WebView2.Wpf.dll",
- "lib_manual/net5.0-windows10.0.17763.0/Microsoft.Web.WebView2.Wpf.xml",
- "lib_manual/net6.0-windows10.0.17763.0/Microsoft.Web.WebView2.Core.Projection.dll",
- "lib_manual/net8.0-windows10.0.17763.0/Microsoft.Web.WebView2.Core.Projection.dll",
- "lib_manual/netcoreapp3.0/Microsoft.Web.WebView2.Core.dll",
- "lib_manual/netcoreapp3.0/Microsoft.Web.WebView2.Core.xml",
- "lib_manual/netcoreapp3.0/Microsoft.Web.WebView2.WinForms.dll",
- "lib_manual/netcoreapp3.0/Microsoft.Web.WebView2.WinForms.xml",
- "lib_manual/netcoreapp3.0/Microsoft.Web.WebView2.Wpf.dll",
- "lib_manual/netcoreapp3.0/Microsoft.Web.WebView2.Wpf.xml",
- "microsoft.web.webview2.1.0.2903.40.nupkg.sha512",
- "microsoft.web.webview2.nuspec",
- "runtimes/win-arm64/native/WebView2Loader.dll",
- "runtimes/win-arm64/native_uap/Microsoft.Web.WebView2.Core.dll",
- "runtimes/win-x64/native/WebView2Loader.dll",
- "runtimes/win-x64/native_uap/Microsoft.Web.WebView2.Core.dll",
- "runtimes/win-x86/native/WebView2Loader.dll",
- "runtimes/win-x86/native_uap/Microsoft.Web.WebView2.Core.dll",
- "tools/VisualStudioToolsManifest.xml",
- "tools/wv2winrt/Antlr3.Runtime.dll",
- "tools/wv2winrt/Antlr4.StringTemplate.dll",
- "tools/wv2winrt/System.Buffers.dll",
- "tools/wv2winrt/System.CommandLine.DragonFruit.dll",
- "tools/wv2winrt/System.CommandLine.Rendering.dll",
- "tools/wv2winrt/System.CommandLine.dll",
- "tools/wv2winrt/System.Memory.dll",
- "tools/wv2winrt/System.Numerics.Vectors.dll",
- "tools/wv2winrt/System.Runtime.CompilerServices.Unsafe.dll",
- "tools/wv2winrt/codegen_util.dll",
- "tools/wv2winrt/concrt140_app.dll",
- "tools/wv2winrt/cs/System.CommandLine.resources.dll",
- "tools/wv2winrt/de/System.CommandLine.resources.dll",
- "tools/wv2winrt/es/System.CommandLine.resources.dll",
- "tools/wv2winrt/fr/System.CommandLine.resources.dll",
- "tools/wv2winrt/it/System.CommandLine.resources.dll",
- "tools/wv2winrt/ja/System.CommandLine.resources.dll",
- "tools/wv2winrt/ko/System.CommandLine.resources.dll",
- "tools/wv2winrt/msvcp140_1_app.dll",
- "tools/wv2winrt/msvcp140_2_app.dll",
- "tools/wv2winrt/msvcp140_app.dll",
- "tools/wv2winrt/pl/System.CommandLine.resources.dll",
- "tools/wv2winrt/pt-BR/System.CommandLine.resources.dll",
- "tools/wv2winrt/ru/System.CommandLine.resources.dll",
- "tools/wv2winrt/tr/System.CommandLine.resources.dll",
- "tools/wv2winrt/type_hierarchy.dll",
- "tools/wv2winrt/vcamp140_app.dll",
- "tools/wv2winrt/vccorlib140_app.dll",
- "tools/wv2winrt/vcomp140_app.dll",
- "tools/wv2winrt/vcruntime140_app.dll",
- "tools/wv2winrt/winrt_winmd.dll",
- "tools/wv2winrt/winrt_winmd.winmd",
- "tools/wv2winrt/wv2winrt.exe",
- "tools/wv2winrt/wv2winrt.exe.config",
- "tools/wv2winrt/wv2winrt.xml",
- "tools/wv2winrt/zh-Hans/System.CommandLine.resources.dll",
- "tools/wv2winrt/zh-Hant/System.CommandLine.resources.dll"
- ]
- },
- "Microsoft.Windows.SDK.BuildTools/10.0.22621.756": {
- "sha512": "7ZL2sFSioYm1Ry067Kw1hg0SCcW5kuVezC2SwjGbcPE61Nn+gTbH86T73G3LcEOVj0S3IZzNuE/29gZvOLS7VA==",
- "type": "package",
- "path": "microsoft.windows.sdk.buildtools/10.0.22621.756",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "bin/10.0.22621.0/arm/AccChecker/Microsoft.Diagnostics.Tracing.EventSource.dll",
- "bin/10.0.22621.0/arm/DeployUtil.exe",
- "bin/10.0.22621.0/arm64/AccChecker/Microsoft.Diagnostics.Tracing.EventSource.dll",
- "bin/10.0.22621.0/arm64/ComparePackage.exe",
- "bin/10.0.22621.0/arm64/DeployUtil.exe",
- "bin/10.0.22621.0/arm64/MakeCert.exe",
- "bin/10.0.22621.0/arm64/Microsoft.ComparePackage.Lib.dll",
- "bin/10.0.22621.0/arm64/Microsoft.Diagnostics.Tracing.EventSource.dll",
- "bin/10.0.22621.0/arm64/Microsoft.PackageEditor.Lib.dll",
- "bin/10.0.22621.0/arm64/Microsoft.Tools.Connectivity.dll",
- "bin/10.0.22621.0/arm64/Microsoft.Tools.Deploy.dll",
- "bin/10.0.22621.0/arm64/Microsoft.Windows.Build.Appx.AppxPackaging.dll.manifest",
- "bin/10.0.22621.0/arm64/Microsoft.Windows.Build.Appx.AppxSip.dll.manifest",
- "bin/10.0.22621.0/arm64/Microsoft.Windows.Build.Appx.OpcServices.dll.manifest",
- "bin/10.0.22621.0/arm64/Microsoft.Windows.Build.Signing.mssign32.dll.manifest",
- "bin/10.0.22621.0/arm64/Microsoft.Windows.Build.Signing.wintrust.dll.manifest",
- "bin/10.0.22621.0/arm64/PackageEditor.exe",
- "bin/10.0.22621.0/arm64/ServicingCommon.dll",
- "bin/10.0.22621.0/arm64/SirepClient.assembly.manifest",
- "bin/10.0.22621.0/arm64/SirepClient.dll",
- "bin/10.0.22621.0/arm64/SirepInterop.dll",
- "bin/10.0.22621.0/arm64/SshClient.dll",
- "bin/10.0.22621.0/arm64/WinAppDeployCmd.exe",
- "bin/10.0.22621.0/arm64/WinAppDeployCommon.dll",
- "bin/10.0.22621.0/arm64/appxpackaging.dll",
- "bin/10.0.22621.0/arm64/appxsip.dll",
- "bin/10.0.22621.0/arm64/en-US/AppxPackaging.dll.mui",
- "bin/10.0.22621.0/arm64/en/Microsoft.Tools.Deploy.resources.dll",
- "bin/10.0.22621.0/arm64/en/WinAppDeployCmd.resources.dll",
- "bin/10.0.22621.0/arm64/ipoverusb.discoverpartners.dll",
- "bin/10.0.22621.0/arm64/makeappx.exe",
- "bin/10.0.22621.0/arm64/makecat.exe",
- "bin/10.0.22621.0/arm64/makecat.exe.manifest",
- "bin/10.0.22621.0/arm64/makepri.exe",
- "bin/10.0.22621.0/arm64/mc.exe",
- "bin/10.0.22621.0/arm64/mdmerge.exe",
- "bin/10.0.22621.0/arm64/midl.exe",
- "bin/10.0.22621.0/arm64/midlc.exe",
- "bin/10.0.22621.0/arm64/midlrt.exe",
- "bin/10.0.22621.0/arm64/midlrtmd.dll",
- "bin/10.0.22621.0/arm64/mrmsupport.dll",
- "bin/10.0.22621.0/arm64/msisip.dll",
- "bin/10.0.22621.0/arm64/mssign32.dll",
- "bin/10.0.22621.0/arm64/mt.exe",
- "bin/10.0.22621.0/arm64/mt.exe.config",
- "bin/10.0.22621.0/arm64/opcservices.dll",
- "bin/10.0.22621.0/arm64/rc.exe",
- "bin/10.0.22621.0/arm64/rcdll.dll",
- "bin/10.0.22621.0/arm64/signtool.exe",
- "bin/10.0.22621.0/arm64/signtool.exe.manifest",
- "bin/10.0.22621.0/arm64/tracewpp.exe",
- "bin/10.0.22621.0/arm64/uuidgen.exe",
- "bin/10.0.22621.0/arm64/winmdidl.exe",
- "bin/10.0.22621.0/arm64/wintrust.dll",
- "bin/10.0.22621.0/arm64/wintrust.dll.ini",
- "bin/10.0.22621.0/x64/AccChecker/Microsoft.Diagnostics.Tracing.EventSource.dll",
- "bin/10.0.22621.0/x64/ComparePackage.exe",
- "bin/10.0.22621.0/x64/DeployUtil.exe",
- "bin/10.0.22621.0/x64/MakeCert.exe",
- "bin/10.0.22621.0/x64/Microsoft.ComparePackage.Lib.dll",
- "bin/10.0.22621.0/x64/Microsoft.Diagnostics.Tracing.EventSource.dll",
- "bin/10.0.22621.0/x64/Microsoft.PackageEditor.Lib.dll",
- "bin/10.0.22621.0/x64/Microsoft.Tools.Connectivity.dll",
- "bin/10.0.22621.0/x64/Microsoft.Tools.Deploy.dll",
- "bin/10.0.22621.0/x64/Microsoft.Windows.Build.Appx.AppxPackaging.dll.manifest",
- "bin/10.0.22621.0/x64/Microsoft.Windows.Build.Appx.AppxSip.dll.manifest",
- "bin/10.0.22621.0/x64/Microsoft.Windows.Build.Appx.OpcServices.dll.manifest",
- "bin/10.0.22621.0/x64/Microsoft.Windows.Build.Signing.mssign32.dll.manifest",
- "bin/10.0.22621.0/x64/Microsoft.Windows.Build.Signing.wintrust.dll.manifest",
- "bin/10.0.22621.0/x64/PackageEditor.exe",
- "bin/10.0.22621.0/x64/ServicingCommon.dll",
- "bin/10.0.22621.0/x64/SirepClient.assembly.manifest",
- "bin/10.0.22621.0/x64/SirepClient.dll",
- "bin/10.0.22621.0/x64/SirepInterop.dll",
- "bin/10.0.22621.0/x64/SshClient.dll",
- "bin/10.0.22621.0/x64/WinAppDeployCmd.exe",
- "bin/10.0.22621.0/x64/WinAppDeployCommon.dll",
- "bin/10.0.22621.0/x64/appxpackaging.dll",
- "bin/10.0.22621.0/x64/appxsip.dll",
- "bin/10.0.22621.0/x64/en-US/AppxPackaging.dll.mui",
- "bin/10.0.22621.0/x64/en/Microsoft.Tools.Deploy.resources.dll",
- "bin/10.0.22621.0/x64/en/WinAppDeployCmd.resources.dll",
- "bin/10.0.22621.0/x64/ipoverusb.discoverpartners.dll",
- "bin/10.0.22621.0/x64/makeappx.exe",
- "bin/10.0.22621.0/x64/makecat.exe",
- "bin/10.0.22621.0/x64/makecat.exe.manifest",
- "bin/10.0.22621.0/x64/makepri.exe",
- "bin/10.0.22621.0/x64/mc.exe",
- "bin/10.0.22621.0/x64/mdmerge.exe",
- "bin/10.0.22621.0/x64/midl.exe",
- "bin/10.0.22621.0/x64/midlc.exe",
- "bin/10.0.22621.0/x64/midlrt.exe",
- "bin/10.0.22621.0/x64/midlrtmd.dll",
- "bin/10.0.22621.0/x64/mrmsupport.dll",
- "bin/10.0.22621.0/x64/msisip.dll",
- "bin/10.0.22621.0/x64/mssign32.dll",
- "bin/10.0.22621.0/x64/mt.exe",
- "bin/10.0.22621.0/x64/mt.exe.config",
- "bin/10.0.22621.0/x64/opcservices.dll",
- "bin/10.0.22621.0/x64/rc.exe",
- "bin/10.0.22621.0/x64/rcdll.dll",
- "bin/10.0.22621.0/x64/signtool.exe",
- "bin/10.0.22621.0/x64/signtool.exe.manifest",
- "bin/10.0.22621.0/x64/tracewpp.exe",
- "bin/10.0.22621.0/x64/uuidgen.exe",
- "bin/10.0.22621.0/x64/winmdidl.exe",
- "bin/10.0.22621.0/x64/wintrust.dll",
- "bin/10.0.22621.0/x64/wintrust.dll.ini",
- "bin/10.0.22621.0/x86/AccChecker/Microsoft.Diagnostics.Tracing.EventSource.dll",
- "bin/10.0.22621.0/x86/ComparePackage.exe",
- "bin/10.0.22621.0/x86/DeployUtil.exe",
- "bin/10.0.22621.0/x86/MakeCert.exe",
- "bin/10.0.22621.0/x86/Microsoft.ComparePackage.Lib.dll",
- "bin/10.0.22621.0/x86/Microsoft.Diagnostics.Tracing.EventSource.dll",
- "bin/10.0.22621.0/x86/Microsoft.PackageEditor.Lib.dll",
- "bin/10.0.22621.0/x86/Microsoft.Tools.Connectivity.dll",
- "bin/10.0.22621.0/x86/Microsoft.Tools.Deploy.dll",
- "bin/10.0.22621.0/x86/Microsoft.Windows.Build.Appx.AppxPackaging.dll.manifest",
- "bin/10.0.22621.0/x86/Microsoft.Windows.Build.Appx.AppxSip.dll.manifest",
- "bin/10.0.22621.0/x86/Microsoft.Windows.Build.Appx.OpcServices.dll.manifest",
- "bin/10.0.22621.0/x86/Microsoft.Windows.Build.Signing.mssign32.dll.manifest",
- "bin/10.0.22621.0/x86/Microsoft.Windows.Build.Signing.wintrust.dll.manifest",
- "bin/10.0.22621.0/x86/PackageEditor.exe",
- "bin/10.0.22621.0/x86/ServicingCommon.dll",
- "bin/10.0.22621.0/x86/SirepClient.assembly.manifest",
- "bin/10.0.22621.0/x86/SirepClient.dll",
- "bin/10.0.22621.0/x86/SirepInterop.dll",
- "bin/10.0.22621.0/x86/SshClient.dll",
- "bin/10.0.22621.0/x86/WinAppDeployCmd.exe",
- "bin/10.0.22621.0/x86/WinAppDeployCommon.dll",
- "bin/10.0.22621.0/x86/appxpackaging.dll",
- "bin/10.0.22621.0/x86/appxsip.dll",
- "bin/10.0.22621.0/x86/en-US/AppxPackaging.dll.mui",
- "bin/10.0.22621.0/x86/en/Microsoft.Tools.Deploy.resources.dll",
- "bin/10.0.22621.0/x86/en/WinAppDeployCmd.resources.dll",
- "bin/10.0.22621.0/x86/ipoverusb.discoverpartners.dll",
- "bin/10.0.22621.0/x86/makeappx.exe",
- "bin/10.0.22621.0/x86/makecat.exe",
- "bin/10.0.22621.0/x86/makecat.exe.manifest",
- "bin/10.0.22621.0/x86/makepri.exe",
- "bin/10.0.22621.0/x86/mc.exe",
- "bin/10.0.22621.0/x86/mdmerge.exe",
- "bin/10.0.22621.0/x86/midl.exe",
- "bin/10.0.22621.0/x86/midlc.exe",
- "bin/10.0.22621.0/x86/midlrt.exe",
- "bin/10.0.22621.0/x86/midlrtmd.dll",
- "bin/10.0.22621.0/x86/mrmsupport.dll",
- "bin/10.0.22621.0/x86/msisip.dll",
- "bin/10.0.22621.0/x86/mssign32.dll",
- "bin/10.0.22621.0/x86/mt.exe",
- "bin/10.0.22621.0/x86/mt.exe.config",
- "bin/10.0.22621.0/x86/opcservices.dll",
- "bin/10.0.22621.0/x86/rc.exe",
- "bin/10.0.22621.0/x86/rcdll.dll",
- "bin/10.0.22621.0/x86/signtool.exe",
- "bin/10.0.22621.0/x86/signtool.exe.manifest",
- "bin/10.0.22621.0/x86/tracewpp.exe",
- "bin/10.0.22621.0/x86/uuidgen.exe",
- "bin/10.0.22621.0/x86/winmdidl.exe",
- "bin/10.0.22621.0/x86/wintrust.dll",
- "bin/10.0.22621.0/x86/wintrust.dll.ini",
- "build/Microsoft.Windows.SDK.BuildTools.props",
- "build/Microsoft.Windows.SDK.BuildTools.targets",
- "buildTransitive/Microsoft.Windows.SDK.BuildTools.props",
- "buildTransitive/Microsoft.Windows.SDK.BuildTools.targets",
- "microsoft.windows.sdk.buildtools.10.0.22621.756.nupkg.sha512",
- "microsoft.windows.sdk.buildtools.nuspec",
- "schemas/10.0.22621.0/winrt/AppxManifestSchema.xsd",
- "schemas/10.0.22621.0/winrt/AppxManifestSchema2010_v2.xsd",
- "schemas/10.0.22621.0/winrt/AppxManifestSchema2013.xsd",
- "schemas/10.0.22621.0/winrt/FoundationManifestSchema.xsd",
- "schemas/10.0.22621.0/winrt/FoundationManifestSchema_v2.xsd",
- "schemas/10.0.22621.0/winrt/UapManifestSchema.xsd",
- "schemas/10.0.22621.0/winrt/UapManifestSchema_v10.xsd",
- "schemas/10.0.22621.0/winrt/UapManifestSchema_v11.xsd",
- "schemas/10.0.22621.0/winrt/UapManifestSchema_v12.xsd",
- "schemas/10.0.22621.0/winrt/UapManifestSchema_v13.xsd",
- "schemas/10.0.22621.0/winrt/UapManifestSchema_v2.xsd",
- "schemas/10.0.22621.0/winrt/UapManifestSchema_v3.xsd",
- "schemas/10.0.22621.0/winrt/UapManifestSchema_v4.xsd",
- "schemas/10.0.22621.0/winrt/UapManifestSchema_v5.xsd",
- "schemas/10.0.22621.0/winrt/UapManifestSchema_v6.xsd",
- "schemas/10.0.22621.0/winrt/UapManifestSchema_v7.xsd",
- "schemas/10.0.22621.0/winrt/UapManifestSchema_v8.xsd"
- ]
- },
- "Microsoft.WindowsAppSDK/1.6.250205002": {
- "sha512": "zcOHaqII9erAmn3w3MP5rSmBzWf/IC8yU4nPCtwDquhy3vadW6Pm/0lOvnOCcZNN6TztPPODl9CQqDKSAGCeHQ==",
- "type": "package",
- "path": "microsoft.windowsappsdk/1.6.250205002",
- "hasTools": true,
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "NOTICE.txt",
- "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.Cs.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.BeforeCommon.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.DeploymentManager.CS.targets",
- "build/Microsoft.WindowsAppSDK.DeploymentManagerCommon.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.SingleFile.targets",
- "build/Microsoft.WindowsAppSDK.UndockedRegFreeWinRT.CS.targets",
- "build/Microsoft.WindowsAppSDK.UndockedRegFreeWinRTCommon.targets",
- "build/Microsoft.WindowsAppSDK.Widgets.targets",
- "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/WindowsPackageTypePropertyPage.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.Widgets.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.DeploymentManager.targets",
- "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.Cs.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.BeforeCommon.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.DeploymentManager.CS.targets",
- "buildTransitive/Microsoft.WindowsAppSDK.DeploymentManagerCommon.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.SingleFile.targets",
- "buildTransitive/Microsoft.WindowsAppSDK.UndockedRegFreeWinRT.CS.targets",
- "buildTransitive/Microsoft.WindowsAppSDK.UndockedRegFreeWinRTCommon.targets",
- "buildTransitive/Microsoft.WindowsAppSDK.Widgets.targets",
- "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/WindowsPackageTypePropertyPage.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.Widgets.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.DeploymentManager.targets",
- "buildTransitive/native/WindowsAppSDK-Nuget-Native.UndockedRegFreeWinRT.targets",
- "buildTransitive/native/WindowsAppSDK-Nuget-Native.WinRt.props",
- "include/DeploymentManagerAutoInitializer.cpp",
- "include/DeploymentManagerAutoInitializer.cs",
- "include/MRM.h",
- "include/MddBootstrap.h",
- "include/MddBootstrapAutoInitializer.cpp",
- "include/MddBootstrapAutoInitializer.cs",
- "include/Microsoft.UI.Composition.Interop.h",
- "include/Microsoft.UI.Dispatching.Interop.h",
- "include/Microsoft.UI.Input.InputCursor.Interop.h",
- "include/Microsoft.UI.Input.InputPreTranslateSource.Interop.h",
- "include/Microsoft.UI.Interop.h",
- "include/Microsoft.Windows.ApplicationModel.Resources.idl",
- "include/MsixDynamicDependency.h",
- "include/Security.AccessControl.h",
- "include/UndockedRegFreeWinRT-AutoInitializer.cpp",
- "include/UndockedRegFreeWinRT-AutoInitializer.cs",
- "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.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.Input.InputCursor.Interop.h",
- "include/winrt/Microsoft.UI.Input.InputPreTranslateSource.Interop.h",
- "include/winrt/Microsoft.UI.Interop.h",
- "include/winrtdirect3d11.h",
- "include/winrtdirectxcommon.h",
- "include/xamlom.winui.h",
- "include/xamlom.winui.idl",
- "lib/native/win10-arm64/Microsoft.UI.Dispatching.lib",
- "lib/native/win10-x64/Microsoft.UI.Dispatching.lib",
- "lib/native/win10-x86/Microsoft.UI.Dispatching.lib",
- "lib/net6.0-windows10.0.17763.0/Microsoft.InteractiveExperiences.Projection.dll",
- "lib/net6.0-windows10.0.17763.0/Microsoft.InteractiveExperiences.Projection.xml",
- "lib/net6.0-windows10.0.17763.0/Microsoft.WinUI.dll",
- "lib/net6.0-windows10.0.17763.0/Microsoft.WinUI.xml",
- "lib/net6.0-windows10.0.17763.0/Microsoft.WinUI/Themes/generic.xaml",
- "lib/net6.0-windows10.0.17763.0/Microsoft.Windows.AppLifecycle.Projection.dll",
- "lib/net6.0-windows10.0.17763.0/Microsoft.Windows.AppLifecycle.Projection.xml",
- "lib/net6.0-windows10.0.17763.0/Microsoft.Windows.AppNotifications.Builder.Projection.dll",
- "lib/net6.0-windows10.0.17763.0/Microsoft.Windows.AppNotifications.Builder.Projection.xml",
- "lib/net6.0-windows10.0.17763.0/Microsoft.Windows.AppNotifications.Projection.dll",
- "lib/net6.0-windows10.0.17763.0/Microsoft.Windows.AppNotifications.Projection.xml",
- "lib/net6.0-windows10.0.17763.0/Microsoft.Windows.ApplicationModel.DynamicDependency.Projection.dll",
- "lib/net6.0-windows10.0.17763.0/Microsoft.Windows.ApplicationModel.DynamicDependency.Projection.xml",
- "lib/net6.0-windows10.0.17763.0/Microsoft.Windows.ApplicationModel.Resources.Projection.dll",
- "lib/net6.0-windows10.0.17763.0/Microsoft.Windows.ApplicationModel.Resources.Projection.xml",
- "lib/net6.0-windows10.0.17763.0/Microsoft.Windows.ApplicationModel.WindowsAppRuntime.Projection.dll",
- "lib/net6.0-windows10.0.17763.0/Microsoft.Windows.ApplicationModel.WindowsAppRuntime.Projection.xml",
- "lib/net6.0-windows10.0.17763.0/Microsoft.Windows.Management.Deployment.Projection.dll",
- "lib/net6.0-windows10.0.17763.0/Microsoft.Windows.Management.Deployment.Projection.xml",
- "lib/net6.0-windows10.0.17763.0/Microsoft.Windows.PushNotifications.Projection.dll",
- "lib/net6.0-windows10.0.17763.0/Microsoft.Windows.PushNotifications.Projection.xml",
- "lib/net6.0-windows10.0.17763.0/Microsoft.Windows.Security.AccessControl.Projection.dll",
- "lib/net6.0-windows10.0.17763.0/Microsoft.Windows.Security.AccessControl.Projection.xml",
- "lib/net6.0-windows10.0.17763.0/Microsoft.Windows.Storage.Projection.dll",
- "lib/net6.0-windows10.0.17763.0/Microsoft.Windows.Storage.Projection.xml",
- "lib/net6.0-windows10.0.17763.0/Microsoft.Windows.System.Power.Projection.dll",
- "lib/net6.0-windows10.0.17763.0/Microsoft.Windows.System.Power.Projection.xml",
- "lib/net6.0-windows10.0.17763.0/Microsoft.Windows.System.Projection.dll",
- "lib/net6.0-windows10.0.17763.0/Microsoft.Windows.System.Projection.xml",
- "lib/net6.0-windows10.0.17763.0/Microsoft.Windows.Widgets.Projection.dll",
- "lib/net6.0-windows10.0.17763.0/Microsoft.Windows.Widgets.Projection.xml",
- "lib/net6.0-windows10.0.17763.0/Microsoft.WindowsAppRuntime.Bootstrap.Net.dll",
- "lib/net6.0-windows10.0.18362.0/Microsoft.InteractiveExperiences.Projection.dll",
- "lib/net6.0-windows10.0.18362.0/Microsoft.InteractiveExperiences.Projection.xml",
- "lib/net6.0-windows10.0.18362.0/Microsoft.WinUI.dll",
- "lib/net6.0-windows10.0.18362.0/Microsoft.WinUI.xml",
- "lib/net6.0-windows10.0.18362.0/Microsoft.WinUI/Themes/generic.xaml",
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppLifecycle.Projection.dll",
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppLifecycle.Projection.xml",
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Builder.Projection.dll",
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Builder.Projection.xml",
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Projection.dll",
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.AppNotifications.Projection.xml",
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.DynamicDependency.Projection.dll",
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.DynamicDependency.Projection.xml",
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.Resources.Projection.dll",
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.Resources.Projection.xml",
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.WindowsAppRuntime.Projection.dll",
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.ApplicationModel.WindowsAppRuntime.Projection.xml",
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Management.Deployment.Projection.dll",
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Management.Deployment.Projection.xml",
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.PushNotifications.Projection.dll",
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.PushNotifications.Projection.xml",
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Security.AccessControl.Projection.dll",
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Security.AccessControl.Projection.xml",
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Storage.Projection.dll",
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Storage.Projection.xml",
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.System.Power.Projection.dll",
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.System.Power.Projection.xml",
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.System.Projection.dll",
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.System.Projection.xml",
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Widgets.Projection.dll",
- "lib/net6.0-windows10.0.18362.0/Microsoft.Windows.Widgets.Projection.xml",
- "lib/net6.0-windows10.0.18362.0/Microsoft.WindowsAppRuntime.Bootstrap.Net.dll",
- "lib/uap10.0.17763/Microsoft.Foundation.winmd",
- "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.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.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.Windows.AppLifecycle.winmd",
- "lib/uap10.0/Microsoft.Windows.AppLifecycle.xml",
- "lib/uap10.0/Microsoft.Windows.AppNotifications.Builder.winmd",
- "lib/uap10.0/Microsoft.Windows.AppNotifications.Builder.xml",
- "lib/uap10.0/Microsoft.Windows.AppNotifications.winmd",
- "lib/uap10.0/Microsoft.Windows.AppNotifications.xml",
- "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.Globalization.winmd",
- "lib/uap10.0/Microsoft.Windows.Globalization.xml",
- "lib/uap10.0/Microsoft.Windows.Management.Deployment.winmd",
- "lib/uap10.0/Microsoft.Windows.Management.Deployment.xml",
- "lib/uap10.0/Microsoft.Windows.PushNotifications.winmd",
- "lib/uap10.0/Microsoft.Windows.PushNotifications.xml",
- "lib/uap10.0/Microsoft.Windows.Security.AccessControl.winmd",
- "lib/uap10.0/Microsoft.Windows.Security.AccessControl.xml",
- "lib/uap10.0/Microsoft.Windows.Storage.winmd",
- "lib/uap10.0/Microsoft.Windows.Storage.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/uap10.0/Microsoft.Windows.Widgets.winmd",
- "lib/uap10.0/Microsoft.Windows.Widgets.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.6.250205002.nupkg.sha512",
- "microsoft.windowsappsdk.nuspec",
- "runtimes/win-arm64/native/Microsoft.WindowsAppRuntime.Bootstrap.dll",
- "runtimes/win-x64/native/Microsoft.WindowsAppRuntime.Bootstrap.dll",
- "runtimes/win-x86/native/Microsoft.WindowsAppRuntime.Bootstrap.dll",
- "tools/MSIX/win10-arm64/MSIX.inventory",
- "tools/MSIX/win10-arm64/Microsoft.WindowsAppRuntime.1.6.msix",
- "tools/MSIX/win10-arm64/Microsoft.WindowsAppRuntime.DDLM.1.6.msix",
- "tools/MSIX/win10-arm64/Microsoft.WindowsAppRuntime.Main.1.6.msix",
- "tools/MSIX/win10-arm64/Microsoft.WindowsAppRuntime.Singleton.1.6.msix",
- "tools/MSIX/win10-x64/MSIX.inventory",
- "tools/MSIX/win10-x64/Microsoft.WindowsAppRuntime.1.6.msix",
- "tools/MSIX/win10-x64/Microsoft.WindowsAppRuntime.DDLM.1.6.msix",
- "tools/MSIX/win10-x64/Microsoft.WindowsAppRuntime.Main.1.6.msix",
- "tools/MSIX/win10-x64/Microsoft.WindowsAppRuntime.Singleton.1.6.msix",
- "tools/MSIX/win10-x86/MSIX.inventory",
- "tools/MSIX/win10-x86/Microsoft.WindowsAppRuntime.1.6.msix",
- "tools/MSIX/win10-x86/Microsoft.WindowsAppRuntime.DDLM.1.6.msix",
- "tools/MSIX/win10-x86/Microsoft.WindowsAppRuntime.Main.1.6.msix",
- "tools/MSIX/win10-x86/Microsoft.WindowsAppRuntime.Singleton.1.6.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.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.Telemetry.dll",
- "tools/net472/Microsoft.VisualStudio.Utilities.Internal.dll",
- "tools/net472/Newtonsoft.Json.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.Reflection.Metadata.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/net6.0/Microsoft.Bcl.AsyncInterfaces.dll",
- "tools/net6.0/Microsoft.Build.Msix.dll",
- "tools/net6.0/Microsoft.Cci.dll",
- "tools/net6.0/Microsoft.UI.Xaml.Markup.Compiler.IO.dll",
- "tools/net6.0/Microsoft.UI.Xaml.Markup.Compiler.MSBuildInterop.dll",
- "tools/net6.0/Microsoft.UI.Xaml.Markup.Compiler.dll",
- "tools/net6.0/Microsoft.VisualStudio.RemoteControl.dll",
- "tools/net6.0/Microsoft.VisualStudio.Telemetry.dll",
- "tools/net6.0/Microsoft.VisualStudio.Utilities.Internal.dll",
- "tools/net6.0/Newtonsoft.Json.dll",
- "tools/net6.0/System.Runtime.CompilerServices.Unsafe.dll",
- "tools/net6.0/System.Text.Encodings.Web.dll",
- "tools/net6.0/System.Text.Json.dll",
- "tools/x64/GenXbf.dll",
- "tools/x86/GenXbf.dll"
- ]
- },
- "System.Text.Json/9.0.2": {
- "sha512": "4TY2Yokh5Xp8XHFhsY9y84yokS7B0rhkaZCXuRiKppIiKwPVH4lVSFD9EEFzRpXdBM5ZeZXD43tc2vB6njEwwQ==",
- "type": "package",
- "path": "system.text.json/9.0.2",
- "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/net8.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/net8.0/System.Text.Json.dll",
- "lib/net8.0/System.Text.Json.xml",
- "lib/net9.0/System.Text.Json.dll",
- "lib/net9.0/System.Text.Json.xml",
- "lib/netstandard2.0/System.Text.Json.dll",
- "lib/netstandard2.0/System.Text.Json.xml",
- "system.text.json.9.0.2.nupkg.sha512",
- "system.text.json.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "Xamarin.Android.Glide/4.16.0.11": {
- "sha512": "ilmaxM/fD5Xb57uBpoKTw+bAC/Cw5MIH9PLk5ggCg/pSnG1Kq8B57HBR/r+XEq+9XofaOht3pJZz8vZMXVgm3A==",
- "type": "package",
- "path": "xamarin.android.glide/4.16.0.11",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.Android.Glide.dll",
- "lib/net8.0-android34.0/Xamarin.Android.Glide.pdb",
- "lib/net8.0-android34.0/Xamarin.Android.Glide.xml",
- "lib/net8.0-android34.0/glide.aar",
- "proguard/proguard.txt",
- "readme.md",
- "xamarin.android.glide.4.16.0.11.nupkg.sha512",
- "xamarin.android.glide.nuspec"
- ]
- },
- "Xamarin.Android.Glide.Annotations/4.16.0.11": {
- "sha512": "pwMZrT30UjOEqFuAamO5aErXpirEBlYJG3NEXHBRqzAMk9ky3AQd2vNO/NKPTS/heL3U/zHfO3QJf/poPR4I6w==",
- "type": "package",
- "path": "xamarin.android.glide.annotations/4.16.0.11",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.Android.Glide.Annotations.aar",
- "lib/net8.0-android34.0/Xamarin.Android.Glide.Annotations.dll",
- "lib/net8.0-android34.0/Xamarin.Android.Glide.Annotations.pdb",
- "lib/net8.0-android34.0/Xamarin.Android.Glide.Annotations.xml",
- "readme.md",
- "xamarin.android.glide.annotations.4.16.0.11.nupkg.sha512",
- "xamarin.android.glide.annotations.nuspec"
- ]
- },
- "Xamarin.Android.Glide.DiskLruCache/4.16.0.11": {
- "sha512": "OWxRsSWuS0FjCcpwOr3uFSn0i/ophl0iDfwH22H/cw4t+L+/AhZEe9ktS1FBHAw8oMxIWLQ/nbbbxc3jwOPqxQ==",
- "type": "package",
- "path": "xamarin.android.glide.disklrucache/4.16.0.11",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.Android.Glide.DiskLruCache.aar",
- "lib/net8.0-android34.0/Xamarin.Android.Glide.DiskLruCache.dll",
- "lib/net8.0-android34.0/Xamarin.Android.Glide.DiskLruCache.pdb",
- "lib/net8.0-android34.0/Xamarin.Android.Glide.DiskLruCache.xml",
- "readme.md",
- "xamarin.android.glide.disklrucache.4.16.0.11.nupkg.sha512",
- "xamarin.android.glide.disklrucache.nuspec"
- ]
- },
- "Xamarin.Android.Glide.GifDecoder/4.16.0.11": {
- "sha512": "EvJW/dr1m/lR9aogP8KSXt6qFXUkA0wp+ScAdvtKEr78ZpMaWXbuZzJfOM6wmOpvTL+hU48+EY5lV2Z8cxi8pA==",
- "type": "package",
- "path": "xamarin.android.glide.gifdecoder/4.16.0.11",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.Android.Glide.GifDecoder.dll",
- "lib/net8.0-android34.0/Xamarin.Android.Glide.GifDecoder.pdb",
- "lib/net8.0-android34.0/Xamarin.Android.Glide.GifDecoder.xml",
- "lib/net8.0-android34.0/gifdecoder.aar",
- "readme.md",
- "xamarin.android.glide.gifdecoder.4.16.0.11.nupkg.sha512",
- "xamarin.android.glide.gifdecoder.nuspec"
- ]
- },
- "Xamarin.AndroidX.Activity/1.9.3.2": {
- "sha512": "CTn1E9EjJJ7NC3ldErQhEUv22/ImGU4/rPR4/afJACx3R6MTNSduvrdHift/E4z++NDKuYiNKkNZImn9ipInjA==",
- "type": "package",
- "path": "xamarin.androidx.activity/1.9.3.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "aar/androidx.activity.activity.aar",
- "build/net8.0-android34.0/Xamarin.AndroidX.Activity.targets",
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Activity.targets",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Activity.dll",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Activity.pdb",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Activity.xml",
- "readme.md",
- "xamarin.androidx.activity.1.9.3.2.nupkg.sha512",
- "xamarin.androidx.activity.nuspec"
- ]
- },
- "Xamarin.AndroidX.Activity.Ktx/1.9.3.2": {
- "sha512": "bmB83N2qKLYbeMgaN1zBLefd1d/WdM/QnjHqUobhDUcA/utBgRyXOXZwYarJOfTLTgXiv2TS5T1pCwJOO5OWbg==",
- "type": "package",
- "path": "xamarin.androidx.activity.ktx/1.9.3.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "aar/androidx.activity.activity-ktx.aar",
- "build/net8.0-android34.0/Xamarin.AndroidX.Activity.Ktx.targets",
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Activity.Ktx.targets",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Activity.Ktx.dll",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Activity.Ktx.pdb",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Activity.Ktx.xml",
- "readme.md",
- "xamarin.androidx.activity.ktx.1.9.3.2.nupkg.sha512",
- "xamarin.androidx.activity.ktx.nuspec"
- ]
- },
- "Xamarin.AndroidX.Annotation/1.9.1.2": {
- "sha512": "Wf5bjtunpMpWBPHCO90rFFhJSV6mUAEEIjCWwDvB7dbRcLK9wd10h1TJNxOFRDnxWq+GztkQsBmkexG0YzgtMA==",
- "type": "package",
- "path": "xamarin.androidx.annotation/1.9.1.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "build/net8.0-android34.0/Xamarin.AndroidX.Annotation.targets",
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Annotation.targets",
- "icon.png",
- "jar/androidx.annotation.annotation.jar",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Annotation.dll",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Annotation.pdb",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Annotation.xml",
- "readme.md",
- "xamarin.androidx.annotation.1.9.1.2.nupkg.sha512",
- "xamarin.androidx.annotation.nuspec"
- ]
- },
- "Xamarin.AndroidX.Annotation.Experimental/1.4.1.8": {
- "sha512": "vc9Z9dERTKxc21cn8kncnljP10EWmE9Jy9s26xzK4ehSZ4o+TAcX9PDZL8b/6/6bf3/8C3BLWwOVbHwSf0PTtA==",
- "type": "package",
- "path": "xamarin.androidx.annotation.experimental/1.4.1.8",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "aar/androidx.annotation.annotation-experimental.aar",
- "build/net8.0-android34.0/Xamarin.AndroidX.Annotation.Experimental.targets",
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Annotation.Experimental.targets",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Annotation.Experimental.dll",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Annotation.Experimental.pdb",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Annotation.Experimental.xml",
- "readme.md",
- "xamarin.androidx.annotation.experimental.1.4.1.8.nupkg.sha512",
- "xamarin.androidx.annotation.experimental.nuspec"
- ]
- },
- "Xamarin.AndroidX.Annotation.Jvm/1.9.1.2": {
- "sha512": "OvxDmZ2mDRCv0cMDtrASxsU8vqlAyL6DmN+5vZSpJfO3MX3RkgeAkd5GsZDCIQXWAQXYprV6shKMV+/z2nmbMg==",
- "type": "package",
- "path": "xamarin.androidx.annotation.jvm/1.9.1.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "build/net8.0-android34.0/Xamarin.AndroidX.Annotation.Jvm.targets",
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Annotation.Jvm.targets",
- "icon.png",
- "jar/androidx.annotation.annotation-jvm.jar",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Annotation.Jvm.dll",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Annotation.Jvm.pdb",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Annotation.Jvm.xml",
- "readme.md",
- "xamarin.androidx.annotation.jvm.1.9.1.2.nupkg.sha512",
- "xamarin.androidx.annotation.jvm.nuspec"
- ]
- },
- "Xamarin.AndroidX.AppCompat/1.7.0.5": {
- "sha512": "FqIrYa3g/LHeSivJX00vTSC2f299+6ihJdqsBsHA90Z43QG/iSZe0G3cPvJmwRY3+gs+l6sAvsXQO1OFOL2ibA==",
- "type": "package",
- "path": "xamarin.androidx.appcompat/1.7.0.5",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "aar/androidx.appcompat.appcompat.aar",
- "build/net8.0-android34.0/Xamarin.AndroidX.AppCompat.targets",
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.AppCompat.targets",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.AndroidX.AppCompat.dll",
- "lib/net8.0-android34.0/Xamarin.AndroidX.AppCompat.pdb",
- "lib/net8.0-android34.0/Xamarin.AndroidX.AppCompat.xml",
- "proguard/proguard.txt",
- "readme.md",
- "xamarin.androidx.appcompat.1.7.0.5.nupkg.sha512",
- "xamarin.androidx.appcompat.nuspec"
- ]
- },
- "Xamarin.AndroidX.AppCompat.AppCompatResources/1.7.0.5": {
- "sha512": "C6kRWcrS4UgklSvHu6CML8O9/mzX99Y7jMSA065WcuuSm6WD2qu2wZeq6wWKBPx6HyAeE6OsToTc4bn/DBSgbA==",
- "type": "package",
- "path": "xamarin.androidx.appcompat.appcompatresources/1.7.0.5",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "aar/androidx.appcompat.appcompat-resources.aar",
- "build/net8.0-android34.0/Xamarin.AndroidX.AppCompat.AppCompatResources.targets",
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.AppCompat.AppCompatResources.targets",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.AndroidX.AppCompat.AppCompatResources.dll",
- "lib/net8.0-android34.0/Xamarin.AndroidX.AppCompat.AppCompatResources.pdb",
- "lib/net8.0-android34.0/Xamarin.AndroidX.AppCompat.AppCompatResources.xml",
- "readme.md",
- "xamarin.androidx.appcompat.appcompatresources.1.7.0.5.nupkg.sha512",
- "xamarin.androidx.appcompat.appcompatresources.nuspec"
- ]
- },
- "Xamarin.AndroidX.Arch.Core.Common/2.2.0.15": {
- "sha512": "MQUUl+kNooS95Gqjr82EEfa6gFhvGB7Yk4NNP7chmivM2giGNem769TuYBi5Qdt1lbiHCmtrO7J/9Ojx6ObKEw==",
- "type": "package",
- "path": "xamarin.androidx.arch.core.common/2.2.0.15",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "build/net8.0-android34.0/Xamarin.AndroidX.Arch.Core.Common.targets",
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Arch.Core.Common.targets",
- "icon.png",
- "jar/androidx.arch.core.core-common.jar",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Arch.Core.Common.dll",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Arch.Core.Common.pdb",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Arch.Core.Common.xml",
- "readme.md",
- "xamarin.androidx.arch.core.common.2.2.0.15.nupkg.sha512",
- "xamarin.androidx.arch.core.common.nuspec"
- ]
- },
- "Xamarin.AndroidX.Arch.Core.Runtime/2.2.0.15": {
- "sha512": "6bxhHAmoU4xeAhT6zViWgvANmiHffvOj8dCGj8BM1YRSlXW2EzFz6eT8c48T66eQd3uynAM77SU86c8ZNxJ2fA==",
- "type": "package",
- "path": "xamarin.androidx.arch.core.runtime/2.2.0.15",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "aar/androidx.arch.core.core-runtime.aar",
- "build/net8.0-android34.0/Xamarin.AndroidX.Arch.Core.Runtime.targets",
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Arch.Core.Runtime.targets",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Arch.Core.Runtime.dll",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Arch.Core.Runtime.pdb",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Arch.Core.Runtime.xml",
- "readme.md",
- "xamarin.androidx.arch.core.runtime.2.2.0.15.nupkg.sha512",
- "xamarin.androidx.arch.core.runtime.nuspec"
- ]
- },
- "Xamarin.AndroidX.Browser/1.8.0.8": {
- "sha512": "ft0EsS2PjHAsyyVy+8eZ84uZ8O7pahum3z08Of4iClCDph2M8ApU2ZE54Ntv205vbChGc4STDpky+ewBkF3EHg==",
- "type": "package",
- "path": "xamarin.androidx.browser/1.8.0.8",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "aar/androidx.browser.browser.aar",
- "build/net8.0-android34.0/Xamarin.AndroidX.Browser.targets",
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Browser.targets",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Browser.dll",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Browser.pdb",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Browser.xml",
- "readme.md",
- "xamarin.androidx.browser.1.8.0.8.nupkg.sha512",
- "xamarin.androidx.browser.nuspec"
- ]
- },
- "Xamarin.AndroidX.CardView/1.0.0.33": {
- "sha512": "3WjmAwAK6Vic5ba8vlmExW4TZrtoYTvajYxsixDAFwzqkuMbmW3RcGp/nqG/wo934bNKZsyP6+6nxnztz0TaDw==",
- "type": "package",
- "path": "xamarin.androidx.cardview/1.0.0.33",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "aar/androidx.cardview.cardview.aar",
- "build/net8.0-android34.0/Xamarin.AndroidX.CardView.targets",
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.CardView.targets",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.AndroidX.CardView.dll",
- "lib/net8.0-android34.0/Xamarin.AndroidX.CardView.pdb",
- "lib/net8.0-android34.0/Xamarin.AndroidX.CardView.xml",
- "readme.md",
- "xamarin.androidx.cardview.1.0.0.33.nupkg.sha512",
- "xamarin.androidx.cardview.nuspec"
- ]
- },
- "Xamarin.AndroidX.Collection/1.4.5.2": {
- "sha512": "Hjv/J+bCirjFgihVLEjwYf4jSoAlvF9/9SZSMwdqwSFZ2cUnliTssYzDhHKu8M5S+XTZ64HzhRK02opXWQRr6w==",
- "type": "package",
- "path": "xamarin.androidx.collection/1.4.5.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "build/net8.0-android34.0/Xamarin.AndroidX.Collection.targets",
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Collection.targets",
- "icon.png",
- "jar/androidx.collection.collection.jar",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Collection.dll",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Collection.pdb",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Collection.xml",
- "readme.md",
- "xamarin.androidx.collection.1.4.5.2.nupkg.sha512",
- "xamarin.androidx.collection.nuspec"
- ]
- },
- "Xamarin.AndroidX.Collection.Jvm/1.4.5.2": {
- "sha512": "vlt7YX1lk8UWrUlhArTdQqoC+rPBhMfdKEN5zYb35PEa9GJh3ZQpPQhIKpOV+MH84FbuBsp0w92kzMwaNt8jGA==",
- "type": "package",
- "path": "xamarin.androidx.collection.jvm/1.4.5.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "build/net8.0-android34.0/Xamarin.AndroidX.Collection.Jvm.targets",
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Collection.Jvm.targets",
- "icon.png",
- "jar/androidx.collection.collection-jvm.jar",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Collection.Jvm.dll",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Collection.Jvm.pdb",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Collection.Jvm.xml",
- "readme.md",
- "xamarin.androidx.collection.jvm.1.4.5.2.nupkg.sha512",
- "xamarin.androidx.collection.jvm.nuspec"
- ]
- },
- "Xamarin.AndroidX.Collection.Ktx/1.4.5.2": {
- "sha512": "aUQ6gc8sTBcNfL57ZWAdqYHRa57LgkSy5tAF7YfJHIUfDd+V0NQSuQhpVMt3zTS2GR70MfASU6e9p1KzFifmOA==",
- "type": "package",
- "path": "xamarin.androidx.collection.ktx/1.4.5.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "build/net8.0-android34.0/Xamarin.AndroidX.Collection.Ktx.targets",
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Collection.Ktx.targets",
- "icon.png",
- "jar/androidx.collection.collection-ktx.jar",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Collection.Ktx.dll",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Collection.Ktx.pdb",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Collection.Ktx.xml",
- "readme.md",
- "xamarin.androidx.collection.ktx.1.4.5.2.nupkg.sha512",
- "xamarin.androidx.collection.ktx.nuspec"
- ]
- },
- "Xamarin.AndroidX.Concurrent.Futures/1.2.0.5": {
- "sha512": "Uexe7nICDjLDNHDo+EuwtFT2DAClV35dUHoAvF2N6S3RToymbB0d4MOWNdiRqFNamFv0bvJ1Aewka4pwvaT+PQ==",
- "type": "package",
- "path": "xamarin.androidx.concurrent.futures/1.2.0.5",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "build/net8.0-android34.0/Xamarin.AndroidX.Concurrent.Futures.targets",
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Concurrent.Futures.targets",
- "icon.png",
- "jar/androidx.concurrent.concurrent-futures.jar",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Concurrent.Futures.dll",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Concurrent.Futures.pdb",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Concurrent.Futures.xml",
- "readme.md",
- "xamarin.androidx.concurrent.futures.1.2.0.5.nupkg.sha512",
- "xamarin.androidx.concurrent.futures.nuspec"
- ]
- },
- "Xamarin.AndroidX.ConstraintLayout/2.2.0.2": {
- "sha512": "MPKnjF21OT8uURdZjYzhwSrHO7PcFJio2ZWTO4Yk7a8mSHQeSwjqWEVXiIRTuZRb8D/zS8N1ox5SVqVHtm9PLg==",
- "type": "package",
- "path": "xamarin.androidx.constraintlayout/2.2.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "aar/androidx.constraintlayout.constraintlayout.aar",
- "build/net8.0-android34.0/Xamarin.AndroidX.ConstraintLayout.targets",
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.ConstraintLayout.targets",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.AndroidX.ConstraintLayout.dll",
- "lib/net8.0-android34.0/Xamarin.AndroidX.ConstraintLayout.pdb",
- "lib/net8.0-android34.0/Xamarin.AndroidX.ConstraintLayout.xml",
- "readme.md",
- "xamarin.androidx.constraintlayout.2.2.0.2.nupkg.sha512",
- "xamarin.androidx.constraintlayout.nuspec"
- ]
- },
- "Xamarin.AndroidX.ConstraintLayout.Core/1.1.0.2": {
- "sha512": "jaA2mhDvgTWsLe3MPtZbb6ERy74FglQpN62BCvgtxVklG+kS2RxtYtCTkoxPAm5lKqzA2X+ucItudauLQITQvg==",
- "type": "package",
- "path": "xamarin.androidx.constraintlayout.core/1.1.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "build/net8.0-android34.0/Xamarin.AndroidX.ConstraintLayout.Core.targets",
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.ConstraintLayout.Core.targets",
- "icon.png",
- "jar/androidx.constraintlayout.constraintlayout-core.jar",
- "lib/net8.0-android34.0/Xamarin.AndroidX.ConstraintLayout.Core.dll",
- "lib/net8.0-android34.0/Xamarin.AndroidX.ConstraintLayout.Core.pdb",
- "lib/net8.0-android34.0/Xamarin.AndroidX.ConstraintLayout.Core.xml",
- "readme.md",
- "xamarin.androidx.constraintlayout.core.1.1.0.2.nupkg.sha512",
- "xamarin.androidx.constraintlayout.core.nuspec"
- ]
- },
- "Xamarin.AndroidX.CoordinatorLayout/1.2.0.19": {
- "sha512": "heBrafGb4xljmPssl/B37muQ1EzWnCKoTES70DmekTXjlpfEfSuPYClBxWGgyRk8uUB1Ykl2HpY4HDCDbEzy8A==",
- "type": "package",
- "path": "xamarin.androidx.coordinatorlayout/1.2.0.19",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "aar/androidx.coordinatorlayout.coordinatorlayout.aar",
- "build/net8.0-android34.0/Xamarin.AndroidX.CoordinatorLayout.targets",
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.CoordinatorLayout.targets",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.AndroidX.CoordinatorLayout.dll",
- "lib/net8.0-android34.0/Xamarin.AndroidX.CoordinatorLayout.pdb",
- "lib/net8.0-android34.0/Xamarin.AndroidX.CoordinatorLayout.xml",
- "proguard/proguard.txt",
- "readme.md",
- "xamarin.androidx.coordinatorlayout.1.2.0.19.nupkg.sha512",
- "xamarin.androidx.coordinatorlayout.nuspec"
- ]
- },
- "Xamarin.AndroidX.Core/1.15.0.2": {
- "sha512": "yyKe7/uF657xwuwSVg2Pmr1b+KvG8G4ZYYa+yh8FoSk5D6WF2zDqYNVqmEjA7ClCmM8NPrGh5+LhCe51+l9d6w==",
- "type": "package",
- "path": "xamarin.androidx.core/1.15.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "aar/androidx.core.core.aar",
- "build/net8.0-android34.0/Xamarin.AndroidX.Core.targets",
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Core.targets",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Core.dll",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Core.pdb",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Core.xml",
- "proguard/proguard.txt",
- "readme.md",
- "xamarin.androidx.core.1.15.0.2.nupkg.sha512",
- "xamarin.androidx.core.nuspec"
- ]
- },
- "Xamarin.AndroidX.Core.Core.Ktx/1.15.0.2": {
- "sha512": "LyUZay0QJO5lDOywvW1sw5qPrY8P1iraak8c+esvs+tJBzZx/w1dwTmmLUScaMIkZFxzmmxKsiz6BJXBRmvjcg==",
- "type": "package",
- "path": "xamarin.androidx.core.core.ktx/1.15.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "aar/androidx.core.core-ktx.aar",
- "build/net8.0-android34.0/Xamarin.AndroidX.Core.Core.Ktx.targets",
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Core.Core.Ktx.targets",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Core.Core.Ktx.dll",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Core.Core.Ktx.pdb",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Core.Core.Ktx.xml",
- "readme.md",
- "xamarin.androidx.core.core.ktx.1.15.0.2.nupkg.sha512",
- "xamarin.androidx.core.core.ktx.nuspec"
- ]
- },
- "Xamarin.AndroidX.CursorAdapter/1.0.0.31": {
- "sha512": "aiTfP9EGpf4SieNa2JGSap5lDHi1bmJ1aUVqiq5P0skYX+Fc8/ObzT0+eoG9RJdDmtE/rl9jHYVgofokr1vEsA==",
- "type": "package",
- "path": "xamarin.androidx.cursoradapter/1.0.0.31",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "aar/androidx.cursoradapter.cursoradapter.aar",
- "build/net8.0-android34.0/Xamarin.AndroidX.CursorAdapter.targets",
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.CursorAdapter.targets",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.AndroidX.CursorAdapter.dll",
- "lib/net8.0-android34.0/Xamarin.AndroidX.CursorAdapter.pdb",
- "lib/net8.0-android34.0/Xamarin.AndroidX.CursorAdapter.xml",
- "readme.md",
- "xamarin.androidx.cursoradapter.1.0.0.31.nupkg.sha512",
- "xamarin.androidx.cursoradapter.nuspec"
- ]
- },
- "Xamarin.AndroidX.CustomView/1.1.0.30": {
- "sha512": "a/qaJ1jBZYdOZJSItwSlb2t6c5KvTQtwW27eIkXx39eIJhgJmKzP9aVZP1hNnNwzfWGUX7lffthrJzMt+qo16g==",
- "type": "package",
- "path": "xamarin.androidx.customview/1.1.0.30",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "aar/androidx.customview.customview.aar",
- "build/net8.0-android34.0/Xamarin.AndroidX.CustomView.targets",
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.CustomView.targets",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.AndroidX.CustomView.dll",
- "lib/net8.0-android34.0/Xamarin.AndroidX.CustomView.pdb",
- "lib/net8.0-android34.0/Xamarin.AndroidX.CustomView.xml",
- "readme.md",
- "xamarin.androidx.customview.1.1.0.30.nupkg.sha512",
- "xamarin.androidx.customview.nuspec"
- ]
- },
- "Xamarin.AndroidX.CustomView.PoolingContainer/1.0.0.17": {
- "sha512": "6OUHcwnAJTzV6v0fnhmCOazeDgW2NHdbaxE+qk21V8h0bXwiQEv91FCCoMJ1vSHQB7s6LjEcvOkW9VGMXyW67A==",
- "type": "package",
- "path": "xamarin.androidx.customview.poolingcontainer/1.0.0.17",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "aar/androidx.customview.customview-poolingcontainer.aar",
- "build/net8.0-android34.0/Xamarin.AndroidX.CustomView.PoolingContainer.targets",
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.CustomView.PoolingContainer.targets",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.AndroidX.CustomView.PoolingContainer.dll",
- "lib/net8.0-android34.0/Xamarin.AndroidX.CustomView.PoolingContainer.pdb",
- "lib/net8.0-android34.0/Xamarin.AndroidX.CustomView.PoolingContainer.xml",
- "readme.md",
- "xamarin.androidx.customview.poolingcontainer.1.0.0.17.nupkg.sha512",
- "xamarin.androidx.customview.poolingcontainer.nuspec"
- ]
- },
- "Xamarin.AndroidX.DocumentFile/1.0.1.31": {
- "sha512": "F6/3xLe6CgDuBFT9kdQZtXfYlstJwMBNoGgLwkIH+5HCBhpW8feLbn9kBTqG1LtNBtZCQj5ntz/KKcQwcUJSeQ==",
- "type": "package",
- "path": "xamarin.androidx.documentfile/1.0.1.31",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "aar/androidx.documentfile.documentfile.aar",
- "build/net8.0-android34.0/Xamarin.AndroidX.DocumentFile.targets",
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.DocumentFile.targets",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.AndroidX.DocumentFile.dll",
- "lib/net8.0-android34.0/Xamarin.AndroidX.DocumentFile.pdb",
- "lib/net8.0-android34.0/Xamarin.AndroidX.DocumentFile.xml",
- "readme.md",
- "xamarin.androidx.documentfile.1.0.1.31.nupkg.sha512",
- "xamarin.androidx.documentfile.nuspec"
- ]
- },
- "Xamarin.AndroidX.DrawerLayout/1.2.0.15": {
- "sha512": "FjnNnVrxoDkYceJVE7pliNKxuDSS/ebTeY2/vQnaLThdhAy2cAxDV4lBZART3bedkyT7Np5aWCui33NdTNE2aA==",
- "type": "package",
- "path": "xamarin.androidx.drawerlayout/1.2.0.15",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "aar/androidx.drawerlayout.drawerlayout.aar",
- "build/net8.0-android34.0/Xamarin.AndroidX.DrawerLayout.targets",
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.DrawerLayout.targets",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.AndroidX.DrawerLayout.dll",
- "lib/net8.0-android34.0/Xamarin.AndroidX.DrawerLayout.pdb",
- "lib/net8.0-android34.0/Xamarin.AndroidX.DrawerLayout.xml",
- "readme.md",
- "xamarin.androidx.drawerlayout.1.2.0.15.nupkg.sha512",
- "xamarin.androidx.drawerlayout.nuspec"
- ]
- },
- "Xamarin.AndroidX.DynamicAnimation/1.0.0.31": {
- "sha512": "zYreE2UDtVIxJez8cp2qoF71lsJMjmL1XbEHZJAfYCeaj7byPYiKFd7ZwEUWm4uaP5NXPs+NSLXJFY7iUmUJ5g==",
- "type": "package",
- "path": "xamarin.androidx.dynamicanimation/1.0.0.31",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "aar/androidx.dynamicanimation.dynamicanimation.aar",
- "build/net8.0-android34.0/Xamarin.AndroidX.DynamicAnimation.targets",
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.DynamicAnimation.targets",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.AndroidX.DynamicAnimation.dll",
- "lib/net8.0-android34.0/Xamarin.AndroidX.DynamicAnimation.pdb",
- "lib/net8.0-android34.0/Xamarin.AndroidX.DynamicAnimation.xml",
- "readme.md",
- "xamarin.androidx.dynamicanimation.1.0.0.31.nupkg.sha512",
- "xamarin.androidx.dynamicanimation.nuspec"
- ]
- },
- "Xamarin.AndroidX.Emoji2/1.5.0.3": {
- "sha512": "j5W36CaJ186jkGoM74vxrEYgZKwAgzqrFdARpTzZVIWXR5A5NsPlG4JNe1DH1lwRYWlp/lhd1dMa3RUfgJoNZA==",
- "type": "package",
- "path": "xamarin.androidx.emoji2/1.5.0.3",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "aar/androidx.emoji2.emoji2.aar",
- "build/net8.0-android34.0/Xamarin.AndroidX.Emoji2.targets",
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Emoji2.targets",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Emoji2.dll",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Emoji2.pdb",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Emoji2.xml",
- "readme.md",
- "xamarin.androidx.emoji2.1.5.0.3.nupkg.sha512",
- "xamarin.androidx.emoji2.nuspec"
- ]
- },
- "Xamarin.AndroidX.Emoji2.ViewsHelper/1.5.0.3": {
- "sha512": "uCRuCIKPHGHsY0Jl072x1O96zsGGbUPqFvxgJSxgCvfuJgbC1NcW1dpP0y07THE2bA/mE4miZ+/QsV2PDBh44A==",
- "type": "package",
- "path": "xamarin.androidx.emoji2.viewshelper/1.5.0.3",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "aar/androidx.emoji2.emoji2-views-helper.aar",
- "build/net8.0-android34.0/Xamarin.AndroidX.Emoji2.ViewsHelper.targets",
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Emoji2.ViewsHelper.targets",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Emoji2.ViewsHelper.dll",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Emoji2.ViewsHelper.pdb",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Emoji2.ViewsHelper.xml",
- "readme.md",
- "xamarin.androidx.emoji2.viewshelper.1.5.0.3.nupkg.sha512",
- "xamarin.androidx.emoji2.viewshelper.nuspec"
- ]
- },
- "Xamarin.AndroidX.ExifInterface/1.3.7.9": {
- "sha512": "V4iSIruTN5bbdtzhDl6k4BDYJXcA3s5nW5PYCGuQNnoRPjeXvBSyc2Y3xYyeqDSCK1jlysuaAyPE0UwYx9roRg==",
- "type": "package",
- "path": "xamarin.androidx.exifinterface/1.3.7.9",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "aar/androidx.exifinterface.exifinterface.aar",
- "build/net8.0-android34.0/Xamarin.AndroidX.ExifInterface.targets",
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.ExifInterface.targets",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.AndroidX.ExifInterface.dll",
- "lib/net8.0-android34.0/Xamarin.AndroidX.ExifInterface.pdb",
- "lib/net8.0-android34.0/Xamarin.AndroidX.ExifInterface.xml",
- "readme.md",
- "xamarin.androidx.exifinterface.1.3.7.9.nupkg.sha512",
- "xamarin.androidx.exifinterface.nuspec"
- ]
- },
- "Xamarin.AndroidX.Fragment/1.8.5.2": {
- "sha512": "LW1xznLvGoR4quFAedJSD3HSkSIka/38lsKnrCYgkCofdRr7ice0Tctz+NXp5Ua8i5nqruTygxgk2v2KFxQHCg==",
- "type": "package",
- "path": "xamarin.androidx.fragment/1.8.5.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "aar/androidx.fragment.fragment.aar",
- "build/net8.0-android34.0/Xamarin.AndroidX.Fragment.targets",
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Fragment.targets",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Fragment.dll",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Fragment.pdb",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Fragment.xml",
- "proguard/proguard.txt",
- "readme.md",
- "xamarin.androidx.fragment.1.8.5.2.nupkg.sha512",
- "xamarin.androidx.fragment.nuspec"
- ]
- },
- "Xamarin.AndroidX.Fragment.Ktx/1.8.5.2": {
- "sha512": "6gK107lW3mlTZ0FVMPz1lbrFSezArV8PxwISKGdOjs1uipiYrfxQaR8gQiU3WqiPyraYYgrttAcxABGY0A83dA==",
- "type": "package",
- "path": "xamarin.androidx.fragment.ktx/1.8.5.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "aar/androidx.fragment.fragment-ktx.aar",
- "build/net8.0-android34.0/Xamarin.AndroidX.Fragment.Ktx.targets",
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Fragment.Ktx.targets",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Fragment.Ktx.dll",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Fragment.Ktx.pdb",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Fragment.Ktx.xml",
- "readme.md",
- "xamarin.androidx.fragment.ktx.1.8.5.2.nupkg.sha512",
- "xamarin.androidx.fragment.ktx.nuspec"
- ]
- },
- "Xamarin.AndroidX.Interpolator/1.0.0.31": {
- "sha512": "F/DqmRgIyp1qBH74ut+3ikMfWapXXmNohbyfjGUOnZ3haesiflIOiYQYPEKztZ98+2PO+cy2RAdHxz09NdS0PQ==",
- "type": "package",
- "path": "xamarin.androidx.interpolator/1.0.0.31",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "aar/androidx.interpolator.interpolator.aar",
- "build/net8.0-android34.0/Xamarin.AndroidX.Interpolator.targets",
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Interpolator.targets",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Interpolator.dll",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Interpolator.pdb",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Interpolator.xml",
- "readme.md",
- "xamarin.androidx.interpolator.1.0.0.31.nupkg.sha512",
- "xamarin.androidx.interpolator.nuspec"
- ]
- },
- "Xamarin.AndroidX.Legacy.Support.Core.Utils/1.0.0.31": {
- "sha512": "yd9IkWPUMNY251KsNXR3LN43VGBUpUuEZG+QzG6LnLSxxKNqgehs3uMtDBdSMITZnCij/j0Txs7QxkirililWA==",
- "type": "package",
- "path": "xamarin.androidx.legacy.support.core.utils/1.0.0.31",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "aar/androidx.legacy.legacy-support-core-utils.aar",
- "build/net8.0-android34.0/Xamarin.AndroidX.Legacy.Support.Core.Utils.targets",
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Legacy.Support.Core.Utils.targets",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Legacy.Support.Core.Utils.dll",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Legacy.Support.Core.Utils.pdb",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Legacy.Support.Core.Utils.xml",
- "readme.md",
- "xamarin.androidx.legacy.support.core.utils.1.0.0.31.nupkg.sha512",
- "xamarin.androidx.legacy.support.core.utils.nuspec"
- ]
- },
- "Xamarin.AndroidX.Lifecycle.Common/2.8.7.2": {
- "sha512": "Qu7pfz+keHIf2c5Lv11ypwAhEDtp/6qv+pHLhgsPPXB9p1BdwOh8YSTcd+JyCYz8WqCz84afOEYqfjJDad3g+Q==",
- "type": "package",
- "path": "xamarin.androidx.lifecycle.common/2.8.7.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "build/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Common.targets",
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Common.targets",
- "icon.png",
- "jar/androidx.lifecycle.lifecycle-common.jar",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Common.dll",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Common.pdb",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Common.xml",
- "readme.md",
- "xamarin.androidx.lifecycle.common.2.8.7.2.nupkg.sha512",
- "xamarin.androidx.lifecycle.common.nuspec"
- ]
- },
- "Xamarin.AndroidX.Lifecycle.Common.Jvm/2.8.7.2": {
- "sha512": "iSb1d1i1409AQ6PrXe5Lcx1lnzP7aGS6f4pWXyG2EhMhGoHNd1wGSAroofhvWtwj+gG0lfidD9VU2Oo/t6z7tg==",
- "type": "package",
- "path": "xamarin.androidx.lifecycle.common.jvm/2.8.7.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "build/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Common.Jvm.targets",
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Common.Jvm.targets",
- "icon.png",
- "jar/androidx.lifecycle.lifecycle-common-jvm.jar",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Common.Jvm.dll",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Common.Jvm.pdb",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Common.Jvm.xml",
- "readme.md",
- "xamarin.androidx.lifecycle.common.jvm.2.8.7.2.nupkg.sha512",
- "xamarin.androidx.lifecycle.common.jvm.nuspec"
- ]
- },
- "Xamarin.AndroidX.Lifecycle.LiveData/2.8.7.2": {
- "sha512": "UevE8q9eQHOBjPon/1iBZ1O2FzIc2I5pWQR4qbCCEKq6WKFO0gUvSmW/+DUmRfZGws0nE1ogvpJzf0IWQK249g==",
- "type": "package",
- "path": "xamarin.androidx.lifecycle.livedata/2.8.7.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "aar/androidx.lifecycle.lifecycle-livedata.aar",
- "build/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.targets",
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.targets",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.dll",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.pdb",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.xml",
- "readme.md",
- "xamarin.androidx.lifecycle.livedata.2.8.7.2.nupkg.sha512",
- "xamarin.androidx.lifecycle.livedata.nuspec"
- ]
- },
- "Xamarin.AndroidX.Lifecycle.LiveData.Core/2.8.7.2": {
- "sha512": "w8xvVhpWayOGoRXllKxCQkSE09uXTL5SWK5NNYa0o7Z1SinDoLvMp56IUqAOvCMtSRGltUleZCkhhivEMS5TuQ==",
- "type": "package",
- "path": "xamarin.androidx.lifecycle.livedata.core/2.8.7.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "aar/androidx.lifecycle.lifecycle-livedata-core.aar",
- "build/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.targets",
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.targets",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.dll",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.pdb",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.xml",
- "readme.md",
- "xamarin.androidx.lifecycle.livedata.core.2.8.7.2.nupkg.sha512",
- "xamarin.androidx.lifecycle.livedata.core.nuspec"
- ]
- },
- "Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx/2.8.7.2": {
- "sha512": "xVEgA/ypDx7Gbl8csMyOyCMwxrWzqj7ai8o4ZNx+Dmvwv9vzp8NNbE784h7jL0SgBzosaslCNoAcEJdanFTABw==",
- "type": "package",
- "path": "xamarin.androidx.lifecycle.livedata.core.ktx/2.8.7.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "aar/androidx.lifecycle.lifecycle-livedata-core-ktx.aar",
- "build/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.targets",
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.targets",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.dll",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.pdb",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.xml",
- "readme.md",
- "xamarin.androidx.lifecycle.livedata.core.ktx.2.8.7.2.nupkg.sha512",
- "xamarin.androidx.lifecycle.livedata.core.ktx.nuspec"
- ]
- },
- "Xamarin.AndroidX.Lifecycle.Process/2.8.7.2": {
- "sha512": "anaUiPpkKkW05H1knIdFhJWy9N9UV06ga37ksy/iAsYg0uusIVXZJKwZTzZHhVQDHPMPxdl2oRZLw7f6/RBXog==",
- "type": "package",
- "path": "xamarin.androidx.lifecycle.process/2.8.7.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "aar/androidx.lifecycle.lifecycle-process.aar",
- "build/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Process.targets",
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Process.targets",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Process.dll",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Process.pdb",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Process.xml",
- "proguard/proguard.txt",
- "readme.md",
- "xamarin.androidx.lifecycle.process.2.8.7.2.nupkg.sha512",
- "xamarin.androidx.lifecycle.process.nuspec"
- ]
- },
- "Xamarin.AndroidX.Lifecycle.Runtime/2.8.7.2": {
- "sha512": "r9oynL7lnT6dTt8oXrkQaGs/tQrDWnBpSbX6cgCRkO65TYiNbVUwjGCm0xePaIspAgnpR5W++yVm8JoUk0DyXQ==",
- "type": "package",
- "path": "xamarin.androidx.lifecycle.runtime/2.8.7.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "aar/androidx.lifecycle.lifecycle-runtime.aar",
- "build/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.targets",
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.targets",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.dll",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.pdb",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.xml",
- "readme.md",
- "xamarin.androidx.lifecycle.runtime.2.8.7.2.nupkg.sha512",
- "xamarin.androidx.lifecycle.runtime.nuspec"
- ]
- },
- "Xamarin.AndroidX.Lifecycle.Runtime.Android/2.8.7.2": {
- "sha512": "mF9XK+0HVUd5jvzVBSU7knVWp/92aTtTdTWzJ9OEBctcdIgj3rX7xiq5/ETuIZWK4gAOSo0OvhUTWHXAjVBmfw==",
- "type": "package",
- "path": "xamarin.androidx.lifecycle.runtime.android/2.8.7.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "aar/androidx.lifecycle.lifecycle-runtime-android.aar",
- "build/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Android.targets",
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Android.targets",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Android.dll",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Android.pdb",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Android.xml",
- "proguard/proguard.txt",
- "readme.md",
- "xamarin.androidx.lifecycle.runtime.android.2.8.7.2.nupkg.sha512",
- "xamarin.androidx.lifecycle.runtime.android.nuspec"
- ]
- },
- "Xamarin.AndroidX.Lifecycle.Runtime.Ktx/2.8.7.2": {
- "sha512": "Tva+yvvrg/Ri8ULp3h2Q12wiSkombPJm4oqos+veGRD3NZZwZMqC156qLlN65CHns6a2mXD/p1clwGSzYARuGw==",
- "type": "package",
- "path": "xamarin.androidx.lifecycle.runtime.ktx/2.8.7.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "aar/androidx.lifecycle.lifecycle-runtime-ktx.aar",
- "build/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.targets",
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.targets",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.dll",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.pdb",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.xml",
- "readme.md",
- "xamarin.androidx.lifecycle.runtime.ktx.2.8.7.2.nupkg.sha512",
- "xamarin.androidx.lifecycle.runtime.ktx.nuspec"
- ]
- },
- "Xamarin.AndroidX.Lifecycle.Runtime.Ktx.Android/2.8.7.2": {
- "sha512": "iKPGI5BIDkApMKjDibpEODeOIxhkDQs9Kf1tyVIobDF2w2Hij8hdkh5wwMzDflYkqhrZQFftHFj89bB21Oil2g==",
- "type": "package",
- "path": "xamarin.androidx.lifecycle.runtime.ktx.android/2.8.7.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "aar/androidx.lifecycle.lifecycle-runtime-ktx-android.aar",
- "build/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.Android.targets",
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.Android.targets",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.Android.dll",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.Android.pdb",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.Runtime.Ktx.Android.xml",
- "readme.md",
- "xamarin.androidx.lifecycle.runtime.ktx.android.2.8.7.2.nupkg.sha512",
- "xamarin.androidx.lifecycle.runtime.ktx.android.nuspec"
- ]
- },
- "Xamarin.AndroidX.Lifecycle.ViewModel/2.8.7.2": {
- "sha512": "zJAW8bP0pT3WIDntitY1HudM4JGKAtxQ3mKenQ2qofr79IsHTaOyv9Y0Up68VBgVkwMCehz+mzPSC3+kEiAVNA==",
- "type": "package",
- "path": "xamarin.androidx.lifecycle.viewmodel/2.8.7.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "aar/androidx.lifecycle.lifecycle-viewmodel.aar",
- "build/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.targets",
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.targets",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.dll",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.pdb",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.xml",
- "readme.md",
- "xamarin.androidx.lifecycle.viewmodel.2.8.7.2.nupkg.sha512",
- "xamarin.androidx.lifecycle.viewmodel.nuspec"
- ]
- },
- "Xamarin.AndroidX.Lifecycle.ViewModel.Android/2.8.7.2": {
- "sha512": "zZDTxhsOr2ntB+YZi2W2BHV9st2ZlVj0kTUthhv22/6AvndrKtwSCzAqfKztf9xJE/JFLd219bKl67IERz17pw==",
- "type": "package",
- "path": "xamarin.androidx.lifecycle.viewmodel.android/2.8.7.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "aar/androidx.lifecycle.lifecycle-viewmodel-android.aar",
- "build/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.Android.targets",
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.Android.targets",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.Android.dll",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.Android.pdb",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.Android.xml",
- "proguard/proguard.txt",
- "readme.md",
- "xamarin.androidx.lifecycle.viewmodel.android.2.8.7.2.nupkg.sha512",
- "xamarin.androidx.lifecycle.viewmodel.android.nuspec"
- ]
- },
- "Xamarin.AndroidX.Lifecycle.ViewModel.Ktx/2.8.7.2": {
- "sha512": "hqSp8VSkwaGujSPIUNQ0SRQ7oPmRWoAryTQjzf9or97Kdd+tmxNLoKPntSQdyGoCwERNgisfshvjozFlyXhx4A==",
- "type": "package",
- "path": "xamarin.androidx.lifecycle.viewmodel.ktx/2.8.7.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "aar/androidx.lifecycle.lifecycle-viewmodel-ktx.aar",
- "build/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.targets",
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.targets",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.dll",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.pdb",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.xml",
- "readme.md",
- "xamarin.androidx.lifecycle.viewmodel.ktx.2.8.7.2.nupkg.sha512",
- "xamarin.androidx.lifecycle.viewmodel.ktx.nuspec"
- ]
- },
- "Xamarin.AndroidX.Lifecycle.ViewModelSavedState/2.8.7.2": {
- "sha512": "tuLW2DJ0lUPv8+UD6/sU7l8O7vnTy/xSvzqHnVXwO5ValFuQIhuTJRZ4ufaj8aMomWw1ty9FQQEBFVi+B0cnCA==",
- "type": "package",
- "path": "xamarin.androidx.lifecycle.viewmodelsavedstate/2.8.7.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "aar/androidx.lifecycle.lifecycle-viewmodel-savedstate.aar",
- "build/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModelSavedState.targets",
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModelSavedState.targets",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModelSavedState.dll",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModelSavedState.pdb",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Lifecycle.ViewModelSavedState.xml",
- "proguard/proguard.txt",
- "readme.md",
- "xamarin.androidx.lifecycle.viewmodelsavedstate.2.8.7.2.nupkg.sha512",
- "xamarin.androidx.lifecycle.viewmodelsavedstate.nuspec"
- ]
- },
- "Xamarin.AndroidX.Loader/1.1.0.31": {
- "sha512": "I5iBQCVWaWYbTqxVUnXb/oibUPceJO9qxCFDyKod9KPquzmEtKK32YWPfya4RSQQeAVXNMohvDdXugdBw7yvOg==",
- "type": "package",
- "path": "xamarin.androidx.loader/1.1.0.31",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "aar/androidx.loader.loader.aar",
- "build/net8.0-android34.0/Xamarin.AndroidX.Loader.targets",
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Loader.targets",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Loader.dll",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Loader.pdb",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Loader.xml",
- "readme.md",
- "xamarin.androidx.loader.1.1.0.31.nupkg.sha512",
- "xamarin.androidx.loader.nuspec"
- ]
- },
- "Xamarin.AndroidX.LocalBroadcastManager/1.1.0.19": {
- "sha512": "wivoKvasafPQQYfEPGj9Fjx9bs6UGHm3+4YiaKtUey5ztv1Dis3xHJqgeBAc10MRO7XeofEloQ1yjswWma4MVw==",
- "type": "package",
- "path": "xamarin.androidx.localbroadcastmanager/1.1.0.19",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "aar/androidx.localbroadcastmanager.localbroadcastmanager.aar",
- "build/net8.0-android34.0/Xamarin.AndroidX.LocalBroadcastManager.targets",
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.LocalBroadcastManager.targets",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.AndroidX.LocalBroadcastManager.dll",
- "lib/net8.0-android34.0/Xamarin.AndroidX.LocalBroadcastManager.pdb",
- "lib/net8.0-android34.0/Xamarin.AndroidX.LocalBroadcastManager.xml",
- "readme.md",
- "xamarin.androidx.localbroadcastmanager.1.1.0.19.nupkg.sha512",
- "xamarin.androidx.localbroadcastmanager.nuspec"
- ]
- },
- "Xamarin.AndroidX.Navigation.Common/2.8.5.1": {
- "sha512": "IaHqfan3GHRuw2th0pW03JwbrRXN1ETs6QwuINBY+34fAw8EXInit/CyL+J6RDSBsHW4WeAWu6JJbFlqnf5ATg==",
- "type": "package",
- "path": "xamarin.androidx.navigation.common/2.8.5.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "aar/androidx.navigation.navigation-common.aar",
- "build/net8.0-android34.0/Xamarin.AndroidX.Navigation.Common.targets",
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Navigation.Common.targets",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Navigation.Common.dll",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Navigation.Common.pdb",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Navigation.Common.xml",
- "proguard/proguard.txt",
- "readme.md",
- "xamarin.androidx.navigation.common.2.8.5.1.nupkg.sha512",
- "xamarin.androidx.navigation.common.nuspec"
- ]
- },
- "Xamarin.AndroidX.Navigation.Fragment/2.8.5.1": {
- "sha512": "ETH1EwIbiBvxhQqaL3LobfNGjCSl1ZZSJJ6E8drPU/gY2ZNllfe2JnunDsLhHVkeRREKSewmODNMaY1gifx2tA==",
- "type": "package",
- "path": "xamarin.androidx.navigation.fragment/2.8.5.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "aar/androidx.navigation.navigation-fragment.aar",
- "build/net8.0-android34.0/Xamarin.AndroidX.Navigation.Fragment.targets",
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Navigation.Fragment.targets",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Navigation.Fragment.dll",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Navigation.Fragment.pdb",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Navigation.Fragment.xml",
- "readme.md",
- "xamarin.androidx.navigation.fragment.2.8.5.1.nupkg.sha512",
- "xamarin.androidx.navigation.fragment.nuspec"
- ]
- },
- "Xamarin.AndroidX.Navigation.Runtime/2.8.5.1": {
- "sha512": "zv6GmRXFn6B2Wuzd21hO/bNAjQ/StedH6wjn2vHIUdySw9HlmvQFdDOcTDqmP4NJPxuq/wdKwRnTf6u+pGxtRw==",
- "type": "package",
- "path": "xamarin.androidx.navigation.runtime/2.8.5.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "aar/androidx.navigation.navigation-runtime.aar",
- "build/net8.0-android34.0/Xamarin.AndroidX.Navigation.Runtime.targets",
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Navigation.Runtime.targets",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Navigation.Runtime.dll",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Navigation.Runtime.pdb",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Navigation.Runtime.xml",
- "readme.md",
- "xamarin.androidx.navigation.runtime.2.8.5.1.nupkg.sha512",
- "xamarin.androidx.navigation.runtime.nuspec"
- ]
- },
- "Xamarin.AndroidX.Navigation.UI/2.8.5.1": {
- "sha512": "v9JNUjzsmLCFrK4RhX71cBb7fzloes3XNz/2aLuxrZYXgD/hx2CwhZzVE9IziKwKxEGXu+kuoYQhIb9xNuuRUw==",
- "type": "package",
- "path": "xamarin.androidx.navigation.ui/2.8.5.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "aar/androidx.navigation.navigation-ui.aar",
- "build/net8.0-android34.0/Xamarin.AndroidX.Navigation.UI.targets",
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Navigation.UI.targets",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Navigation.UI.dll",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Navigation.UI.pdb",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Navigation.UI.xml",
- "proguard/proguard.txt",
- "readme.md",
- "xamarin.androidx.navigation.ui.2.8.5.1.nupkg.sha512",
- "xamarin.androidx.navigation.ui.nuspec"
- ]
- },
- "Xamarin.AndroidX.Print/1.0.0.31": {
- "sha512": "6/i0iDCUvP8dRODL59mYECcDqApTLy8IuMQZ5ilRYiYgjzMxyOHse1H7n8okK8pV9H0uQhpyFiNkUei4Azv8HA==",
- "type": "package",
- "path": "xamarin.androidx.print/1.0.0.31",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "aar/androidx.print.print.aar",
- "build/net8.0-android34.0/Xamarin.AndroidX.Print.targets",
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Print.targets",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Print.dll",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Print.pdb",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Print.xml",
- "readme.md",
- "xamarin.androidx.print.1.0.0.31.nupkg.sha512",
- "xamarin.androidx.print.nuspec"
- ]
- },
- "Xamarin.AndroidX.ProfileInstaller.ProfileInstaller/1.4.1.2": {
- "sha512": "bvsD2IpE8LqXH1tXJ3AlOemCcgPzk5vd6JSBNgNxD3RMqrKk9lFjqP+X8F5O3wY5Xxa5QEEVgvWAn7/DQ0S8NA==",
- "type": "package",
- "path": "xamarin.androidx.profileinstaller.profileinstaller/1.4.1.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "aar/androidx.profileinstaller.profileinstaller.aar",
- "build/net8.0-android34.0/Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.targets",
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.targets",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.dll",
- "lib/net8.0-android34.0/Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.pdb",
- "lib/net8.0-android34.0/Xamarin.AndroidX.ProfileInstaller.ProfileInstaller.xml",
- "readme.md",
- "xamarin.androidx.profileinstaller.profileinstaller.1.4.1.2.nupkg.sha512",
- "xamarin.androidx.profileinstaller.profileinstaller.nuspec"
- ]
- },
- "Xamarin.AndroidX.RecyclerView/1.3.2.10": {
- "sha512": "4Mad3uZgniNzDGAyJWvOAk8zHiCgpnEkPmjie3m+yNEvnLvWOUyYKjY7K/aMbUFUIb2j65fFfi67T/5sjR/gxg==",
- "type": "package",
- "path": "xamarin.androidx.recyclerview/1.3.2.10",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "aar/androidx.recyclerview.recyclerview.aar",
- "build/net8.0-android34.0/Xamarin.AndroidX.RecyclerView.targets",
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.RecyclerView.targets",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.AndroidX.RecyclerView.dll",
- "lib/net8.0-android34.0/Xamarin.AndroidX.RecyclerView.pdb",
- "lib/net8.0-android34.0/Xamarin.AndroidX.RecyclerView.xml",
- "proguard/proguard.txt",
- "readme.md",
- "xamarin.androidx.recyclerview.1.3.2.10.nupkg.sha512",
- "xamarin.androidx.recyclerview.nuspec"
- ]
- },
- "Xamarin.AndroidX.ResourceInspection.Annotation/1.0.1.19": {
- "sha512": "WqMh0Bs53RwcI7ExJO9XTi0L35VOYpqilHhlhmFK3sxII6PBPxqI5rln1t3V4YzqSseWq93NPzAeTG9EnqC4Xg==",
- "type": "package",
- "path": "xamarin.androidx.resourceinspection.annotation/1.0.1.19",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "build/net8.0-android34.0/Xamarin.AndroidX.ResourceInspection.Annotation.targets",
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.ResourceInspection.Annotation.targets",
- "icon.png",
- "jar/androidx.resourceinspection.resourceinspection-annotation.jar",
- "lib/net8.0-android34.0/Xamarin.AndroidX.ResourceInspection.Annotation.dll",
- "lib/net8.0-android34.0/Xamarin.AndroidX.ResourceInspection.Annotation.pdb",
- "lib/net8.0-android34.0/Xamarin.AndroidX.ResourceInspection.Annotation.xml",
- "readme.md",
- "xamarin.androidx.resourceinspection.annotation.1.0.1.19.nupkg.sha512",
- "xamarin.androidx.resourceinspection.annotation.nuspec"
- ]
- },
- "Xamarin.AndroidX.SavedState/1.2.1.15": {
- "sha512": "hSvh8e0M460+sPeU3tVXZVGaeTDC+dteshaKAnj4vVlxvbmPmjMhYghgk9GBx2i25uEdmSrbXFx9mqnbbQCOUg==",
- "type": "package",
- "path": "xamarin.androidx.savedstate/1.2.1.15",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "aar/androidx.savedstate.savedstate.aar",
- "build/net8.0-android34.0/Xamarin.AndroidX.SavedState.targets",
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.SavedState.targets",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.AndroidX.SavedState.dll",
- "lib/net8.0-android34.0/Xamarin.AndroidX.SavedState.pdb",
- "lib/net8.0-android34.0/Xamarin.AndroidX.SavedState.xml",
- "proguard/proguard.txt",
- "readme.md",
- "xamarin.androidx.savedstate.1.2.1.15.nupkg.sha512",
- "xamarin.androidx.savedstate.nuspec"
- ]
- },
- "Xamarin.AndroidX.SavedState.SavedState.Ktx/1.2.1.15": {
- "sha512": "9RWqRBHTnY1P+V2fB4pO8eMX3+5motOJ2LU4PzpiUYw817SKLwIpQv6sbbiQAaWWnzN6jbBFgOm3sf+2clrRMA==",
- "type": "package",
- "path": "xamarin.androidx.savedstate.savedstate.ktx/1.2.1.15",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "aar/androidx.savedstate.savedstate-ktx.aar",
- "build/net8.0-android34.0/Xamarin.AndroidX.SavedState.SavedState.Ktx.targets",
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.SavedState.SavedState.Ktx.targets",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.AndroidX.SavedState.SavedState.Ktx.dll",
- "lib/net8.0-android34.0/Xamarin.AndroidX.SavedState.SavedState.Ktx.pdb",
- "lib/net8.0-android34.0/Xamarin.AndroidX.SavedState.SavedState.Ktx.xml",
- "readme.md",
- "xamarin.androidx.savedstate.savedstate.ktx.1.2.1.15.nupkg.sha512",
- "xamarin.androidx.savedstate.savedstate.ktx.nuspec"
- ]
- },
- "Xamarin.AndroidX.Security.SecurityCrypto/1.1.0.2-alpha06": {
- "sha512": "+icBMd2Y9SGwmxF+1jb37U2KbDFH6tzRVH6unWWf6qdnMxyJlrrTqLCCxDBmteQzOShNEyDxgFxE88KHHbM+8g==",
- "type": "package",
- "path": "xamarin.androidx.security.securitycrypto/1.1.0.2-alpha06",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "aar/androidx.security.security-crypto.aar",
- "build/net8.0-android34.0/Xamarin.AndroidX.Security.SecurityCrypto.targets",
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Security.SecurityCrypto.targets",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Security.SecurityCrypto.dll",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Security.SecurityCrypto.pdb",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Security.SecurityCrypto.xml",
- "readme.md",
- "xamarin.androidx.security.securitycrypto.1.1.0.2-alpha06.nupkg.sha512",
- "xamarin.androidx.security.securitycrypto.nuspec"
- ]
- },
- "Xamarin.AndroidX.SlidingPaneLayout/1.2.0.19": {
- "sha512": "4+9L2MEsvVBS4Vl33uRwLWXKU2w0IBvCXTd6LE7r/4gsQV3anfRv6IM5aBGu2DfsbuxTR6LMfYW0ZomVVux7zw==",
- "type": "package",
- "path": "xamarin.androidx.slidingpanelayout/1.2.0.19",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "aar/androidx.slidingpanelayout.slidingpanelayout.aar",
- "build/net8.0-android34.0/Xamarin.AndroidX.SlidingPaneLayout.targets",
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.SlidingPaneLayout.targets",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.AndroidX.SlidingPaneLayout.dll",
- "lib/net8.0-android34.0/Xamarin.AndroidX.SlidingPaneLayout.pdb",
- "lib/net8.0-android34.0/Xamarin.AndroidX.SlidingPaneLayout.xml",
- "readme.md",
- "xamarin.androidx.slidingpanelayout.1.2.0.19.nupkg.sha512",
- "xamarin.androidx.slidingpanelayout.nuspec"
- ]
- },
- "Xamarin.AndroidX.Startup.StartupRuntime/1.2.0.2": {
- "sha512": "Ik2yXid3zx1QkPJUK29JS5sNb2HQhoj1qAWXXyDN5WVaQaLAVLVaP/IL86BRIZCsr5LAPFWtG2gD56s0eDcYRA==",
- "type": "package",
- "path": "xamarin.androidx.startup.startupruntime/1.2.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "aar/androidx.startup.startup-runtime.aar",
- "build/net8.0-android34.0/Xamarin.AndroidX.Startup.StartupRuntime.targets",
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Startup.StartupRuntime.targets",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Startup.StartupRuntime.dll",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Startup.StartupRuntime.pdb",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Startup.StartupRuntime.xml",
- "proguard/proguard.txt",
- "readme.md",
- "xamarin.androidx.startup.startupruntime.1.2.0.2.nupkg.sha512",
- "xamarin.androidx.startup.startupruntime.nuspec"
- ]
- },
- "Xamarin.AndroidX.SwipeRefreshLayout/1.1.0.24": {
- "sha512": "GAmdULjxDSlAlKC3fgPZQufWPCbLlLLPzXlZmil49AqVAybG0AqgS1V9os0ia2+M4mgx4Fh5jTIthoQqKEHKhQ==",
- "type": "package",
- "path": "xamarin.androidx.swiperefreshlayout/1.1.0.24",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "aar/androidx.swiperefreshlayout.swiperefreshlayout.aar",
- "build/net8.0-android34.0/Xamarin.AndroidX.SwipeRefreshLayout.targets",
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.SwipeRefreshLayout.targets",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.AndroidX.SwipeRefreshLayout.dll",
- "lib/net8.0-android34.0/Xamarin.AndroidX.SwipeRefreshLayout.pdb",
- "lib/net8.0-android34.0/Xamarin.AndroidX.SwipeRefreshLayout.xml",
- "readme.md",
- "xamarin.androidx.swiperefreshlayout.1.1.0.24.nupkg.sha512",
- "xamarin.androidx.swiperefreshlayout.nuspec"
- ]
- },
- "Xamarin.AndroidX.Tracing.Tracing/1.2.0.9": {
- "sha512": "77llmMJucRZMl7TCTUohL8chRZHGi6NORRfxgtsDMbK/xdXY0fwlZPdiKJmhwEi6R5dUuSMhoYa2yRIYzWjkfw==",
- "type": "package",
- "path": "xamarin.androidx.tracing.tracing/1.2.0.9",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "aar/androidx.tracing.tracing.aar",
- "build/net8.0-android34.0/Xamarin.AndroidX.Tracing.Tracing.targets",
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Tracing.Tracing.targets",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Tracing.Tracing.dll",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Tracing.Tracing.pdb",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Tracing.Tracing.xml",
- "readme.md",
- "xamarin.androidx.tracing.tracing.1.2.0.9.nupkg.sha512",
- "xamarin.androidx.tracing.tracing.nuspec"
- ]
- },
- "Xamarin.AndroidX.Transition/1.5.1.4": {
- "sha512": "ljoKD4Mt70yZGeZJioo5ZTioWvSNQyYnpP659hmnjv0j+47VMzQaRg8+rAsoTc2U1mckB1gZEocrMZVOKAxuAg==",
- "type": "package",
- "path": "xamarin.androidx.transition/1.5.1.4",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "aar/androidx.transition.transition.aar",
- "build/net8.0-android34.0/Xamarin.AndroidX.Transition.targets",
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Transition.targets",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Transition.dll",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Transition.pdb",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Transition.xml",
- "proguard/proguard.txt",
- "readme.md",
- "xamarin.androidx.transition.1.5.1.4.nupkg.sha512",
- "xamarin.androidx.transition.nuspec"
- ]
- },
- "Xamarin.AndroidX.VectorDrawable/1.2.0.5": {
- "sha512": "HVnWBcwV1jUwPRXnFMnvI6VvLFZvyteHVzIHsz01GndXjnMAz4rN8x1KzCK/qISyMGtVT1QH/xqHap6ze9pIRQ==",
- "type": "package",
- "path": "xamarin.androidx.vectordrawable/1.2.0.5",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "aar/androidx.vectordrawable.vectordrawable.aar",
- "build/net8.0-android34.0/Xamarin.AndroidX.VectorDrawable.targets",
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.VectorDrawable.targets",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.AndroidX.VectorDrawable.dll",
- "lib/net8.0-android34.0/Xamarin.AndroidX.VectorDrawable.pdb",
- "lib/net8.0-android34.0/Xamarin.AndroidX.VectorDrawable.xml",
- "readme.md",
- "xamarin.androidx.vectordrawable.1.2.0.5.nupkg.sha512",
- "xamarin.androidx.vectordrawable.nuspec"
- ]
- },
- "Xamarin.AndroidX.VectorDrawable.Animated/1.2.0.5": {
- "sha512": "pZx+O0ySRnj58oXgMRRVpkFNqdjwPbeg5NaqIqzBGLIKScSl5pKSo55yESZR+NlvtDCCnEdQxRyUVeXy0BmglQ==",
- "type": "package",
- "path": "xamarin.androidx.vectordrawable.animated/1.2.0.5",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "aar/androidx.vectordrawable.vectordrawable-animated.aar",
- "build/net8.0-android34.0/Xamarin.AndroidX.VectorDrawable.Animated.targets",
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.VectorDrawable.Animated.targets",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.AndroidX.VectorDrawable.Animated.dll",
- "lib/net8.0-android34.0/Xamarin.AndroidX.VectorDrawable.Animated.pdb",
- "lib/net8.0-android34.0/Xamarin.AndroidX.VectorDrawable.Animated.xml",
- "proguard/proguard.txt",
- "readme.md",
- "xamarin.androidx.vectordrawable.animated.1.2.0.5.nupkg.sha512",
- "xamarin.androidx.vectordrawable.animated.nuspec"
- ]
- },
- "Xamarin.AndroidX.VersionedParcelable/1.2.0.9": {
- "sha512": "kxpD4u4E8T+MiavWPlfh2wGMQ3IfVaTmiehMdcl5xuIFOSABVpNKfQinsGu0NeCre4+gl3dtAn8HhuzfMG6DVg==",
- "type": "package",
- "path": "xamarin.androidx.versionedparcelable/1.2.0.9",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "aar/androidx.versionedparcelable.versionedparcelable.aar",
- "build/net8.0-android34.0/Xamarin.AndroidX.VersionedParcelable.targets",
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.VersionedParcelable.targets",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.AndroidX.VersionedParcelable.dll",
- "lib/net8.0-android34.0/Xamarin.AndroidX.VersionedParcelable.pdb",
- "lib/net8.0-android34.0/Xamarin.AndroidX.VersionedParcelable.xml",
- "proguard/proguard.txt",
- "readme.md",
- "xamarin.androidx.versionedparcelable.1.2.0.9.nupkg.sha512",
- "xamarin.androidx.versionedparcelable.nuspec"
- ]
- },
- "Xamarin.AndroidX.ViewPager/1.1.0.1": {
- "sha512": "h7APfXP1Em/vgcF90IzrVCVMgskpAhkLx+ekPVXoDX215JmWL54x0k8uRgKh/crE1TxJq8fAeQaoEXI7/Q8PAQ==",
- "type": "package",
- "path": "xamarin.androidx.viewpager/1.1.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "aar/androidx.viewpager.viewpager.aar",
- "build/net8.0-android34.0/Xamarin.AndroidX.ViewPager.targets",
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.ViewPager.targets",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.AndroidX.ViewPager.dll",
- "lib/net8.0-android34.0/Xamarin.AndroidX.ViewPager.pdb",
- "lib/net8.0-android34.0/Xamarin.AndroidX.ViewPager.xml",
- "readme.md",
- "xamarin.androidx.viewpager.1.1.0.1.nupkg.sha512",
- "xamarin.androidx.viewpager.nuspec"
- ]
- },
- "Xamarin.AndroidX.ViewPager2/1.1.0.5": {
- "sha512": "dh4zxhWw0+/TWqkycrFpIruCQ3pNFLqIis9DJ4IEr0aZ80X0wsJXi7g7I5NlX8du9p4pDtIvW4Bgvd7TA+KbqQ==",
- "type": "package",
- "path": "xamarin.androidx.viewpager2/1.1.0.5",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "aar/androidx.viewpager2.viewpager2.aar",
- "build/net8.0-android34.0/Xamarin.AndroidX.ViewPager2.targets",
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.ViewPager2.targets",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.AndroidX.ViewPager2.dll",
- "lib/net8.0-android34.0/Xamarin.AndroidX.ViewPager2.pdb",
- "lib/net8.0-android34.0/Xamarin.AndroidX.ViewPager2.xml",
- "readme.md",
- "xamarin.androidx.viewpager2.1.1.0.5.nupkg.sha512",
- "xamarin.androidx.viewpager2.nuspec"
- ]
- },
- "Xamarin.AndroidX.Window/1.3.0.5": {
- "sha512": "Gic/T2bstcn5+tnxmAydN3lfmX1fQwuyLzzZzVaNS9iF1GFu6qIu8L798E8FSw6OQ7GsDjT349yVOmXf+sgXEg==",
- "type": "package",
- "path": "xamarin.androidx.window/1.3.0.5",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "aar/androidx.window.window.aar",
- "build/net8.0-android34.0/Xamarin.AndroidX.Window.targets",
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Window.targets",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Window.dll",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Window.pdb",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Window.xml",
- "proguard/proguard.txt",
- "readme.md",
- "xamarin.androidx.window.1.3.0.5.nupkg.sha512",
- "xamarin.androidx.window.nuspec"
- ]
- },
- "Xamarin.AndroidX.Window.Extensions.Core.Core/1.0.0.13": {
- "sha512": "iT/EU4k1anl3/xSpOORa+RVPYQvGWSxJOIh1PmHopiyogaYMnNVDoptR0s8HFScwl4999gcz988vp25NnxY5hw==",
- "type": "package",
- "path": "xamarin.androidx.window.extensions.core.core/1.0.0.13",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "aar/androidx.window.extensions.core.core.aar",
- "build/net8.0-android34.0/Xamarin.AndroidX.Window.Extensions.Core.Core.targets",
- "buildTransitive/net8.0-android34.0/Xamarin.AndroidX.Window.Extensions.Core.Core.targets",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Window.Extensions.Core.Core.dll",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Window.Extensions.Core.Core.pdb",
- "lib/net8.0-android34.0/Xamarin.AndroidX.Window.Extensions.Core.Core.xml",
- "proguard/proguard.txt",
- "readme.md",
- "xamarin.androidx.window.extensions.core.core.1.0.0.13.nupkg.sha512",
- "xamarin.androidx.window.extensions.core.core.nuspec"
- ]
- },
- "Xamarin.Google.Android.Material/1.12.0.2": {
- "sha512": "KUMetCNIFLEgIn4bbRubwQfjkTsZmgC3cqc2DNGZRh5fd8FSoyiPXHauul67Dv9xDZOQ4AinyMnehP+U1LERqQ==",
- "type": "package",
- "path": "xamarin.google.android.material/1.12.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "aar/com.google.android.material.material.aar",
- "build/net8.0-android34.0/Xamarin.Google.Android.Material.targets",
- "buildTransitive/net8.0-android34.0/Xamarin.Google.Android.Material.targets",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.Google.Android.Material.dll",
- "lib/net8.0-android34.0/Xamarin.Google.Android.Material.pdb",
- "lib/net8.0-android34.0/Xamarin.Google.Android.Material.xml",
- "proguard/proguard.txt",
- "readme.md",
- "xamarin.google.android.material.1.12.0.2.nupkg.sha512",
- "xamarin.google.android.material.nuspec"
- ]
- },
- "Xamarin.Google.Code.FindBugs.JSR305/3.0.2.18": {
- "sha512": "rFLx6y4TBjVRGmLRCvcC5KaQmnZfZg0iv9p3ayD4iWLQXwDMfnZO1ENtEpQioRA0KBWrs4fTYdqMIfY4uDWYgA==",
- "type": "package",
- "path": "xamarin.google.code.findbugs.jsr305/3.0.2.18",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "icon.png",
- "lib/net8.0-android34.0/Jsr305Binding.aar",
- "lib/net8.0-android34.0/Jsr305Binding.dll",
- "lib/net8.0-android34.0/Jsr305Binding.pdb",
- "lib/net8.0-android34.0/Jsr305Binding.xml",
- "readme.md",
- "xamarin.google.code.findbugs.jsr305.3.0.2.18.nupkg.sha512",
- "xamarin.google.code.findbugs.jsr305.nuspec"
- ]
- },
- "Xamarin.Google.Crypto.Tink.Android/1.16.0.1": {
- "sha512": "172BdvMw0QQbIcdlMD+h3RqYZP0QdDpamiUX5XkS5taxUpuLQyXZvYdD7ojE9I+MsG76dVFkf1tcIqaEh2PbAw==",
- "type": "package",
- "path": "xamarin.google.crypto.tink.android/1.16.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.Google.Crypto.Tink.Android.aar",
- "lib/net8.0-android34.0/Xamarin.Google.Crypto.Tink.Android.dll",
- "lib/net8.0-android34.0/Xamarin.Google.Crypto.Tink.Android.pdb",
- "lib/net8.0-android34.0/Xamarin.Google.Crypto.Tink.Android.xml",
- "readme.md",
- "xamarin.google.crypto.tink.android.1.16.0.1.nupkg.sha512",
- "xamarin.google.crypto.tink.android.nuspec"
- ]
- },
- "Xamarin.Google.ErrorProne.Annotations/2.36.0.1": {
- "sha512": "cewMANme3ub5WWR0BsfopR7pC934M1gU3Y6xkyv8dVX6wXf+WUqNK9kYegbkFj+TwSGi4/NmYONnn6tnIYks6g==",
- "type": "package",
- "path": "xamarin.google.errorprone.annotations/2.36.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.Google.ErrorProne.Annotations.aar",
- "lib/net8.0-android34.0/Xamarin.Google.ErrorProne.Annotations.dll",
- "lib/net8.0-android34.0/Xamarin.Google.ErrorProne.Annotations.pdb",
- "lib/net8.0-android34.0/Xamarin.Google.ErrorProne.Annotations.xml",
- "readme.md",
- "xamarin.google.errorprone.annotations.2.36.0.1.nupkg.sha512",
- "xamarin.google.errorprone.annotations.nuspec"
- ]
- },
- "Xamarin.Google.Guava.ListenableFuture/1.0.0.26": {
- "sha512": "Wk2aEEHkf+eUzOh2VP25WDeMv6+fuSWn6855q2TUBHgoNr2Pbf0EKwpwmp9F/guicQT7Lv6uGeL683whxG77zw==",
- "type": "package",
- "path": "xamarin.google.guava.listenablefuture/1.0.0.26",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.Google.Guava.ListenableFuture.aar",
- "lib/net8.0-android34.0/Xamarin.Google.Guava.ListenableFuture.dll",
- "lib/net8.0-android34.0/Xamarin.Google.Guava.ListenableFuture.pdb",
- "lib/net8.0-android34.0/Xamarin.Google.Guava.ListenableFuture.xml",
- "readme.md",
- "xamarin.google.guava.listenablefuture.1.0.0.26.nupkg.sha512",
- "xamarin.google.guava.listenablefuture.nuspec"
- ]
- },
- "Xamarin.Jetbrains.Annotations/26.0.1.2": {
- "sha512": "DOisFzVBxGJyVnEigVmVSOmwmXh/h5NdpWd+R5w7kQa6NgX2pA8/e/vRAKjpvKMOfxyPbJHRaciZblyCaqIHqg==",
- "type": "package",
- "path": "xamarin.jetbrains.annotations/26.0.1.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.Jetbrains.Annotations.aar",
- "lib/net8.0-android34.0/Xamarin.Jetbrains.Annotations.dll",
- "lib/net8.0-android34.0/Xamarin.Jetbrains.Annotations.pdb",
- "lib/net8.0-android34.0/Xamarin.Jetbrains.Annotations.xml",
- "readme.md",
- "xamarin.jetbrains.annotations.26.0.1.2.nupkg.sha512",
- "xamarin.jetbrains.annotations.nuspec"
- ]
- },
- "Xamarin.Kotlin.StdLib/2.0.21.2": {
- "sha512": "LlGF0zS23SmGvZfIL5wF/l4fTAJJgkPgIi0+keIXzDrNfZ/LzN0Yb/FXigUzEtpVTISIjRv1pWY4s/7bItTEYQ==",
- "type": "package",
- "path": "xamarin.kotlin.stdlib/2.0.21.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.Kotlin.StdLib.aar",
- "lib/net8.0-android34.0/Xamarin.Kotlin.StdLib.dll",
- "lib/net8.0-android34.0/Xamarin.Kotlin.StdLib.pdb",
- "lib/net8.0-android34.0/Xamarin.Kotlin.StdLib.xml",
- "readme.md",
- "xamarin.kotlin.stdlib.2.0.21.2.nupkg.sha512",
- "xamarin.kotlin.stdlib.nuspec"
- ]
- },
- "Xamarin.KotlinX.AtomicFU/0.26.1.1": {
- "sha512": "0/IhRaH5/uuZOrZ8QEaWudv8lGjPO/cU4QhxWYaDp5zW6oG3Nu+954IxUpJE5XxsR8okrJ2I6zaMVy48c6gdmQ==",
- "type": "package",
- "path": "xamarin.kotlinx.atomicfu/0.26.1.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.KotlinX.AtomicFU.aar",
- "lib/net8.0-android34.0/Xamarin.KotlinX.AtomicFU.dll",
- "lib/net8.0-android34.0/Xamarin.KotlinX.AtomicFU.pdb",
- "lib/net8.0-android34.0/Xamarin.KotlinX.AtomicFU.xml",
- "readme.md",
- "xamarin.kotlinx.atomicfu.0.26.1.1.nupkg.sha512",
- "xamarin.kotlinx.atomicfu.nuspec"
- ]
- },
- "Xamarin.KotlinX.AtomicFU.Jvm/0.26.1.1": {
- "sha512": "DLqcqmkiek8uVTreL8bToLSDrXIcVveNsKjf8O/BIp8DuPOGeFnKHfvurFUUKLNSlaWTPrAX+x5BINUQ2DS5Bg==",
- "type": "package",
- "path": "xamarin.kotlinx.atomicfu.jvm/0.26.1.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.KotlinX.AtomicFU.Jvm.aar",
- "lib/net8.0-android34.0/Xamarin.KotlinX.AtomicFU.Jvm.dll",
- "lib/net8.0-android34.0/Xamarin.KotlinX.AtomicFU.Jvm.pdb",
- "lib/net8.0-android34.0/Xamarin.KotlinX.AtomicFU.Jvm.xml",
- "readme.md",
- "xamarin.kotlinx.atomicfu.jvm.0.26.1.1.nupkg.sha512",
- "xamarin.kotlinx.atomicfu.jvm.nuspec"
- ]
- },
- "Xamarin.KotlinX.Coroutines.Android/1.9.0.2": {
- "sha512": "yOjgPBxrFBXljpaIu514jnxqMZMWE+BMprfoJGHr2hzUKsHPjT5oOOex6O4GAYMJlV4dFMK/7XFFAwNDAfjOAA==",
- "type": "package",
- "path": "xamarin.kotlinx.coroutines.android/1.9.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.KotlinX.Coroutines.Android.aar",
- "lib/net8.0-android34.0/Xamarin.KotlinX.Coroutines.Android.dll",
- "lib/net8.0-android34.0/Xamarin.KotlinX.Coroutines.Android.pdb",
- "lib/net8.0-android34.0/Xamarin.KotlinX.Coroutines.Android.xml",
- "readme.md",
- "xamarin.kotlinx.coroutines.android.1.9.0.2.nupkg.sha512",
- "xamarin.kotlinx.coroutines.android.nuspec"
- ]
- },
- "Xamarin.KotlinX.Coroutines.Core/1.9.0.2": {
- "sha512": "v0NQ3S8sYO1h0NeeA3NNfrJ5r6xh/mcBj5K5rCL3MEZ9I3U1em2/t5zQqSlh5fKQIPKnoWszCxJpyX2PJkV1IQ==",
- "type": "package",
- "path": "xamarin.kotlinx.coroutines.core/1.9.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.KotlinX.Coroutines.Core.aar",
- "lib/net8.0-android34.0/Xamarin.KotlinX.Coroutines.Core.dll",
- "lib/net8.0-android34.0/Xamarin.KotlinX.Coroutines.Core.pdb",
- "lib/net8.0-android34.0/Xamarin.KotlinX.Coroutines.Core.xml",
- "readme.md",
- "xamarin.kotlinx.coroutines.core.1.9.0.2.nupkg.sha512",
- "xamarin.kotlinx.coroutines.core.nuspec"
- ]
- },
- "Xamarin.KotlinX.Coroutines.Core.Jvm/1.9.0.2": {
- "sha512": "Cc+hHAQaSvm4RiXzXFdqOnDHFe7cNI2OxFRUXl3H3qQ7J5Hi75pQHng7ALcL5k8oOJTqLPIcKlCRVj86wPWwMg==",
- "type": "package",
- "path": "xamarin.kotlinx.coroutines.core.jvm/1.9.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.KotlinX.Coroutines.Core.Jvm.aar",
- "lib/net8.0-android34.0/Xamarin.KotlinX.Coroutines.Core.Jvm.dll",
- "lib/net8.0-android34.0/Xamarin.KotlinX.Coroutines.Core.Jvm.pdb",
- "lib/net8.0-android34.0/Xamarin.KotlinX.Coroutines.Core.Jvm.xml",
- "readme.md",
- "xamarin.kotlinx.coroutines.core.jvm.1.9.0.2.nupkg.sha512",
- "xamarin.kotlinx.coroutines.core.jvm.nuspec"
- ]
- },
- "Xamarin.KotlinX.Serialization.Core/1.7.3.2": {
- "sha512": "7lh7u2iQ4nb5Z4pIrTj2i5pDpWd63od+57HSRJKKskdidfAw/vgG0tAtlH5GxU3xxF+4s68x3fsw6CMmgYwDCA==",
- "type": "package",
- "path": "xamarin.kotlinx.serialization.core/1.7.3.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.KotlinX.Serialization.Core.aar",
- "lib/net8.0-android34.0/Xamarin.KotlinX.Serialization.Core.dll",
- "lib/net8.0-android34.0/Xamarin.KotlinX.Serialization.Core.pdb",
- "lib/net8.0-android34.0/Xamarin.KotlinX.Serialization.Core.xml",
- "readme.md",
- "xamarin.kotlinx.serialization.core.1.7.3.2.nupkg.sha512",
- "xamarin.kotlinx.serialization.core.nuspec"
- ]
- },
- "Xamarin.KotlinX.Serialization.Core.Jvm/1.7.3.2": {
- "sha512": "vMNJ7MGGJQiNoxYgHc9E5Zslcqi1rZGfMME6Wv1JfIjQRORgVS3p+8KJkxZXwx8l/COawqF14YoY4reoTrUK/g==",
- "type": "package",
- "path": "xamarin.kotlinx.serialization.core.jvm/1.7.3.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "THIRD-PARTY-NOTICES.txt",
- "_manifest/spdx_2.2/manifest.spdx.json",
- "_manifest/spdx_2.2/manifest.spdx.json.sha256",
- "icon.png",
- "lib/net8.0-android34.0/Xamarin.KotlinX.Serialization.Core.Jvm.aar",
- "lib/net8.0-android34.0/Xamarin.KotlinX.Serialization.Core.Jvm.dll",
- "lib/net8.0-android34.0/Xamarin.KotlinX.Serialization.Core.Jvm.pdb",
- "lib/net8.0-android34.0/Xamarin.KotlinX.Serialization.Core.Jvm.xml",
- "readme.md",
- "xamarin.kotlinx.serialization.core.jvm.1.7.3.2.nupkg.sha512",
- "xamarin.kotlinx.serialization.core.jvm.nuspec"
- ]
- }
- },
- "projectFileDependencyGroups": {
- "net9.0-android35.0": [
- "FFMpegCore >= 5.2.0",
- "Microsoft.Extensions.Logging.Debug >= 9.0.0",
- "Microsoft.Maui.Controls >= 9.0.51",
- "Microsoft.NET.ILLink.Tasks >= 9.0.6"
- ],
- "net9.0-ios18.5": [
- "FFMpegCore >= 5.2.0",
- "Microsoft.Extensions.Logging.Debug >= 9.0.0",
- "Microsoft.Maui.Controls >= 9.0.51",
- "Microsoft.NET.ILLink.Tasks >= 9.0.6"
- ],
- "net9.0-maccatalyst18.5": [
- "FFMpegCore >= 5.2.0",
- "Microsoft.Extensions.Logging.Debug >= 9.0.0",
- "Microsoft.Maui.Controls >= 9.0.51",
- "Microsoft.NET.ILLink.Tasks >= 9.0.6"
- ],
- "net9.0-windows10.0.19041": [
- "FFMpegCore >= 5.2.0",
- "Microsoft.Extensions.Logging.Debug >= 9.0.0",
- "Microsoft.Maui.Controls >= 9.0.51"
- ]
- },
- "packageFolders": {
- "C:\\Users\\hello\\.nuget\\packages\\": {},
- "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
- },
- "project": {
- "version": "1.0.0",
- "restore": {
- "projectUniqueName": "C:\\tmp\\VideoClipper\\VideoClipper\\VideoClipper.csproj",
- "projectName": "VideoClipper",
- "projectPath": "C:\\tmp\\VideoClipper\\VideoClipper\\VideoClipper.csproj",
- "packagesPath": "C:\\Users\\hello\\.nuget\\packages\\",
- "outputPath": "C:\\tmp\\VideoClipper\\VideoClipper\\obj\\",
- "projectStyle": "PackageReference",
- "crossTargeting": true,
- "fallbackFolders": [
- "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
- ],
- "configFilePaths": [
- "C:\\Users\\hello\\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": [
- "net9.0-android",
- "net9.0-ios",
- "net9.0-maccatalyst",
- "net9.0-windows10.0.19041.0"
- ],
- "sources": {
- "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
- "C:\\Program Files\\dotnet\\library-packs": {},
- "https://api.nuget.org/v3/index.json": {}
- },
- "frameworks": {
- "net9.0-android35.0": {
- "targetAlias": "net9.0-android",
- "projectReferences": {}
- },
- "net9.0-ios18.5": {
- "targetAlias": "net9.0-ios",
- "projectReferences": {}
- },
- "net9.0-maccatalyst18.5": {
- "targetAlias": "net9.0-maccatalyst",
- "projectReferences": {}
- },
- "net9.0-windows10.0.19041": {
- "targetAlias": "net9.0-windows10.0.19041.0",
- "projectReferences": {}
- }
- },
- "warningProperties": {
- "warnAsError": [
- "NU1605"
- ]
- },
- "restoreAuditProperties": {
- "enableAudit": "true",
- "auditLevel": "low",
- "auditMode": "direct"
- },
- "SdkAnalysisLevel": "9.0.300"
- },
- "frameworks": {
- "net9.0-android35.0": {
- "targetAlias": "net9.0-android",
- "dependencies": {
- "FFMpegCore": {
- "target": "Package",
- "version": "[5.2.0, )"
- },
- "Microsoft.Extensions.Logging.Debug": {
- "target": "Package",
- "version": "[9.0.0, )"
- },
- "Microsoft.Maui.Controls": {
- "target": "Package",
- "version": "[9.0.51, )"
- },
- "Microsoft.NET.ILLink.Tasks": {
- "suppressParent": "All",
- "target": "Package",
- "version": "[9.0.6, )",
- "autoReferenced": true
- }
- },
- "imports": [
- "net461",
- "net462",
- "net47",
- "net471",
- "net472",
- "net48",
- "net481"
- ],
- "assetTargetFallback": true,
- "warn": true,
- "frameworkReferences": {
- "Microsoft.Android": {
- "privateAssets": "all"
- },
- "Microsoft.NETCore.App": {
- "privateAssets": "all"
- }
- },
- "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.301/PortableRuntimeIdentifierGraph.json"
- },
- "net9.0-ios18.5": {
- "targetAlias": "net9.0-ios",
- "dependencies": {
- "FFMpegCore": {
- "target": "Package",
- "version": "[5.2.0, )"
- },
- "Microsoft.Extensions.Logging.Debug": {
- "target": "Package",
- "version": "[9.0.0, )"
- },
- "Microsoft.Maui.Controls": {
- "target": "Package",
- "version": "[9.0.51, )"
- },
- "Microsoft.NET.ILLink.Tasks": {
- "suppressParent": "All",
- "target": "Package",
- "version": "[9.0.6, )",
- "autoReferenced": true
- }
- },
- "imports": [
- "net461",
- "net462",
- "net47",
- "net471",
- "net472",
- "net48",
- "net481"
- ],
- "assetTargetFallback": true,
- "warn": true,
- "frameworkReferences": {
- "Microsoft.iOS": {
- "privateAssets": "all"
- },
- "Microsoft.NETCore.App": {
- "privateAssets": "all"
- }
- },
- "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.301/PortableRuntimeIdentifierGraph.json"
- },
- "net9.0-maccatalyst18.5": {
- "targetAlias": "net9.0-maccatalyst",
- "dependencies": {
- "FFMpegCore": {
- "target": "Package",
- "version": "[5.2.0, )"
- },
- "Microsoft.Extensions.Logging.Debug": {
- "target": "Package",
- "version": "[9.0.0, )"
- },
- "Microsoft.Maui.Controls": {
- "target": "Package",
- "version": "[9.0.51, )"
- },
- "Microsoft.NET.ILLink.Tasks": {
- "suppressParent": "All",
- "target": "Package",
- "version": "[9.0.6, )",
- "autoReferenced": true
- }
- },
- "imports": [
- "xamarinios10",
- "net461",
- "net462",
- "net47",
- "net471",
- "net472",
- "net48",
- "net481"
- ],
- "assetTargetFallback": true,
- "warn": true,
- "frameworkReferences": {
- "Microsoft.MacCatalyst": {
- "privateAssets": "all"
- },
- "Microsoft.NETCore.App": {
- "privateAssets": "all"
- }
- },
- "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.301/PortableRuntimeIdentifierGraph.json"
- },
- "net9.0-windows10.0.19041": {
- "targetAlias": "net9.0-windows10.0.19041.0",
- "dependencies": {
- "FFMpegCore": {
- "target": "Package",
- "version": "[5.2.0, )"
- },
- "Microsoft.Extensions.Logging.Debug": {
- "target": "Package",
- "version": "[9.0.0, )"
- },
- "Microsoft.Maui.Controls": {
- "target": "Package",
- "version": "[9.0.51, )"
- }
- },
- "imports": [
- "net461",
- "net462",
- "net47",
- "net471",
- "net472",
- "net48",
- "net481"
- ],
- "assetTargetFallback": true,
- "warn": true,
- "downloadDependencies": [
- {
- "name": "Microsoft.AspNetCore.App.Runtime.win-x64",
- "version": "[9.0.6, 9.0.6]"
- },
- {
- "name": "Microsoft.NETCore.App.Crossgen2.win-x64",
- "version": "[9.0.6, 9.0.6]"
- },
- {
- "name": "Microsoft.NETCore.App.Runtime.win-x64",
- "version": "[9.0.6, 9.0.6]"
- },
- {
- "name": "Microsoft.Windows.SDK.NET.Ref",
- "version": "[10.0.19041.57, 10.0.19041.57]"
- },
- {
- "name": "Microsoft.WindowsDesktop.App.Runtime.win-x64",
- "version": "[9.0.6, 9.0.6]"
- }
- ],
- "frameworkReferences": {
- "Microsoft.NETCore.App": {
- "privateAssets": "all"
- },
- "Microsoft.Windows.SDK.NET.Ref.Windows": {
- "privateAssets": "all"
- }
- },
- "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.301\\RuntimeIdentifierGraph.json"
- }
- },
- "runtimes": {
- "android-arm64": {
- "#import": []
- },
- "android-x64": {
- "#import": []
- },
- "iossimulator-x64": {
- "#import": []
- },
- "maccatalyst-arm64": {
- "#import": []
- },
- "maccatalyst-x64": {
- "#import": []
- },
- "win10-x64": {
- "#import": []
- }
- }
- }
-}
\ No newline at end of file
diff --git a/VideoClipper/obj/project.nuget.cache b/VideoClipper/obj/project.nuget.cache
deleted file mode 100644
index c22e7b0..0000000
--- a/VideoClipper/obj/project.nuget.cache
+++ /dev/null
@@ -1,132 +0,0 @@
-{
- "version": 2,
- "dgSpecHash": "hlQXpoIGg6k=",
- "success": true,
- "projectFilePath": "C:\\tmp\\VideoClipper\\VideoClipper\\VideoClipper.csproj",
- "expectedPackageFiles": [
- "C:\\Users\\hello\\.nuget\\packages\\ffmpegcore\\5.2.0\\ffmpegcore.5.2.0.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\googlegson\\2.11.0.5\\googlegson.2.11.0.5.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\instances\\3.0.1\\instances.3.0.1.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\microsoft.extensions.configuration\\9.0.0\\microsoft.extensions.configuration.9.0.0.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\9.0.0\\microsoft.extensions.configuration.abstractions.9.0.0.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\9.0.0\\microsoft.extensions.dependencyinjection.9.0.0.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\9.0.0\\microsoft.extensions.dependencyinjection.abstractions.9.0.0.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\microsoft.extensions.logging\\9.0.0\\microsoft.extensions.logging.9.0.0.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\9.0.0\\microsoft.extensions.logging.abstractions.9.0.0.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\microsoft.extensions.logging.debug\\9.0.0\\microsoft.extensions.logging.debug.9.0.0.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\microsoft.extensions.options\\9.0.0\\microsoft.extensions.options.9.0.0.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\microsoft.extensions.primitives\\9.0.0\\microsoft.extensions.primitives.9.0.0.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\microsoft.graphics.win2d\\1.2.0\\microsoft.graphics.win2d.1.2.0.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\microsoft.io.recyclablememorystream\\3.0.1\\microsoft.io.recyclablememorystream.3.0.1.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\microsoft.maui.controls\\9.0.51\\microsoft.maui.controls.9.0.51.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\microsoft.maui.controls.build.tasks\\9.0.51\\microsoft.maui.controls.build.tasks.9.0.51.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\microsoft.maui.controls.core\\9.0.51\\microsoft.maui.controls.core.9.0.51.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\microsoft.maui.controls.xaml\\9.0.51\\microsoft.maui.controls.xaml.9.0.51.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\microsoft.maui.core\\9.0.51\\microsoft.maui.core.9.0.51.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\microsoft.maui.essentials\\9.0.51\\microsoft.maui.essentials.9.0.51.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\microsoft.maui.graphics\\9.0.51\\microsoft.maui.graphics.9.0.51.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\microsoft.maui.graphics.win2d.winui.desktop\\9.0.51\\microsoft.maui.graphics.win2d.winui.desktop.9.0.51.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\microsoft.maui.resizetizer\\9.0.51\\microsoft.maui.resizetizer.9.0.51.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\microsoft.net.illink.tasks\\9.0.6\\microsoft.net.illink.tasks.9.0.6.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\microsoft.web.webview2\\1.0.2903.40\\microsoft.web.webview2.1.0.2903.40.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\microsoft.windows.sdk.buildtools\\10.0.22621.756\\microsoft.windows.sdk.buildtools.10.0.22621.756.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\microsoft.windowsappsdk\\1.6.250205002\\microsoft.windowsappsdk.1.6.250205002.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\system.text.json\\9.0.2\\system.text.json.9.0.2.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.android.glide\\4.16.0.11\\xamarin.android.glide.4.16.0.11.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.android.glide.annotations\\4.16.0.11\\xamarin.android.glide.annotations.4.16.0.11.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.android.glide.disklrucache\\4.16.0.11\\xamarin.android.glide.disklrucache.4.16.0.11.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.android.glide.gifdecoder\\4.16.0.11\\xamarin.android.glide.gifdecoder.4.16.0.11.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.androidx.activity\\1.9.3.2\\xamarin.androidx.activity.1.9.3.2.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.androidx.activity.ktx\\1.9.3.2\\xamarin.androidx.activity.ktx.1.9.3.2.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.androidx.annotation\\1.9.1.2\\xamarin.androidx.annotation.1.9.1.2.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.androidx.annotation.experimental\\1.4.1.8\\xamarin.androidx.annotation.experimental.1.4.1.8.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.androidx.annotation.jvm\\1.9.1.2\\xamarin.androidx.annotation.jvm.1.9.1.2.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.androidx.appcompat\\1.7.0.5\\xamarin.androidx.appcompat.1.7.0.5.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.androidx.appcompat.appcompatresources\\1.7.0.5\\xamarin.androidx.appcompat.appcompatresources.1.7.0.5.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.androidx.arch.core.common\\2.2.0.15\\xamarin.androidx.arch.core.common.2.2.0.15.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.androidx.arch.core.runtime\\2.2.0.15\\xamarin.androidx.arch.core.runtime.2.2.0.15.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.androidx.browser\\1.8.0.8\\xamarin.androidx.browser.1.8.0.8.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.androidx.cardview\\1.0.0.33\\xamarin.androidx.cardview.1.0.0.33.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.androidx.collection\\1.4.5.2\\xamarin.androidx.collection.1.4.5.2.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.androidx.collection.jvm\\1.4.5.2\\xamarin.androidx.collection.jvm.1.4.5.2.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.androidx.collection.ktx\\1.4.5.2\\xamarin.androidx.collection.ktx.1.4.5.2.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.androidx.concurrent.futures\\1.2.0.5\\xamarin.androidx.concurrent.futures.1.2.0.5.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.androidx.constraintlayout\\2.2.0.2\\xamarin.androidx.constraintlayout.2.2.0.2.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.androidx.constraintlayout.core\\1.1.0.2\\xamarin.androidx.constraintlayout.core.1.1.0.2.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.androidx.coordinatorlayout\\1.2.0.19\\xamarin.androidx.coordinatorlayout.1.2.0.19.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.androidx.core\\1.15.0.2\\xamarin.androidx.core.1.15.0.2.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.androidx.core.core.ktx\\1.15.0.2\\xamarin.androidx.core.core.ktx.1.15.0.2.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.androidx.cursoradapter\\1.0.0.31\\xamarin.androidx.cursoradapter.1.0.0.31.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.androidx.customview\\1.1.0.30\\xamarin.androidx.customview.1.1.0.30.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.androidx.customview.poolingcontainer\\1.0.0.17\\xamarin.androidx.customview.poolingcontainer.1.0.0.17.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.androidx.documentfile\\1.0.1.31\\xamarin.androidx.documentfile.1.0.1.31.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.androidx.drawerlayout\\1.2.0.15\\xamarin.androidx.drawerlayout.1.2.0.15.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.androidx.dynamicanimation\\1.0.0.31\\xamarin.androidx.dynamicanimation.1.0.0.31.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.androidx.emoji2\\1.5.0.3\\xamarin.androidx.emoji2.1.5.0.3.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.androidx.emoji2.viewshelper\\1.5.0.3\\xamarin.androidx.emoji2.viewshelper.1.5.0.3.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.androidx.exifinterface\\1.3.7.9\\xamarin.androidx.exifinterface.1.3.7.9.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.androidx.fragment\\1.8.5.2\\xamarin.androidx.fragment.1.8.5.2.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.androidx.fragment.ktx\\1.8.5.2\\xamarin.androidx.fragment.ktx.1.8.5.2.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.androidx.interpolator\\1.0.0.31\\xamarin.androidx.interpolator.1.0.0.31.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.androidx.legacy.support.core.utils\\1.0.0.31\\xamarin.androidx.legacy.support.core.utils.1.0.0.31.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.androidx.lifecycle.common\\2.8.7.2\\xamarin.androidx.lifecycle.common.2.8.7.2.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.androidx.lifecycle.common.jvm\\2.8.7.2\\xamarin.androidx.lifecycle.common.jvm.2.8.7.2.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.androidx.lifecycle.livedata\\2.8.7.2\\xamarin.androidx.lifecycle.livedata.2.8.7.2.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.androidx.lifecycle.livedata.core\\2.8.7.2\\xamarin.androidx.lifecycle.livedata.core.2.8.7.2.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.androidx.lifecycle.livedata.core.ktx\\2.8.7.2\\xamarin.androidx.lifecycle.livedata.core.ktx.2.8.7.2.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.androidx.lifecycle.process\\2.8.7.2\\xamarin.androidx.lifecycle.process.2.8.7.2.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.androidx.lifecycle.runtime\\2.8.7.2\\xamarin.androidx.lifecycle.runtime.2.8.7.2.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.androidx.lifecycle.runtime.android\\2.8.7.2\\xamarin.androidx.lifecycle.runtime.android.2.8.7.2.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.androidx.lifecycle.runtime.ktx\\2.8.7.2\\xamarin.androidx.lifecycle.runtime.ktx.2.8.7.2.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.androidx.lifecycle.runtime.ktx.android\\2.8.7.2\\xamarin.androidx.lifecycle.runtime.ktx.android.2.8.7.2.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.androidx.lifecycle.viewmodel\\2.8.7.2\\xamarin.androidx.lifecycle.viewmodel.2.8.7.2.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.androidx.lifecycle.viewmodel.android\\2.8.7.2\\xamarin.androidx.lifecycle.viewmodel.android.2.8.7.2.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.androidx.lifecycle.viewmodel.ktx\\2.8.7.2\\xamarin.androidx.lifecycle.viewmodel.ktx.2.8.7.2.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.androidx.lifecycle.viewmodelsavedstate\\2.8.7.2\\xamarin.androidx.lifecycle.viewmodelsavedstate.2.8.7.2.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.androidx.loader\\1.1.0.31\\xamarin.androidx.loader.1.1.0.31.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.androidx.localbroadcastmanager\\1.1.0.19\\xamarin.androidx.localbroadcastmanager.1.1.0.19.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.androidx.navigation.common\\2.8.5.1\\xamarin.androidx.navigation.common.2.8.5.1.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.androidx.navigation.fragment\\2.8.5.1\\xamarin.androidx.navigation.fragment.2.8.5.1.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.androidx.navigation.runtime\\2.8.5.1\\xamarin.androidx.navigation.runtime.2.8.5.1.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.androidx.navigation.ui\\2.8.5.1\\xamarin.androidx.navigation.ui.2.8.5.1.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.androidx.print\\1.0.0.31\\xamarin.androidx.print.1.0.0.31.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.androidx.profileinstaller.profileinstaller\\1.4.1.2\\xamarin.androidx.profileinstaller.profileinstaller.1.4.1.2.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.androidx.recyclerview\\1.3.2.10\\xamarin.androidx.recyclerview.1.3.2.10.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.androidx.resourceinspection.annotation\\1.0.1.19\\xamarin.androidx.resourceinspection.annotation.1.0.1.19.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.androidx.savedstate\\1.2.1.15\\xamarin.androidx.savedstate.1.2.1.15.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.androidx.savedstate.savedstate.ktx\\1.2.1.15\\xamarin.androidx.savedstate.savedstate.ktx.1.2.1.15.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.androidx.security.securitycrypto\\1.1.0.2-alpha06\\xamarin.androidx.security.securitycrypto.1.1.0.2-alpha06.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.androidx.slidingpanelayout\\1.2.0.19\\xamarin.androidx.slidingpanelayout.1.2.0.19.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.androidx.startup.startupruntime\\1.2.0.2\\xamarin.androidx.startup.startupruntime.1.2.0.2.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.androidx.swiperefreshlayout\\1.1.0.24\\xamarin.androidx.swiperefreshlayout.1.1.0.24.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.androidx.tracing.tracing\\1.2.0.9\\xamarin.androidx.tracing.tracing.1.2.0.9.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.androidx.transition\\1.5.1.4\\xamarin.androidx.transition.1.5.1.4.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.androidx.vectordrawable\\1.2.0.5\\xamarin.androidx.vectordrawable.1.2.0.5.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.androidx.vectordrawable.animated\\1.2.0.5\\xamarin.androidx.vectordrawable.animated.1.2.0.5.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.androidx.versionedparcelable\\1.2.0.9\\xamarin.androidx.versionedparcelable.1.2.0.9.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.androidx.viewpager\\1.1.0.1\\xamarin.androidx.viewpager.1.1.0.1.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.androidx.viewpager2\\1.1.0.5\\xamarin.androidx.viewpager2.1.1.0.5.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.androidx.window\\1.3.0.5\\xamarin.androidx.window.1.3.0.5.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.androidx.window.extensions.core.core\\1.0.0.13\\xamarin.androidx.window.extensions.core.core.1.0.0.13.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.google.android.material\\1.12.0.2\\xamarin.google.android.material.1.12.0.2.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.google.code.findbugs.jsr305\\3.0.2.18\\xamarin.google.code.findbugs.jsr305.3.0.2.18.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.google.crypto.tink.android\\1.16.0.1\\xamarin.google.crypto.tink.android.1.16.0.1.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.google.errorprone.annotations\\2.36.0.1\\xamarin.google.errorprone.annotations.2.36.0.1.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.google.guava.listenablefuture\\1.0.0.26\\xamarin.google.guava.listenablefuture.1.0.0.26.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.jetbrains.annotations\\26.0.1.2\\xamarin.jetbrains.annotations.26.0.1.2.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.kotlin.stdlib\\2.0.21.2\\xamarin.kotlin.stdlib.2.0.21.2.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.kotlinx.atomicfu\\0.26.1.1\\xamarin.kotlinx.atomicfu.0.26.1.1.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.kotlinx.atomicfu.jvm\\0.26.1.1\\xamarin.kotlinx.atomicfu.jvm.0.26.1.1.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.kotlinx.coroutines.android\\1.9.0.2\\xamarin.kotlinx.coroutines.android.1.9.0.2.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.kotlinx.coroutines.core\\1.9.0.2\\xamarin.kotlinx.coroutines.core.1.9.0.2.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.kotlinx.coroutines.core.jvm\\1.9.0.2\\xamarin.kotlinx.coroutines.core.jvm.1.9.0.2.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.kotlinx.serialization.core\\1.7.3.2\\xamarin.kotlinx.serialization.core.1.7.3.2.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\xamarin.kotlinx.serialization.core.jvm\\1.7.3.2\\xamarin.kotlinx.serialization.core.jvm.1.7.3.2.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\microsoft.netcore.app.crossgen2.win-x64\\9.0.6\\microsoft.netcore.app.crossgen2.win-x64.9.0.6.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\microsoft.windows.sdk.net.ref\\10.0.19041.57\\microsoft.windows.sdk.net.ref.10.0.19041.57.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\microsoft.aspnetcore.app.runtime.win-x64\\9.0.6\\microsoft.aspnetcore.app.runtime.win-x64.9.0.6.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\microsoft.windowsdesktop.app.runtime.win-x64\\9.0.6\\microsoft.windowsdesktop.app.runtime.win-x64.9.0.6.nupkg.sha512",
- "C:\\Users\\hello\\.nuget\\packages\\microsoft.netcore.app.runtime.win-x64\\9.0.6\\microsoft.netcore.app.runtime.win-x64.9.0.6.nupkg.sha512"
- ],
- "logs": []
-}
\ No newline at end of file
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..ff93803
--- /dev/null
+++ b/index.html
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+ Tauri + React + Typescript
+
+
+
+
+
+
+
diff --git a/package-lock.json b/package-lock.json
new file mode 100644
index 0000000..915e3de
--- /dev/null
+++ b/package-lock.json
@@ -0,0 +1,2947 @@
+{
+ "name": "videoclipper",
+ "version": "0.0.2",
+ "lockfileVersion": 3,
+ "requires": true,
+ "packages": {
+ "": {
+ "name": "videoclipper",
+ "version": "0.0.2",
+ "dependencies": {
+ "@emotion/react": "^11.14.0",
+ "@emotion/styled": "^11.14.1",
+ "@mui/material": "^7.2.0",
+ "@tauri-apps/api": "^2",
+ "@tauri-apps/plugin-dialog": "^2.3.0",
+ "@tauri-apps/plugin-log": "^2.6.0",
+ "@tauri-apps/plugin-opener": "^2",
+ "react": "^18.3.1",
+ "react-dom": "^18.3.1",
+ "react-player": "^3.1.0"
+ },
+ "devDependencies": {
+ "@tauri-apps/cli": "^2",
+ "@types/react": "^18.3.1",
+ "@types/react-dom": "^18.3.1",
+ "@vitejs/plugin-react": "^4.3.4",
+ "typescript": "~5.6.2",
+ "vite": "^6.0.3"
+ }
+ },
+ "node_modules/@ampproject/remapping": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz",
+ "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==",
+ "dev": true,
+ "dependencies": {
+ "@jridgewell/gen-mapping": "^0.3.5",
+ "@jridgewell/trace-mapping": "^0.3.24"
+ },
+ "engines": {
+ "node": ">=6.0.0"
+ }
+ },
+ "node_modules/@babel/code-frame": {
+ "version": "7.27.1",
+ "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz",
+ "integrity": "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==",
+ "dependencies": {
+ "@babel/helper-validator-identifier": "^7.27.1",
+ "js-tokens": "^4.0.0",
+ "picocolors": "^1.1.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/compat-data": {
+ "version": "7.28.0",
+ "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.28.0.tgz",
+ "integrity": "sha512-60X7qkglvrap8mn1lh2ebxXdZYtUcpd7gsmy9kLaBJ4i/WdY8PqTSdxyA8qraikqKQK5C1KRBKXqznrVapyNaw==",
+ "dev": true,
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/core": {
+ "version": "7.28.0",
+ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.28.0.tgz",
+ "integrity": "sha512-UlLAnTPrFdNGoFtbSXwcGFQBtQZJCNjaN6hQNP3UPvuNXT1i82N26KL3dZeIpNalWywr9IuQuncaAfUaS1g6sQ==",
+ "dev": true,
+ "dependencies": {
+ "@ampproject/remapping": "^2.2.0",
+ "@babel/code-frame": "^7.27.1",
+ "@babel/generator": "^7.28.0",
+ "@babel/helper-compilation-targets": "^7.27.2",
+ "@babel/helper-module-transforms": "^7.27.3",
+ "@babel/helpers": "^7.27.6",
+ "@babel/parser": "^7.28.0",
+ "@babel/template": "^7.27.2",
+ "@babel/traverse": "^7.28.0",
+ "@babel/types": "^7.28.0",
+ "convert-source-map": "^2.0.0",
+ "debug": "^4.1.0",
+ "gensync": "^1.0.0-beta.2",
+ "json5": "^2.2.3",
+ "semver": "^6.3.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/babel"
+ }
+ },
+ "node_modules/@babel/core/node_modules/convert-source-map": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz",
+ "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==",
+ "dev": true
+ },
+ "node_modules/@babel/generator": {
+ "version": "7.28.0",
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.28.0.tgz",
+ "integrity": "sha512-lJjzvrbEeWrhB4P3QBsH7tey117PjLZnDbLiQEKjQ/fNJTjuq4HSqgFA+UNSwZT8D7dxxbnuSBMsa1lrWzKlQg==",
+ "dependencies": {
+ "@babel/parser": "^7.28.0",
+ "@babel/types": "^7.28.0",
+ "@jridgewell/gen-mapping": "^0.3.12",
+ "@jridgewell/trace-mapping": "^0.3.28",
+ "jsesc": "^3.0.2"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-compilation-targets": {
+ "version": "7.27.2",
+ "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.2.tgz",
+ "integrity": "sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==",
+ "dev": true,
+ "dependencies": {
+ "@babel/compat-data": "^7.27.2",
+ "@babel/helper-validator-option": "^7.27.1",
+ "browserslist": "^4.24.0",
+ "lru-cache": "^5.1.1",
+ "semver": "^6.3.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-globals": {
+ "version": "7.28.0",
+ "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz",
+ "integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==",
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-module-imports": {
+ "version": "7.27.1",
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.27.1.tgz",
+ "integrity": "sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==",
+ "dependencies": {
+ "@babel/traverse": "^7.27.1",
+ "@babel/types": "^7.27.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-module-transforms": {
+ "version": "7.27.3",
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.27.3.tgz",
+ "integrity": "sha512-dSOvYwvyLsWBeIRyOeHXp5vPj5l1I011r52FM1+r1jCERv+aFXYk4whgQccYEGYxK2H3ZAIA8nuPkQ0HaUo3qg==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-module-imports": "^7.27.1",
+ "@babel/helper-validator-identifier": "^7.27.1",
+ "@babel/traverse": "^7.27.3"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0"
+ }
+ },
+ "node_modules/@babel/helper-plugin-utils": {
+ "version": "7.27.1",
+ "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.27.1.tgz",
+ "integrity": "sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==",
+ "dev": true,
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-string-parser": {
+ "version": "7.27.1",
+ "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz",
+ "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==",
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-validator-identifier": {
+ "version": "7.27.1",
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.27.1.tgz",
+ "integrity": "sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==",
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-validator-option": {
+ "version": "7.27.1",
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz",
+ "integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==",
+ "dev": true,
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helpers": {
+ "version": "7.27.6",
+ "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.27.6.tgz",
+ "integrity": "sha512-muE8Tt8M22638HU31A3CgfSUciwz1fhATfoVai05aPXGor//CdWDCbnlY1yvBPo07njuVOCNGCSp/GTt12lIug==",
+ "dev": true,
+ "dependencies": {
+ "@babel/template": "^7.27.2",
+ "@babel/types": "^7.27.6"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/parser": {
+ "version": "7.28.0",
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.28.0.tgz",
+ "integrity": "sha512-jVZGvOxOuNSsuQuLRTh13nU0AogFlw32w/MT+LV6D3sP5WdbW61E77RnkbaO2dUvmPAYrBDJXGn5gGS6tH4j8g==",
+ "dependencies": {
+ "@babel/types": "^7.28.0"
+ },
+ "bin": {
+ "parser": "bin/babel-parser.js"
+ },
+ "engines": {
+ "node": ">=6.0.0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-react-jsx-self": {
+ "version": "7.27.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.27.1.tgz",
+ "integrity": "sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.27.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-react-jsx-source": {
+ "version": "7.27.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.27.1.tgz",
+ "integrity": "sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.27.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/runtime": {
+ "version": "7.27.6",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.27.6.tgz",
+ "integrity": "sha512-vbavdySgbTTrmFE+EsiqUTzlOr5bzlnJtUv9PynGCAKvfQqjIXbvFdumPM/GxMDfyuGMJaJAU6TO4zc1Jf1i8Q==",
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/template": {
+ "version": "7.27.2",
+ "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.27.2.tgz",
+ "integrity": "sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==",
+ "dependencies": {
+ "@babel/code-frame": "^7.27.1",
+ "@babel/parser": "^7.27.2",
+ "@babel/types": "^7.27.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/traverse": {
+ "version": "7.28.0",
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.28.0.tgz",
+ "integrity": "sha512-mGe7UK5wWyh0bKRfupsUchrQGqvDbZDbKJw+kcRGSmdHVYrv+ltd0pnpDTVpiTqnaBru9iEvA8pz8W46v0Amwg==",
+ "dependencies": {
+ "@babel/code-frame": "^7.27.1",
+ "@babel/generator": "^7.28.0",
+ "@babel/helper-globals": "^7.28.0",
+ "@babel/parser": "^7.28.0",
+ "@babel/template": "^7.27.2",
+ "@babel/types": "^7.28.0",
+ "debug": "^4.3.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/types": {
+ "version": "7.28.0",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.28.0.tgz",
+ "integrity": "sha512-jYnje+JyZG5YThjHiF28oT4SIZLnYOcSBb6+SDaFIyzDVSkXQmQQYclJ2R+YxcdmK0AX6x1E5OQNtuh3jHDrUg==",
+ "dependencies": {
+ "@babel/helper-string-parser": "^7.27.1",
+ "@babel/helper-validator-identifier": "^7.27.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@emotion/babel-plugin": {
+ "version": "11.13.5",
+ "resolved": "https://registry.npmjs.org/@emotion/babel-plugin/-/babel-plugin-11.13.5.tgz",
+ "integrity": "sha512-pxHCpT2ex+0q+HH91/zsdHkw/lXd468DIN2zvfvLtPKLLMo6gQj7oLObq8PhkrxOZb/gGCq03S3Z7PDhS8pduQ==",
+ "dependencies": {
+ "@babel/helper-module-imports": "^7.16.7",
+ "@babel/runtime": "^7.18.3",
+ "@emotion/hash": "^0.9.2",
+ "@emotion/memoize": "^0.9.0",
+ "@emotion/serialize": "^1.3.3",
+ "babel-plugin-macros": "^3.1.0",
+ "convert-source-map": "^1.5.0",
+ "escape-string-regexp": "^4.0.0",
+ "find-root": "^1.1.0",
+ "source-map": "^0.5.7",
+ "stylis": "4.2.0"
+ }
+ },
+ "node_modules/@emotion/cache": {
+ "version": "11.14.0",
+ "resolved": "https://registry.npmjs.org/@emotion/cache/-/cache-11.14.0.tgz",
+ "integrity": "sha512-L/B1lc/TViYk4DcpGxtAVbx0ZyiKM5ktoIyafGkH6zg/tj+mA+NE//aPYKG0k8kCHSHVJrpLpcAlOBEXQ3SavA==",
+ "dependencies": {
+ "@emotion/memoize": "^0.9.0",
+ "@emotion/sheet": "^1.4.0",
+ "@emotion/utils": "^1.4.2",
+ "@emotion/weak-memoize": "^0.4.0",
+ "stylis": "4.2.0"
+ }
+ },
+ "node_modules/@emotion/hash": {
+ "version": "0.9.2",
+ "resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.9.2.tgz",
+ "integrity": "sha512-MyqliTZGuOm3+5ZRSaaBGP3USLw6+EGykkwZns2EPC5g8jJ4z9OrdZY9apkl3+UP9+sdz76YYkwCKP5gh8iY3g=="
+ },
+ "node_modules/@emotion/is-prop-valid": {
+ "version": "1.3.1",
+ "resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-1.3.1.tgz",
+ "integrity": "sha512-/ACwoqx7XQi9knQs/G0qKvv5teDMhD7bXYns9N/wM8ah8iNb8jZ2uNO0YOgiq2o2poIvVtJS2YALasQuMSQ7Kw==",
+ "dependencies": {
+ "@emotion/memoize": "^0.9.0"
+ }
+ },
+ "node_modules/@emotion/memoize": {
+ "version": "0.9.0",
+ "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.9.0.tgz",
+ "integrity": "sha512-30FAj7/EoJ5mwVPOWhAyCX+FPfMDrVecJAM+Iw9NRoSl4BBAQeqj4cApHHUXOVvIPgLVDsCFoz/hGD+5QQD1GQ=="
+ },
+ "node_modules/@emotion/react": {
+ "version": "11.14.0",
+ "resolved": "https://registry.npmjs.org/@emotion/react/-/react-11.14.0.tgz",
+ "integrity": "sha512-O000MLDBDdk/EohJPFUqvnp4qnHeYkVP5B0xEG0D/L7cOKP9kefu2DXn8dj74cQfsEzUqh+sr1RzFqiL1o+PpA==",
+ "dependencies": {
+ "@babel/runtime": "^7.18.3",
+ "@emotion/babel-plugin": "^11.13.5",
+ "@emotion/cache": "^11.14.0",
+ "@emotion/serialize": "^1.3.3",
+ "@emotion/use-insertion-effect-with-fallbacks": "^1.2.0",
+ "@emotion/utils": "^1.4.2",
+ "@emotion/weak-memoize": "^0.4.0",
+ "hoist-non-react-statics": "^3.3.1"
+ },
+ "peerDependencies": {
+ "react": ">=16.8.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@emotion/serialize": {
+ "version": "1.3.3",
+ "resolved": "https://registry.npmjs.org/@emotion/serialize/-/serialize-1.3.3.tgz",
+ "integrity": "sha512-EISGqt7sSNWHGI76hC7x1CksiXPahbxEOrC5RjmFRJTqLyEK9/9hZvBbiYn70dw4wuwMKiEMCUlR6ZXTSWQqxA==",
+ "dependencies": {
+ "@emotion/hash": "^0.9.2",
+ "@emotion/memoize": "^0.9.0",
+ "@emotion/unitless": "^0.10.0",
+ "@emotion/utils": "^1.4.2",
+ "csstype": "^3.0.2"
+ }
+ },
+ "node_modules/@emotion/sheet": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/@emotion/sheet/-/sheet-1.4.0.tgz",
+ "integrity": "sha512-fTBW9/8r2w3dXWYM4HCB1Rdp8NLibOw2+XELH5m5+AkWiL/KqYX6dc0kKYlaYyKjrQ6ds33MCdMPEwgs2z1rqg=="
+ },
+ "node_modules/@emotion/styled": {
+ "version": "11.14.1",
+ "resolved": "https://registry.npmjs.org/@emotion/styled/-/styled-11.14.1.tgz",
+ "integrity": "sha512-qEEJt42DuToa3gurlH4Qqc1kVpNq8wO8cJtDzU46TjlzWjDlsVyevtYCRijVq3SrHsROS+gVQ8Fnea108GnKzw==",
+ "dependencies": {
+ "@babel/runtime": "^7.18.3",
+ "@emotion/babel-plugin": "^11.13.5",
+ "@emotion/is-prop-valid": "^1.3.0",
+ "@emotion/serialize": "^1.3.3",
+ "@emotion/use-insertion-effect-with-fallbacks": "^1.2.0",
+ "@emotion/utils": "^1.4.2"
+ },
+ "peerDependencies": {
+ "@emotion/react": "^11.0.0-rc.0",
+ "react": ">=16.8.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@emotion/unitless": {
+ "version": "0.10.0",
+ "resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.10.0.tgz",
+ "integrity": "sha512-dFoMUuQA20zvtVTuxZww6OHoJYgrzfKM1t52mVySDJnMSEa08ruEvdYQbhvyu6soU+NeLVd3yKfTfT0NeV6qGg=="
+ },
+ "node_modules/@emotion/use-insertion-effect-with-fallbacks": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/@emotion/use-insertion-effect-with-fallbacks/-/use-insertion-effect-with-fallbacks-1.2.0.tgz",
+ "integrity": "sha512-yJMtVdH59sxi/aVJBpk9FQq+OR8ll5GT8oWd57UpeaKEVGab41JWaCFA7FRLoMLloOZF/c/wsPoe+bfGmRKgDg==",
+ "peerDependencies": {
+ "react": ">=16.8.0"
+ }
+ },
+ "node_modules/@emotion/utils": {
+ "version": "1.4.2",
+ "resolved": "https://registry.npmjs.org/@emotion/utils/-/utils-1.4.2.tgz",
+ "integrity": "sha512-3vLclRofFziIa3J2wDh9jjbkUz9qk5Vi3IZ/FSTKViB0k+ef0fPV7dYrUIugbgupYDx7v9ud/SjrtEP8Y4xLoA=="
+ },
+ "node_modules/@emotion/weak-memoize": {
+ "version": "0.4.0",
+ "resolved": "https://registry.npmjs.org/@emotion/weak-memoize/-/weak-memoize-0.4.0.tgz",
+ "integrity": "sha512-snKqtPW01tN0ui7yu9rGv69aJXr/a/Ywvl11sUjNtEcRc+ng/mQriFL0wLXMef74iHa/EkftbDzU9F8iFbH+zg=="
+ },
+ "node_modules/@esbuild/aix-ppc64": {
+ "version": "0.25.6",
+ "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.6.tgz",
+ "integrity": "sha512-ShbM/3XxwuxjFiuVBHA+d3j5dyac0aEVVq1oluIDf71hUw0aRF59dV/efUsIwFnR6m8JNM2FjZOzmaZ8yG61kw==",
+ "cpu": [
+ "ppc64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "aix"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/android-arm": {
+ "version": "0.25.6",
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.6.tgz",
+ "integrity": "sha512-S8ToEOVfg++AU/bHwdksHNnyLyVM+eMVAOf6yRKFitnwnbwwPNqKr3srzFRe7nzV69RQKb5DgchIX5pt3L53xg==",
+ "cpu": [
+ "arm"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "android"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/android-arm64": {
+ "version": "0.25.6",
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.6.tgz",
+ "integrity": "sha512-hd5zdUarsK6strW+3Wxi5qWws+rJhCCbMiC9QZyzoxfk5uHRIE8T287giQxzVpEvCwuJ9Qjg6bEjcRJcgfLqoA==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "android"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/android-x64": {
+ "version": "0.25.6",
+ "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.6.tgz",
+ "integrity": "sha512-0Z7KpHSr3VBIO9A/1wcT3NTy7EB4oNC4upJ5ye3R7taCc2GUdeynSLArnon5G8scPwaU866d3H4BCrE5xLW25A==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "android"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/darwin-arm64": {
+ "version": "0.25.6",
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.6.tgz",
+ "integrity": "sha512-FFCssz3XBavjxcFxKsGy2DYK5VSvJqa6y5HXljKzhRZ87LvEi13brPrf/wdyl/BbpbMKJNOr1Sd0jtW4Ge1pAA==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/darwin-x64": {
+ "version": "0.25.6",
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.6.tgz",
+ "integrity": "sha512-GfXs5kry/TkGM2vKqK2oyiLFygJRqKVhawu3+DOCk7OxLy/6jYkWXhlHwOoTb0WqGnWGAS7sooxbZowy+pK9Yg==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/freebsd-arm64": {
+ "version": "0.25.6",
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.6.tgz",
+ "integrity": "sha512-aoLF2c3OvDn2XDTRvn8hN6DRzVVpDlj2B/F66clWd/FHLiHaG3aVZjxQX2DYphA5y/evbdGvC6Us13tvyt4pWg==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "freebsd"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/freebsd-x64": {
+ "version": "0.25.6",
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.6.tgz",
+ "integrity": "sha512-2SkqTjTSo2dYi/jzFbU9Plt1vk0+nNg8YC8rOXXea+iA3hfNJWebKYPs3xnOUf9+ZWhKAaxnQNUf2X9LOpeiMQ==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "freebsd"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/linux-arm": {
+ "version": "0.25.6",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.6.tgz",
+ "integrity": "sha512-SZHQlzvqv4Du5PrKE2faN0qlbsaW/3QQfUUc6yO2EjFcA83xnwm91UbEEVx4ApZ9Z5oG8Bxz4qPE+HFwtVcfyw==",
+ "cpu": [
+ "arm"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/linux-arm64": {
+ "version": "0.25.6",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.6.tgz",
+ "integrity": "sha512-b967hU0gqKd9Drsh/UuAm21Khpoh6mPBSgz8mKRq4P5mVK8bpA+hQzmm/ZwGVULSNBzKdZPQBRT3+WuVavcWsQ==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/linux-ia32": {
+ "version": "0.25.6",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.6.tgz",
+ "integrity": "sha512-aHWdQ2AAltRkLPOsKdi3xv0mZ8fUGPdlKEjIEhxCPm5yKEThcUjHpWB1idN74lfXGnZ5SULQSgtr5Qos5B0bPw==",
+ "cpu": [
+ "ia32"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/linux-loong64": {
+ "version": "0.25.6",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.6.tgz",
+ "integrity": "sha512-VgKCsHdXRSQ7E1+QXGdRPlQ/e08bN6WMQb27/TMfV+vPjjTImuT9PmLXupRlC90S1JeNNW5lzkAEO/McKeJ2yg==",
+ "cpu": [
+ "loong64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/linux-mips64el": {
+ "version": "0.25.6",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.6.tgz",
+ "integrity": "sha512-WViNlpivRKT9/py3kCmkHnn44GkGXVdXfdc4drNmRl15zVQ2+D2uFwdlGh6IuK5AAnGTo2qPB1Djppj+t78rzw==",
+ "cpu": [
+ "mips64el"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/linux-ppc64": {
+ "version": "0.25.6",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.6.tgz",
+ "integrity": "sha512-wyYKZ9NTdmAMb5730I38lBqVu6cKl4ZfYXIs31Baf8aoOtB4xSGi3THmDYt4BTFHk7/EcVixkOV2uZfwU3Q2Jw==",
+ "cpu": [
+ "ppc64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/linux-riscv64": {
+ "version": "0.25.6",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.6.tgz",
+ "integrity": "sha512-KZh7bAGGcrinEj4qzilJ4hqTY3Dg2U82c8bv+e1xqNqZCrCyc+TL9AUEn5WGKDzm3CfC5RODE/qc96OcbIe33w==",
+ "cpu": [
+ "riscv64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/linux-s390x": {
+ "version": "0.25.6",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.6.tgz",
+ "integrity": "sha512-9N1LsTwAuE9oj6lHMyyAM+ucxGiVnEqUdp4v7IaMmrwb06ZTEVCIs3oPPplVsnjPfyjmxwHxHMF8b6vzUVAUGw==",
+ "cpu": [
+ "s390x"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/linux-x64": {
+ "version": "0.25.6",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.6.tgz",
+ "integrity": "sha512-A6bJB41b4lKFWRKNrWoP2LHsjVzNiaurf7wyj/XtFNTsnPuxwEBWHLty+ZE0dWBKuSK1fvKgrKaNjBS7qbFKig==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/netbsd-arm64": {
+ "version": "0.25.6",
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.6.tgz",
+ "integrity": "sha512-IjA+DcwoVpjEvyxZddDqBY+uJ2Snc6duLpjmkXm/v4xuS3H+3FkLZlDm9ZsAbF9rsfP3zeA0/ArNDORZgrxR/Q==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "netbsd"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/netbsd-x64": {
+ "version": "0.25.6",
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.6.tgz",
+ "integrity": "sha512-dUXuZr5WenIDlMHdMkvDc1FAu4xdWixTCRgP7RQLBOkkGgwuuzaGSYcOpW4jFxzpzL1ejb8yF620UxAqnBrR9g==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "netbsd"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/openbsd-arm64": {
+ "version": "0.25.6",
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.6.tgz",
+ "integrity": "sha512-l8ZCvXP0tbTJ3iaqdNf3pjaOSd5ex/e6/omLIQCVBLmHTlfXW3zAxQ4fnDmPLOB1x9xrcSi/xtCWFwCZRIaEwg==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "openbsd"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/openbsd-x64": {
+ "version": "0.25.6",
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.6.tgz",
+ "integrity": "sha512-hKrmDa0aOFOr71KQ/19JC7az1P0GWtCN1t2ahYAf4O007DHZt/dW8ym5+CUdJhQ/qkZmI1HAF8KkJbEFtCL7gw==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "openbsd"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/openharmony-arm64": {
+ "version": "0.25.6",
+ "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.25.6.tgz",
+ "integrity": "sha512-+SqBcAWoB1fYKmpWoQP4pGtx+pUUC//RNYhFdbcSA16617cchuryuhOCRpPsjCblKukAckWsV+aQ3UKT/RMPcA==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "openharmony"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/sunos-x64": {
+ "version": "0.25.6",
+ "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.6.tgz",
+ "integrity": "sha512-dyCGxv1/Br7MiSC42qinGL8KkG4kX0pEsdb0+TKhmJZgCUDBGmyo1/ArCjNGiOLiIAgdbWgmWgib4HoCi5t7kA==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "sunos"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/win32-arm64": {
+ "version": "0.25.6",
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.6.tgz",
+ "integrity": "sha512-42QOgcZeZOvXfsCBJF5Afw73t4veOId//XD3i+/9gSkhSV6Gk3VPlWncctI+JcOyERv85FUo7RxuxGy+z8A43Q==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/win32-ia32": {
+ "version": "0.25.6",
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.6.tgz",
+ "integrity": "sha512-4AWhgXmDuYN7rJI6ORB+uU9DHLq/erBbuMoAuB4VWJTu5KtCgcKYPynF0YI1VkBNuEfjNlLrFr9KZPJzrtLkrQ==",
+ "cpu": [
+ "ia32"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/win32-x64": {
+ "version": "0.25.6",
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.6.tgz",
+ "integrity": "sha512-NgJPHHbEpLQgDH2MjQu90pzW/5vvXIZ7KOnPyNBm92A6WgZ/7b6fJyUBjoumLqeOQQGqY2QjQxRo97ah4Sj0cA==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@jridgewell/gen-mapping": {
+ "version": "0.3.12",
+ "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.12.tgz",
+ "integrity": "sha512-OuLGC46TjB5BbN1dH8JULVVZY4WTdkF7tV9Ys6wLL1rubZnCMstOhNHueU5bLCrnRuDhKPDM4g6sw4Bel5Gzqg==",
+ "dependencies": {
+ "@jridgewell/sourcemap-codec": "^1.5.0",
+ "@jridgewell/trace-mapping": "^0.3.24"
+ }
+ },
+ "node_modules/@jridgewell/resolve-uri": {
+ "version": "3.1.2",
+ "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
+ "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
+ "engines": {
+ "node": ">=6.0.0"
+ }
+ },
+ "node_modules/@jridgewell/sourcemap-codec": {
+ "version": "1.5.4",
+ "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.4.tgz",
+ "integrity": "sha512-VT2+G1VQs/9oz078bLrYbecdZKs912zQlkelYpuf+SXF+QvZDYJlbx/LSx+meSAwdDFnF8FVXW92AVjjkVmgFw=="
+ },
+ "node_modules/@jridgewell/trace-mapping": {
+ "version": "0.3.29",
+ "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.29.tgz",
+ "integrity": "sha512-uw6guiW/gcAGPDhLmd77/6lW8QLeiV5RUTsAX46Db6oLhGaVj4lhnPwb184s1bkc8kdVg/+h988dro8GRDpmYQ==",
+ "dependencies": {
+ "@jridgewell/resolve-uri": "^3.1.0",
+ "@jridgewell/sourcemap-codec": "^1.4.14"
+ }
+ },
+ "node_modules/@mui/core-downloads-tracker": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/@mui/core-downloads-tracker/-/core-downloads-tracker-7.2.0.tgz",
+ "integrity": "sha512-d49s7kEgI5iX40xb2YPazANvo7Bx0BLg/MNRwv+7BVpZUzXj1DaVCKlQTDex3gy/0jsCb4w7AY2uH4t4AJvSog==",
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/mui-org"
+ }
+ },
+ "node_modules/@mui/material": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/@mui/material/-/material-7.2.0.tgz",
+ "integrity": "sha512-NTuyFNen5Z2QY+I242MDZzXnFIVIR6ERxo7vntFi9K1wCgSwvIl0HcAO2OOydKqqKApE6omRiYhpny1ZhGuH7Q==",
+ "dependencies": {
+ "@babel/runtime": "^7.27.6",
+ "@mui/core-downloads-tracker": "^7.2.0",
+ "@mui/system": "^7.2.0",
+ "@mui/types": "^7.4.4",
+ "@mui/utils": "^7.2.0",
+ "@popperjs/core": "^2.11.8",
+ "@types/react-transition-group": "^4.4.12",
+ "clsx": "^2.1.1",
+ "csstype": "^3.1.3",
+ "prop-types": "^15.8.1",
+ "react-is": "^19.1.0",
+ "react-transition-group": "^4.4.5"
+ },
+ "engines": {
+ "node": ">=14.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/mui-org"
+ },
+ "peerDependencies": {
+ "@emotion/react": "^11.5.0",
+ "@emotion/styled": "^11.3.0",
+ "@mui/material-pigment-css": "^7.2.0",
+ "@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0",
+ "react": "^17.0.0 || ^18.0.0 || ^19.0.0",
+ "react-dom": "^17.0.0 || ^18.0.0 || ^19.0.0"
+ },
+ "peerDependenciesMeta": {
+ "@emotion/react": {
+ "optional": true
+ },
+ "@emotion/styled": {
+ "optional": true
+ },
+ "@mui/material-pigment-css": {
+ "optional": true
+ },
+ "@types/react": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@mui/private-theming": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/@mui/private-theming/-/private-theming-7.2.0.tgz",
+ "integrity": "sha512-y6N1Yt3T5RMxVFnCh6+zeSWBuQdNDm5/UlM0EAYZzZR/1u+XKJWYQmbpx4e+F+1EpkYi3Nk8KhPiQDi83M3zIw==",
+ "dependencies": {
+ "@babel/runtime": "^7.27.6",
+ "@mui/utils": "^7.2.0",
+ "prop-types": "^15.8.1"
+ },
+ "engines": {
+ "node": ">=14.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/mui-org"
+ },
+ "peerDependencies": {
+ "@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0",
+ "react": "^17.0.0 || ^18.0.0 || ^19.0.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@mui/styled-engine": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/@mui/styled-engine/-/styled-engine-7.2.0.tgz",
+ "integrity": "sha512-yq08xynbrNYcB1nBcW9Fn8/h/iniM3ewRguGJXPIAbHvxEF7Pz95kbEEOAAhwzxMX4okhzvHmk0DFuC5ayvgIQ==",
+ "dependencies": {
+ "@babel/runtime": "^7.27.6",
+ "@emotion/cache": "^11.14.0",
+ "@emotion/serialize": "^1.3.3",
+ "@emotion/sheet": "^1.4.0",
+ "csstype": "^3.1.3",
+ "prop-types": "^15.8.1"
+ },
+ "engines": {
+ "node": ">=14.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/mui-org"
+ },
+ "peerDependencies": {
+ "@emotion/react": "^11.4.1",
+ "@emotion/styled": "^11.3.0",
+ "react": "^17.0.0 || ^18.0.0 || ^19.0.0"
+ },
+ "peerDependenciesMeta": {
+ "@emotion/react": {
+ "optional": true
+ },
+ "@emotion/styled": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@mui/system": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/@mui/system/-/system-7.2.0.tgz",
+ "integrity": "sha512-PG7cm/WluU6RAs+gNND2R9vDwNh+ERWxPkqTaiXQJGIFAyJ+VxhyKfzpdZNk0z0XdmBxxi9KhFOpgxjehf/O0A==",
+ "dependencies": {
+ "@babel/runtime": "^7.27.6",
+ "@mui/private-theming": "^7.2.0",
+ "@mui/styled-engine": "^7.2.0",
+ "@mui/types": "^7.4.4",
+ "@mui/utils": "^7.2.0",
+ "clsx": "^2.1.1",
+ "csstype": "^3.1.3",
+ "prop-types": "^15.8.1"
+ },
+ "engines": {
+ "node": ">=14.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/mui-org"
+ },
+ "peerDependencies": {
+ "@emotion/react": "^11.5.0",
+ "@emotion/styled": "^11.3.0",
+ "@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0",
+ "react": "^17.0.0 || ^18.0.0 || ^19.0.0"
+ },
+ "peerDependenciesMeta": {
+ "@emotion/react": {
+ "optional": true
+ },
+ "@emotion/styled": {
+ "optional": true
+ },
+ "@types/react": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@mui/types": {
+ "version": "7.4.4",
+ "resolved": "https://registry.npmjs.org/@mui/types/-/types-7.4.4.tgz",
+ "integrity": "sha512-p63yhbX52MO/ajXC7hDHJA5yjzJekvWD3q4YDLl1rSg+OXLczMYPvTuSuviPRCgRX8+E42RXz1D/dz9SxPSlWg==",
+ "dependencies": {
+ "@babel/runtime": "^7.27.6"
+ },
+ "peerDependencies": {
+ "@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@mui/utils": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/@mui/utils/-/utils-7.2.0.tgz",
+ "integrity": "sha512-O0i1GQL6MDzhKdy9iAu5Yr0Sz1wZjROH1o3aoztuivdCXqEeQYnEjTDiRLGuFxI9zrUbTHBwobMyQH5sNtyacw==",
+ "dependencies": {
+ "@babel/runtime": "^7.27.6",
+ "@mui/types": "^7.4.4",
+ "@types/prop-types": "^15.7.15",
+ "clsx": "^2.1.1",
+ "prop-types": "^15.8.1",
+ "react-is": "^19.1.0"
+ },
+ "engines": {
+ "node": ">=14.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/mui-org"
+ },
+ "peerDependencies": {
+ "@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0",
+ "react": "^17.0.0 || ^18.0.0 || ^19.0.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@mux/mux-data-google-ima": {
+ "version": "0.2.8",
+ "resolved": "https://registry.npmjs.org/@mux/mux-data-google-ima/-/mux-data-google-ima-0.2.8.tgz",
+ "integrity": "sha512-0ZEkHdcZ6bS8QtcjFcoJeZxJTpX7qRIledf4q1trMWPznugvtajCjCM2kieK/pzkZj1JM6liDRFs1PJSfVUs2A==",
+ "dependencies": {
+ "mux-embed": "5.9.0"
+ }
+ },
+ "node_modules/@mux/mux-player": {
+ "version": "3.5.1",
+ "resolved": "https://registry.npmjs.org/@mux/mux-player/-/mux-player-3.5.1.tgz",
+ "integrity": "sha512-PSi3mPb4LrEh4i3xUdodaEvMrbbpKbL2yaewRjsqBr3PFb+hd/Dp1KtyaAnXaBCHl09hDURUSrqYpg1cZvwDiQ==",
+ "dependencies": {
+ "@mux/mux-video": "0.26.1",
+ "@mux/playback-core": "0.30.1",
+ "media-chrome": "~4.11.1",
+ "player.style": "^0.1.9"
+ }
+ },
+ "node_modules/@mux/mux-player-react": {
+ "version": "3.5.1",
+ "resolved": "https://registry.npmjs.org/@mux/mux-player-react/-/mux-player-react-3.5.1.tgz",
+ "integrity": "sha512-tm32fSo9IBA/J8AD99bp64CyBkmv8jtsn4RhSHgNufvfWJUMBFJ7cfXgLsxiG/VdegpfBLRatMC5YiuZjoZ6yg==",
+ "dependencies": {
+ "@mux/mux-player": "3.5.1",
+ "@mux/playback-core": "0.30.1",
+ "prop-types": "^15.8.1"
+ },
+ "peerDependencies": {
+ "@types/react": "^17.0.0 || ^17.0.0-0 || ^18 || ^18.0.0-0 || ^19 || ^19.0.0-0",
+ "react": "^17.0.2 || ^17.0.0-0 || ^18 || ^18.0.0-0 || ^19 || ^19.0.0-0",
+ "react-dom": "^17.0.2 || ^17.0.2-0 || ^18 || ^18.0.0-0 || ^19 || ^19.0.0-0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ },
+ "@types/react-dom": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@mux/mux-video": {
+ "version": "0.26.1",
+ "resolved": "https://registry.npmjs.org/@mux/mux-video/-/mux-video-0.26.1.tgz",
+ "integrity": "sha512-gkMdBAgNlB4+krANZHkQFzYWjWeNsJz69y1/hnPtmNQnpvW+O7oc71OffcZrbblyibSxWMQ6MQpYmBVjXlp6sA==",
+ "dependencies": {
+ "@mux/mux-data-google-ima": "0.2.8",
+ "@mux/playback-core": "0.30.1",
+ "castable-video": "~1.1.10",
+ "custom-media-element": "~1.4.5",
+ "media-tracks": "~0.3.3"
+ }
+ },
+ "node_modules/@mux/playback-core": {
+ "version": "0.30.1",
+ "resolved": "https://registry.npmjs.org/@mux/playback-core/-/playback-core-0.30.1.tgz",
+ "integrity": "sha512-rnO1NE9xHDyzbAkmE6ygJYcD7cyyMt7xXqWTykxlceaoSXLjUqgp42HDio7Lcidto4x/O4FIa7ztjV2aCBCXgQ==",
+ "dependencies": {
+ "hls.js": "~1.6.6",
+ "mux-embed": "^5.8.3"
+ }
+ },
+ "node_modules/@popperjs/core": {
+ "version": "2.11.8",
+ "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.8.tgz",
+ "integrity": "sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==",
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/popperjs"
+ }
+ },
+ "node_modules/@rolldown/pluginutils": {
+ "version": "1.0.0-beta.19",
+ "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-beta.19.tgz",
+ "integrity": "sha512-3FL3mnMbPu0muGOCaKAhhFEYmqv9eTfPSJRJmANrCwtgK8VuxpsZDGK+m0LYAGoyO8+0j5uRe4PeyPDK1yA/hA==",
+ "dev": true
+ },
+ "node_modules/@rollup/rollup-android-arm-eabi": {
+ "version": "4.44.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.44.2.tgz",
+ "integrity": "sha512-g0dF8P1e2QYPOj1gu7s/3LVP6kze9A7m6x0BZ9iTdXK8N5c2V7cpBKHV3/9A4Zd8xxavdhK0t4PnqjkqVmUc9Q==",
+ "cpu": [
+ "arm"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "android"
+ ]
+ },
+ "node_modules/@rollup/rollup-android-arm64": {
+ "version": "4.44.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.44.2.tgz",
+ "integrity": "sha512-Yt5MKrOosSbSaAK5Y4J+vSiID57sOvpBNBR6K7xAaQvk3MkcNVV0f9fE20T+41WYN8hDn6SGFlFrKudtx4EoxA==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "android"
+ ]
+ },
+ "node_modules/@rollup/rollup-darwin-arm64": {
+ "version": "4.44.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.44.2.tgz",
+ "integrity": "sha512-EsnFot9ZieM35YNA26nhbLTJBHD0jTwWpPwmRVDzjylQT6gkar+zenfb8mHxWpRrbn+WytRRjE0WKsfaxBkVUA==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "darwin"
+ ]
+ },
+ "node_modules/@rollup/rollup-darwin-x64": {
+ "version": "4.44.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.44.2.tgz",
+ "integrity": "sha512-dv/t1t1RkCvJdWWxQ2lWOO+b7cMsVw5YFaS04oHpZRWehI1h0fV1gF4wgGCTyQHHjJDfbNpwOi6PXEafRBBezw==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "darwin"
+ ]
+ },
+ "node_modules/@rollup/rollup-freebsd-arm64": {
+ "version": "4.44.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.44.2.tgz",
+ "integrity": "sha512-W4tt4BLorKND4qeHElxDoim0+BsprFTwb+vriVQnFFtT/P6v/xO5I99xvYnVzKWrK6j7Hb0yp3x7V5LUbaeOMg==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "freebsd"
+ ]
+ },
+ "node_modules/@rollup/rollup-freebsd-x64": {
+ "version": "4.44.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.44.2.tgz",
+ "integrity": "sha512-tdT1PHopokkuBVyHjvYehnIe20fxibxFCEhQP/96MDSOcyjM/shlTkZZLOufV3qO6/FQOSiJTBebhVc12JyPTA==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "freebsd"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-arm-gnueabihf": {
+ "version": "4.44.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.44.2.tgz",
+ "integrity": "sha512-+xmiDGGaSfIIOXMzkhJ++Oa0Gwvl9oXUeIiwarsdRXSe27HUIvjbSIpPxvnNsRebsNdUo7uAiQVgBD1hVriwSQ==",
+ "cpu": [
+ "arm"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-arm-musleabihf": {
+ "version": "4.44.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.44.2.tgz",
+ "integrity": "sha512-bDHvhzOfORk3wt8yxIra8N4k/N0MnKInCW5OGZaeDYa/hMrdPaJzo7CSkjKZqX4JFUWjUGm88lI6QJLCM7lDrA==",
+ "cpu": [
+ "arm"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-arm64-gnu": {
+ "version": "4.44.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.44.2.tgz",
+ "integrity": "sha512-NMsDEsDiYghTbeZWEGnNi4F0hSbGnsuOG+VnNvxkKg0IGDvFh7UVpM/14mnMwxRxUf9AdAVJgHPvKXf6FpMB7A==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-arm64-musl": {
+ "version": "4.44.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.44.2.tgz",
+ "integrity": "sha512-lb5bxXnxXglVq+7imxykIp5xMq+idehfl+wOgiiix0191av84OqbjUED+PRC5OA8eFJYj5xAGcpAZ0pF2MnW+A==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-loongarch64-gnu": {
+ "version": "4.44.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.44.2.tgz",
+ "integrity": "sha512-Yl5Rdpf9pIc4GW1PmkUGHdMtbx0fBLE1//SxDmuf3X0dUC57+zMepow2LK0V21661cjXdTn8hO2tXDdAWAqE5g==",
+ "cpu": [
+ "loong64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-powerpc64le-gnu": {
+ "version": "4.44.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.44.2.tgz",
+ "integrity": "sha512-03vUDH+w55s680YYryyr78jsO1RWU9ocRMaeV2vMniJJW/6HhoTBwyyiiTPVHNWLnhsnwcQ0oH3S9JSBEKuyqw==",
+ "cpu": [
+ "ppc64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-riscv64-gnu": {
+ "version": "4.44.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.44.2.tgz",
+ "integrity": "sha512-iYtAqBg5eEMG4dEfVlkqo05xMOk6y/JXIToRca2bAWuqjrJYJlx/I7+Z+4hSrsWU8GdJDFPL4ktV3dy4yBSrzg==",
+ "cpu": [
+ "riscv64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-riscv64-musl": {
+ "version": "4.44.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.44.2.tgz",
+ "integrity": "sha512-e6vEbgaaqz2yEHqtkPXa28fFuBGmUJ0N2dOJK8YUfijejInt9gfCSA7YDdJ4nYlv67JfP3+PSWFX4IVw/xRIPg==",
+ "cpu": [
+ "riscv64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-s390x-gnu": {
+ "version": "4.44.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.44.2.tgz",
+ "integrity": "sha512-evFOtkmVdY3udE+0QKrV5wBx7bKI0iHz5yEVx5WqDJkxp9YQefy4Mpx3RajIVcM6o7jxTvVd/qpC1IXUhGc1Mw==",
+ "cpu": [
+ "s390x"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-x64-gnu": {
+ "version": "4.44.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.44.2.tgz",
+ "integrity": "sha512-/bXb0bEsWMyEkIsUL2Yt5nFB5naLAwyOWMEviQfQY1x3l5WsLKgvZf66TM7UTfED6erckUVUJQ/jJ1FSpm3pRQ==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-x64-musl": {
+ "version": "4.44.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.44.2.tgz",
+ "integrity": "sha512-3D3OB1vSSBXmkGEZR27uiMRNiwN08/RVAcBKwhUYPaiZ8bcvdeEwWPvbnXvvXHY+A/7xluzcN+kaiOFNiOZwWg==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-win32-arm64-msvc": {
+ "version": "4.44.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.44.2.tgz",
+ "integrity": "sha512-VfU0fsMK+rwdK8mwODqYeM2hDrF2WiHaSmCBrS7gColkQft95/8tphyzv2EupVxn3iE0FI78wzffoULH1G+dkw==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "win32"
+ ]
+ },
+ "node_modules/@rollup/rollup-win32-ia32-msvc": {
+ "version": "4.44.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.44.2.tgz",
+ "integrity": "sha512-+qMUrkbUurpE6DVRjiJCNGZBGo9xM4Y0FXU5cjgudWqIBWbcLkjE3XprJUsOFgC6xjBClwVa9k6O3A7K3vxb5Q==",
+ "cpu": [
+ "ia32"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "win32"
+ ]
+ },
+ "node_modules/@rollup/rollup-win32-x64-msvc": {
+ "version": "4.44.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.44.2.tgz",
+ "integrity": "sha512-3+QZROYfJ25PDcxFF66UEk8jGWigHJeecZILvkPkyQN7oc5BvFo4YEXFkOs154j3FTMp9mn9Ky8RCOwastduEA==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "win32"
+ ]
+ },
+ "node_modules/@svta/common-media-library": {
+ "version": "0.12.4",
+ "resolved": "https://registry.npmjs.org/@svta/common-media-library/-/common-media-library-0.12.4.tgz",
+ "integrity": "sha512-9EuOoaNmz7JrfGwjsrD9SxF9otU5TNMnbLu1yU4BeLK0W5cDxVXXR58Z89q9u2AnHjIctscjMTYdlqQ1gojTuw=="
+ },
+ "node_modules/@tauri-apps/api": {
+ "version": "2.6.0",
+ "resolved": "https://registry.npmjs.org/@tauri-apps/api/-/api-2.6.0.tgz",
+ "integrity": "sha512-hRNcdercfgpzgFrMXWwNDBN0B7vNzOzRepy6ZAmhxi5mDLVPNrTpo9MGg2tN/F7JRugj4d2aF7E1rtPXAHaetg==",
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/tauri"
+ }
+ },
+ "node_modules/@tauri-apps/cli": {
+ "version": "2.6.2",
+ "resolved": "https://registry.npmjs.org/@tauri-apps/cli/-/cli-2.6.2.tgz",
+ "integrity": "sha512-s1/eyBHxk0wG1blLeOY2IDjgZcxVrkxU5HFL8rNDwjYGr0o7yr3RAtwmuUPhz13NO+xGAL1bJZaLFBdp+5joKg==",
+ "dev": true,
+ "bin": {
+ "tauri": "tauri.js"
+ },
+ "engines": {
+ "node": ">= 10"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/tauri"
+ },
+ "optionalDependencies": {
+ "@tauri-apps/cli-darwin-arm64": "2.6.2",
+ "@tauri-apps/cli-darwin-x64": "2.6.2",
+ "@tauri-apps/cli-linux-arm-gnueabihf": "2.6.2",
+ "@tauri-apps/cli-linux-arm64-gnu": "2.6.2",
+ "@tauri-apps/cli-linux-arm64-musl": "2.6.2",
+ "@tauri-apps/cli-linux-riscv64-gnu": "2.6.2",
+ "@tauri-apps/cli-linux-x64-gnu": "2.6.2",
+ "@tauri-apps/cli-linux-x64-musl": "2.6.2",
+ "@tauri-apps/cli-win32-arm64-msvc": "2.6.2",
+ "@tauri-apps/cli-win32-ia32-msvc": "2.6.2",
+ "@tauri-apps/cli-win32-x64-msvc": "2.6.2"
+ }
+ },
+ "node_modules/@tauri-apps/cli-darwin-arm64": {
+ "version": "2.6.2",
+ "resolved": "https://registry.npmjs.org/@tauri-apps/cli-darwin-arm64/-/cli-darwin-arm64-2.6.2.tgz",
+ "integrity": "sha512-YlvT+Yb7u2HplyN2Cf/nBplCQARC/I4uedlYHlgtxg6rV7xbo9BvG1jLOo29IFhqA2rOp5w1LtgvVGwsOf2kxw==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@tauri-apps/cli-darwin-x64": {
+ "version": "2.6.2",
+ "resolved": "https://registry.npmjs.org/@tauri-apps/cli-darwin-x64/-/cli-darwin-x64-2.6.2.tgz",
+ "integrity": "sha512-21gdPWfv1bP8rkTdCL44in70QcYcPaDM70L+y78N8TkBuC+/+wqnHcwwjzb+mUyck6UoEw2DORagSI/oKKUGJw==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@tauri-apps/cli-linux-arm-gnueabihf": {
+ "version": "2.6.2",
+ "resolved": "https://registry.npmjs.org/@tauri-apps/cli-linux-arm-gnueabihf/-/cli-linux-arm-gnueabihf-2.6.2.tgz",
+ "integrity": "sha512-MW8Y6HqHS5yzQkwGoLk/ZyE1tWpnz/seDoY4INsbvUZdknuUf80yn3H+s6eGKtT/0Bfqon/W9sY7pEkgHRPQgA==",
+ "cpu": [
+ "arm"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@tauri-apps/cli-linux-arm64-gnu": {
+ "version": "2.6.2",
+ "resolved": "https://registry.npmjs.org/@tauri-apps/cli-linux-arm64-gnu/-/cli-linux-arm64-gnu-2.6.2.tgz",
+ "integrity": "sha512-9PdINTUtnyrnQt9hvC4y1m0NoxKSw/wUB9OTBAQabPj8WLAdvySWiUpEiqJjwLhlu4T6ltXZRpNTEzous3/RXg==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@tauri-apps/cli-linux-arm64-musl": {
+ "version": "2.6.2",
+ "resolved": "https://registry.npmjs.org/@tauri-apps/cli-linux-arm64-musl/-/cli-linux-arm64-musl-2.6.2.tgz",
+ "integrity": "sha512-LrcJTRr7FrtQlTDkYaRXIGo/8YU/xkWmBPC646WwKNZ/S6yqCiDcOMoPe7Cx4ZvcG6sK6LUCLQMfaSNEL7PT0A==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@tauri-apps/cli-linux-riscv64-gnu": {
+ "version": "2.6.2",
+ "resolved": "https://registry.npmjs.org/@tauri-apps/cli-linux-riscv64-gnu/-/cli-linux-riscv64-gnu-2.6.2.tgz",
+ "integrity": "sha512-GnTshO/BaZ9KGIazz2EiFfXGWgLur5/pjqklRA/ck42PGdUQJhV/Ao7A7TdXPjqAzpFxNo6M/Hx0GCH2iMS7IA==",
+ "cpu": [
+ "riscv64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@tauri-apps/cli-linux-x64-gnu": {
+ "version": "2.6.2",
+ "resolved": "https://registry.npmjs.org/@tauri-apps/cli-linux-x64-gnu/-/cli-linux-x64-gnu-2.6.2.tgz",
+ "integrity": "sha512-QDG3WeJD6UJekmrtVPCJRzlKgn9sGzhvD58oAw5gIU+DRovgmmG2U1jH9fS361oYGjWWO7d/KM9t0kugZzi4lQ==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@tauri-apps/cli-linux-x64-musl": {
+ "version": "2.6.2",
+ "resolved": "https://registry.npmjs.org/@tauri-apps/cli-linux-x64-musl/-/cli-linux-x64-musl-2.6.2.tgz",
+ "integrity": "sha512-TNVTDDtnWzuVqWBFdZ4+8ZTg17tc21v+CT5XBQ+KYCoYtCrIaHpW04fS5Tmudi+vYdBwoPDfwpKEB6LhCeFraQ==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@tauri-apps/cli-win32-arm64-msvc": {
+ "version": "2.6.2",
+ "resolved": "https://registry.npmjs.org/@tauri-apps/cli-win32-arm64-msvc/-/cli-win32-arm64-msvc-2.6.2.tgz",
+ "integrity": "sha512-z77C1oa/hMLO/jM1JF39tK3M3v9nou7RsBnQoOY54z5WPcpVAbS0XdFhXB7sSN72BOiO3moDky9lQANQz6L3CA==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@tauri-apps/cli-win32-ia32-msvc": {
+ "version": "2.6.2",
+ "resolved": "https://registry.npmjs.org/@tauri-apps/cli-win32-ia32-msvc/-/cli-win32-ia32-msvc-2.6.2.tgz",
+ "integrity": "sha512-TmD8BbzbjluBw8+QEIWUVmFa9aAluSkT1N937n1mpYLXcPbTpbunqRFiIznTwupoJNJIdtpF/t7BdZDRh5rrcg==",
+ "cpu": [
+ "ia32"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@tauri-apps/cli-win32-x64-msvc": {
+ "version": "2.6.2",
+ "resolved": "https://registry.npmjs.org/@tauri-apps/cli-win32-x64-msvc/-/cli-win32-x64-msvc-2.6.2.tgz",
+ "integrity": "sha512-ItB8RCKk+nCmqOxOvbNtltz6x1A4QX6cSM21kj3NkpcnjT9rHSMcfyf8WVI2fkoMUJR80iqCblUX6ARxC3lj6w==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@tauri-apps/plugin-dialog": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/@tauri-apps/plugin-dialog/-/plugin-dialog-2.3.0.tgz",
+ "integrity": "sha512-ylSBvYYShpGlKKh732ZuaHyJ5Ie1JR71QCXewCtsRLqGdc8Is4xWdz6t43rzXyvkItM9syNPMvFVcvjgEy+/GA==",
+ "dependencies": {
+ "@tauri-apps/api": "^2.6.0"
+ }
+ },
+ "node_modules/@tauri-apps/plugin-log": {
+ "version": "2.6.0",
+ "resolved": "https://registry.npmjs.org/@tauri-apps/plugin-log/-/plugin-log-2.6.0.tgz",
+ "integrity": "sha512-gVp3l31akA1Jk2bZsTA0hMFD5/gLe49Nw1btu5lViau0QqgC2XyT79LSwvy7a44ewtQbSexchqIg7oTJKMIbXQ==",
+ "dependencies": {
+ "@tauri-apps/api": "^2.6.0"
+ }
+ },
+ "node_modules/@tauri-apps/plugin-opener": {
+ "version": "2.4.0",
+ "resolved": "https://registry.npmjs.org/@tauri-apps/plugin-opener/-/plugin-opener-2.4.0.tgz",
+ "integrity": "sha512-43VyN8JJtvKWJY72WI/KNZszTpDpzHULFxQs0CJBIYUdCRowQ6Q1feWTDb979N7nldqSuDOaBupZ6wz2nvuWwQ==",
+ "dependencies": {
+ "@tauri-apps/api": "^2.6.0"
+ }
+ },
+ "node_modules/@types/babel__core": {
+ "version": "7.20.5",
+ "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz",
+ "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==",
+ "dev": true,
+ "dependencies": {
+ "@babel/parser": "^7.20.7",
+ "@babel/types": "^7.20.7",
+ "@types/babel__generator": "*",
+ "@types/babel__template": "*",
+ "@types/babel__traverse": "*"
+ }
+ },
+ "node_modules/@types/babel__generator": {
+ "version": "7.27.0",
+ "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.27.0.tgz",
+ "integrity": "sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==",
+ "dev": true,
+ "dependencies": {
+ "@babel/types": "^7.0.0"
+ }
+ },
+ "node_modules/@types/babel__template": {
+ "version": "7.4.4",
+ "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz",
+ "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==",
+ "dev": true,
+ "dependencies": {
+ "@babel/parser": "^7.1.0",
+ "@babel/types": "^7.0.0"
+ }
+ },
+ "node_modules/@types/babel__traverse": {
+ "version": "7.20.7",
+ "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.7.tgz",
+ "integrity": "sha512-dkO5fhS7+/oos4ciWxyEyjWe48zmG6wbCheo/G2ZnHx4fs3EU6YC6UM8rk56gAjNJ9P3MTH2jo5jb92/K6wbng==",
+ "dev": true,
+ "dependencies": {
+ "@babel/types": "^7.20.7"
+ }
+ },
+ "node_modules/@types/estree": {
+ "version": "1.0.8",
+ "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz",
+ "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==",
+ "dev": true
+ },
+ "node_modules/@types/parse-json": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.2.tgz",
+ "integrity": "sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw=="
+ },
+ "node_modules/@types/prop-types": {
+ "version": "15.7.15",
+ "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.15.tgz",
+ "integrity": "sha512-F6bEyamV9jKGAFBEmlQnesRPGOQqS2+Uwi0Em15xenOxHaf2hv6L8YCVn3rPdPJOiJfPiCnLIRyvwVaqMY3MIw=="
+ },
+ "node_modules/@types/react": {
+ "version": "18.3.23",
+ "resolved": "https://registry.npmjs.org/@types/react/-/react-18.3.23.tgz",
+ "integrity": "sha512-/LDXMQh55EzZQ0uVAZmKKhfENivEvWz6E+EYzh+/MCjMhNsotd+ZHhBGIjFDTi6+fz0OhQQQLbTgdQIxxCsC0w==",
+ "dependencies": {
+ "@types/prop-types": "*",
+ "csstype": "^3.0.2"
+ }
+ },
+ "node_modules/@types/react-dom": {
+ "version": "18.3.7",
+ "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.3.7.tgz",
+ "integrity": "sha512-MEe3UeoENYVFXzoXEWsvcpg6ZvlrFNlOQ7EOsvhI3CfAXwzPfO8Qwuxd40nepsYKqyyVQnTdEfv68q91yLcKrQ==",
+ "dev": true,
+ "peerDependencies": {
+ "@types/react": "^18.0.0"
+ }
+ },
+ "node_modules/@types/react-transition-group": {
+ "version": "4.4.12",
+ "resolved": "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.12.tgz",
+ "integrity": "sha512-8TV6R3h2j7a91c+1DXdJi3Syo69zzIZbz7Lg5tORM5LEJG7X/E6a1V3drRyBRZq7/utz7A+c4OgYLiLcYGHG6w==",
+ "peerDependencies": {
+ "@types/react": "*"
+ }
+ },
+ "node_modules/@vercel/edge": {
+ "version": "1.2.2",
+ "resolved": "https://registry.npmjs.org/@vercel/edge/-/edge-1.2.2.tgz",
+ "integrity": "sha512-1+y+f6rk0Yc9ss9bRDgz/gdpLimwoRteKHhrcgHvEpjbP1nyT3ByqEMWm2BTcpIO5UtDmIFXc8zdq4LR190PDA=="
+ },
+ "node_modules/@vimeo/player": {
+ "version": "2.29.0",
+ "resolved": "https://registry.npmjs.org/@vimeo/player/-/player-2.29.0.tgz",
+ "integrity": "sha512-9JjvjeqUndb9otCCFd0/+2ESsLk7VkDE6sxOBy9iy2ukezuQbplVRi+g9g59yAurKofbmTi/KcKxBGO/22zWRw==",
+ "dependencies": {
+ "native-promise-only": "0.8.1",
+ "weakmap-polyfill": "2.0.4"
+ }
+ },
+ "node_modules/@vitejs/plugin-react": {
+ "version": "4.6.0",
+ "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-4.6.0.tgz",
+ "integrity": "sha512-5Kgff+m8e2PB+9j51eGHEpn5kUzRKH2Ry0qGoe8ItJg7pqnkPrYPkDQZGgGmTa0EGarHrkjLvOdU3b1fzI8otQ==",
+ "dev": true,
+ "dependencies": {
+ "@babel/core": "^7.27.4",
+ "@babel/plugin-transform-react-jsx-self": "^7.27.1",
+ "@babel/plugin-transform-react-jsx-source": "^7.27.1",
+ "@rolldown/pluginutils": "1.0.0-beta.19",
+ "@types/babel__core": "^7.20.5",
+ "react-refresh": "^0.17.0"
+ },
+ "engines": {
+ "node": "^14.18.0 || >=16.0.0"
+ },
+ "peerDependencies": {
+ "vite": "^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0-beta.0"
+ }
+ },
+ "node_modules/babel-plugin-macros": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz",
+ "integrity": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==",
+ "dependencies": {
+ "@babel/runtime": "^7.12.5",
+ "cosmiconfig": "^7.0.0",
+ "resolve": "^1.19.0"
+ },
+ "engines": {
+ "node": ">=10",
+ "npm": ">=6"
+ }
+ },
+ "node_modules/bcp-47": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/bcp-47/-/bcp-47-2.1.0.tgz",
+ "integrity": "sha512-9IIS3UPrvIa1Ej+lVDdDwO7zLehjqsaByECw0bu2RRGP73jALm6FYbzI5gWbgHLvNdkvfXB5YrSbocZdOS0c0w==",
+ "dependencies": {
+ "is-alphabetical": "^2.0.0",
+ "is-alphanumerical": "^2.0.0",
+ "is-decimal": "^2.0.0"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/bcp-47-match": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/bcp-47-match/-/bcp-47-match-2.0.3.tgz",
+ "integrity": "sha512-JtTezzbAibu8G0R9op9zb3vcWZd9JF6M0xOYGPn0fNCd7wOpRB1mU2mH9T8gaBGbAAyIIVgB2G7xG0GP98zMAQ==",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/bcp-47-normalize": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/bcp-47-normalize/-/bcp-47-normalize-2.3.0.tgz",
+ "integrity": "sha512-8I/wfzqQvttUFz7HVJgIZ7+dj3vUaIyIxYXaTRP1YWoSDfzt6TUmxaKZeuXR62qBmYr+nvuWINFRl6pZ5DlN4Q==",
+ "dependencies": {
+ "bcp-47": "^2.0.0",
+ "bcp-47-match": "^2.0.0"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/browserslist": {
+ "version": "4.25.1",
+ "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.25.1.tgz",
+ "integrity": "sha512-KGj0KoOMXLpSNkkEI6Z6mShmQy0bc1I+T7K9N81k4WWMrfz+6fQ6es80B/YLAeRoKvjYE1YSHHOW1qe9xIVzHw==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/browserslist"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/browserslist"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
+ "dependencies": {
+ "caniuse-lite": "^1.0.30001726",
+ "electron-to-chromium": "^1.5.173",
+ "node-releases": "^2.0.19",
+ "update-browserslist-db": "^1.1.3"
+ },
+ "bin": {
+ "browserslist": "cli.js"
+ },
+ "engines": {
+ "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
+ }
+ },
+ "node_modules/callsites": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz",
+ "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==",
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/caniuse-lite": {
+ "version": "1.0.30001727",
+ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001727.tgz",
+ "integrity": "sha512-pB68nIHmbN6L/4C6MH1DokyR3bYqFwjaSs/sWDHGj4CTcFtQUQMuJftVwWkXq7mNWOybD3KhUv3oWHoGxgP14Q==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/browserslist"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/caniuse-lite"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ]
+ },
+ "node_modules/castable-video": {
+ "version": "1.1.10",
+ "resolved": "https://registry.npmjs.org/castable-video/-/castable-video-1.1.10.tgz",
+ "integrity": "sha512-/T1I0A4VG769wTEZ8gWuy1Crn9saAfRTd1UYTb8xbOPlN78+zOi/1nU2dD5koNkfE5VWvgabkIqrGKmyNXOjSQ==",
+ "dependencies": {
+ "custom-media-element": "~1.4.5"
+ }
+ },
+ "node_modules/ce-la-react": {
+ "version": "0.3.0",
+ "resolved": "https://registry.npmjs.org/ce-la-react/-/ce-la-react-0.3.0.tgz",
+ "integrity": "sha512-84SEDLNHaAjykzlkqgKRq95hA3qnxrsTrwh4hTgBq6tfpINqajxz4bkz9q4orhUfpqDPQRgdCzYTF3bHcvTIlQ==",
+ "peerDependencies": {
+ "react": ">=17.0.0"
+ }
+ },
+ "node_modules/cloudflare-video-element": {
+ "version": "1.3.2",
+ "resolved": "https://registry.npmjs.org/cloudflare-video-element/-/cloudflare-video-element-1.3.2.tgz",
+ "integrity": "sha512-6M55oHTqDKVIu7sUhuvJnjTfZDEfyNEhBi5gP9dcUK3m2ECWm4J6xLEbwWaaRhgbfQ3cR5zIazEYXuFwoxUp0w=="
+ },
+ "node_modules/clsx": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz",
+ "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==",
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/codem-isoboxer": {
+ "version": "0.3.10",
+ "resolved": "https://registry.npmjs.org/codem-isoboxer/-/codem-isoboxer-0.3.10.tgz",
+ "integrity": "sha512-eNk3TRV+xQMJ1PEj0FQGY8KD4m0GPxT487XJ+Iftm7mVa9WpPFDMWqPt+46buiP5j5Wzqe5oMIhqBcAeKfygSA=="
+ },
+ "node_modules/convert-source-map": {
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz",
+ "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A=="
+ },
+ "node_modules/cosmiconfig": {
+ "version": "7.1.0",
+ "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz",
+ "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==",
+ "dependencies": {
+ "@types/parse-json": "^4.0.0",
+ "import-fresh": "^3.2.1",
+ "parse-json": "^5.0.0",
+ "path-type": "^4.0.0",
+ "yaml": "^1.10.0"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/cosmiconfig/node_modules/yaml": {
+ "version": "1.10.2",
+ "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz",
+ "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==",
+ "engines": {
+ "node": ">= 6"
+ }
+ },
+ "node_modules/csstype": {
+ "version": "3.1.3",
+ "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz",
+ "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw=="
+ },
+ "node_modules/custom-media-element": {
+ "version": "1.4.5",
+ "resolved": "https://registry.npmjs.org/custom-media-element/-/custom-media-element-1.4.5.tgz",
+ "integrity": "sha512-cjrsQufETwxjvwZbYbKBCJNvmQ2++G9AvT45zDi7NXL9k2PdVcs2h0jQz96J6G4TMKRCcEsoJ+QTgQD00Igtjw=="
+ },
+ "node_modules/dash-video-element": {
+ "version": "0.1.5",
+ "resolved": "https://registry.npmjs.org/dash-video-element/-/dash-video-element-0.1.5.tgz",
+ "integrity": "sha512-sPXsm1evfjLPXLTpE5a1a/9swmQP+kHUDu4HfPN4qXPHIKh8OJ6Vfr3kbidbLEke3MpS4c02iVBBpo4oiejWjw==",
+ "dependencies": {
+ "custom-media-element": "^1.4.5",
+ "dashjs": "^5.0.3"
+ }
+ },
+ "node_modules/dashjs": {
+ "version": "5.0.3",
+ "resolved": "https://registry.npmjs.org/dashjs/-/dashjs-5.0.3.tgz",
+ "integrity": "sha512-TXndNnCUjFjF2nYBxDVba+hWRpVkadkQ8flLp7kHkem+5+wZTfRShJCnVkPUosmjS0YPE9fVNLbYPJxHBeQZvA==",
+ "dependencies": {
+ "@svta/common-media-library": "^0.12.4",
+ "bcp-47-match": "^2.0.3",
+ "bcp-47-normalize": "^2.3.0",
+ "codem-isoboxer": "0.3.10",
+ "fast-deep-equal": "3.1.3",
+ "html-entities": "^2.5.2",
+ "imsc": "^1.1.5",
+ "localforage": "^1.10.0",
+ "path-browserify": "^1.0.1",
+ "ua-parser-js": "^1.0.37"
+ }
+ },
+ "node_modules/debug": {
+ "version": "4.4.1",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.1.tgz",
+ "integrity": "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==",
+ "dependencies": {
+ "ms": "^2.1.3"
+ },
+ "engines": {
+ "node": ">=6.0"
+ },
+ "peerDependenciesMeta": {
+ "supports-color": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/deepmerge": {
+ "version": "4.3.1",
+ "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz",
+ "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/dom-helpers": {
+ "version": "5.2.1",
+ "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz",
+ "integrity": "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==",
+ "dependencies": {
+ "@babel/runtime": "^7.8.7",
+ "csstype": "^3.0.2"
+ }
+ },
+ "node_modules/electron-to-chromium": {
+ "version": "1.5.180",
+ "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.180.tgz",
+ "integrity": "sha512-ED+GEyEh3kYMwt2faNmgMB0b8O5qtATGgR4RmRsIp4T6p7B8vdMbIedYndnvZfsaXvSzegtpfqRMDNCjjiSduA==",
+ "dev": true
+ },
+ "node_modules/error-ex": {
+ "version": "1.3.2",
+ "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz",
+ "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==",
+ "dependencies": {
+ "is-arrayish": "^0.2.1"
+ }
+ },
+ "node_modules/esbuild": {
+ "version": "0.25.6",
+ "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.6.tgz",
+ "integrity": "sha512-GVuzuUwtdsghE3ocJ9Bs8PNoF13HNQ5TXbEi2AhvVb8xU1Iwt9Fos9FEamfoee+u/TOsn7GUWc04lz46n2bbTg==",
+ "dev": true,
+ "hasInstallScript": true,
+ "bin": {
+ "esbuild": "bin/esbuild"
+ },
+ "engines": {
+ "node": ">=18"
+ },
+ "optionalDependencies": {
+ "@esbuild/aix-ppc64": "0.25.6",
+ "@esbuild/android-arm": "0.25.6",
+ "@esbuild/android-arm64": "0.25.6",
+ "@esbuild/android-x64": "0.25.6",
+ "@esbuild/darwin-arm64": "0.25.6",
+ "@esbuild/darwin-x64": "0.25.6",
+ "@esbuild/freebsd-arm64": "0.25.6",
+ "@esbuild/freebsd-x64": "0.25.6",
+ "@esbuild/linux-arm": "0.25.6",
+ "@esbuild/linux-arm64": "0.25.6",
+ "@esbuild/linux-ia32": "0.25.6",
+ "@esbuild/linux-loong64": "0.25.6",
+ "@esbuild/linux-mips64el": "0.25.6",
+ "@esbuild/linux-ppc64": "0.25.6",
+ "@esbuild/linux-riscv64": "0.25.6",
+ "@esbuild/linux-s390x": "0.25.6",
+ "@esbuild/linux-x64": "0.25.6",
+ "@esbuild/netbsd-arm64": "0.25.6",
+ "@esbuild/netbsd-x64": "0.25.6",
+ "@esbuild/openbsd-arm64": "0.25.6",
+ "@esbuild/openbsd-x64": "0.25.6",
+ "@esbuild/openharmony-arm64": "0.25.6",
+ "@esbuild/sunos-x64": "0.25.6",
+ "@esbuild/win32-arm64": "0.25.6",
+ "@esbuild/win32-ia32": "0.25.6",
+ "@esbuild/win32-x64": "0.25.6"
+ }
+ },
+ "node_modules/escalade": {
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
+ "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
+ "dev": true,
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/escape-string-regexp": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
+ "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/fast-deep-equal": {
+ "version": "3.1.3",
+ "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
+ "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q=="
+ },
+ "node_modules/fdir": {
+ "version": "6.4.6",
+ "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.4.6.tgz",
+ "integrity": "sha512-hiFoqpyZcfNm1yc4u8oWCf9A2c4D3QjCrks3zmoVKVxpQRzmPNar1hUJcBG2RQHvEVGDN+Jm81ZheVLAQMK6+w==",
+ "dev": true,
+ "peerDependencies": {
+ "picomatch": "^3 || ^4"
+ },
+ "peerDependenciesMeta": {
+ "picomatch": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/find-root": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz",
+ "integrity": "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng=="
+ },
+ "node_modules/fsevents": {
+ "version": "2.3.3",
+ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
+ "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
+ "dev": true,
+ "hasInstallScript": true,
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
+ }
+ },
+ "node_modules/function-bind": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
+ "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/gensync": {
+ "version": "1.0.0-beta.2",
+ "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz",
+ "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==",
+ "dev": true,
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/hasown": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
+ "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
+ "dependencies": {
+ "function-bind": "^1.1.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/hls-video-element": {
+ "version": "1.5.5",
+ "resolved": "https://registry.npmjs.org/hls-video-element/-/hls-video-element-1.5.5.tgz",
+ "integrity": "sha512-7HYIf+jeeCtazcBVVmj16qfTDRKvxd92TMdscocNWPoAePmovPPnii1aBdRsinsiw4rt90B8FgYoHzMhLi1qYQ==",
+ "dependencies": {
+ "custom-media-element": "^1.4.5",
+ "hls.js": "^1.6.5",
+ "media-tracks": "^0.3.3"
+ }
+ },
+ "node_modules/hls.js": {
+ "version": "1.6.7",
+ "resolved": "https://registry.npmjs.org/hls.js/-/hls.js-1.6.7.tgz",
+ "integrity": "sha512-QW2fnwDGKGc9DwQUGLbmMOz8G48UZK7PVNJPcOUql1b8jubKx4/eMHNP5mGqr6tYlJNDG1g10Lx2U/qPzL6zwQ=="
+ },
+ "node_modules/hoist-non-react-statics": {
+ "version": "3.3.2",
+ "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz",
+ "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==",
+ "dependencies": {
+ "react-is": "^16.7.0"
+ }
+ },
+ "node_modules/hoist-non-react-statics/node_modules/react-is": {
+ "version": "16.13.1",
+ "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
+ "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ=="
+ },
+ "node_modules/html-entities": {
+ "version": "2.6.0",
+ "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.6.0.tgz",
+ "integrity": "sha512-kig+rMn/QOVRvr7c86gQ8lWXq+Hkv6CbAH1hLu+RG338StTpE8Z0b44SDVaqVu7HGKf27frdmUYEs9hTUX/cLQ==",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/mdevils"
+ },
+ {
+ "type": "patreon",
+ "url": "https://patreon.com/mdevils"
+ }
+ ]
+ },
+ "node_modules/immediate": {
+ "version": "3.0.6",
+ "resolved": "https://registry.npmjs.org/immediate/-/immediate-3.0.6.tgz",
+ "integrity": "sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ=="
+ },
+ "node_modules/import-fresh": {
+ "version": "3.3.1",
+ "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz",
+ "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==",
+ "dependencies": {
+ "parent-module": "^1.0.0",
+ "resolve-from": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/imsc": {
+ "version": "1.1.5",
+ "resolved": "https://registry.npmjs.org/imsc/-/imsc-1.1.5.tgz",
+ "integrity": "sha512-V8je+CGkcvGhgl2C1GlhqFFiUOIEdwXbXLiu1Fcubvvbo+g9inauqT3l0pNYXGoLPBj3jxtZz9t+wCopMkwadQ==",
+ "dependencies": {
+ "sax": "1.2.1"
+ }
+ },
+ "node_modules/is-alphabetical": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-2.0.1.tgz",
+ "integrity": "sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/is-alphanumerical": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-2.0.1.tgz",
+ "integrity": "sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==",
+ "dependencies": {
+ "is-alphabetical": "^2.0.0",
+ "is-decimal": "^2.0.0"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/is-arrayish": {
+ "version": "0.2.1",
+ "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz",
+ "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg=="
+ },
+ "node_modules/is-core-module": {
+ "version": "2.16.1",
+ "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz",
+ "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==",
+ "dependencies": {
+ "hasown": "^2.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-decimal": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-2.0.1.tgz",
+ "integrity": "sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/js-tokens": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
+ "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ=="
+ },
+ "node_modules/jsesc": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz",
+ "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==",
+ "bin": {
+ "jsesc": "bin/jsesc"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/json-parse-even-better-errors": {
+ "version": "2.3.1",
+ "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz",
+ "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w=="
+ },
+ "node_modules/json5": {
+ "version": "2.2.3",
+ "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz",
+ "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==",
+ "dev": true,
+ "bin": {
+ "json5": "lib/cli.js"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/lie": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/lie/-/lie-3.1.1.tgz",
+ "integrity": "sha512-RiNhHysUjhrDQntfYSfY4MU24coXXdEOgw9WGcKHNeEwffDYbF//u87M1EWaMGzuFoSbqW0C9C6lEEhDOAswfw==",
+ "dependencies": {
+ "immediate": "~3.0.5"
+ }
+ },
+ "node_modules/lines-and-columns": {
+ "version": "1.2.4",
+ "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz",
+ "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg=="
+ },
+ "node_modules/localforage": {
+ "version": "1.10.0",
+ "resolved": "https://registry.npmjs.org/localforage/-/localforage-1.10.0.tgz",
+ "integrity": "sha512-14/H1aX7hzBBmmh7sGPd+AOMkkIrHM3Z1PAyGgZigA1H1p5O5ANnMyWzvpAETtG68/dC4pC0ncy3+PPGzXZHPg==",
+ "dependencies": {
+ "lie": "3.1.1"
+ }
+ },
+ "node_modules/loose-envify": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz",
+ "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==",
+ "dependencies": {
+ "js-tokens": "^3.0.0 || ^4.0.0"
+ },
+ "bin": {
+ "loose-envify": "cli.js"
+ }
+ },
+ "node_modules/lru-cache": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
+ "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
+ "dev": true,
+ "dependencies": {
+ "yallist": "^3.0.2"
+ }
+ },
+ "node_modules/media-chrome": {
+ "version": "4.11.1",
+ "resolved": "https://registry.npmjs.org/media-chrome/-/media-chrome-4.11.1.tgz",
+ "integrity": "sha512-+2niDc4qOwlpFAjwxg1OaizK/zKV6y7QqGm4nBFEVlSaG0ZBgOmfc4IXAPiirZqAlZGaFFUaMqCl1SpGU0/naA==",
+ "dependencies": {
+ "@vercel/edge": "^1.2.1",
+ "ce-la-react": "^0.3.0"
+ }
+ },
+ "node_modules/media-tracks": {
+ "version": "0.3.3",
+ "resolved": "https://registry.npmjs.org/media-tracks/-/media-tracks-0.3.3.tgz",
+ "integrity": "sha512-9P2FuUHnZZ3iji+2RQk7Zkh5AmZTnOG5fODACnjhCVveX1McY3jmCRHofIEI+yTBqplz7LXy48c7fQ3Uigp88w=="
+ },
+ "node_modules/ms": {
+ "version": "2.1.3",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="
+ },
+ "node_modules/mux-embed": {
+ "version": "5.9.0",
+ "resolved": "https://registry.npmjs.org/mux-embed/-/mux-embed-5.9.0.tgz",
+ "integrity": "sha512-wmunL3uoPhma/tWy8PrDPZkvJpXvSFBwbD3KkC4PG8Ztjfb1X3hRJwGUAQyRz7z99b/ovLm2UTTitrkvStjH4w=="
+ },
+ "node_modules/nanoid": {
+ "version": "3.3.11",
+ "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz",
+ "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
+ "bin": {
+ "nanoid": "bin/nanoid.cjs"
+ },
+ "engines": {
+ "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
+ }
+ },
+ "node_modules/native-promise-only": {
+ "version": "0.8.1",
+ "resolved": "https://registry.npmjs.org/native-promise-only/-/native-promise-only-0.8.1.tgz",
+ "integrity": "sha512-zkVhZUA3y8mbz652WrL5x0fB0ehrBkulWT3TomAQ9iDtyXZvzKeEA6GPxAItBYeNYl5yngKRX612qHOhvMkDeg=="
+ },
+ "node_modules/node-releases": {
+ "version": "2.0.19",
+ "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz",
+ "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==",
+ "dev": true
+ },
+ "node_modules/object-assign": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
+ "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/parent-module": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz",
+ "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==",
+ "dependencies": {
+ "callsites": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/parse-json": {
+ "version": "5.2.0",
+ "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz",
+ "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==",
+ "dependencies": {
+ "@babel/code-frame": "^7.0.0",
+ "error-ex": "^1.3.1",
+ "json-parse-even-better-errors": "^2.3.0",
+ "lines-and-columns": "^1.1.6"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/path-browserify": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-1.0.1.tgz",
+ "integrity": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g=="
+ },
+ "node_modules/path-parse": {
+ "version": "1.0.7",
+ "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz",
+ "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw=="
+ },
+ "node_modules/path-type": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz",
+ "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/picocolors": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
+ "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA=="
+ },
+ "node_modules/picomatch": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.2.tgz",
+ "integrity": "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==",
+ "dev": true,
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/jonschlinkert"
+ }
+ },
+ "node_modules/player.style": {
+ "version": "0.1.9",
+ "resolved": "https://registry.npmjs.org/player.style/-/player.style-0.1.9.tgz",
+ "integrity": "sha512-aFmIhHMrnAP8YliFYFMnRw+5AlHqBvnqWy4vHGo2kFxlC+XjmTXqgg62qSxlE8ubAY83c0ViEZGYglSJi6mGCA==",
+ "dependencies": {
+ "media-chrome": "~4.11.0"
+ }
+ },
+ "node_modules/postcss": {
+ "version": "8.5.6",
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz",
+ "integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/postcss/"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/postcss"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
+ "dependencies": {
+ "nanoid": "^3.3.11",
+ "picocolors": "^1.1.1",
+ "source-map-js": "^1.2.1"
+ },
+ "engines": {
+ "node": "^10 || ^12 || >=14"
+ }
+ },
+ "node_modules/prop-types": {
+ "version": "15.8.1",
+ "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz",
+ "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==",
+ "dependencies": {
+ "loose-envify": "^1.4.0",
+ "object-assign": "^4.1.1",
+ "react-is": "^16.13.1"
+ }
+ },
+ "node_modules/prop-types/node_modules/react-is": {
+ "version": "16.13.1",
+ "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
+ "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ=="
+ },
+ "node_modules/react": {
+ "version": "18.3.1",
+ "resolved": "https://registry.npmjs.org/react/-/react-18.3.1.tgz",
+ "integrity": "sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==",
+ "dependencies": {
+ "loose-envify": "^1.1.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/react-dom": {
+ "version": "18.3.1",
+ "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.3.1.tgz",
+ "integrity": "sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==",
+ "dependencies": {
+ "loose-envify": "^1.1.0",
+ "scheduler": "^0.23.2"
+ },
+ "peerDependencies": {
+ "react": "^18.3.1"
+ }
+ },
+ "node_modules/react-is": {
+ "version": "19.1.0",
+ "resolved": "https://registry.npmjs.org/react-is/-/react-is-19.1.0.tgz",
+ "integrity": "sha512-Oe56aUPnkHyyDxxkvqtd7KkdQP5uIUfHxd5XTb3wE9d/kRnZLmKbDB0GWk919tdQ+mxxPtG6EAs6RMT6i1qtHg=="
+ },
+ "node_modules/react-player": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/react-player/-/react-player-3.1.0.tgz",
+ "integrity": "sha512-j3pZ9x3rdlMPYqi0C7h3C7oFIqRcdrul1fjQiacnMU/qEzsJgOLlxd8HMZPX1nQsCblF2iwIIrmgcayf+Eh9yA==",
+ "dependencies": {
+ "@mux/mux-player-react": "^3.5.0",
+ "cloudflare-video-element": "^1.3.2",
+ "dash-video-element": "^0.1.5",
+ "deepmerge": "^4.0.0",
+ "hls-video-element": "^1.5.5",
+ "vimeo-video-element": "^1.5.1",
+ "wistia-video-element": "^1.3.2",
+ "youtube-video-element": "^1.6.0"
+ },
+ "peerDependencies": {
+ "@types/react": "^17.0.0 || ^18 || ^19",
+ "react": "^17.0.2 || ^18 || ^19",
+ "react-dom": "^17.0.2 || ^18 || ^19"
+ }
+ },
+ "node_modules/react-refresh": {
+ "version": "0.17.0",
+ "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.17.0.tgz",
+ "integrity": "sha512-z6F7K9bV85EfseRCp2bzrpyQ0Gkw1uLoCel9XBVWPg/TjRj94SkJzUTGfOa4bs7iJvBWtQG0Wq7wnI0syw3EBQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/react-transition-group": {
+ "version": "4.4.5",
+ "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.5.tgz",
+ "integrity": "sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==",
+ "dependencies": {
+ "@babel/runtime": "^7.5.5",
+ "dom-helpers": "^5.0.1",
+ "loose-envify": "^1.4.0",
+ "prop-types": "^15.6.2"
+ },
+ "peerDependencies": {
+ "react": ">=16.6.0",
+ "react-dom": ">=16.6.0"
+ }
+ },
+ "node_modules/resolve": {
+ "version": "1.22.10",
+ "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.10.tgz",
+ "integrity": "sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==",
+ "dependencies": {
+ "is-core-module": "^2.16.0",
+ "path-parse": "^1.0.7",
+ "supports-preserve-symlinks-flag": "^1.0.0"
+ },
+ "bin": {
+ "resolve": "bin/resolve"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/resolve-from": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
+ "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==",
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/rollup": {
+ "version": "4.44.2",
+ "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.44.2.tgz",
+ "integrity": "sha512-PVoapzTwSEcelaWGth3uR66u7ZRo6qhPHc0f2uRO9fX6XDVNrIiGYS0Pj9+R8yIIYSD/mCx2b16Ws9itljKSPg==",
+ "dev": true,
+ "dependencies": {
+ "@types/estree": "1.0.8"
+ },
+ "bin": {
+ "rollup": "dist/bin/rollup"
+ },
+ "engines": {
+ "node": ">=18.0.0",
+ "npm": ">=8.0.0"
+ },
+ "optionalDependencies": {
+ "@rollup/rollup-android-arm-eabi": "4.44.2",
+ "@rollup/rollup-android-arm64": "4.44.2",
+ "@rollup/rollup-darwin-arm64": "4.44.2",
+ "@rollup/rollup-darwin-x64": "4.44.2",
+ "@rollup/rollup-freebsd-arm64": "4.44.2",
+ "@rollup/rollup-freebsd-x64": "4.44.2",
+ "@rollup/rollup-linux-arm-gnueabihf": "4.44.2",
+ "@rollup/rollup-linux-arm-musleabihf": "4.44.2",
+ "@rollup/rollup-linux-arm64-gnu": "4.44.2",
+ "@rollup/rollup-linux-arm64-musl": "4.44.2",
+ "@rollup/rollup-linux-loongarch64-gnu": "4.44.2",
+ "@rollup/rollup-linux-powerpc64le-gnu": "4.44.2",
+ "@rollup/rollup-linux-riscv64-gnu": "4.44.2",
+ "@rollup/rollup-linux-riscv64-musl": "4.44.2",
+ "@rollup/rollup-linux-s390x-gnu": "4.44.2",
+ "@rollup/rollup-linux-x64-gnu": "4.44.2",
+ "@rollup/rollup-linux-x64-musl": "4.44.2",
+ "@rollup/rollup-win32-arm64-msvc": "4.44.2",
+ "@rollup/rollup-win32-ia32-msvc": "4.44.2",
+ "@rollup/rollup-win32-x64-msvc": "4.44.2",
+ "fsevents": "~2.3.2"
+ }
+ },
+ "node_modules/sax": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.1.tgz",
+ "integrity": "sha512-8I2a3LovHTOpm7NV5yOyO8IHqgVsfK4+UuySrXU8YXkSRX7k6hCV9b3HrkKCr3nMpgj+0bmocaJJWpvp1oc7ZA=="
+ },
+ "node_modules/scheduler": {
+ "version": "0.23.2",
+ "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.2.tgz",
+ "integrity": "sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==",
+ "dependencies": {
+ "loose-envify": "^1.1.0"
+ }
+ },
+ "node_modules/semver": {
+ "version": "6.3.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
+ "dev": true,
+ "bin": {
+ "semver": "bin/semver.js"
+ }
+ },
+ "node_modules/source-map": {
+ "version": "0.5.7",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
+ "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/source-map-js": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
+ "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/stylis": {
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/stylis/-/stylis-4.2.0.tgz",
+ "integrity": "sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw=="
+ },
+ "node_modules/super-media-element": {
+ "version": "1.4.2",
+ "resolved": "https://registry.npmjs.org/super-media-element/-/super-media-element-1.4.2.tgz",
+ "integrity": "sha512-9pP/CVNp4NF2MNlRzLwQkjiTgKKe9WYXrLh9+8QokWmMxz+zt2mf1utkWLco26IuA3AfVcTb//qtlTIjY3VHxA=="
+ },
+ "node_modules/supports-preserve-symlinks-flag": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz",
+ "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==",
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/tinyglobby": {
+ "version": "0.2.14",
+ "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.14.tgz",
+ "integrity": "sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ==",
+ "dev": true,
+ "dependencies": {
+ "fdir": "^6.4.4",
+ "picomatch": "^4.0.2"
+ },
+ "engines": {
+ "node": ">=12.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/SuperchupuDev"
+ }
+ },
+ "node_modules/typescript": {
+ "version": "5.6.3",
+ "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.6.3.tgz",
+ "integrity": "sha512-hjcS1mhfuyi4WW8IWtjP7brDrG2cuDZukyrYrSauoXGNgx0S7zceP07adYkJycEr56BOUTNPzbInooiN3fn1qw==",
+ "dev": true,
+ "bin": {
+ "tsc": "bin/tsc",
+ "tsserver": "bin/tsserver"
+ },
+ "engines": {
+ "node": ">=14.17"
+ }
+ },
+ "node_modules/ua-parser-js": {
+ "version": "1.0.40",
+ "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-1.0.40.tgz",
+ "integrity": "sha512-z6PJ8Lml+v3ichVojCiB8toQJBuwR42ySM4ezjXIqXK3M0HczmKQ3LF4rhU55PfD99KEEXQG6yb7iOMyvYuHew==",
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/ua-parser-js"
+ },
+ {
+ "type": "paypal",
+ "url": "https://paypal.me/faisalman"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/faisalman"
+ }
+ ],
+ "bin": {
+ "ua-parser-js": "script/cli.js"
+ },
+ "engines": {
+ "node": "*"
+ }
+ },
+ "node_modules/update-browserslist-db": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.3.tgz",
+ "integrity": "sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/browserslist"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/browserslist"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
+ "dependencies": {
+ "escalade": "^3.2.0",
+ "picocolors": "^1.1.1"
+ },
+ "bin": {
+ "update-browserslist-db": "cli.js"
+ },
+ "peerDependencies": {
+ "browserslist": ">= 4.21.0"
+ }
+ },
+ "node_modules/vimeo-video-element": {
+ "version": "1.5.1",
+ "resolved": "https://registry.npmjs.org/vimeo-video-element/-/vimeo-video-element-1.5.1.tgz",
+ "integrity": "sha512-KV1PCBYqnwsA364/Lr6UhKhQAAwhyxtv9AhS1Yex43u1Yk9roClYRcvfKldo/K66lMHWMKs4G0GcaItOjvqQmw==",
+ "dependencies": {
+ "@vimeo/player": "2.29.0"
+ }
+ },
+ "node_modules/vite": {
+ "version": "6.3.5",
+ "resolved": "https://registry.npmjs.org/vite/-/vite-6.3.5.tgz",
+ "integrity": "sha512-cZn6NDFE7wdTpINgs++ZJ4N49W2vRp8LCKrn3Ob1kYNtOo21vfDoaV5GzBfLU4MovSAB8uNRm4jgzVQZ+mBzPQ==",
+ "dev": true,
+ "dependencies": {
+ "esbuild": "^0.25.0",
+ "fdir": "^6.4.4",
+ "picomatch": "^4.0.2",
+ "postcss": "^8.5.3",
+ "rollup": "^4.34.9",
+ "tinyglobby": "^0.2.13"
+ },
+ "bin": {
+ "vite": "bin/vite.js"
+ },
+ "engines": {
+ "node": "^18.0.0 || ^20.0.0 || >=22.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/vitejs/vite?sponsor=1"
+ },
+ "optionalDependencies": {
+ "fsevents": "~2.3.3"
+ },
+ "peerDependencies": {
+ "@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0",
+ "jiti": ">=1.21.0",
+ "less": "*",
+ "lightningcss": "^1.21.0",
+ "sass": "*",
+ "sass-embedded": "*",
+ "stylus": "*",
+ "sugarss": "*",
+ "terser": "^5.16.0",
+ "tsx": "^4.8.1",
+ "yaml": "^2.4.2"
+ },
+ "peerDependenciesMeta": {
+ "@types/node": {
+ "optional": true
+ },
+ "jiti": {
+ "optional": true
+ },
+ "less": {
+ "optional": true
+ },
+ "lightningcss": {
+ "optional": true
+ },
+ "sass": {
+ "optional": true
+ },
+ "sass-embedded": {
+ "optional": true
+ },
+ "stylus": {
+ "optional": true
+ },
+ "sugarss": {
+ "optional": true
+ },
+ "terser": {
+ "optional": true
+ },
+ "tsx": {
+ "optional": true
+ },
+ "yaml": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/weakmap-polyfill": {
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/weakmap-polyfill/-/weakmap-polyfill-2.0.4.tgz",
+ "integrity": "sha512-ZzxBf288iALJseijWelmECm/1x7ZwQn3sMYIkDr2VvZp7r6SEKuT8D0O9Wiq6L9Nl5mazrOMcmiZE/2NCenaxw==",
+ "engines": {
+ "node": ">=8.10.0"
+ }
+ },
+ "node_modules/wistia-video-element": {
+ "version": "1.3.2",
+ "resolved": "https://registry.npmjs.org/wistia-video-element/-/wistia-video-element-1.3.2.tgz",
+ "integrity": "sha512-7aSvKXAxBQErewJaDCoZGPOQaFGLljtMMo88eT1ZGRu6TQBwNSqBSIF/Q3x7hBtYWI6ZgqVTKbCACIZn4tAiOQ==",
+ "dependencies": {
+ "super-media-element": "~1.4.2"
+ }
+ },
+ "node_modules/yallist": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",
+ "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==",
+ "dev": true
+ },
+ "node_modules/yaml": {
+ "version": "2.8.0",
+ "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.8.0.tgz",
+ "integrity": "sha512-4lLa/EcQCB0cJkyts+FpIRx5G/llPxfP6VQU5KByHEhLxY3IJCH0f0Hy1MHI8sClTvsIb8qwRJ6R/ZdlDJ/leQ==",
+ "dev": true,
+ "optional": true,
+ "peer": true,
+ "bin": {
+ "yaml": "bin.mjs"
+ },
+ "engines": {
+ "node": ">= 14.6"
+ }
+ },
+ "node_modules/youtube-video-element": {
+ "version": "1.6.0",
+ "resolved": "https://registry.npmjs.org/youtube-video-element/-/youtube-video-element-1.6.0.tgz",
+ "integrity": "sha512-yu6aMaSyyp8ygqNNnf01xjJdy7AaWwEhLlJ/XRdFteLP/djM7i7JOrK0INgjvBnv88dAtiW9PKZ0OQQzGFeydw=="
+ }
+ }
+}
diff --git a/package.json b/package.json
new file mode 100644
index 0000000..6ee2328
--- /dev/null
+++ b/package.json
@@ -0,0 +1,34 @@
+{
+ "name": "videoclipper",
+ "private": true,
+ "version": "0.0.2",
+ "type": "module",
+ "scripts": {
+ "dev": "vite",
+ "build": "tsc && vite build",
+ "preview": "vite preview",
+ "tauri": "tauri",
+ "tauri-dev": "tauri dev",
+ "tauri-build": "tauri build"
+ },
+ "dependencies": {
+ "@emotion/react": "^11.14.0",
+ "@emotion/styled": "^11.14.1",
+ "@mui/material": "^7.2.0",
+ "@tauri-apps/api": "^2",
+ "@tauri-apps/plugin-dialog": "^2.3.0",
+ "@tauri-apps/plugin-log": "^2.6.0",
+ "@tauri-apps/plugin-opener": "^2",
+ "react": "^18.3.1",
+ "react-dom": "^18.3.1",
+ "react-player": "^3.1.0"
+ },
+ "devDependencies": {
+ "@tauri-apps/cli": "^2",
+ "@types/react": "^18.3.1",
+ "@types/react-dom": "^18.3.1",
+ "@vitejs/plugin-react": "^4.3.4",
+ "typescript": "~5.6.2",
+ "vite": "^6.0.3"
+ }
+}
diff --git a/public/tauri.svg b/public/tauri.svg
new file mode 100644
index 0000000..31b62c9
--- /dev/null
+++ b/public/tauri.svg
@@ -0,0 +1,6 @@
+
diff --git a/public/videoclipper_screenshot.png b/public/videoclipper_screenshot.png
new file mode 100644
index 0000000..c97c367
Binary files /dev/null and b/public/videoclipper_screenshot.png differ
diff --git a/public/vite.svg b/public/vite.svg
new file mode 100644
index 0000000..e7b8dfb
--- /dev/null
+++ b/public/vite.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/src-tauri/.gitignore b/src-tauri/.gitignore
new file mode 100644
index 0000000..b21bd68
--- /dev/null
+++ b/src-tauri/.gitignore
@@ -0,0 +1,7 @@
+# Generated by Cargo
+# will have compiled files and executables
+/target/
+
+# Generated by Tauri
+# will have schema files for capabilities auto-completion
+/gen/schemas
diff --git a/src-tauri/2 b/src-tauri/2
new file mode 100644
index 0000000..90a6a10
--- /dev/null
+++ b/src-tauri/2
@@ -0,0 +1,7 @@
+
+added 1 package, and audited 182 packages in 1s
+
+33 packages are looking for funding
+ run `npm fund` for details
+
+found 0 vulnerabilities
diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock
new file mode 100644
index 0000000..42a709e
--- /dev/null
+++ b/src-tauri/Cargo.lock
@@ -0,0 +1,5642 @@
+# This file is automatically @generated by Cargo.
+# It is not intended for manual editing.
+version = 4
+
+[[package]]
+name = "addr2line"
+version = "0.24.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1"
+dependencies = [
+ "gimli",
+]
+
+[[package]]
+name = "adler2"
+version = "2.0.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
+
+[[package]]
+name = "ahash"
+version = "0.7.8"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9"
+dependencies = [
+ "getrandom 0.2.16",
+ "once_cell",
+ "version_check",
+]
+
+[[package]]
+name = "aho-corasick"
+version = "1.1.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
+dependencies = [
+ "memchr",
+]
+
+[[package]]
+name = "alloc-no-stdlib"
+version = "2.0.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
+
+[[package]]
+name = "alloc-stdlib"
+version = "0.2.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece"
+dependencies = [
+ "alloc-no-stdlib",
+]
+
+[[package]]
+name = "android-tzdata"
+version = "0.1.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
+
+[[package]]
+name = "android_log-sys"
+version = "0.3.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "84521a3cf562bc62942e294181d9eef17eb38ceb8c68677bc49f144e4c3d4f8d"
+
+[[package]]
+name = "android_logger"
+version = "0.15.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "dbb4e440d04be07da1f1bf44fb4495ebd58669372fe0cffa6e48595ac5bd88a3"
+dependencies = [
+ "android_log-sys",
+ "env_filter",
+ "log",
+]
+
+[[package]]
+name = "android_system_properties"
+version = "0.1.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
+dependencies = [
+ "libc",
+]
+
+[[package]]
+name = "anyhow"
+version = "1.0.98"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487"
+
+[[package]]
+name = "arrayvec"
+version = "0.7.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
+
+[[package]]
+name = "ashpd"
+version = "0.11.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "6cbdf310d77fd3aaee6ea2093db7011dc2d35d2eb3481e5607f1f8d942ed99df"
+dependencies = [
+ "enumflags2",
+ "futures-channel",
+ "futures-util",
+ "rand 0.9.1",
+ "raw-window-handle",
+ "serde",
+ "serde_repr",
+ "tokio",
+ "url",
+ "zbus",
+]
+
+[[package]]
+name = "async-broadcast"
+version = "0.7.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "435a87a52755b8f27fcf321ac4f04b2802e337c8c4872923137471ec39c37532"
+dependencies = [
+ "event-listener",
+ "event-listener-strategy",
+ "futures-core",
+ "pin-project-lite",
+]
+
+[[package]]
+name = "async-channel"
+version = "2.5.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "924ed96dd52d1b75e9c1a3e6275715fd320f5f9439fb5a4a11fa51f4221158d2"
+dependencies = [
+ "concurrent-queue",
+ "event-listener-strategy",
+ "futures-core",
+ "pin-project-lite",
+]
+
+[[package]]
+name = "async-executor"
+version = "1.13.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "bb812ffb58524bdd10860d7d974e2f01cc0950c2438a74ee5ec2e2280c6c4ffa"
+dependencies = [
+ "async-task",
+ "concurrent-queue",
+ "fastrand",
+ "futures-lite",
+ "pin-project-lite",
+ "slab",
+]
+
+[[package]]
+name = "async-io"
+version = "2.4.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1237c0ae75a0f3765f58910ff9cdd0a12eeb39ab2f4c7de23262f337f0aacbb3"
+dependencies = [
+ "async-lock",
+ "cfg-if",
+ "concurrent-queue",
+ "futures-io",
+ "futures-lite",
+ "parking",
+ "polling",
+ "rustix",
+ "slab",
+ "tracing",
+ "windows-sys 0.59.0",
+]
+
+[[package]]
+name = "async-lock"
+version = "3.4.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ff6e472cdea888a4bd64f342f09b3f50e1886d32afe8df3d663c01140b811b18"
+dependencies = [
+ "event-listener",
+ "event-listener-strategy",
+ "pin-project-lite",
+]
+
+[[package]]
+name = "async-process"
+version = "2.3.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "cde3f4e40e6021d7acffc90095cbd6dc54cb593903d1de5832f435eb274b85dc"
+dependencies = [
+ "async-channel",
+ "async-io",
+ "async-lock",
+ "async-signal",
+ "async-task",
+ "blocking",
+ "cfg-if",
+ "event-listener",
+ "futures-lite",
+ "rustix",
+ "tracing",
+]
+
+[[package]]
+name = "async-recursion"
+version = "1.1.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.104",
+]
+
+[[package]]
+name = "async-signal"
+version = "0.2.11"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d7605a4e50d4b06df3898d5a70bf5fde51ed9059b0434b73105193bc27acce0d"
+dependencies = [
+ "async-io",
+ "async-lock",
+ "atomic-waker",
+ "cfg-if",
+ "futures-core",
+ "futures-io",
+ "rustix",
+ "signal-hook-registry",
+ "slab",
+ "windows-sys 0.59.0",
+]
+
+[[package]]
+name = "async-task"
+version = "4.7.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de"
+
+[[package]]
+name = "async-trait"
+version = "0.1.88"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e539d3fca749fcee5236ab05e93a52867dd549cc157c8cb7f99595f3cedffdb5"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.104",
+]
+
+[[package]]
+name = "atk"
+version = "0.18.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "241b621213072e993be4f6f3a9e4b45f65b7e6faad43001be957184b7bb1824b"
+dependencies = [
+ "atk-sys",
+ "glib",
+ "libc",
+]
+
+[[package]]
+name = "atk-sys"
+version = "0.18.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c5e48b684b0ca77d2bbadeef17424c2ea3c897d44d566a1617e7e8f30614d086"
+dependencies = [
+ "glib-sys",
+ "gobject-sys",
+ "libc",
+ "system-deps",
+]
+
+[[package]]
+name = "atomic-waker"
+version = "1.1.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
+
+[[package]]
+name = "autocfg"
+version = "1.5.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
+
+[[package]]
+name = "backtrace"
+version = "0.3.75"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "6806a6321ec58106fea15becdad98371e28d92ccbc7c8f1b3b6dd724fe8f1002"
+dependencies = [
+ "addr2line",
+ "cfg-if",
+ "libc",
+ "miniz_oxide",
+ "object",
+ "rustc-demangle",
+ "windows-targets 0.52.6",
+]
+
+[[package]]
+name = "base64"
+version = "0.21.7"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
+
+[[package]]
+name = "base64"
+version = "0.22.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
+
+[[package]]
+name = "bitflags"
+version = "1.3.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
+
+[[package]]
+name = "bitflags"
+version = "2.9.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967"
+dependencies = [
+ "serde",
+]
+
+[[package]]
+name = "bitvec"
+version = "1.0.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c"
+dependencies = [
+ "funty",
+ "radium",
+ "tap",
+ "wyz",
+]
+
+[[package]]
+name = "block-buffer"
+version = "0.10.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
+dependencies = [
+ "generic-array",
+]
+
+[[package]]
+name = "block2"
+version = "0.5.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "2c132eebf10f5cad5289222520a4a058514204aed6d791f1cf4fe8088b82d15f"
+dependencies = [
+ "objc2 0.5.2",
+]
+
+[[package]]
+name = "block2"
+version = "0.6.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "340d2f0bdb2a43c1d3cd40513185b2bd7def0aa1052f956455114bc98f82dcf2"
+dependencies = [
+ "objc2 0.6.1",
+]
+
+[[package]]
+name = "blocking"
+version = "1.6.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e83f8d02be6967315521be875afa792a316e28d57b5a2d401897e2a7921b7f21"
+dependencies = [
+ "async-channel",
+ "async-task",
+ "futures-io",
+ "futures-lite",
+ "piper",
+]
+
+[[package]]
+name = "borsh"
+version = "1.5.7"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ad8646f98db542e39fc66e68a20b2144f6a732636df7c2354e74645faaa433ce"
+dependencies = [
+ "borsh-derive",
+ "cfg_aliases",
+]
+
+[[package]]
+name = "borsh-derive"
+version = "1.5.7"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "fdd1d3c0c2f5833f22386f252fe8ed005c7f59fdcddeef025c01b4c3b9fd9ac3"
+dependencies = [
+ "once_cell",
+ "proc-macro-crate 3.3.0",
+ "proc-macro2",
+ "quote",
+ "syn 2.0.104",
+]
+
+[[package]]
+name = "brotli"
+version = "8.0.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9991eea70ea4f293524138648e41ee89b0b2b12ddef3b255effa43c8056e0e0d"
+dependencies = [
+ "alloc-no-stdlib",
+ "alloc-stdlib",
+ "brotli-decompressor",
+]
+
+[[package]]
+name = "brotli-decompressor"
+version = "5.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "874bb8112abecc98cbd6d81ea4fa7e94fb9449648c93cc89aa40c81c24d7de03"
+dependencies = [
+ "alloc-no-stdlib",
+ "alloc-stdlib",
+]
+
+[[package]]
+name = "bumpalo"
+version = "3.19.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
+
+[[package]]
+name = "byte-unit"
+version = "5.1.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e1cd29c3c585209b0cbc7309bfe3ed7efd8c84c21b7af29c8bfae908f8777174"
+dependencies = [
+ "rust_decimal",
+ "serde",
+ "utf8-width",
+]
+
+[[package]]
+name = "bytecheck"
+version = "0.6.12"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "23cdc57ce23ac53c931e88a43d06d070a6fd142f2617be5855eb75efc9beb1c2"
+dependencies = [
+ "bytecheck_derive",
+ "ptr_meta",
+ "simdutf8",
+]
+
+[[package]]
+name = "bytecheck_derive"
+version = "0.6.12"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3db406d29fbcd95542e92559bed4d8ad92636d1ca8b3b72ede10b4bcc010e659"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 1.0.109",
+]
+
+[[package]]
+name = "bytemuck"
+version = "1.23.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5c76a5792e44e4abe34d3abf15636779261d45a7450612059293d1d2cfc63422"
+
+[[package]]
+name = "byteorder"
+version = "1.5.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
+
+[[package]]
+name = "bytes"
+version = "1.10.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
+dependencies = [
+ "serde",
+]
+
+[[package]]
+name = "cairo-rs"
+version = "0.18.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8ca26ef0159422fb77631dc9d17b102f253b876fe1586b03b803e63a309b4ee2"
+dependencies = [
+ "bitflags 2.9.1",
+ "cairo-sys-rs",
+ "glib",
+ "libc",
+ "once_cell",
+ "thiserror 1.0.69",
+]
+
+[[package]]
+name = "cairo-sys-rs"
+version = "0.18.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "685c9fa8e590b8b3d678873528d83411db17242a73fccaed827770ea0fedda51"
+dependencies = [
+ "glib-sys",
+ "libc",
+ "system-deps",
+]
+
+[[package]]
+name = "camino"
+version = "1.1.10"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "0da45bc31171d8d6960122e222a67740df867c1dd53b4d51caa297084c185cab"
+dependencies = [
+ "serde",
+]
+
+[[package]]
+name = "cargo-platform"
+version = "0.1.9"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e35af189006b9c0f00a064685c727031e3ed2d8020f7ba284d78cc2671bd36ea"
+dependencies = [
+ "serde",
+]
+
+[[package]]
+name = "cargo_metadata"
+version = "0.19.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "dd5eb614ed4c27c5d706420e4320fbe3216ab31fa1c33cd8246ac36dae4479ba"
+dependencies = [
+ "camino",
+ "cargo-platform",
+ "semver",
+ "serde",
+ "serde_json",
+ "thiserror 2.0.12",
+]
+
+[[package]]
+name = "cargo_toml"
+version = "0.22.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "02260d489095346e5cafd04dea8e8cb54d1d74fcd759022a9b72986ebe9a1257"
+dependencies = [
+ "serde",
+ "toml 0.8.23",
+]
+
+[[package]]
+name = "cc"
+version = "1.2.29"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5c1599538de2394445747c8cf7935946e3cc27e9625f889d979bfb2aaf569362"
+dependencies = [
+ "shlex",
+]
+
+[[package]]
+name = "cesu8"
+version = "1.1.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
+
+[[package]]
+name = "cfb"
+version = "0.7.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d38f2da7a0a2c4ccf0065be06397cc26a81f4e528be095826eee9d4adbb8c60f"
+dependencies = [
+ "byteorder",
+ "fnv",
+ "uuid",
+]
+
+[[package]]
+name = "cfg-expr"
+version = "0.15.8"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d067ad48b8650848b989a59a86c6c36a995d02d2bf778d45c3c5d57bc2718f02"
+dependencies = [
+ "smallvec",
+ "target-lexicon",
+]
+
+[[package]]
+name = "cfg-if"
+version = "1.0.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9555578bc9e57714c812a1f84e4fc5b4d21fcb063490c624de019f7464c91268"
+
+[[package]]
+name = "cfg_aliases"
+version = "0.2.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
+
+[[package]]
+name = "chrono"
+version = "0.4.41"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c469d952047f47f91b68d1cba3f10d63c11d73e4636f24f08daf0278abf01c4d"
+dependencies = [
+ "android-tzdata",
+ "iana-time-zone",
+ "num-traits",
+ "serde",
+ "windows-link",
+]
+
+[[package]]
+name = "combine"
+version = "4.6.7"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
+dependencies = [
+ "bytes",
+ "memchr",
+]
+
+[[package]]
+name = "concurrent-queue"
+version = "2.5.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
+dependencies = [
+ "crossbeam-utils",
+]
+
+[[package]]
+name = "convert_case"
+version = "0.4.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
+
+[[package]]
+name = "cookie"
+version = "0.18.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "4ddef33a339a91ea89fb53151bd0a4689cfce27055c291dfa69945475d22c747"
+dependencies = [
+ "time",
+ "version_check",
+]
+
+[[package]]
+name = "core-foundation"
+version = "0.10.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
+dependencies = [
+ "core-foundation-sys",
+ "libc",
+]
+
+[[package]]
+name = "core-foundation-sys"
+version = "0.8.7"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
+
+[[package]]
+name = "core-graphics"
+version = "0.24.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "fa95a34622365fa5bbf40b20b75dba8dfa8c94c734aea8ac9a5ca38af14316f1"
+dependencies = [
+ "bitflags 2.9.1",
+ "core-foundation",
+ "core-graphics-types",
+ "foreign-types",
+ "libc",
+]
+
+[[package]]
+name = "core-graphics-types"
+version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3d44a101f213f6c4cdc1853d4b78aef6db6bdfa3468798cc1d9912f4735013eb"
+dependencies = [
+ "bitflags 2.9.1",
+ "core-foundation",
+ "libc",
+]
+
+[[package]]
+name = "cpufeatures"
+version = "0.2.17"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
+dependencies = [
+ "libc",
+]
+
+[[package]]
+name = "crc32fast"
+version = "1.4.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
+dependencies = [
+ "cfg-if",
+]
+
+[[package]]
+name = "crossbeam-channel"
+version = "0.5.15"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
+dependencies = [
+ "crossbeam-utils",
+]
+
+[[package]]
+name = "crossbeam-utils"
+version = "0.8.21"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
+
+[[package]]
+name = "crypto-common"
+version = "0.1.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
+dependencies = [
+ "generic-array",
+ "typenum",
+]
+
+[[package]]
+name = "cssparser"
+version = "0.29.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f93d03419cb5950ccfd3daf3ff1c7a36ace64609a1a8746d493df1ca0afde0fa"
+dependencies = [
+ "cssparser-macros",
+ "dtoa-short",
+ "itoa",
+ "matches",
+ "phf 0.10.1",
+ "proc-macro2",
+ "quote",
+ "smallvec",
+ "syn 1.0.109",
+]
+
+[[package]]
+name = "cssparser-macros"
+version = "0.6.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331"
+dependencies = [
+ "quote",
+ "syn 2.0.104",
+]
+
+[[package]]
+name = "ctor"
+version = "0.2.9"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "32a2785755761f3ddc1492979ce1e48d2c00d09311c39e4466429188f3dd6501"
+dependencies = [
+ "quote",
+ "syn 2.0.104",
+]
+
+[[package]]
+name = "darling"
+version = "0.20.11"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
+dependencies = [
+ "darling_core",
+ "darling_macro",
+]
+
+[[package]]
+name = "darling_core"
+version = "0.20.11"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e"
+dependencies = [
+ "fnv",
+ "ident_case",
+ "proc-macro2",
+ "quote",
+ "strsim",
+ "syn 2.0.104",
+]
+
+[[package]]
+name = "darling_macro"
+version = "0.20.11"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
+dependencies = [
+ "darling_core",
+ "quote",
+ "syn 2.0.104",
+]
+
+[[package]]
+name = "deranged"
+version = "0.4.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9c9e6a11ca8224451684bc0d7d5a7adbf8f2fd6887261a1cfc3c0432f9d4068e"
+dependencies = [
+ "powerfmt",
+ "serde",
+]
+
+[[package]]
+name = "derive_more"
+version = "0.99.20"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "6edb4b64a43d977b8e99788fe3a04d483834fba1215a7e02caa415b626497f7f"
+dependencies = [
+ "convert_case",
+ "proc-macro2",
+ "quote",
+ "rustc_version",
+ "syn 2.0.104",
+]
+
+[[package]]
+name = "digest"
+version = "0.10.7"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
+dependencies = [
+ "block-buffer",
+ "crypto-common",
+]
+
+[[package]]
+name = "dirs"
+version = "6.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e"
+dependencies = [
+ "dirs-sys",
+]
+
+[[package]]
+name = "dirs-sys"
+version = "0.5.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab"
+dependencies = [
+ "libc",
+ "option-ext",
+ "redox_users",
+ "windows-sys 0.60.2",
+]
+
+[[package]]
+name = "dispatch"
+version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b"
+
+[[package]]
+name = "dispatch2"
+version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1a0d569e003ff27784e0e14e4a594048698e0c0f0b66cabcb51511be55a7caa0"
+dependencies = [
+ "bitflags 2.9.1",
+ "block2 0.6.1",
+ "libc",
+ "objc2 0.6.1",
+]
+
+[[package]]
+name = "dispatch2"
+version = "0.3.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "89a09f22a6c6069a18470eb92d2298acf25463f14256d24778e1230d789a2aec"
+dependencies = [
+ "bitflags 2.9.1",
+ "objc2 0.6.1",
+]
+
+[[package]]
+name = "displaydoc"
+version = "0.2.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.104",
+]
+
+[[package]]
+name = "dlopen2"
+version = "0.7.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9e1297103d2bbaea85724fcee6294c2d50b1081f9ad47d0f6f6f61eda65315a6"
+dependencies = [
+ "dlopen2_derive",
+ "libc",
+ "once_cell",
+ "winapi",
+]
+
+[[package]]
+name = "dlopen2_derive"
+version = "0.4.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "788160fb30de9cdd857af31c6a2675904b16ece8fc2737b2c7127ba368c9d0f4"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.104",
+]
+
+[[package]]
+name = "dpi"
+version = "0.1.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d8b14ccef22fc6f5a8f4d7d768562a182c04ce9a3b3157b91390b52ddfdf1a76"
+dependencies = [
+ "serde",
+]
+
+[[package]]
+name = "dtoa"
+version = "1.0.10"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d6add3b8cff394282be81f3fc1a0605db594ed69890078ca6e2cab1c408bcf04"
+
+[[package]]
+name = "dtoa-short"
+version = "0.3.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "cd1511a7b6a56299bd043a9c167a6d2bfb37bf84a6dfceaba651168adfb43c87"
+dependencies = [
+ "dtoa",
+]
+
+[[package]]
+name = "dunce"
+version = "1.0.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
+
+[[package]]
+name = "dyn-clone"
+version = "1.0.19"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1c7a8fb8a9fbf66c1f703fe16184d10ca0ee9d23be5b4436400408ba54a95005"
+
+[[package]]
+name = "embed-resource"
+version = "3.0.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "4c6d81016d6c977deefb2ef8d8290da019e27cc26167e102185da528e6c0ab38"
+dependencies = [
+ "cc",
+ "memchr",
+ "rustc_version",
+ "toml 0.9.0",
+ "vswhom",
+ "winreg",
+]
+
+[[package]]
+name = "embed_plist"
+version = "1.2.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "4ef6b89e5b37196644d8796de5268852ff179b44e96276cf4290264843743bb7"
+
+[[package]]
+name = "endi"
+version = "1.1.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a3d8a32ae18130a3c84dd492d4215c3d913c3b07c6b63c2eb3eb7ff1101ab7bf"
+
+[[package]]
+name = "enumflags2"
+version = "0.7.12"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1027f7680c853e056ebcec683615fb6fbbc07dbaa13b4d5d9442b146ded4ecef"
+dependencies = [
+ "enumflags2_derive",
+ "serde",
+]
+
+[[package]]
+name = "enumflags2_derive"
+version = "0.7.12"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "67c78a4d8fdf9953a5c9d458f9efe940fd97a0cab0941c075a813ac594733827"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.104",
+]
+
+[[package]]
+name = "env_filter"
+version = "0.1.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "186e05a59d4c50738528153b83b0b0194d3a29507dfec16eccd4b342903397d0"
+dependencies = [
+ "log",
+ "regex",
+]
+
+[[package]]
+name = "equivalent"
+version = "1.0.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
+
+[[package]]
+name = "erased-serde"
+version = "0.4.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e004d887f51fcb9fef17317a2f3525c887d8aa3f4f50fed920816a688284a5b7"
+dependencies = [
+ "serde",
+ "typeid",
+]
+
+[[package]]
+name = "errno"
+version = "0.3.13"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "778e2ac28f6c47af28e4907f13ffd1e1ddbd400980a9abd7c8df189bf578a5ad"
+dependencies = [
+ "libc",
+ "windows-sys 0.60.2",
+]
+
+[[package]]
+name = "event-listener"
+version = "5.4.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3492acde4c3fc54c845eaab3eed8bd00c7a7d881f78bfc801e43a93dec1331ae"
+dependencies = [
+ "concurrent-queue",
+ "parking",
+ "pin-project-lite",
+]
+
+[[package]]
+name = "event-listener-strategy"
+version = "0.5.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93"
+dependencies = [
+ "event-listener",
+ "pin-project-lite",
+]
+
+[[package]]
+name = "fastrand"
+version = "2.3.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
+
+[[package]]
+name = "fdeflate"
+version = "0.3.7"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c"
+dependencies = [
+ "simd-adler32",
+]
+
+[[package]]
+name = "fern"
+version = "0.7.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "4316185f709b23713e41e3195f90edef7fb00c3ed4adc79769cf09cc762a3b29"
+dependencies = [
+ "log",
+]
+
+[[package]]
+name = "field-offset"
+version = "0.3.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "38e2275cc4e4fc009b0669731a1e5ab7ebf11f469eaede2bab9309a5b4d6057f"
+dependencies = [
+ "memoffset",
+ "rustc_version",
+]
+
+[[package]]
+name = "flate2"
+version = "1.1.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "4a3d7db9596fecd151c5f638c0ee5d5bd487b6e0ea232e5dc96d5250f6f94b1d"
+dependencies = [
+ "crc32fast",
+ "miniz_oxide",
+]
+
+[[package]]
+name = "fnv"
+version = "1.0.7"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
+
+[[package]]
+name = "foreign-types"
+version = "0.5.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965"
+dependencies = [
+ "foreign-types-macros",
+ "foreign-types-shared",
+]
+
+[[package]]
+name = "foreign-types-macros"
+version = "0.2.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1a5c6c585bc94aaf2c7b51dd4c2ba22680844aba4c687be581871a6f518c5742"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.104",
+]
+
+[[package]]
+name = "foreign-types-shared"
+version = "0.3.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b"
+
+[[package]]
+name = "form_urlencoded"
+version = "1.2.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
+dependencies = [
+ "percent-encoding",
+]
+
+[[package]]
+name = "funty"
+version = "2.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
+
+[[package]]
+name = "futf"
+version = "0.1.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843"
+dependencies = [
+ "mac",
+ "new_debug_unreachable",
+]
+
+[[package]]
+name = "futures-channel"
+version = "0.3.31"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
+dependencies = [
+ "futures-core",
+]
+
+[[package]]
+name = "futures-core"
+version = "0.3.31"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
+
+[[package]]
+name = "futures-executor"
+version = "0.3.31"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
+dependencies = [
+ "futures-core",
+ "futures-task",
+ "futures-util",
+]
+
+[[package]]
+name = "futures-io"
+version = "0.3.31"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
+
+[[package]]
+name = "futures-lite"
+version = "2.6.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f5edaec856126859abb19ed65f39e90fea3a9574b9707f13539acf4abf7eb532"
+dependencies = [
+ "fastrand",
+ "futures-core",
+ "futures-io",
+ "parking",
+ "pin-project-lite",
+]
+
+[[package]]
+name = "futures-macro"
+version = "0.3.31"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.104",
+]
+
+[[package]]
+name = "futures-sink"
+version = "0.3.31"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
+
+[[package]]
+name = "futures-task"
+version = "0.3.31"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
+
+[[package]]
+name = "futures-util"
+version = "0.3.31"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
+dependencies = [
+ "futures-core",
+ "futures-io",
+ "futures-macro",
+ "futures-sink",
+ "futures-task",
+ "memchr",
+ "pin-project-lite",
+ "pin-utils",
+ "slab",
+]
+
+[[package]]
+name = "fxhash"
+version = "0.2.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
+dependencies = [
+ "byteorder",
+]
+
+[[package]]
+name = "gdk"
+version = "0.18.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d9f245958c627ac99d8e529166f9823fb3b838d1d41fd2b297af3075093c2691"
+dependencies = [
+ "cairo-rs",
+ "gdk-pixbuf",
+ "gdk-sys",
+ "gio",
+ "glib",
+ "libc",
+ "pango",
+]
+
+[[package]]
+name = "gdk-pixbuf"
+version = "0.18.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "50e1f5f1b0bfb830d6ccc8066d18db35c487b1b2b1e8589b5dfe9f07e8defaec"
+dependencies = [
+ "gdk-pixbuf-sys",
+ "gio",
+ "glib",
+ "libc",
+ "once_cell",
+]
+
+[[package]]
+name = "gdk-pixbuf-sys"
+version = "0.18.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3f9839ea644ed9c97a34d129ad56d38a25e6756f99f3a88e15cd39c20629caf7"
+dependencies = [
+ "gio-sys",
+ "glib-sys",
+ "gobject-sys",
+ "libc",
+ "system-deps",
+]
+
+[[package]]
+name = "gdk-sys"
+version = "0.18.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5c2d13f38594ac1e66619e188c6d5a1adb98d11b2fcf7894fc416ad76aa2f3f7"
+dependencies = [
+ "cairo-sys-rs",
+ "gdk-pixbuf-sys",
+ "gio-sys",
+ "glib-sys",
+ "gobject-sys",
+ "libc",
+ "pango-sys",
+ "pkg-config",
+ "system-deps",
+]
+
+[[package]]
+name = "gdkwayland-sys"
+version = "0.18.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "140071d506d223f7572b9f09b5e155afbd77428cd5cc7af8f2694c41d98dfe69"
+dependencies = [
+ "gdk-sys",
+ "glib-sys",
+ "gobject-sys",
+ "libc",
+ "pkg-config",
+ "system-deps",
+]
+
+[[package]]
+name = "gdkx11"
+version = "0.18.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3caa00e14351bebbc8183b3c36690327eb77c49abc2268dd4bd36b856db3fbfe"
+dependencies = [
+ "gdk",
+ "gdkx11-sys",
+ "gio",
+ "glib",
+ "libc",
+ "x11",
+]
+
+[[package]]
+name = "gdkx11-sys"
+version = "0.18.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "6e2e7445fe01ac26f11601db260dd8608fe172514eb63b3b5e261ea6b0f4428d"
+dependencies = [
+ "gdk-sys",
+ "glib-sys",
+ "libc",
+ "system-deps",
+ "x11",
+]
+
+[[package]]
+name = "generic-array"
+version = "0.14.7"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
+dependencies = [
+ "typenum",
+ "version_check",
+]
+
+[[package]]
+name = "getrandom"
+version = "0.1.16"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
+dependencies = [
+ "cfg-if",
+ "libc",
+ "wasi 0.9.0+wasi-snapshot-preview1",
+]
+
+[[package]]
+name = "getrandom"
+version = "0.2.16"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
+dependencies = [
+ "cfg-if",
+ "libc",
+ "wasi 0.11.1+wasi-snapshot-preview1",
+]
+
+[[package]]
+name = "getrandom"
+version = "0.3.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
+dependencies = [
+ "cfg-if",
+ "libc",
+ "r-efi",
+ "wasi 0.14.2+wasi-0.2.4",
+]
+
+[[package]]
+name = "gimli"
+version = "0.31.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
+
+[[package]]
+name = "gio"
+version = "0.18.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d4fc8f532f87b79cbc51a79748f16a6828fb784be93145a322fa14d06d354c73"
+dependencies = [
+ "futures-channel",
+ "futures-core",
+ "futures-io",
+ "futures-util",
+ "gio-sys",
+ "glib",
+ "libc",
+ "once_cell",
+ "pin-project-lite",
+ "smallvec",
+ "thiserror 1.0.69",
+]
+
+[[package]]
+name = "gio-sys"
+version = "0.18.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "37566df850baf5e4cb0dfb78af2e4b9898d817ed9263d1090a2df958c64737d2"
+dependencies = [
+ "glib-sys",
+ "gobject-sys",
+ "libc",
+ "system-deps",
+ "winapi",
+]
+
+[[package]]
+name = "glib"
+version = "0.18.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "233daaf6e83ae6a12a52055f568f9d7cf4671dabb78ff9560ab6da230ce00ee5"
+dependencies = [
+ "bitflags 2.9.1",
+ "futures-channel",
+ "futures-core",
+ "futures-executor",
+ "futures-task",
+ "futures-util",
+ "gio-sys",
+ "glib-macros",
+ "glib-sys",
+ "gobject-sys",
+ "libc",
+ "memchr",
+ "once_cell",
+ "smallvec",
+ "thiserror 1.0.69",
+]
+
+[[package]]
+name = "glib-macros"
+version = "0.18.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "0bb0228f477c0900c880fd78c8759b95c7636dbd7842707f49e132378aa2acdc"
+dependencies = [
+ "heck 0.4.1",
+ "proc-macro-crate 2.0.0",
+ "proc-macro-error",
+ "proc-macro2",
+ "quote",
+ "syn 2.0.104",
+]
+
+[[package]]
+name = "glib-sys"
+version = "0.18.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "063ce2eb6a8d0ea93d2bf8ba1957e78dbab6be1c2220dd3daca57d5a9d869898"
+dependencies = [
+ "libc",
+ "system-deps",
+]
+
+[[package]]
+name = "glob"
+version = "0.3.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
+
+[[package]]
+name = "gobject-sys"
+version = "0.18.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "0850127b514d1c4a4654ead6dedadb18198999985908e6ffe4436f53c785ce44"
+dependencies = [
+ "glib-sys",
+ "libc",
+ "system-deps",
+]
+
+[[package]]
+name = "gtk"
+version = "0.18.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "fd56fb197bfc42bd5d2751f4f017d44ff59fbb58140c6b49f9b3b2bdab08506a"
+dependencies = [
+ "atk",
+ "cairo-rs",
+ "field-offset",
+ "futures-channel",
+ "gdk",
+ "gdk-pixbuf",
+ "gio",
+ "glib",
+ "gtk-sys",
+ "gtk3-macros",
+ "libc",
+ "pango",
+ "pkg-config",
+]
+
+[[package]]
+name = "gtk-sys"
+version = "0.18.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8f29a1c21c59553eb7dd40e918be54dccd60c52b049b75119d5d96ce6b624414"
+dependencies = [
+ "atk-sys",
+ "cairo-sys-rs",
+ "gdk-pixbuf-sys",
+ "gdk-sys",
+ "gio-sys",
+ "glib-sys",
+ "gobject-sys",
+ "libc",
+ "pango-sys",
+ "system-deps",
+]
+
+[[package]]
+name = "gtk3-macros"
+version = "0.18.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "52ff3c5b21f14f0736fed6dcfc0bfb4225ebf5725f3c0209edeec181e4d73e9d"
+dependencies = [
+ "proc-macro-crate 1.3.1",
+ "proc-macro-error",
+ "proc-macro2",
+ "quote",
+ "syn 2.0.104",
+]
+
+[[package]]
+name = "hashbrown"
+version = "0.12.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
+dependencies = [
+ "ahash",
+]
+
+[[package]]
+name = "hashbrown"
+version = "0.15.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5971ac85611da7067dbfcabef3c70ebb5606018acd9e2a3903a0da507521e0d5"
+
+[[package]]
+name = "heck"
+version = "0.4.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
+
+[[package]]
+name = "heck"
+version = "0.5.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
+
+[[package]]
+name = "hermit-abi"
+version = "0.5.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
+
+[[package]]
+name = "hex"
+version = "0.4.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
+
+[[package]]
+name = "html5ever"
+version = "0.29.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3b7410cae13cbc75623c98ac4cbfd1f0bedddf3227afc24f370cf0f50a44a11c"
+dependencies = [
+ "log",
+ "mac",
+ "markup5ever",
+ "match_token",
+]
+
+[[package]]
+name = "http"
+version = "1.3.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565"
+dependencies = [
+ "bytes",
+ "fnv",
+ "itoa",
+]
+
+[[package]]
+name = "http-body"
+version = "1.0.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
+dependencies = [
+ "bytes",
+ "http",
+]
+
+[[package]]
+name = "http-body-util"
+version = "0.1.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
+dependencies = [
+ "bytes",
+ "futures-core",
+ "http",
+ "http-body",
+ "pin-project-lite",
+]
+
+[[package]]
+name = "http-range"
+version = "0.1.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "21dec9db110f5f872ed9699c3ecf50cf16f423502706ba5c72462e28d3157573"
+
+[[package]]
+name = "httparse"
+version = "1.10.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
+
+[[package]]
+name = "hyper"
+version = "1.6.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "cc2b571658e38e0c01b1fdca3bbbe93c00d3d71693ff2770043f8c29bc7d6f80"
+dependencies = [
+ "bytes",
+ "futures-channel",
+ "futures-util",
+ "http",
+ "http-body",
+ "httparse",
+ "itoa",
+ "pin-project-lite",
+ "smallvec",
+ "tokio",
+ "want",
+]
+
+[[package]]
+name = "hyper-util"
+version = "0.1.15"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7f66d5bd4c6f02bf0542fad85d626775bab9258cf795a4256dcaf3161114d1df"
+dependencies = [
+ "base64 0.22.1",
+ "bytes",
+ "futures-channel",
+ "futures-core",
+ "futures-util",
+ "http",
+ "http-body",
+ "hyper",
+ "ipnet",
+ "libc",
+ "percent-encoding",
+ "pin-project-lite",
+ "socket2",
+ "tokio",
+ "tower-service",
+ "tracing",
+]
+
+[[package]]
+name = "iana-time-zone"
+version = "0.1.63"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b0c919e5debc312ad217002b8048a17b7d83f80703865bbfcfebb0458b0b27d8"
+dependencies = [
+ "android_system_properties",
+ "core-foundation-sys",
+ "iana-time-zone-haiku",
+ "js-sys",
+ "log",
+ "wasm-bindgen",
+ "windows-core",
+]
+
+[[package]]
+name = "iana-time-zone-haiku"
+version = "0.1.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
+dependencies = [
+ "cc",
+]
+
+[[package]]
+name = "ico"
+version = "0.4.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "cc50b891e4acf8fe0e71ef88ec43ad82ee07b3810ad09de10f1d01f072ed4b98"
+dependencies = [
+ "byteorder",
+ "png",
+]
+
+[[package]]
+name = "icu_collections"
+version = "2.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47"
+dependencies = [
+ "displaydoc",
+ "potential_utf",
+ "yoke",
+ "zerofrom",
+ "zerovec",
+]
+
+[[package]]
+name = "icu_locale_core"
+version = "2.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a"
+dependencies = [
+ "displaydoc",
+ "litemap",
+ "tinystr",
+ "writeable",
+ "zerovec",
+]
+
+[[package]]
+name = "icu_normalizer"
+version = "2.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979"
+dependencies = [
+ "displaydoc",
+ "icu_collections",
+ "icu_normalizer_data",
+ "icu_properties",
+ "icu_provider",
+ "smallvec",
+ "zerovec",
+]
+
+[[package]]
+name = "icu_normalizer_data"
+version = "2.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3"
+
+[[package]]
+name = "icu_properties"
+version = "2.0.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b"
+dependencies = [
+ "displaydoc",
+ "icu_collections",
+ "icu_locale_core",
+ "icu_properties_data",
+ "icu_provider",
+ "potential_utf",
+ "zerotrie",
+ "zerovec",
+]
+
+[[package]]
+name = "icu_properties_data"
+version = "2.0.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632"
+
+[[package]]
+name = "icu_provider"
+version = "2.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af"
+dependencies = [
+ "displaydoc",
+ "icu_locale_core",
+ "stable_deref_trait",
+ "tinystr",
+ "writeable",
+ "yoke",
+ "zerofrom",
+ "zerotrie",
+ "zerovec",
+]
+
+[[package]]
+name = "ident_case"
+version = "1.0.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
+
+[[package]]
+name = "idna"
+version = "1.0.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e"
+dependencies = [
+ "idna_adapter",
+ "smallvec",
+ "utf8_iter",
+]
+
+[[package]]
+name = "idna_adapter"
+version = "1.2.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
+dependencies = [
+ "icu_normalizer",
+ "icu_properties",
+]
+
+[[package]]
+name = "indexmap"
+version = "1.9.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
+dependencies = [
+ "autocfg",
+ "hashbrown 0.12.3",
+ "serde",
+]
+
+[[package]]
+name = "indexmap"
+version = "2.10.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "fe4cd85333e22411419a0bcae1297d25e58c9443848b11dc6a86fefe8c78a661"
+dependencies = [
+ "equivalent",
+ "hashbrown 0.15.4",
+ "serde",
+]
+
+[[package]]
+name = "infer"
+version = "0.19.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a588916bfdfd92e71cacef98a63d9b1f0d74d6599980d11894290e7ddefffcf7"
+dependencies = [
+ "cfb",
+]
+
+[[package]]
+name = "io-uring"
+version = "0.7.8"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b86e202f00093dcba4275d4636b93ef9dd75d025ae560d2521b45ea28ab49013"
+dependencies = [
+ "bitflags 2.9.1",
+ "cfg-if",
+ "libc",
+]
+
+[[package]]
+name = "ipnet"
+version = "2.11.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
+
+[[package]]
+name = "iri-string"
+version = "0.7.8"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "dbc5ebe9c3a1a7a5127f920a418f7585e9e758e911d0466ed004f393b0e380b2"
+dependencies = [
+ "memchr",
+ "serde",
+]
+
+[[package]]
+name = "is-docker"
+version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "928bae27f42bc99b60d9ac7334e3a21d10ad8f1835a4e12ec3ec0464765ed1b3"
+dependencies = [
+ "once_cell",
+]
+
+[[package]]
+name = "is-wsl"
+version = "0.4.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "173609498df190136aa7dea1a91db051746d339e18476eed5ca40521f02d7aa5"
+dependencies = [
+ "is-docker",
+ "once_cell",
+]
+
+[[package]]
+name = "itoa"
+version = "1.0.15"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
+
+[[package]]
+name = "javascriptcore-rs"
+version = "1.1.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ca5671e9ffce8ffba57afc24070e906da7fc4b1ba66f2cabebf61bf2ea257fcc"
+dependencies = [
+ "bitflags 1.3.2",
+ "glib",
+ "javascriptcore-rs-sys",
+]
+
+[[package]]
+name = "javascriptcore-rs-sys"
+version = "1.1.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "af1be78d14ffa4b75b66df31840478fef72b51f8c2465d4ca7c194da9f7a5124"
+dependencies = [
+ "glib-sys",
+ "gobject-sys",
+ "libc",
+ "system-deps",
+]
+
+[[package]]
+name = "jni"
+version = "0.21.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97"
+dependencies = [
+ "cesu8",
+ "cfg-if",
+ "combine",
+ "jni-sys",
+ "log",
+ "thiserror 1.0.69",
+ "walkdir",
+ "windows-sys 0.45.0",
+]
+
+[[package]]
+name = "jni-sys"
+version = "0.3.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130"
+
+[[package]]
+name = "js-sys"
+version = "0.3.77"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
+dependencies = [
+ "once_cell",
+ "wasm-bindgen",
+]
+
+[[package]]
+name = "json-patch"
+version = "3.0.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "863726d7afb6bc2590eeff7135d923545e5e964f004c2ccf8716c25e70a86f08"
+dependencies = [
+ "jsonptr",
+ "serde",
+ "serde_json",
+ "thiserror 1.0.69",
+]
+
+[[package]]
+name = "jsonptr"
+version = "0.6.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5dea2b27dd239b2556ed7a25ba842fe47fd602e7fc7433c2a8d6106d4d9edd70"
+dependencies = [
+ "serde",
+ "serde_json",
+]
+
+[[package]]
+name = "keyboard-types"
+version = "0.7.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b750dcadc39a09dbadd74e118f6dd6598df77fa01df0cfcdc52c28dece74528a"
+dependencies = [
+ "bitflags 2.9.1",
+ "serde",
+ "unicode-segmentation",
+]
+
+[[package]]
+name = "kuchikiki"
+version = "0.8.8-speedreader"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "02cb977175687f33fa4afa0c95c112b987ea1443e5a51c8f8ff27dc618270cc2"
+dependencies = [
+ "cssparser",
+ "html5ever",
+ "indexmap 2.10.0",
+ "selectors",
+]
+
+[[package]]
+name = "lazy_static"
+version = "1.5.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
+
+[[package]]
+name = "libappindicator"
+version = "0.9.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "03589b9607c868cc7ae54c0b2a22c8dc03dd41692d48f2d7df73615c6a95dc0a"
+dependencies = [
+ "glib",
+ "gtk",
+ "gtk-sys",
+ "libappindicator-sys",
+ "log",
+]
+
+[[package]]
+name = "libappindicator-sys"
+version = "0.9.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "6e9ec52138abedcc58dc17a7c6c0c00a2bdb4f3427c7f63fa97fd0d859155caf"
+dependencies = [
+ "gtk-sys",
+ "libloading",
+ "once_cell",
+]
+
+[[package]]
+name = "libc"
+version = "0.2.174"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776"
+
+[[package]]
+name = "libloading"
+version = "0.7.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f"
+dependencies = [
+ "cfg-if",
+ "winapi",
+]
+
+[[package]]
+name = "libredox"
+version = "0.1.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1580801010e535496706ba011c15f8532df6b42297d2e471fec38ceadd8c0638"
+dependencies = [
+ "bitflags 2.9.1",
+ "libc",
+]
+
+[[package]]
+name = "linux-raw-sys"
+version = "0.9.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
+
+[[package]]
+name = "litemap"
+version = "0.8.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956"
+
+[[package]]
+name = "lock_api"
+version = "0.4.13"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "96936507f153605bddfcda068dd804796c84324ed2510809e5b2a624c81da765"
+dependencies = [
+ "autocfg",
+ "scopeguard",
+]
+
+[[package]]
+name = "log"
+version = "0.4.27"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
+dependencies = [
+ "value-bag",
+]
+
+[[package]]
+name = "mac"
+version = "0.1.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4"
+
+[[package]]
+name = "markup5ever"
+version = "0.14.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c7a7213d12e1864c0f002f52c2923d4556935a43dec5e71355c2760e0f6e7a18"
+dependencies = [
+ "log",
+ "phf 0.11.3",
+ "phf_codegen 0.11.3",
+ "string_cache",
+ "string_cache_codegen",
+ "tendril",
+]
+
+[[package]]
+name = "match_token"
+version = "0.1.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "88a9689d8d44bf9964484516275f5cd4c9b59457a6940c1d5d0ecbb94510a36b"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.104",
+]
+
+[[package]]
+name = "matches"
+version = "0.1.10"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5"
+
+[[package]]
+name = "memchr"
+version = "2.7.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
+
+[[package]]
+name = "memoffset"
+version = "0.9.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
+dependencies = [
+ "autocfg",
+]
+
+[[package]]
+name = "mime"
+version = "0.3.17"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
+
+[[package]]
+name = "miniz_oxide"
+version = "0.8.9"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
+dependencies = [
+ "adler2",
+ "simd-adler32",
+]
+
+[[package]]
+name = "mio"
+version = "1.0.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c"
+dependencies = [
+ "libc",
+ "wasi 0.11.1+wasi-snapshot-preview1",
+ "windows-sys 0.59.0",
+]
+
+[[package]]
+name = "muda"
+version = "0.17.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "58b89bf91c19bf036347f1ab85a81c560f08c0667c8601bece664d860a600988"
+dependencies = [
+ "crossbeam-channel",
+ "dpi",
+ "gtk",
+ "keyboard-types",
+ "objc2 0.6.1",
+ "objc2-app-kit",
+ "objc2-core-foundation",
+ "objc2-foundation 0.3.1",
+ "once_cell",
+ "png",
+ "serde",
+ "thiserror 2.0.12",
+ "windows-sys 0.59.0",
+]
+
+[[package]]
+name = "ndk"
+version = "0.9.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c3f42e7bbe13d351b6bead8286a43aac9534b82bd3cc43e47037f012ebfd62d4"
+dependencies = [
+ "bitflags 2.9.1",
+ "jni-sys",
+ "log",
+ "ndk-sys",
+ "num_enum",
+ "raw-window-handle",
+ "thiserror 1.0.69",
+]
+
+[[package]]
+name = "ndk-context"
+version = "0.1.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b"
+
+[[package]]
+name = "ndk-sys"
+version = "0.6.0+11769913"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ee6cda3051665f1fb8d9e08fc35c96d5a244fb1be711a03b71118828afc9a873"
+dependencies = [
+ "jni-sys",
+]
+
+[[package]]
+name = "new_debug_unreachable"
+version = "1.0.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
+
+[[package]]
+name = "nix"
+version = "0.30.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "74523f3a35e05aba87a1d978330aef40f67b0304ac79c1c00b294c9830543db6"
+dependencies = [
+ "bitflags 2.9.1",
+ "cfg-if",
+ "cfg_aliases",
+ "libc",
+ "memoffset",
+]
+
+[[package]]
+name = "nodrop"
+version = "0.1.14"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb"
+
+[[package]]
+name = "num-conv"
+version = "0.1.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
+
+[[package]]
+name = "num-traits"
+version = "0.2.19"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
+dependencies = [
+ "autocfg",
+]
+
+[[package]]
+name = "num_enum"
+version = "0.7.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a973b4e44ce6cad84ce69d797acf9a044532e4184c4f267913d1b546a0727b7a"
+dependencies = [
+ "num_enum_derive",
+ "rustversion",
+]
+
+[[package]]
+name = "num_enum_derive"
+version = "0.7.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "77e878c846a8abae00dd069496dbe8751b16ac1c3d6bd2a7283a938e8228f90d"
+dependencies = [
+ "proc-macro-crate 3.3.0",
+ "proc-macro2",
+ "quote",
+ "syn 2.0.104",
+]
+
+[[package]]
+name = "num_threads"
+version = "0.1.7"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9"
+dependencies = [
+ "libc",
+]
+
+[[package]]
+name = "objc-sys"
+version = "0.3.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "cdb91bdd390c7ce1a8607f35f3ca7151b65afc0ff5ff3b34fa350f7d7c7e4310"
+
+[[package]]
+name = "objc2"
+version = "0.5.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "46a785d4eeff09c14c487497c162e92766fbb3e4059a71840cecc03d9a50b804"
+dependencies = [
+ "objc-sys",
+ "objc2-encode",
+]
+
+[[package]]
+name = "objc2"
+version = "0.6.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "88c6597e14493ab2e44ce58f2fdecf095a51f12ca57bec060a11c57332520551"
+dependencies = [
+ "objc2-encode",
+ "objc2-exception-helper",
+]
+
+[[package]]
+name = "objc2-app-kit"
+version = "0.3.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e6f29f568bec459b0ddff777cec4fe3fd8666d82d5a40ebd0ff7e66134f89bcc"
+dependencies = [
+ "bitflags 2.9.1",
+ "block2 0.6.1",
+ "libc",
+ "objc2 0.6.1",
+ "objc2-cloud-kit",
+ "objc2-core-data",
+ "objc2-core-foundation",
+ "objc2-core-graphics",
+ "objc2-core-image",
+ "objc2-foundation 0.3.1",
+ "objc2-quartz-core 0.3.1",
+]
+
+[[package]]
+name = "objc2-cloud-kit"
+version = "0.3.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "17614fdcd9b411e6ff1117dfb1d0150f908ba83a7df81b1f118005fe0a8ea15d"
+dependencies = [
+ "bitflags 2.9.1",
+ "objc2 0.6.1",
+ "objc2-foundation 0.3.1",
+]
+
+[[package]]
+name = "objc2-core-data"
+version = "0.3.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "291fbbf7d29287518e8686417cf7239c74700fd4b607623140a7d4a3c834329d"
+dependencies = [
+ "bitflags 2.9.1",
+ "objc2 0.6.1",
+ "objc2-foundation 0.3.1",
+]
+
+[[package]]
+name = "objc2-core-foundation"
+version = "0.3.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1c10c2894a6fed806ade6027bcd50662746363a9589d3ec9d9bef30a4e4bc166"
+dependencies = [
+ "bitflags 2.9.1",
+ "dispatch2 0.3.0",
+ "objc2 0.6.1",
+]
+
+[[package]]
+name = "objc2-core-graphics"
+version = "0.3.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "989c6c68c13021b5c2d6b71456ebb0f9dc78d752e86a98da7c716f4f9470f5a4"
+dependencies = [
+ "bitflags 2.9.1",
+ "dispatch2 0.3.0",
+ "objc2 0.6.1",
+ "objc2-core-foundation",
+ "objc2-io-surface",
+]
+
+[[package]]
+name = "objc2-core-image"
+version = "0.3.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "79b3dc0cc4386b6ccf21c157591b34a7f44c8e75b064f85502901ab2188c007e"
+dependencies = [
+ "objc2 0.6.1",
+ "objc2-foundation 0.3.1",
+]
+
+[[package]]
+name = "objc2-encode"
+version = "4.1.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33"
+
+[[package]]
+name = "objc2-exception-helper"
+version = "0.1.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c7a1c5fbb72d7735b076bb47b578523aedc40f3c439bea6dfd595c089d79d98a"
+dependencies = [
+ "cc",
+]
+
+[[package]]
+name = "objc2-foundation"
+version = "0.2.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "0ee638a5da3799329310ad4cfa62fbf045d5f56e3ef5ba4149e7452dcf89d5a8"
+dependencies = [
+ "bitflags 2.9.1",
+ "block2 0.5.1",
+ "libc",
+ "objc2 0.5.2",
+]
+
+[[package]]
+name = "objc2-foundation"
+version = "0.3.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "900831247d2fe1a09a683278e5384cfb8c80c79fe6b166f9d14bfdde0ea1b03c"
+dependencies = [
+ "bitflags 2.9.1",
+ "block2 0.6.1",
+ "libc",
+ "objc2 0.6.1",
+ "objc2-core-foundation",
+]
+
+[[package]]
+name = "objc2-io-surface"
+version = "0.3.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7282e9ac92529fa3457ce90ebb15f4ecbc383e8338060960760fa2cf75420c3c"
+dependencies = [
+ "bitflags 2.9.1",
+ "objc2 0.6.1",
+ "objc2-core-foundation",
+]
+
+[[package]]
+name = "objc2-metal"
+version = "0.2.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "dd0cba1276f6023976a406a14ffa85e1fdd19df6b0f737b063b95f6c8c7aadd6"
+dependencies = [
+ "bitflags 2.9.1",
+ "block2 0.5.1",
+ "objc2 0.5.2",
+ "objc2-foundation 0.2.2",
+]
+
+[[package]]
+name = "objc2-quartz-core"
+version = "0.2.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e42bee7bff906b14b167da2bac5efe6b6a07e6f7c0a21a7308d40c960242dc7a"
+dependencies = [
+ "bitflags 2.9.1",
+ "block2 0.5.1",
+ "objc2 0.5.2",
+ "objc2-foundation 0.2.2",
+ "objc2-metal",
+]
+
+[[package]]
+name = "objc2-quartz-core"
+version = "0.3.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "90ffb6a0cd5f182dc964334388560b12a57f7b74b3e2dec5e2722aa2dfb2ccd5"
+dependencies = [
+ "bitflags 2.9.1",
+ "objc2 0.6.1",
+ "objc2-foundation 0.3.1",
+]
+
+[[package]]
+name = "objc2-ui-kit"
+version = "0.3.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "25b1312ad7bc8a0e92adae17aa10f90aae1fb618832f9b993b022b591027daed"
+dependencies = [
+ "bitflags 2.9.1",
+ "objc2 0.6.1",
+ "objc2-core-foundation",
+ "objc2-foundation 0.3.1",
+]
+
+[[package]]
+name = "objc2-web-kit"
+version = "0.3.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "91672909de8b1ce1c2252e95bbee8c1649c9ad9d14b9248b3d7b4c47903c47ad"
+dependencies = [
+ "bitflags 2.9.1",
+ "block2 0.6.1",
+ "objc2 0.6.1",
+ "objc2-app-kit",
+ "objc2-core-foundation",
+ "objc2-foundation 0.3.1",
+]
+
+[[package]]
+name = "object"
+version = "0.36.7"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
+dependencies = [
+ "memchr",
+]
+
+[[package]]
+name = "once_cell"
+version = "1.21.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
+
+[[package]]
+name = "open"
+version = "5.3.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e2483562e62ea94312f3576a7aca397306df7990b8d89033e18766744377ef95"
+dependencies = [
+ "dunce",
+ "is-wsl",
+ "libc",
+ "pathdiff",
+]
+
+[[package]]
+name = "option-ext"
+version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
+
+[[package]]
+name = "ordered-stream"
+version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9aa2b01e1d916879f73a53d01d1d6cee68adbb31d6d9177a8cfce093cced1d50"
+dependencies = [
+ "futures-core",
+ "pin-project-lite",
+]
+
+[[package]]
+name = "pango"
+version = "0.18.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7ca27ec1eb0457ab26f3036ea52229edbdb74dee1edd29063f5b9b010e7ebee4"
+dependencies = [
+ "gio",
+ "glib",
+ "libc",
+ "once_cell",
+ "pango-sys",
+]
+
+[[package]]
+name = "pango-sys"
+version = "0.18.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "436737e391a843e5933d6d9aa102cb126d501e815b83601365a948a518555dc5"
+dependencies = [
+ "glib-sys",
+ "gobject-sys",
+ "libc",
+ "system-deps",
+]
+
+[[package]]
+name = "parking"
+version = "2.2.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
+
+[[package]]
+name = "parking_lot"
+version = "0.12.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "70d58bf43669b5795d1576d0641cfb6fbb2057bf629506267a92807158584a13"
+dependencies = [
+ "lock_api",
+ "parking_lot_core",
+]
+
+[[package]]
+name = "parking_lot_core"
+version = "0.9.11"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "bc838d2a56b5b1a6c25f55575dfc605fabb63bb2365f6c2353ef9159aa69e4a5"
+dependencies = [
+ "cfg-if",
+ "libc",
+ "redox_syscall",
+ "smallvec",
+ "windows-targets 0.52.6",
+]
+
+[[package]]
+name = "pathdiff"
+version = "0.2.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "df94ce210e5bc13cb6651479fa48d14f601d9858cfe0467f43ae157023b938d3"
+
+[[package]]
+name = "percent-encoding"
+version = "2.3.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
+
+[[package]]
+name = "phf"
+version = "0.8.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3dfb61232e34fcb633f43d12c58f83c1df82962dcdfa565a4e866ffc17dafe12"
+dependencies = [
+ "phf_shared 0.8.0",
+]
+
+[[package]]
+name = "phf"
+version = "0.10.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259"
+dependencies = [
+ "phf_macros 0.10.0",
+ "phf_shared 0.10.0",
+ "proc-macro-hack",
+]
+
+[[package]]
+name = "phf"
+version = "0.11.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
+dependencies = [
+ "phf_macros 0.11.3",
+ "phf_shared 0.11.3",
+]
+
+[[package]]
+name = "phf_codegen"
+version = "0.8.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "cbffee61585b0411840d3ece935cce9cb6321f01c45477d30066498cd5e1a815"
+dependencies = [
+ "phf_generator 0.8.0",
+ "phf_shared 0.8.0",
+]
+
+[[package]]
+name = "phf_codegen"
+version = "0.11.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a"
+dependencies = [
+ "phf_generator 0.11.3",
+ "phf_shared 0.11.3",
+]
+
+[[package]]
+name = "phf_generator"
+version = "0.8.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "17367f0cc86f2d25802b2c26ee58a7b23faeccf78a396094c13dced0d0182526"
+dependencies = [
+ "phf_shared 0.8.0",
+ "rand 0.7.3",
+]
+
+[[package]]
+name = "phf_generator"
+version = "0.10.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6"
+dependencies = [
+ "phf_shared 0.10.0",
+ "rand 0.8.5",
+]
+
+[[package]]
+name = "phf_generator"
+version = "0.11.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
+dependencies = [
+ "phf_shared 0.11.3",
+ "rand 0.8.5",
+]
+
+[[package]]
+name = "phf_macros"
+version = "0.10.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "58fdf3184dd560f160dd73922bea2d5cd6e8f064bf4b13110abd81b03697b4e0"
+dependencies = [
+ "phf_generator 0.10.0",
+ "phf_shared 0.10.0",
+ "proc-macro-hack",
+ "proc-macro2",
+ "quote",
+ "syn 1.0.109",
+]
+
+[[package]]
+name = "phf_macros"
+version = "0.11.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216"
+dependencies = [
+ "phf_generator 0.11.3",
+ "phf_shared 0.11.3",
+ "proc-macro2",
+ "quote",
+ "syn 2.0.104",
+]
+
+[[package]]
+name = "phf_shared"
+version = "0.8.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c00cf8b9eafe68dde5e9eaa2cef8ee84a9336a47d566ec55ca16589633b65af7"
+dependencies = [
+ "siphasher 0.3.11",
+]
+
+[[package]]
+name = "phf_shared"
+version = "0.10.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096"
+dependencies = [
+ "siphasher 0.3.11",
+]
+
+[[package]]
+name = "phf_shared"
+version = "0.11.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
+dependencies = [
+ "siphasher 1.0.1",
+]
+
+[[package]]
+name = "pin-project-lite"
+version = "0.2.16"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
+
+[[package]]
+name = "pin-utils"
+version = "0.1.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
+
+[[package]]
+name = "piper"
+version = "0.2.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "96c8c490f422ef9a4efd2cb5b42b76c8613d7e7dfc1caf667b8a3350a5acc066"
+dependencies = [
+ "atomic-waker",
+ "fastrand",
+ "futures-io",
+]
+
+[[package]]
+name = "pkg-config"
+version = "0.3.32"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
+
+[[package]]
+name = "plist"
+version = "1.7.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3af6b589e163c5a788fab00ce0c0366f6efbb9959c2f9874b224936af7fce7e1"
+dependencies = [
+ "base64 0.22.1",
+ "indexmap 2.10.0",
+ "quick-xml",
+ "serde",
+ "time",
+]
+
+[[package]]
+name = "png"
+version = "0.17.16"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "82151a2fc869e011c153adc57cf2789ccb8d9906ce52c0b39a6b5697749d7526"
+dependencies = [
+ "bitflags 1.3.2",
+ "crc32fast",
+ "fdeflate",
+ "flate2",
+ "miniz_oxide",
+]
+
+[[package]]
+name = "polling"
+version = "3.8.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b53a684391ad002dd6a596ceb6c74fd004fdce75f4be2e3f615068abbea5fd50"
+dependencies = [
+ "cfg-if",
+ "concurrent-queue",
+ "hermit-abi",
+ "pin-project-lite",
+ "rustix",
+ "tracing",
+ "windows-sys 0.59.0",
+]
+
+[[package]]
+name = "potential_utf"
+version = "0.1.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e5a7c30837279ca13e7c867e9e40053bc68740f988cb07f7ca6df43cc734b585"
+dependencies = [
+ "zerovec",
+]
+
+[[package]]
+name = "powerfmt"
+version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
+
+[[package]]
+name = "ppv-lite86"
+version = "0.2.21"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
+dependencies = [
+ "zerocopy",
+]
+
+[[package]]
+name = "precomputed-hash"
+version = "0.1.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
+
+[[package]]
+name = "proc-macro-crate"
+version = "1.3.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919"
+dependencies = [
+ "once_cell",
+ "toml_edit 0.19.15",
+]
+
+[[package]]
+name = "proc-macro-crate"
+version = "2.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7e8366a6159044a37876a2b9817124296703c586a5c92e2c53751fa06d8d43e8"
+dependencies = [
+ "toml_edit 0.20.7",
+]
+
+[[package]]
+name = "proc-macro-crate"
+version = "3.3.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "edce586971a4dfaa28950c6f18ed55e0406c1ab88bbce2c6f6293a7aaba73d35"
+dependencies = [
+ "toml_edit 0.22.27",
+]
+
+[[package]]
+name = "proc-macro-error"
+version = "1.0.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
+dependencies = [
+ "proc-macro-error-attr",
+ "proc-macro2",
+ "quote",
+ "syn 1.0.109",
+ "version_check",
+]
+
+[[package]]
+name = "proc-macro-error-attr"
+version = "1.0.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "version_check",
+]
+
+[[package]]
+name = "proc-macro-hack"
+version = "0.5.20+deprecated"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068"
+
+[[package]]
+name = "proc-macro2"
+version = "1.0.95"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
+dependencies = [
+ "unicode-ident",
+]
+
+[[package]]
+name = "ptr_meta"
+version = "0.1.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "0738ccf7ea06b608c10564b31debd4f5bc5e197fc8bfe088f68ae5ce81e7a4f1"
+dependencies = [
+ "ptr_meta_derive",
+]
+
+[[package]]
+name = "ptr_meta_derive"
+version = "0.1.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 1.0.109",
+]
+
+[[package]]
+name = "quick-xml"
+version = "0.38.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8927b0664f5c5a98265138b7e3f90aa19a6b21353182469ace36d4ac527b7b1b"
+dependencies = [
+ "memchr",
+]
+
+[[package]]
+name = "quote"
+version = "1.0.40"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
+dependencies = [
+ "proc-macro2",
+]
+
+[[package]]
+name = "r-efi"
+version = "5.3.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
+
+[[package]]
+name = "radium"
+version = "0.7.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
+
+[[package]]
+name = "rand"
+version = "0.7.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
+dependencies = [
+ "getrandom 0.1.16",
+ "libc",
+ "rand_chacha 0.2.2",
+ "rand_core 0.5.1",
+ "rand_hc",
+ "rand_pcg",
+]
+
+[[package]]
+name = "rand"
+version = "0.8.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
+dependencies = [
+ "libc",
+ "rand_chacha 0.3.1",
+ "rand_core 0.6.4",
+]
+
+[[package]]
+name = "rand"
+version = "0.9.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9fbfd9d094a40bf3ae768db9361049ace4c0e04a4fd6b359518bd7b73a73dd97"
+dependencies = [
+ "rand_chacha 0.9.0",
+ "rand_core 0.9.3",
+]
+
+[[package]]
+name = "rand_chacha"
+version = "0.2.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
+dependencies = [
+ "ppv-lite86",
+ "rand_core 0.5.1",
+]
+
+[[package]]
+name = "rand_chacha"
+version = "0.3.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
+dependencies = [
+ "ppv-lite86",
+ "rand_core 0.6.4",
+]
+
+[[package]]
+name = "rand_chacha"
+version = "0.9.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
+dependencies = [
+ "ppv-lite86",
+ "rand_core 0.9.3",
+]
+
+[[package]]
+name = "rand_core"
+version = "0.5.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
+dependencies = [
+ "getrandom 0.1.16",
+]
+
+[[package]]
+name = "rand_core"
+version = "0.6.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
+dependencies = [
+ "getrandom 0.2.16",
+]
+
+[[package]]
+name = "rand_core"
+version = "0.9.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
+dependencies = [
+ "getrandom 0.3.3",
+]
+
+[[package]]
+name = "rand_hc"
+version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
+dependencies = [
+ "rand_core 0.5.1",
+]
+
+[[package]]
+name = "rand_pcg"
+version = "0.2.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429"
+dependencies = [
+ "rand_core 0.5.1",
+]
+
+[[package]]
+name = "raw-window-handle"
+version = "0.6.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "20675572f6f24e9e76ef639bc5552774ed45f1c30e2951e1e99c59888861c539"
+
+[[package]]
+name = "redox_syscall"
+version = "0.5.13"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "0d04b7d0ee6b4a0207a0a7adb104d23ecb0b47d6beae7152d0fa34b692b29fd6"
+dependencies = [
+ "bitflags 2.9.1",
+]
+
+[[package]]
+name = "redox_users"
+version = "0.5.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "dd6f9d3d47bdd2ad6945c5015a226ec6155d0bcdfd8f7cd29f86b71f8de99d2b"
+dependencies = [
+ "getrandom 0.2.16",
+ "libredox",
+ "thiserror 2.0.12",
+]
+
+[[package]]
+name = "ref-cast"
+version = "1.0.24"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "4a0ae411dbe946a674d89546582cea4ba2bb8defac896622d6496f14c23ba5cf"
+dependencies = [
+ "ref-cast-impl",
+]
+
+[[package]]
+name = "ref-cast-impl"
+version = "1.0.24"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1165225c21bff1f3bbce98f5a1f889949bc902d3575308cc7b0de30b4f6d27c7"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.104",
+]
+
+[[package]]
+name = "regex"
+version = "1.11.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
+dependencies = [
+ "aho-corasick",
+ "memchr",
+ "regex-automata",
+ "regex-syntax",
+]
+
+[[package]]
+name = "regex-automata"
+version = "0.4.9"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
+dependencies = [
+ "aho-corasick",
+ "memchr",
+ "regex-syntax",
+]
+
+[[package]]
+name = "regex-syntax"
+version = "0.8.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
+
+[[package]]
+name = "rend"
+version = "0.4.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "71fe3824f5629716b1589be05dacd749f6aa084c87e00e016714a8cdfccc997c"
+dependencies = [
+ "bytecheck",
+]
+
+[[package]]
+name = "reqwest"
+version = "0.12.22"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "cbc931937e6ca3a06e3b6c0aa7841849b160a90351d6ab467a8b9b9959767531"
+dependencies = [
+ "base64 0.22.1",
+ "bytes",
+ "futures-core",
+ "futures-util",
+ "http",
+ "http-body",
+ "http-body-util",
+ "hyper",
+ "hyper-util",
+ "js-sys",
+ "log",
+ "percent-encoding",
+ "pin-project-lite",
+ "serde",
+ "serde_json",
+ "serde_urlencoded",
+ "sync_wrapper",
+ "tokio",
+ "tokio-util",
+ "tower",
+ "tower-http",
+ "tower-service",
+ "url",
+ "wasm-bindgen",
+ "wasm-bindgen-futures",
+ "wasm-streams",
+ "web-sys",
+]
+
+[[package]]
+name = "rfd"
+version = "0.15.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "80c844748fdc82aae252ee4594a89b6e7ebef1063de7951545564cbc4e57075d"
+dependencies = [
+ "ashpd",
+ "block2 0.6.1",
+ "dispatch2 0.2.0",
+ "glib-sys",
+ "gobject-sys",
+ "gtk-sys",
+ "js-sys",
+ "log",
+ "objc2 0.6.1",
+ "objc2-app-kit",
+ "objc2-core-foundation",
+ "objc2-foundation 0.3.1",
+ "raw-window-handle",
+ "wasm-bindgen",
+ "wasm-bindgen-futures",
+ "web-sys",
+ "windows-sys 0.59.0",
+]
+
+[[package]]
+name = "rkyv"
+version = "0.7.45"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9008cd6385b9e161d8229e1f6549dd23c3d022f132a2ea37ac3a10ac4935779b"
+dependencies = [
+ "bitvec",
+ "bytecheck",
+ "bytes",
+ "hashbrown 0.12.3",
+ "ptr_meta",
+ "rend",
+ "rkyv_derive",
+ "seahash",
+ "tinyvec",
+ "uuid",
+]
+
+[[package]]
+name = "rkyv_derive"
+version = "0.7.45"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "503d1d27590a2b0a3a4ca4c94755aa2875657196ecbf401a42eff41d7de532c0"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 1.0.109",
+]
+
+[[package]]
+name = "rust_decimal"
+version = "1.37.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b203a6425500a03e0919c42d3c47caca51e79f1132046626d2c8871c5092035d"
+dependencies = [
+ "arrayvec",
+ "borsh",
+ "bytes",
+ "num-traits",
+ "rand 0.8.5",
+ "rkyv",
+ "serde",
+ "serde_json",
+]
+
+[[package]]
+name = "rustc-demangle"
+version = "0.1.25"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "989e6739f80c4ad5b13e0fd7fe89531180375b18520cc8c82080e4dc4035b84f"
+
+[[package]]
+name = "rustc_version"
+version = "0.4.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
+dependencies = [
+ "semver",
+]
+
+[[package]]
+name = "rustix"
+version = "1.0.7"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c71e83d6afe7ff64890ec6b71d6a69bb8a610ab78ce364b3352876bb4c801266"
+dependencies = [
+ "bitflags 2.9.1",
+ "errno",
+ "libc",
+ "linux-raw-sys",
+ "windows-sys 0.59.0",
+]
+
+[[package]]
+name = "rustversion"
+version = "1.0.21"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8a0d197bd2c9dc6e53b84da9556a69ba4cdfab8619eb41a8bd1cc2027a0f6b1d"
+
+[[package]]
+name = "ryu"
+version = "1.0.20"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
+
+[[package]]
+name = "same-file"
+version = "1.0.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
+dependencies = [
+ "winapi-util",
+]
+
+[[package]]
+name = "schemars"
+version = "0.8.22"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3fbf2ae1b8bc8e02df939598064d22402220cd5bbcca1c76f7d6a310974d5615"
+dependencies = [
+ "dyn-clone",
+ "indexmap 1.9.3",
+ "schemars_derive",
+ "serde",
+ "serde_json",
+ "url",
+ "uuid",
+]
+
+[[package]]
+name = "schemars"
+version = "0.9.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "4cd191f9397d57d581cddd31014772520aa448f65ef991055d7f61582c65165f"
+dependencies = [
+ "dyn-clone",
+ "ref-cast",
+ "serde",
+ "serde_json",
+]
+
+[[package]]
+name = "schemars"
+version = "1.0.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "82d20c4491bc164fa2f6c5d44565947a52ad80b9505d8e36f8d54c27c739fcd0"
+dependencies = [
+ "dyn-clone",
+ "ref-cast",
+ "serde",
+ "serde_json",
+]
+
+[[package]]
+name = "schemars_derive"
+version = "0.8.22"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "32e265784ad618884abaea0600a9adf15393368d840e0222d101a072f3f7534d"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "serde_derive_internals",
+ "syn 2.0.104",
+]
+
+[[package]]
+name = "scopeguard"
+version = "1.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
+
+[[package]]
+name = "seahash"
+version = "4.1.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b"
+
+[[package]]
+name = "selectors"
+version = "0.24.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "0c37578180969d00692904465fb7f6b3d50b9a2b952b87c23d0e2e5cb5013416"
+dependencies = [
+ "bitflags 1.3.2",
+ "cssparser",
+ "derive_more",
+ "fxhash",
+ "log",
+ "phf 0.8.0",
+ "phf_codegen 0.8.0",
+ "precomputed-hash",
+ "servo_arc",
+ "smallvec",
+]
+
+[[package]]
+name = "semver"
+version = "1.0.26"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0"
+dependencies = [
+ "serde",
+]
+
+[[package]]
+name = "serde"
+version = "1.0.219"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
+dependencies = [
+ "serde_derive",
+]
+
+[[package]]
+name = "serde-untagged"
+version = "0.1.7"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "299d9c19d7d466db4ab10addd5703e4c615dec2a5a16dbbafe191045e87ee66e"
+dependencies = [
+ "erased-serde",
+ "serde",
+ "typeid",
+]
+
+[[package]]
+name = "serde_derive"
+version = "1.0.219"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.104",
+]
+
+[[package]]
+name = "serde_derive_internals"
+version = "0.29.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.104",
+]
+
+[[package]]
+name = "serde_json"
+version = "1.0.140"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
+dependencies = [
+ "itoa",
+ "memchr",
+ "ryu",
+ "serde",
+]
+
+[[package]]
+name = "serde_repr"
+version = "0.1.20"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.104",
+]
+
+[[package]]
+name = "serde_spanned"
+version = "0.6.9"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
+dependencies = [
+ "serde",
+]
+
+[[package]]
+name = "serde_spanned"
+version = "1.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "40734c41988f7306bb04f0ecf60ec0f3f1caa34290e4e8ea471dcd3346483b83"
+dependencies = [
+ "serde",
+]
+
+[[package]]
+name = "serde_urlencoded"
+version = "0.7.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
+dependencies = [
+ "form_urlencoded",
+ "itoa",
+ "ryu",
+ "serde",
+]
+
+[[package]]
+name = "serde_with"
+version = "3.14.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f2c45cd61fefa9db6f254525d46e392b852e0e61d9a1fd36e5bd183450a556d5"
+dependencies = [
+ "base64 0.22.1",
+ "chrono",
+ "hex",
+ "indexmap 1.9.3",
+ "indexmap 2.10.0",
+ "schemars 0.9.0",
+ "schemars 1.0.4",
+ "serde",
+ "serde_derive",
+ "serde_json",
+ "serde_with_macros",
+ "time",
+]
+
+[[package]]
+name = "serde_with_macros"
+version = "3.14.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "de90945e6565ce0d9a25098082ed4ee4002e047cb59892c318d66821e14bb30f"
+dependencies = [
+ "darling",
+ "proc-macro2",
+ "quote",
+ "syn 2.0.104",
+]
+
+[[package]]
+name = "serialize-to-javascript"
+version = "0.1.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c9823f2d3b6a81d98228151fdeaf848206a7855a7a042bbf9bf870449a66cafb"
+dependencies = [
+ "serde",
+ "serde_json",
+ "serialize-to-javascript-impl",
+]
+
+[[package]]
+name = "serialize-to-javascript-impl"
+version = "0.1.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "74064874e9f6a15f04c1f3cb627902d0e6b410abbf36668afa873c61889f1763"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 1.0.109",
+]
+
+[[package]]
+name = "servo_arc"
+version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d52aa42f8fdf0fed91e5ce7f23d8138441002fa31dca008acf47e6fd4721f741"
+dependencies = [
+ "nodrop",
+ "stable_deref_trait",
+]
+
+[[package]]
+name = "sha2"
+version = "0.10.9"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
+dependencies = [
+ "cfg-if",
+ "cpufeatures",
+ "digest",
+]
+
+[[package]]
+name = "shlex"
+version = "1.3.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
+
+[[package]]
+name = "signal-hook-registry"
+version = "1.4.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9203b8055f63a2a00e2f593bb0510367fe707d7ff1e5c872de2f537b339e5410"
+dependencies = [
+ "libc",
+]
+
+[[package]]
+name = "simd-adler32"
+version = "0.3.7"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe"
+
+[[package]]
+name = "simdutf8"
+version = "0.1.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
+
+[[package]]
+name = "siphasher"
+version = "0.3.11"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
+
+[[package]]
+name = "siphasher"
+version = "1.0.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
+
+[[package]]
+name = "slab"
+version = "0.4.10"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "04dc19736151f35336d325007ac991178d504a119863a2fcb3758cdb5e52c50d"
+
+[[package]]
+name = "smallvec"
+version = "1.15.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
+
+[[package]]
+name = "socket2"
+version = "0.5.10"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678"
+dependencies = [
+ "libc",
+ "windows-sys 0.52.0",
+]
+
+[[package]]
+name = "softbuffer"
+version = "0.4.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "18051cdd562e792cad055119e0cdb2cfc137e44e3987532e0f9659a77931bb08"
+dependencies = [
+ "bytemuck",
+ "cfg_aliases",
+ "core-graphics",
+ "foreign-types",
+ "js-sys",
+ "log",
+ "objc2 0.5.2",
+ "objc2-foundation 0.2.2",
+ "objc2-quartz-core 0.2.2",
+ "raw-window-handle",
+ "redox_syscall",
+ "wasm-bindgen",
+ "web-sys",
+ "windows-sys 0.59.0",
+]
+
+[[package]]
+name = "soup3"
+version = "0.5.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "471f924a40f31251afc77450e781cb26d55c0b650842efafc9c6cbd2f7cc4f9f"
+dependencies = [
+ "futures-channel",
+ "gio",
+ "glib",
+ "libc",
+ "soup3-sys",
+]
+
+[[package]]
+name = "soup3-sys"
+version = "0.5.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7ebe8950a680a12f24f15ebe1bf70db7af98ad242d9db43596ad3108aab86c27"
+dependencies = [
+ "gio-sys",
+ "glib-sys",
+ "gobject-sys",
+ "libc",
+ "system-deps",
+]
+
+[[package]]
+name = "stable_deref_trait"
+version = "1.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
+
+[[package]]
+name = "static_assertions"
+version = "1.1.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
+
+[[package]]
+name = "string_cache"
+version = "0.8.9"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "bf776ba3fa74f83bf4b63c3dcbbf82173db2632ed8452cb2d891d33f459de70f"
+dependencies = [
+ "new_debug_unreachable",
+ "parking_lot",
+ "phf_shared 0.11.3",
+ "precomputed-hash",
+ "serde",
+]
+
+[[package]]
+name = "string_cache_codegen"
+version = "0.5.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c711928715f1fe0fe509c53b43e993a9a557babc2d0a3567d0a3006f1ac931a0"
+dependencies = [
+ "phf_generator 0.11.3",
+ "phf_shared 0.11.3",
+ "proc-macro2",
+ "quote",
+]
+
+[[package]]
+name = "strsim"
+version = "0.11.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
+
+[[package]]
+name = "swift-rs"
+version = "1.0.7"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "4057c98e2e852d51fdcfca832aac7b571f6b351ad159f9eda5db1655f8d0c4d7"
+dependencies = [
+ "base64 0.21.7",
+ "serde",
+ "serde_json",
+]
+
+[[package]]
+name = "syn"
+version = "1.0.109"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "unicode-ident",
+]
+
+[[package]]
+name = "syn"
+version = "2.0.104"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "17b6f705963418cdb9927482fa304bc562ece2fdd4f616084c50b7023b435a40"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "unicode-ident",
+]
+
+[[package]]
+name = "sync_wrapper"
+version = "1.0.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
+dependencies = [
+ "futures-core",
+]
+
+[[package]]
+name = "synstructure"
+version = "0.13.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.104",
+]
+
+[[package]]
+name = "system-deps"
+version = "6.2.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a3e535eb8dded36d55ec13eddacd30dec501792ff23a0b1682c38601b8cf2349"
+dependencies = [
+ "cfg-expr",
+ "heck 0.5.0",
+ "pkg-config",
+ "toml 0.8.23",
+ "version-compare",
+]
+
+[[package]]
+name = "tao"
+version = "0.34.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "49c380ca75a231b87b6c9dd86948f035012e7171d1a7c40a9c2890489a7ffd8a"
+dependencies = [
+ "bitflags 2.9.1",
+ "core-foundation",
+ "core-graphics",
+ "crossbeam-channel",
+ "dispatch",
+ "dlopen2",
+ "dpi",
+ "gdkwayland-sys",
+ "gdkx11-sys",
+ "gtk",
+ "jni",
+ "lazy_static",
+ "libc",
+ "log",
+ "ndk",
+ "ndk-context",
+ "ndk-sys",
+ "objc2 0.6.1",
+ "objc2-app-kit",
+ "objc2-foundation 0.3.1",
+ "once_cell",
+ "parking_lot",
+ "raw-window-handle",
+ "scopeguard",
+ "tao-macros",
+ "unicode-segmentation",
+ "url",
+ "windows",
+ "windows-core",
+ "windows-version",
+ "x11-dl",
+]
+
+[[package]]
+name = "tao-macros"
+version = "0.1.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f4e16beb8b2ac17db28eab8bca40e62dbfbb34c0fcdc6d9826b11b7b5d047dfd"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.104",
+]
+
+[[package]]
+name = "tap"
+version = "1.0.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
+
+[[package]]
+name = "target-lexicon"
+version = "0.12.16"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
+
+[[package]]
+name = "tauri"
+version = "2.6.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "124e129c9c0faa6bec792c5948c89e86c90094133b0b9044df0ce5f0a8efaa0d"
+dependencies = [
+ "anyhow",
+ "bytes",
+ "dirs",
+ "dunce",
+ "embed_plist",
+ "getrandom 0.3.3",
+ "glob",
+ "gtk",
+ "heck 0.5.0",
+ "http",
+ "http-range",
+ "jni",
+ "libc",
+ "log",
+ "mime",
+ "muda",
+ "objc2 0.6.1",
+ "objc2-app-kit",
+ "objc2-foundation 0.3.1",
+ "objc2-ui-kit",
+ "percent-encoding",
+ "plist",
+ "raw-window-handle",
+ "reqwest",
+ "serde",
+ "serde_json",
+ "serde_repr",
+ "serialize-to-javascript",
+ "swift-rs",
+ "tauri-build",
+ "tauri-macros",
+ "tauri-runtime",
+ "tauri-runtime-wry",
+ "tauri-utils",
+ "thiserror 2.0.12",
+ "tokio",
+ "tray-icon",
+ "url",
+ "urlpattern",
+ "webkit2gtk",
+ "webview2-com",
+ "window-vibrancy",
+ "windows",
+]
+
+[[package]]
+name = "tauri-build"
+version = "2.3.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "12f025c389d3adb83114bec704da973142e82fc6ec799c7c750c5e21cefaec83"
+dependencies = [
+ "anyhow",
+ "cargo_toml",
+ "dirs",
+ "glob",
+ "heck 0.5.0",
+ "json-patch",
+ "schemars 0.8.22",
+ "semver",
+ "serde",
+ "serde_json",
+ "tauri-utils",
+ "tauri-winres",
+ "toml 0.8.23",
+ "walkdir",
+]
+
+[[package]]
+name = "tauri-codegen"
+version = "2.3.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f5df493a1075a241065bc865ed5ef8d0fbc1e76c7afdc0bf0eccfaa7d4f0e406"
+dependencies = [
+ "base64 0.22.1",
+ "brotli",
+ "ico",
+ "json-patch",
+ "plist",
+ "png",
+ "proc-macro2",
+ "quote",
+ "semver",
+ "serde",
+ "serde_json",
+ "sha2",
+ "syn 2.0.104",
+ "tauri-utils",
+ "thiserror 2.0.12",
+ "time",
+ "url",
+ "uuid",
+ "walkdir",
+]
+
+[[package]]
+name = "tauri-macros"
+version = "2.3.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f237fbea5866fa5f2a60a21bea807a2d6e0379db070d89c3a10ac0f2d4649bbc"
+dependencies = [
+ "heck 0.5.0",
+ "proc-macro2",
+ "quote",
+ "syn 2.0.104",
+ "tauri-codegen",
+ "tauri-utils",
+]
+
+[[package]]
+name = "tauri-plugin"
+version = "2.3.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1d9a0bd00bf1930ad1a604d08b0eb6b2a9c1822686d65d7f4731a7723b8901d3"
+dependencies = [
+ "anyhow",
+ "glob",
+ "plist",
+ "schemars 0.8.22",
+ "serde",
+ "serde_json",
+ "tauri-utils",
+ "toml 0.8.23",
+ "walkdir",
+]
+
+[[package]]
+name = "tauri-plugin-dialog"
+version = "2.3.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1aefb14219b492afb30b12647b5b1247cadd2c0603467310c36e0f7ae1698c28"
+dependencies = [
+ "log",
+ "raw-window-handle",
+ "rfd",
+ "serde",
+ "serde_json",
+ "tauri",
+ "tauri-plugin",
+ "tauri-plugin-fs",
+ "thiserror 2.0.12",
+ "url",
+]
+
+[[package]]
+name = "tauri-plugin-fs"
+version = "2.4.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c341290d31991dbca38b31d412c73dfbdb070bb11536784f19dd2211d13b778f"
+dependencies = [
+ "anyhow",
+ "dunce",
+ "glob",
+ "percent-encoding",
+ "schemars 0.8.22",
+ "serde",
+ "serde_json",
+ "serde_repr",
+ "tauri",
+ "tauri-plugin",
+ "tauri-utils",
+ "thiserror 2.0.12",
+ "toml 0.8.23",
+ "url",
+]
+
+[[package]]
+name = "tauri-plugin-log"
+version = "2.6.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a59139183e0907cec1499dddee4e085f5a801dc659efa0848ee224f461371426"
+dependencies = [
+ "android_logger",
+ "byte-unit",
+ "fern",
+ "log",
+ "objc2 0.6.1",
+ "objc2-foundation 0.3.1",
+ "serde",
+ "serde_json",
+ "serde_repr",
+ "swift-rs",
+ "tauri",
+ "tauri-plugin",
+ "thiserror 2.0.12",
+ "time",
+]
+
+[[package]]
+name = "tauri-plugin-opener"
+version = "2.4.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ecee219f11cdac713ab32959db5d0cceec4810ba4f4458da992292ecf9660321"
+dependencies = [
+ "dunce",
+ "glob",
+ "objc2-app-kit",
+ "objc2-foundation 0.3.1",
+ "open",
+ "schemars 0.8.22",
+ "serde",
+ "serde_json",
+ "tauri",
+ "tauri-plugin",
+ "thiserror 2.0.12",
+ "url",
+ "windows",
+ "zbus",
+]
+
+[[package]]
+name = "tauri-runtime"
+version = "2.7.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9e7bb73d1bceac06c20b3f755b2c8a2cb13b20b50083084a8cf3700daf397ba4"
+dependencies = [
+ "cookie",
+ "dpi",
+ "gtk",
+ "http",
+ "jni",
+ "objc2 0.6.1",
+ "objc2-ui-kit",
+ "raw-window-handle",
+ "serde",
+ "serde_json",
+ "tauri-utils",
+ "thiserror 2.0.12",
+ "url",
+ "windows",
+]
+
+[[package]]
+name = "tauri-runtime-wry"
+version = "2.7.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "902b5aa9035e16f342eb64f8bf06ccdc2808e411a2525ed1d07672fa4e780bad"
+dependencies = [
+ "gtk",
+ "http",
+ "jni",
+ "log",
+ "objc2 0.6.1",
+ "objc2-app-kit",
+ "objc2-foundation 0.3.1",
+ "once_cell",
+ "percent-encoding",
+ "raw-window-handle",
+ "softbuffer",
+ "tao",
+ "tauri-runtime",
+ "tauri-utils",
+ "url",
+ "webkit2gtk",
+ "webview2-com",
+ "windows",
+ "wry",
+]
+
+[[package]]
+name = "tauri-utils"
+version = "2.5.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "41743bbbeb96c3a100d234e5a0b60a46d5aa068f266160862c7afdbf828ca02e"
+dependencies = [
+ "anyhow",
+ "brotli",
+ "cargo_metadata",
+ "ctor",
+ "dunce",
+ "glob",
+ "html5ever",
+ "http",
+ "infer",
+ "json-patch",
+ "kuchikiki",
+ "log",
+ "memchr",
+ "phf 0.11.3",
+ "proc-macro2",
+ "quote",
+ "regex",
+ "schemars 0.8.22",
+ "semver",
+ "serde",
+ "serde-untagged",
+ "serde_json",
+ "serde_with",
+ "swift-rs",
+ "thiserror 2.0.12",
+ "toml 0.8.23",
+ "url",
+ "urlpattern",
+ "uuid",
+ "walkdir",
+]
+
+[[package]]
+name = "tauri-winres"
+version = "0.3.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e8d321dbc6f998d825ab3f0d62673e810c861aac2d0de2cc2c395328f1d113b4"
+dependencies = [
+ "embed-resource",
+ "indexmap 2.10.0",
+ "toml 0.8.23",
+]
+
+[[package]]
+name = "tempfile"
+version = "3.20.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e8a64e3985349f2441a1a9ef0b853f869006c3855f2cda6862a94d26ebb9d6a1"
+dependencies = [
+ "fastrand",
+ "getrandom 0.3.3",
+ "once_cell",
+ "rustix",
+ "windows-sys 0.59.0",
+]
+
+[[package]]
+name = "tendril"
+version = "0.4.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0"
+dependencies = [
+ "futf",
+ "mac",
+ "utf-8",
+]
+
+[[package]]
+name = "thiserror"
+version = "1.0.69"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
+dependencies = [
+ "thiserror-impl 1.0.69",
+]
+
+[[package]]
+name = "thiserror"
+version = "2.0.12"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
+dependencies = [
+ "thiserror-impl 2.0.12",
+]
+
+[[package]]
+name = "thiserror-impl"
+version = "1.0.69"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.104",
+]
+
+[[package]]
+name = "thiserror-impl"
+version = "2.0.12"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.104",
+]
+
+[[package]]
+name = "time"
+version = "0.3.41"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8a7619e19bc266e0f9c5e6686659d394bc57973859340060a69221e57dbc0c40"
+dependencies = [
+ "deranged",
+ "itoa",
+ "libc",
+ "num-conv",
+ "num_threads",
+ "powerfmt",
+ "serde",
+ "time-core",
+ "time-macros",
+]
+
+[[package]]
+name = "time-core"
+version = "0.1.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c9e9a38711f559d9e3ce1cdb06dd7c5b8ea546bc90052da6d06bb76da74bb07c"
+
+[[package]]
+name = "time-macros"
+version = "0.2.22"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3526739392ec93fd8b359c8e98514cb3e8e021beb4e5f597b00a0221f8ed8a49"
+dependencies = [
+ "num-conv",
+ "time-core",
+]
+
+[[package]]
+name = "tinystr"
+version = "0.8.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b"
+dependencies = [
+ "displaydoc",
+ "zerovec",
+]
+
+[[package]]
+name = "tinyvec"
+version = "1.9.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "09b3661f17e86524eccd4371ab0429194e0d7c008abb45f7a7495b1719463c71"
+dependencies = [
+ "tinyvec_macros",
+]
+
+[[package]]
+name = "tinyvec_macros"
+version = "0.1.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
+
+[[package]]
+name = "tokio"
+version = "1.46.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "0cc3a2344dafbe23a245241fe8b09735b521110d30fcefbbd5feb1797ca35d17"
+dependencies = [
+ "backtrace",
+ "bytes",
+ "io-uring",
+ "libc",
+ "mio",
+ "pin-project-lite",
+ "signal-hook-registry",
+ "slab",
+ "socket2",
+ "tracing",
+ "windows-sys 0.52.0",
+]
+
+[[package]]
+name = "tokio-util"
+version = "0.7.15"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "66a539a9ad6d5d281510d5bd368c973d636c02dbf8a67300bfb6b950696ad7df"
+dependencies = [
+ "bytes",
+ "futures-core",
+ "futures-sink",
+ "pin-project-lite",
+ "tokio",
+]
+
+[[package]]
+name = "toml"
+version = "0.8.23"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
+dependencies = [
+ "serde",
+ "serde_spanned 0.6.9",
+ "toml_datetime 0.6.11",
+ "toml_edit 0.22.27",
+]
+
+[[package]]
+name = "toml"
+version = "0.9.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f271e09bde39ab52250160a67e88577e0559ad77e9085de6e9051a2c4353f8f8"
+dependencies = [
+ "indexmap 2.10.0",
+ "serde",
+ "serde_spanned 1.0.0",
+ "toml_datetime 0.7.0",
+ "toml_parser",
+ "toml_writer",
+ "winnow 0.7.11",
+]
+
+[[package]]
+name = "toml_datetime"
+version = "0.6.11"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
+dependencies = [
+ "serde",
+]
+
+[[package]]
+name = "toml_datetime"
+version = "0.7.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "bade1c3e902f58d73d3f294cd7f20391c1cb2fbcb643b73566bc773971df91e3"
+dependencies = [
+ "serde",
+]
+
+[[package]]
+name = "toml_edit"
+version = "0.19.15"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421"
+dependencies = [
+ "indexmap 2.10.0",
+ "toml_datetime 0.6.11",
+ "winnow 0.5.40",
+]
+
+[[package]]
+name = "toml_edit"
+version = "0.20.7"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "70f427fce4d84c72b5b732388bf4a9f4531b53f74e2887e3ecb2481f68f66d81"
+dependencies = [
+ "indexmap 2.10.0",
+ "toml_datetime 0.6.11",
+ "winnow 0.5.40",
+]
+
+[[package]]
+name = "toml_edit"
+version = "0.22.27"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
+dependencies = [
+ "indexmap 2.10.0",
+ "serde",
+ "serde_spanned 0.6.9",
+ "toml_datetime 0.6.11",
+ "toml_write",
+ "winnow 0.7.11",
+]
+
+[[package]]
+name = "toml_parser"
+version = "1.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b5c1c469eda89749d2230d8156a5969a69ffe0d6d01200581cdc6110674d293e"
+dependencies = [
+ "winnow 0.7.11",
+]
+
+[[package]]
+name = "toml_write"
+version = "0.1.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
+
+[[package]]
+name = "toml_writer"
+version = "1.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b679217f2848de74cabd3e8fc5e6d66f40b7da40f8e1954d92054d9010690fd5"
+
+[[package]]
+name = "tower"
+version = "0.5.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
+dependencies = [
+ "futures-core",
+ "futures-util",
+ "pin-project-lite",
+ "sync_wrapper",
+ "tokio",
+ "tower-layer",
+ "tower-service",
+]
+
+[[package]]
+name = "tower-http"
+version = "0.6.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "adc82fd73de2a9722ac5da747f12383d2bfdb93591ee6c58486e0097890f05f2"
+dependencies = [
+ "bitflags 2.9.1",
+ "bytes",
+ "futures-util",
+ "http",
+ "http-body",
+ "iri-string",
+ "pin-project-lite",
+ "tower",
+ "tower-layer",
+ "tower-service",
+]
+
+[[package]]
+name = "tower-layer"
+version = "0.3.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
+
+[[package]]
+name = "tower-service"
+version = "0.3.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
+
+[[package]]
+name = "tracing"
+version = "0.1.41"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
+dependencies = [
+ "pin-project-lite",
+ "tracing-attributes",
+ "tracing-core",
+]
+
+[[package]]
+name = "tracing-attributes"
+version = "0.1.30"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.104",
+]
+
+[[package]]
+name = "tracing-core"
+version = "0.1.34"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678"
+dependencies = [
+ "once_cell",
+]
+
+[[package]]
+name = "tray-icon"
+version = "0.21.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "2da75ec677957aa21f6e0b361df0daab972f13a5bee3606de0638fd4ee1c666a"
+dependencies = [
+ "crossbeam-channel",
+ "dirs",
+ "libappindicator",
+ "muda",
+ "objc2 0.6.1",
+ "objc2-app-kit",
+ "objc2-core-foundation",
+ "objc2-core-graphics",
+ "objc2-foundation 0.3.1",
+ "once_cell",
+ "png",
+ "serde",
+ "thiserror 2.0.12",
+ "windows-sys 0.59.0",
+]
+
+[[package]]
+name = "try-lock"
+version = "0.2.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
+
+[[package]]
+name = "typeid"
+version = "1.0.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "bc7d623258602320d5c55d1bc22793b57daff0ec7efc270ea7d55ce1d5f5471c"
+
+[[package]]
+name = "typenum"
+version = "1.18.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f"
+
+[[package]]
+name = "uds_windows"
+version = "1.1.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "89daebc3e6fd160ac4aa9fc8b3bf71e1f74fbf92367ae71fb83a037e8bf164b9"
+dependencies = [
+ "memoffset",
+ "tempfile",
+ "winapi",
+]
+
+[[package]]
+name = "unic-char-property"
+version = "0.9.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a8c57a407d9b6fa02b4795eb81c5b6652060a15a7903ea981f3d723e6c0be221"
+dependencies = [
+ "unic-char-range",
+]
+
+[[package]]
+name = "unic-char-range"
+version = "0.9.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "0398022d5f700414f6b899e10b8348231abf9173fa93144cbc1a43b9793c1fbc"
+
+[[package]]
+name = "unic-common"
+version = "0.9.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "80d7ff825a6a654ee85a63e80f92f054f904f21e7d12da4e22f9834a4aaa35bc"
+
+[[package]]
+name = "unic-ucd-ident"
+version = "0.9.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e230a37c0381caa9219d67cf063aa3a375ffed5bf541a452db16e744bdab6987"
+dependencies = [
+ "unic-char-property",
+ "unic-char-range",
+ "unic-ucd-version",
+]
+
+[[package]]
+name = "unic-ucd-version"
+version = "0.9.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "96bd2f2237fe450fcd0a1d2f5f4e91711124f7857ba2e964247776ebeeb7b0c4"
+dependencies = [
+ "unic-common",
+]
+
+[[package]]
+name = "unicode-ident"
+version = "1.0.18"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
+
+[[package]]
+name = "unicode-segmentation"
+version = "1.12.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
+
+[[package]]
+name = "url"
+version = "2.5.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60"
+dependencies = [
+ "form_urlencoded",
+ "idna",
+ "percent-encoding",
+ "serde",
+]
+
+[[package]]
+name = "urlpattern"
+version = "0.3.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "70acd30e3aa1450bc2eece896ce2ad0d178e9c079493819301573dae3c37ba6d"
+dependencies = [
+ "regex",
+ "serde",
+ "unic-ucd-ident",
+ "url",
+]
+
+[[package]]
+name = "utf-8"
+version = "0.7.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
+
+[[package]]
+name = "utf8-width"
+version = "0.1.7"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "86bd8d4e895da8537e5315b8254664e6b769c4ff3db18321b297a1e7004392e3"
+
+[[package]]
+name = "utf8_iter"
+version = "1.0.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
+
+[[package]]
+name = "uuid"
+version = "1.17.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3cf4199d1e5d15ddd86a694e4d0dffa9c323ce759fea589f00fef9d81cc1931d"
+dependencies = [
+ "getrandom 0.3.3",
+ "js-sys",
+ "serde",
+ "wasm-bindgen",
+]
+
+[[package]]
+name = "value-bag"
+version = "1.11.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "943ce29a8a743eb10d6082545d861b24f9d1b160b7d741e0f2cdf726bec909c5"
+
+[[package]]
+name = "version-compare"
+version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "852e951cb7832cb45cb1169900d19760cfa39b82bc0ea9c0e5a14ae88411c98b"
+
+[[package]]
+name = "version_check"
+version = "0.9.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
+
+[[package]]
+name = "videoclipper"
+version = "0.0.2"
+dependencies = [
+ "log",
+ "serde",
+ "serde_json",
+ "tauri",
+ "tauri-build",
+ "tauri-plugin-dialog",
+ "tauri-plugin-log",
+ "tauri-plugin-opener",
+]
+
+[[package]]
+name = "vswhom"
+version = "0.1.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "be979b7f07507105799e854203b470ff7c78a1639e330a58f183b5fea574608b"
+dependencies = [
+ "libc",
+ "vswhom-sys",
+]
+
+[[package]]
+name = "vswhom-sys"
+version = "0.1.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "fb067e4cbd1ff067d1df46c9194b5de0e98efd2810bbc95c5d5e5f25a3231150"
+dependencies = [
+ "cc",
+ "libc",
+]
+
+[[package]]
+name = "walkdir"
+version = "2.5.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
+dependencies = [
+ "same-file",
+ "winapi-util",
+]
+
+[[package]]
+name = "want"
+version = "0.3.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
+dependencies = [
+ "try-lock",
+]
+
+[[package]]
+name = "wasi"
+version = "0.9.0+wasi-snapshot-preview1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
+
+[[package]]
+name = "wasi"
+version = "0.11.1+wasi-snapshot-preview1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
+
+[[package]]
+name = "wasi"
+version = "0.14.2+wasi-0.2.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
+dependencies = [
+ "wit-bindgen-rt",
+]
+
+[[package]]
+name = "wasm-bindgen"
+version = "0.2.100"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
+dependencies = [
+ "cfg-if",
+ "once_cell",
+ "rustversion",
+ "wasm-bindgen-macro",
+]
+
+[[package]]
+name = "wasm-bindgen-backend"
+version = "0.2.100"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
+dependencies = [
+ "bumpalo",
+ "log",
+ "proc-macro2",
+ "quote",
+ "syn 2.0.104",
+ "wasm-bindgen-shared",
+]
+
+[[package]]
+name = "wasm-bindgen-futures"
+version = "0.4.50"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61"
+dependencies = [
+ "cfg-if",
+ "js-sys",
+ "once_cell",
+ "wasm-bindgen",
+ "web-sys",
+]
+
+[[package]]
+name = "wasm-bindgen-macro"
+version = "0.2.100"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
+dependencies = [
+ "quote",
+ "wasm-bindgen-macro-support",
+]
+
+[[package]]
+name = "wasm-bindgen-macro-support"
+version = "0.2.100"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.104",
+ "wasm-bindgen-backend",
+ "wasm-bindgen-shared",
+]
+
+[[package]]
+name = "wasm-bindgen-shared"
+version = "0.2.100"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
+dependencies = [
+ "unicode-ident",
+]
+
+[[package]]
+name = "wasm-streams"
+version = "0.4.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
+dependencies = [
+ "futures-util",
+ "js-sys",
+ "wasm-bindgen",
+ "wasm-bindgen-futures",
+ "web-sys",
+]
+
+[[package]]
+name = "web-sys"
+version = "0.3.77"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2"
+dependencies = [
+ "js-sys",
+ "wasm-bindgen",
+]
+
+[[package]]
+name = "webkit2gtk"
+version = "2.0.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "76b1bc1e54c581da1e9f179d0b38512ba358fb1af2d634a1affe42e37172361a"
+dependencies = [
+ "bitflags 1.3.2",
+ "cairo-rs",
+ "gdk",
+ "gdk-sys",
+ "gio",
+ "gio-sys",
+ "glib",
+ "glib-sys",
+ "gobject-sys",
+ "gtk",
+ "gtk-sys",
+ "javascriptcore-rs",
+ "libc",
+ "once_cell",
+ "soup3",
+ "webkit2gtk-sys",
+]
+
+[[package]]
+name = "webkit2gtk-sys"
+version = "2.0.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "62daa38afc514d1f8f12b8693d30d5993ff77ced33ce30cd04deebc267a6d57c"
+dependencies = [
+ "bitflags 1.3.2",
+ "cairo-sys-rs",
+ "gdk-sys",
+ "gio-sys",
+ "glib-sys",
+ "gobject-sys",
+ "gtk-sys",
+ "javascriptcore-rs-sys",
+ "libc",
+ "pkg-config",
+ "soup3-sys",
+ "system-deps",
+]
+
+[[package]]
+name = "webview2-com"
+version = "0.38.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d4ba622a989277ef3886dd5afb3e280e3dd6d974b766118950a08f8f678ad6a4"
+dependencies = [
+ "webview2-com-macros",
+ "webview2-com-sys",
+ "windows",
+ "windows-core",
+ "windows-implement",
+ "windows-interface",
+]
+
+[[package]]
+name = "webview2-com-macros"
+version = "0.8.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1d228f15bba3b9d56dde8bddbee66fa24545bd17b48d5128ccf4a8742b18e431"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.104",
+]
+
+[[package]]
+name = "webview2-com-sys"
+version = "0.38.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "36695906a1b53a3bf5c4289621efedac12b73eeb0b89e7e1a89b517302d5d75c"
+dependencies = [
+ "thiserror 2.0.12",
+ "windows",
+ "windows-core",
+]
+
+[[package]]
+name = "winapi"
+version = "0.3.9"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
+dependencies = [
+ "winapi-i686-pc-windows-gnu",
+ "winapi-x86_64-pc-windows-gnu",
+]
+
+[[package]]
+name = "winapi-i686-pc-windows-gnu"
+version = "0.4.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
+
+[[package]]
+name = "winapi-util"
+version = "0.1.9"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
+dependencies = [
+ "windows-sys 0.59.0",
+]
+
+[[package]]
+name = "winapi-x86_64-pc-windows-gnu"
+version = "0.4.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
+
+[[package]]
+name = "window-vibrancy"
+version = "0.6.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d9bec5a31f3f9362f2258fd0e9c9dd61a9ca432e7306cc78c444258f0dce9a9c"
+dependencies = [
+ "objc2 0.6.1",
+ "objc2-app-kit",
+ "objc2-core-foundation",
+ "objc2-foundation 0.3.1",
+ "raw-window-handle",
+ "windows-sys 0.59.0",
+ "windows-version",
+]
+
+[[package]]
+name = "windows"
+version = "0.61.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9babd3a767a4c1aef6900409f85f5d53ce2544ccdfaa86dad48c91782c6d6893"
+dependencies = [
+ "windows-collections",
+ "windows-core",
+ "windows-future",
+ "windows-link",
+ "windows-numerics",
+]
+
+[[package]]
+name = "windows-collections"
+version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3beeceb5e5cfd9eb1d76b381630e82c4241ccd0d27f1a39ed41b2760b255c5e8"
+dependencies = [
+ "windows-core",
+]
+
+[[package]]
+name = "windows-core"
+version = "0.61.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3"
+dependencies = [
+ "windows-implement",
+ "windows-interface",
+ "windows-link",
+ "windows-result",
+ "windows-strings",
+]
+
+[[package]]
+name = "windows-future"
+version = "0.2.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "fc6a41e98427b19fe4b73c550f060b59fa592d7d686537eebf9385621bfbad8e"
+dependencies = [
+ "windows-core",
+ "windows-link",
+ "windows-threading",
+]
+
+[[package]]
+name = "windows-implement"
+version = "0.60.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.104",
+]
+
+[[package]]
+name = "windows-interface"
+version = "0.59.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.104",
+]
+
+[[package]]
+name = "windows-link"
+version = "0.1.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
+
+[[package]]
+name = "windows-numerics"
+version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9150af68066c4c5c07ddc0ce30421554771e528bde427614c61038bc2c92c2b1"
+dependencies = [
+ "windows-core",
+ "windows-link",
+]
+
+[[package]]
+name = "windows-result"
+version = "0.3.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
+dependencies = [
+ "windows-link",
+]
+
+[[package]]
+name = "windows-strings"
+version = "0.4.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57"
+dependencies = [
+ "windows-link",
+]
+
+[[package]]
+name = "windows-sys"
+version = "0.45.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
+dependencies = [
+ "windows-targets 0.42.2",
+]
+
+[[package]]
+name = "windows-sys"
+version = "0.52.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
+dependencies = [
+ "windows-targets 0.52.6",
+]
+
+[[package]]
+name = "windows-sys"
+version = "0.59.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
+dependencies = [
+ "windows-targets 0.52.6",
+]
+
+[[package]]
+name = "windows-sys"
+version = "0.60.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
+dependencies = [
+ "windows-targets 0.53.2",
+]
+
+[[package]]
+name = "windows-targets"
+version = "0.42.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
+dependencies = [
+ "windows_aarch64_gnullvm 0.42.2",
+ "windows_aarch64_msvc 0.42.2",
+ "windows_i686_gnu 0.42.2",
+ "windows_i686_msvc 0.42.2",
+ "windows_x86_64_gnu 0.42.2",
+ "windows_x86_64_gnullvm 0.42.2",
+ "windows_x86_64_msvc 0.42.2",
+]
+
+[[package]]
+name = "windows-targets"
+version = "0.52.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
+dependencies = [
+ "windows_aarch64_gnullvm 0.52.6",
+ "windows_aarch64_msvc 0.52.6",
+ "windows_i686_gnu 0.52.6",
+ "windows_i686_gnullvm 0.52.6",
+ "windows_i686_msvc 0.52.6",
+ "windows_x86_64_gnu 0.52.6",
+ "windows_x86_64_gnullvm 0.52.6",
+ "windows_x86_64_msvc 0.52.6",
+]
+
+[[package]]
+name = "windows-targets"
+version = "0.53.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c66f69fcc9ce11da9966ddb31a40968cad001c5bedeb5c2b82ede4253ab48aef"
+dependencies = [
+ "windows_aarch64_gnullvm 0.53.0",
+ "windows_aarch64_msvc 0.53.0",
+ "windows_i686_gnu 0.53.0",
+ "windows_i686_gnullvm 0.53.0",
+ "windows_i686_msvc 0.53.0",
+ "windows_x86_64_gnu 0.53.0",
+ "windows_x86_64_gnullvm 0.53.0",
+ "windows_x86_64_msvc 0.53.0",
+]
+
+[[package]]
+name = "windows-threading"
+version = "0.1.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b66463ad2e0ea3bbf808b7f1d371311c80e115c0b71d60efc142cafbcfb057a6"
+dependencies = [
+ "windows-link",
+]
+
+[[package]]
+name = "windows-version"
+version = "0.1.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e04a5c6627e310a23ad2358483286c7df260c964eb2d003d8efd6d0f4e79265c"
+dependencies = [
+ "windows-link",
+]
+
+[[package]]
+name = "windows_aarch64_gnullvm"
+version = "0.42.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
+
+[[package]]
+name = "windows_aarch64_gnullvm"
+version = "0.52.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
+
+[[package]]
+name = "windows_aarch64_gnullvm"
+version = "0.53.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
+
+[[package]]
+name = "windows_aarch64_msvc"
+version = "0.42.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
+
+[[package]]
+name = "windows_aarch64_msvc"
+version = "0.52.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
+
+[[package]]
+name = "windows_aarch64_msvc"
+version = "0.53.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
+
+[[package]]
+name = "windows_i686_gnu"
+version = "0.42.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
+
+[[package]]
+name = "windows_i686_gnu"
+version = "0.52.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
+
+[[package]]
+name = "windows_i686_gnu"
+version = "0.53.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
+
+[[package]]
+name = "windows_i686_gnullvm"
+version = "0.52.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
+
+[[package]]
+name = "windows_i686_gnullvm"
+version = "0.53.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
+
+[[package]]
+name = "windows_i686_msvc"
+version = "0.42.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
+
+[[package]]
+name = "windows_i686_msvc"
+version = "0.52.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
+
+[[package]]
+name = "windows_i686_msvc"
+version = "0.53.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
+
+[[package]]
+name = "windows_x86_64_gnu"
+version = "0.42.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
+
+[[package]]
+name = "windows_x86_64_gnu"
+version = "0.52.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
+
+[[package]]
+name = "windows_x86_64_gnu"
+version = "0.53.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
+
+[[package]]
+name = "windows_x86_64_gnullvm"
+version = "0.42.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
+
+[[package]]
+name = "windows_x86_64_gnullvm"
+version = "0.52.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
+
+[[package]]
+name = "windows_x86_64_gnullvm"
+version = "0.53.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
+
+[[package]]
+name = "windows_x86_64_msvc"
+version = "0.42.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
+
+[[package]]
+name = "windows_x86_64_msvc"
+version = "0.52.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
+
+[[package]]
+name = "windows_x86_64_msvc"
+version = "0.53.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
+
+[[package]]
+name = "winnow"
+version = "0.5.40"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876"
+dependencies = [
+ "memchr",
+]
+
+[[package]]
+name = "winnow"
+version = "0.7.11"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "74c7b26e3480b707944fc872477815d29a8e429d2f93a1ce000f5fa84a15cbcd"
+dependencies = [
+ "memchr",
+]
+
+[[package]]
+name = "winreg"
+version = "0.55.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "cb5a765337c50e9ec252c2069be9bf91c7df47afb103b642ba3a53bf8101be97"
+dependencies = [
+ "cfg-if",
+ "windows-sys 0.59.0",
+]
+
+[[package]]
+name = "wit-bindgen-rt"
+version = "0.39.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
+dependencies = [
+ "bitflags 2.9.1",
+]
+
+[[package]]
+name = "writeable"
+version = "0.6.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb"
+
+[[package]]
+name = "wry"
+version = "0.52.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "12a714d9ba7075aae04a6e50229d6109e3d584774b99a6a8c60de1698ca111b9"
+dependencies = [
+ "base64 0.22.1",
+ "block2 0.6.1",
+ "cookie",
+ "crossbeam-channel",
+ "dpi",
+ "dunce",
+ "gdkx11",
+ "gtk",
+ "html5ever",
+ "http",
+ "javascriptcore-rs",
+ "jni",
+ "kuchikiki",
+ "libc",
+ "ndk",
+ "objc2 0.6.1",
+ "objc2-app-kit",
+ "objc2-core-foundation",
+ "objc2-foundation 0.3.1",
+ "objc2-ui-kit",
+ "objc2-web-kit",
+ "once_cell",
+ "percent-encoding",
+ "raw-window-handle",
+ "sha2",
+ "soup3",
+ "tao-macros",
+ "thiserror 2.0.12",
+ "url",
+ "webkit2gtk",
+ "webkit2gtk-sys",
+ "webview2-com",
+ "windows",
+ "windows-core",
+ "windows-version",
+ "x11-dl",
+]
+
+[[package]]
+name = "wyz"
+version = "0.5.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
+dependencies = [
+ "tap",
+]
+
+[[package]]
+name = "x11"
+version = "2.21.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "502da5464ccd04011667b11c435cb992822c2c0dbde1770c988480d312a0db2e"
+dependencies = [
+ "libc",
+ "pkg-config",
+]
+
+[[package]]
+name = "x11-dl"
+version = "2.21.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "38735924fedd5314a6e548792904ed8c6de6636285cb9fec04d5b1db85c1516f"
+dependencies = [
+ "libc",
+ "once_cell",
+ "pkg-config",
+]
+
+[[package]]
+name = "yoke"
+version = "0.8.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc"
+dependencies = [
+ "serde",
+ "stable_deref_trait",
+ "yoke-derive",
+ "zerofrom",
+]
+
+[[package]]
+name = "yoke-derive"
+version = "0.8.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.104",
+ "synstructure",
+]
+
+[[package]]
+name = "zbus"
+version = "5.8.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "597f45e98bc7e6f0988276012797855613cd8269e23b5be62cc4e5d28b7e515d"
+dependencies = [
+ "async-broadcast",
+ "async-executor",
+ "async-io",
+ "async-lock",
+ "async-process",
+ "async-recursion",
+ "async-task",
+ "async-trait",
+ "blocking",
+ "enumflags2",
+ "event-listener",
+ "futures-core",
+ "futures-lite",
+ "hex",
+ "nix",
+ "ordered-stream",
+ "serde",
+ "serde_repr",
+ "tokio",
+ "tracing",
+ "uds_windows",
+ "windows-sys 0.59.0",
+ "winnow 0.7.11",
+ "zbus_macros",
+ "zbus_names",
+ "zvariant",
+]
+
+[[package]]
+name = "zbus_macros"
+version = "5.8.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e5c8e4e14dcdd9d97a98b189cd1220f30e8394ad271e8c987da84f73693862c2"
+dependencies = [
+ "proc-macro-crate 3.3.0",
+ "proc-macro2",
+ "quote",
+ "syn 2.0.104",
+ "zbus_names",
+ "zvariant",
+ "zvariant_utils",
+]
+
+[[package]]
+name = "zbus_names"
+version = "4.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7be68e64bf6ce8db94f63e72f0c7eb9a60d733f7e0499e628dfab0f84d6bcb97"
+dependencies = [
+ "serde",
+ "static_assertions",
+ "winnow 0.7.11",
+ "zvariant",
+]
+
+[[package]]
+name = "zerocopy"
+version = "0.8.26"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1039dd0d3c310cf05de012d8a39ff557cb0d23087fd44cad61df08fc31907a2f"
+dependencies = [
+ "zerocopy-derive",
+]
+
+[[package]]
+name = "zerocopy-derive"
+version = "0.8.26"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9ecf5b4cc5364572d7f4c329661bcc82724222973f2cab6f050a4e5c22f75181"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.104",
+]
+
+[[package]]
+name = "zerofrom"
+version = "0.1.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
+dependencies = [
+ "zerofrom-derive",
+]
+
+[[package]]
+name = "zerofrom-derive"
+version = "0.1.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.104",
+ "synstructure",
+]
+
+[[package]]
+name = "zerotrie"
+version = "0.2.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595"
+dependencies = [
+ "displaydoc",
+ "yoke",
+ "zerofrom",
+]
+
+[[package]]
+name = "zerovec"
+version = "0.11.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "4a05eb080e015ba39cc9e23bbe5e7fb04d5fb040350f99f34e338d5fdd294428"
+dependencies = [
+ "yoke",
+ "zerofrom",
+ "zerovec-derive",
+]
+
+[[package]]
+name = "zerovec-derive"
+version = "0.11.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.104",
+]
+
+[[package]]
+name = "zvariant"
+version = "5.6.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d91b3680bb339216abd84714172b5138a4edac677e641ef17e1d8cb1b3ca6e6f"
+dependencies = [
+ "endi",
+ "enumflags2",
+ "serde",
+ "url",
+ "winnow 0.7.11",
+ "zvariant_derive",
+ "zvariant_utils",
+]
+
+[[package]]
+name = "zvariant_derive"
+version = "5.6.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3a8c68501be459a8dbfffbe5d792acdd23b4959940fc87785fb013b32edbc208"
+dependencies = [
+ "proc-macro-crate 3.3.0",
+ "proc-macro2",
+ "quote",
+ "syn 2.0.104",
+ "zvariant_utils",
+]
+
+[[package]]
+name = "zvariant_utils"
+version = "3.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e16edfee43e5d7b553b77872d99bc36afdda75c223ca7ad5e3fbecd82ca5fc34"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "serde",
+ "static_assertions",
+ "syn 2.0.104",
+ "winnow 0.7.11",
+]
diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml
new file mode 100644
index 0000000..0dfc03c
--- /dev/null
+++ b/src-tauri/Cargo.toml
@@ -0,0 +1,28 @@
+[package]
+name = "videoclipper"
+version = "0.0.2"
+description = "A Tauri App"
+authors = ["you"]
+edition = "2021"
+
+# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
+
+[lib]
+# The `_lib` suffix may seem redundant but it is necessary
+# to make the lib name unique and wouldn't conflict with the bin name.
+# This seems to be only an issue on Windows, see https://github.com/rust-lang/cargo/issues/8519
+name = "videoclipper_lib"
+crate-type = ["staticlib", "cdylib", "rlib"]
+
+[build-dependencies]
+tauri-build = { version = "2", features = [] }
+
+[dependencies]
+tauri = { version = "2", features = ["protocol-asset"] }
+tauri-plugin-opener = "2"
+serde = { version = "1", features = ["derive"] }
+serde_json = "1"
+tauri-plugin-dialog = "2"
+tauri-plugin-log = "2"
+log = "0.4"
+
diff --git a/src-tauri/build.rs b/src-tauri/build.rs
new file mode 100644
index 0000000..d860e1e
--- /dev/null
+++ b/src-tauri/build.rs
@@ -0,0 +1,3 @@
+fn main() {
+ tauri_build::build()
+}
diff --git a/src-tauri/capabilities/default.json b/src-tauri/capabilities/default.json
new file mode 100644
index 0000000..2b1cd30
--- /dev/null
+++ b/src-tauri/capabilities/default.json
@@ -0,0 +1,14 @@
+{
+ "$schema": "../gen/schemas/desktop-schema.json",
+ "identifier": "default",
+ "description": "Capability for the main window",
+ "windows": [
+ "main"
+ ],
+ "permissions": [
+ "core:default",
+ "opener:default",
+ "dialog:default",
+ "log:default"
+ ]
+}
\ No newline at end of file
diff --git a/src-tauri/icons/128x128.png b/src-tauri/icons/128x128.png
new file mode 100644
index 0000000..6be5e50
Binary files /dev/null and b/src-tauri/icons/128x128.png differ
diff --git a/src-tauri/icons/128x128@2x.png b/src-tauri/icons/128x128@2x.png
new file mode 100644
index 0000000..e81bece
Binary files /dev/null and b/src-tauri/icons/128x128@2x.png differ
diff --git a/src-tauri/icons/32x32.png b/src-tauri/icons/32x32.png
new file mode 100644
index 0000000..a437dd5
Binary files /dev/null and b/src-tauri/icons/32x32.png differ
diff --git a/src-tauri/icons/Square107x107Logo.png b/src-tauri/icons/Square107x107Logo.png
new file mode 100644
index 0000000..0ca4f27
Binary files /dev/null and b/src-tauri/icons/Square107x107Logo.png differ
diff --git a/src-tauri/icons/Square142x142Logo.png b/src-tauri/icons/Square142x142Logo.png
new file mode 100644
index 0000000..b81f820
Binary files /dev/null and b/src-tauri/icons/Square142x142Logo.png differ
diff --git a/src-tauri/icons/Square150x150Logo.png b/src-tauri/icons/Square150x150Logo.png
new file mode 100644
index 0000000..624c7bf
Binary files /dev/null and b/src-tauri/icons/Square150x150Logo.png differ
diff --git a/src-tauri/icons/Square284x284Logo.png b/src-tauri/icons/Square284x284Logo.png
new file mode 100644
index 0000000..c021d2b
Binary files /dev/null and b/src-tauri/icons/Square284x284Logo.png differ
diff --git a/src-tauri/icons/Square30x30Logo.png b/src-tauri/icons/Square30x30Logo.png
new file mode 100644
index 0000000..6219700
Binary files /dev/null and b/src-tauri/icons/Square30x30Logo.png differ
diff --git a/src-tauri/icons/Square310x310Logo.png b/src-tauri/icons/Square310x310Logo.png
new file mode 100644
index 0000000..f9bc048
Binary files /dev/null and b/src-tauri/icons/Square310x310Logo.png differ
diff --git a/src-tauri/icons/Square44x44Logo.png b/src-tauri/icons/Square44x44Logo.png
new file mode 100644
index 0000000..d5fbfb2
Binary files /dev/null and b/src-tauri/icons/Square44x44Logo.png differ
diff --git a/src-tauri/icons/Square71x71Logo.png b/src-tauri/icons/Square71x71Logo.png
new file mode 100644
index 0000000..63440d7
Binary files /dev/null and b/src-tauri/icons/Square71x71Logo.png differ
diff --git a/src-tauri/icons/Square89x89Logo.png b/src-tauri/icons/Square89x89Logo.png
new file mode 100644
index 0000000..f3f705a
Binary files /dev/null and b/src-tauri/icons/Square89x89Logo.png differ
diff --git a/src-tauri/icons/StoreLogo.png b/src-tauri/icons/StoreLogo.png
new file mode 100644
index 0000000..4556388
Binary files /dev/null and b/src-tauri/icons/StoreLogo.png differ
diff --git a/src-tauri/icons/icon.icns b/src-tauri/icons/icon.icns
new file mode 100644
index 0000000..12a5bce
Binary files /dev/null and b/src-tauri/icons/icon.icns differ
diff --git a/src-tauri/icons/icon.ico b/src-tauri/icons/icon.ico
new file mode 100644
index 0000000..b3636e4
Binary files /dev/null and b/src-tauri/icons/icon.ico differ
diff --git a/src-tauri/icons/icon.png b/src-tauri/icons/icon.png
new file mode 100644
index 0000000..e1cd261
Binary files /dev/null and b/src-tauri/icons/icon.png differ
diff --git a/src-tauri/src/lib.rs b/src-tauri/src/lib.rs
new file mode 100644
index 0000000..2550663
--- /dev/null
+++ b/src-tauri/src/lib.rs
@@ -0,0 +1,63 @@
+use std::io::{self, Write};
+use std::process::Command;
+
+// Learn more about Tauri commands at https://tauri.app/develop/calling-rust/
+// ffmpeg -ss 1:19 -to 2:00 -i input.mp4 -c:v copy -c:a aac -b:a 160k -ac 2 -filter_complex amerge=inputs=$(ffprobe -loglevel error -select_streams a -show_entries stream=index -of csv=p=0 input.mp4 | wc -l) output.mp4
+#[tauri::command(rename_all = "snake_case")]
+fn callffmpeg(
+ start: &str,
+ end: &str,
+ in_file: &str,
+ in_folder: &str,
+ audio_stream_count: i32,
+ out_file: &str,
+ do_overwrite: &str
+) -> String {
+ // TODO: Get audio track count before attempting and failing
+ // let ffprobe_output = Command::new("ffprobe")
+ // .arg()
+
+ // Consider: Change to bundled ffmpeg.wasm version and convert to TypeScript
+ // "@ffmpeg/ffmpeg": "^0.12.15",
+ // "@ffmpeg/util": "^0.12.2",
+ let output = Command::new("ffmpeg")
+ .current_dir(in_folder)
+ .args(["-ss", start])
+ .args(["-to", end])
+ .args(["-i", in_file])
+ .args([
+ "-c:v",
+ "copy",
+ "-c:a",
+ "aac",
+ "-b:a",
+ "160k",
+ "-ac",
+ "2",
+ "-filter_complex",
+ &format!("amerge=inputs={}", audio_stream_count).to_string()
+ ])
+ .arg(out_file)
+ .arg(do_overwrite)
+ .output()
+ .expect("failed to execute process");
+
+ let _ = io::stdout().write_all(&output.stdout);
+ let _ = io::stderr().write_all(&output.stderr);
+ output.status.to_string()
+}
+
+#[cfg_attr(mobile, tauri::mobile_entry_point)]
+pub fn run() {
+ tauri::Builder::default()
+ .plugin(tauri_plugin_log::Builder::new()
+ .targets([
+ tauri_plugin_log::Target::new(tauri_plugin_log::TargetKind::Stdout),
+ tauri_plugin_log::Target::new(tauri_plugin_log::TargetKind::Webview)
+ ]).build())
+ .plugin(tauri_plugin_dialog::init())
+ .plugin(tauri_plugin_opener::init())
+ .invoke_handler(tauri::generate_handler![callffmpeg])
+ .run(tauri::generate_context!())
+ .expect("error while running tauri application");
+}
diff --git a/src-tauri/src/main.rs b/src-tauri/src/main.rs
new file mode 100644
index 0000000..4437388
--- /dev/null
+++ b/src-tauri/src/main.rs
@@ -0,0 +1,6 @@
+// Prevents additional console window on Windows in release, DO NOT REMOVE!!
+#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")]
+
+fn main() {
+ videoclipper_lib::run()
+}
diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json
new file mode 100644
index 0000000..0909a4e
--- /dev/null
+++ b/src-tauri/tauri.conf.json
@@ -0,0 +1,42 @@
+{
+ "$schema": "https://schema.tauri.app/config/2",
+ "productName": "videoclipper",
+ "version": "0.0.2",
+ "identifier": "com.videoclipper.app",
+ "build": {
+ "beforeDevCommand": "npm run dev",
+ "devUrl": "http://localhost:1420",
+ "beforeBuildCommand": "npm run build",
+ "frontendDist": "../dist"
+ },
+ "app": {
+ "windows": [
+ {
+ "title": "Video Clipper",
+ "width": 775,
+ "height": 740
+ }
+ ],
+ "security": {
+ "csp": null,
+ "assetProtocol": {
+ "enable": true,
+ "scope": {
+ "requireLiteralLeadingDot": false,
+ "allow": ["**/*"]
+ }
+ }
+ }
+ },
+ "bundle": {
+ "active": true,
+ "targets": "all",
+ "icon": [
+ "icons/32x32.png",
+ "icons/128x128.png",
+ "icons/128x128@2x.png",
+ "icons/icon.icns",
+ "icons/icon.ico"
+ ]
+ }
+}
diff --git a/src/App.css b/src/App.css
new file mode 100644
index 0000000..83e39ad
--- /dev/null
+++ b/src/App.css
@@ -0,0 +1,128 @@
+:root {
+ font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
+ font-size: 16px;
+ line-height: 20px;
+ font-weight: 400;
+
+ color: #0f0f0f;
+ background-color: #f6f6f6;
+
+ font-synthesis: none;
+ text-rendering: optimizeLegibility;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+ -webkit-text-size-adjust: 100%;
+}
+
+.container {
+ padding: 1em;
+ display: flex;
+ width: auto;
+ height: auto;
+ flex-direction: column;
+ justify-content: center;
+ text-align: center;
+}
+
+.videoPreview {
+ filter: drop-shadow(0 0 0.5em #747bff);
+ padding-bottom: 1em;
+}
+
+.row {
+ display: flex;
+ justify-content: space-between;
+ margin-top: 0.5em;
+ column-gap: 1em;
+}
+
+.column {
+ display: flex;
+ flex-direction: column;
+ justify-content: space-between;
+ gap: 0.5em;
+}
+
+.slider {
+ display: flex;
+ margin: 0.5em;
+ margin-bottom: 0;
+}
+
+.timestampContainer,
+.checkboxContainer {
+ display: flex;
+ justify-content: space-between;
+ border-radius: 0.5em;
+ border-color: #e8e8e8;
+ border-width: 2px;
+ border-style: solid;
+ max-height: 3em;
+}
+
+.checkboxContainer {
+ align-items: center;
+ padding-left: 0.5em;
+ padding-right: 0.5em;
+}
+
+.timestampLabel {
+ padding-left: 2em;
+ padding-right: 2em;
+ justify-content: center;
+ align-self: center;
+}
+
+.timestampInput {
+ border-radius: 0.5em;
+ border-color: #e8e8e8;
+ border-style: solid;
+ border-width: 0px;
+ border-left-width: 2px;
+}
+
+input,
+button {
+ border-radius: 8px;
+ border: 1px solid transparent;
+ padding: 0.6em 1.2em;
+ font-size: 1em;
+ font-weight: 500;
+ font-family: inherit;
+ color: #0f0f0f;
+ background-color: #ffffff;
+ transition: border-color 0.25s;
+ box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
+}
+
+button {
+ cursor: pointer;
+}
+button:hover {
+ border-color: #396cd8;
+}
+button:active {
+ border-color: #396cd8;
+ background-color: #e8e8e8;
+}
+
+input,
+button {
+ outline: none;
+}
+
+@media (prefers-color-scheme: dark) {
+ :root {
+ color: #f6f6f6;
+ background-color: #2f2f2f;
+ }
+
+ input,
+ button {
+ color: #ffffff;
+ background-color: #0f0f0f98;
+ }
+ button:active {
+ background-color: #0f0f0f69;
+ }
+}
diff --git a/src/App.tsx b/src/App.tsx
new file mode 100644
index 0000000..58f6108
--- /dev/null
+++ b/src/App.tsx
@@ -0,0 +1,162 @@
+import { useCallback, useRef, useState } from "react";
+import { invoke } from "@tauri-apps/api/core";
+import "./App.css";
+import { open } from "@tauri-apps/plugin-dialog";
+import VideoPreview from "./components/VideoPreview";
+import MinimumDistanceSlider from "./components/MinimumDistanceSlider";
+import TimeInput from "./components/TimeInput";
+import CheckboxLabel from "./components/CheckboxLabel";
+
+function App() {
+ const playerRef = useRef(null);
+
+ const [duration, setDuration] = useState(0); // in seconds
+ const [startTime, setStartTime] = useState("");
+ const [endTime, setEndTime] = useState("");
+
+ const [inputFileName, setInputFileName] = useState("");
+ const [inputFilePath, setInputFilePath] = useState("");
+ const [inputFolder, setInputFolder] = useState("");
+
+ const [outputFileName, setOutputFileName] = useState("test");
+ const [doMuteMicrophone, setDoMuteMicrophone] = useState(false);
+ const [doOverwriteFile, setDoOverwriteFile] = useState(true);
+ const [statusMsg, setStatusMsg] = useState("");
+
+ const setPlayerRef = useCallback((player: HTMLVideoElement) => {
+ if (!player) return;
+ playerRef.current = player;
+ }, []);
+
+ const onLoadedMetadata = useCallback(() => {
+ if (!playerRef.current) return;
+ setDuration(Math.floor(playerRef.current.duration));
+ }, []);
+
+ const seekToTime = useCallback((time: number) => {
+ if (!playerRef.current) return;
+ playerRef.current.currentTime = time;
+ }, []);
+
+ async function pickFile() {
+ const file = await open({
+ multiple: false,
+ directory: false,
+ filters: [{
+ name: 'Video',
+ extensions: ['mp4']
+ }]
+ });
+ setInputFilePath(file || "");
+ let arr = file ? file.split("\\") : [];
+ setInputFileName(arr.pop() || "");
+ setInputFolder(arr.join("\\"));
+ }
+
+ async function call_ffmpeg() {
+ if (inputFilePath.length === 0 || startTime.length === 0 || endTime.length === 0) {
+ setStatusMsg("Select a file, start time and end time");
+ return;
+ }
+ await invoke("callffmpeg",
+ {
+ start: startTime,
+ end: endTime,
+ in_file: inputFilePath,
+ in_folder: inputFolder,
+ audio_stream_count: doMuteMicrophone ? 1 : 2,
+ out_file: outputFileName + ".mp4",
+ do_overwrite: doOverwriteFile ? "-y" : "-n"
+ }).then((msg) => {
+ if (msg !== "exit code: 0") {
+ setStatusMsg("Error! Only 1 audio track? Try muting mic track.")
+ } else {
+ setStatusMsg("Processing complete");
+ }
+ }).catch((e) => {
+ console.debug("error!!", e);
+ });
+ }
+
+ return (
+
+
+
+
+ {/* File picker button */}
+
+
+
+
+
+ {/* Start time input */}
+
+ {/* End time input */}
+
+
+
+
+ {/* Mute mic checkbox */}
+
+ {/* Overwrite file checkbox */}
+
+
+
+ {/* Output filename text input */}
+
+ {statusMsg}
+
+ {/* Call ffmpeg button */}
+
+
+
+ );
+}
+
+export default App;
diff --git a/src/assets/react.svg b/src/assets/react.svg
new file mode 100644
index 0000000..6c87de9
--- /dev/null
+++ b/src/assets/react.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/src/components/Checkbox.tsx b/src/components/Checkbox.tsx
new file mode 100644
index 0000000..3afd46e
--- /dev/null
+++ b/src/components/Checkbox.tsx
@@ -0,0 +1,3 @@
+export default function Checkbox(props: { value: boolean; setValue: (arg0: boolean) => void; }) {
+ return {props.setValue(!props.value)}}/>
+}
\ No newline at end of file
diff --git a/src/components/CheckboxLabel.tsx b/src/components/CheckboxLabel.tsx
new file mode 100644
index 0000000..e82347f
--- /dev/null
+++ b/src/components/CheckboxLabel.tsx
@@ -0,0 +1,19 @@
+import Checkbox from "./Checkbox";
+
+type CheckboxLabelProps = {
+ text: string;
+ isValue: boolean;
+ setIsValue: (bool: boolean) => void;
+}
+
+export default function CheckboxLabel(props: CheckboxLabelProps) {
+ return (
+
+ );
+}
\ No newline at end of file
diff --git a/src/components/FilenameInput.tsx b/src/components/FilenameInput.tsx
new file mode 100644
index 0000000..e69de29
diff --git a/src/components/MinimumDistanceSlider.tsx b/src/components/MinimumDistanceSlider.tsx
new file mode 100644
index 0000000..0ea68bc
--- /dev/null
+++ b/src/components/MinimumDistanceSlider.tsx
@@ -0,0 +1,73 @@
+/*
+ https://mui.com/material-ui/react-slider/#minimum-distance
+*/
+import { useState } from 'react';
+import Slider, { SliderProps } from '@mui/material/Slider';
+
+function valuetext(value: number, _index: number) {
+ return `${secondsToFormattedString(value)}`;
+}
+
+function secondsToFormattedString(seconds: number): string {
+ let secs: number = seconds % 60;
+ let mins: number = Math.floor(seconds / 60);
+ if (secs < 10) return mins + ":0" + secs;
+ return mins + ":" + secs;
+}
+
+const minVal = 0;
+const minDistance = 5;
+
+type MinDistanceSliderProps = SliderProps & {
+ setStartTime: (time: string) => void;
+ setEndTime: (time: string) => void;
+ seekToTime: (time: number) => void;
+};
+
+export default function MinimumDistanceSlider(props: MinDistanceSliderProps) {
+ const [values, setValues] = useState([0, minDistance]);
+
+ const handleChange = (_event: Event, newValue: number | number[], activeThumb: number) => {
+ if (typeof newValue === "number") return;
+ if (newValue[1] - newValue[0] < minDistance) {
+ if (activeThumb === 0) {
+ const maxVal = Math.max(minVal, props.max ? props.max : minVal);
+ const clamped = Math.min(newValue[0], maxVal - minDistance);
+ const start = clamped;
+ const end = clamped + minDistance;
+ setValues([start, end]);
+ props.setStartTime(secondsToFormattedString(start));
+ props.setEndTime(secondsToFormattedString(end));
+ props.seekToTime(start);
+ } else {
+ const clamped = Math.max(newValue[1], minDistance);
+ const start = clamped - minDistance;
+ const end = clamped;
+ setValues([start, end]);
+ props.setStartTime(secondsToFormattedString(start));
+ props.setEndTime(secondsToFormattedString(end));
+ props.seekToTime(start);
+ }
+ } else {
+ setValues(newValue);
+ props.setStartTime(secondsToFormattedString(newValue[0]));
+ props.setEndTime(secondsToFormattedString(newValue[1]));
+ props.seekToTime(newValue[0]);
+ }
+ };
+
+ return (
+ 'Minimum distance shift'}
+ getAriaValueText={valuetext}
+ disableSwap
+ />
+ );
+}
\ No newline at end of file
diff --git a/src/components/TimeInput.tsx b/src/components/TimeInput.tsx
new file mode 100644
index 0000000..65cab7a
--- /dev/null
+++ b/src/components/TimeInput.tsx
@@ -0,0 +1,20 @@
+type TimeInputProps = {
+ text: string;
+ time: string;
+ setTime: (time: string) => void;
+}
+
+export default function TimeInput(props: TimeInputProps) {
+ return (
+
+ );
+}
\ No newline at end of file
diff --git a/src/components/VideoPreview.tsx b/src/components/VideoPreview.tsx
new file mode 100644
index 0000000..b3dc317
--- /dev/null
+++ b/src/components/VideoPreview.tsx
@@ -0,0 +1,33 @@
+import { convertFileSrc } from "@tauri-apps/api/core";
+import { useState } from "react";
+import ReactPlayer from 'react-player';
+
+type VideoPreviewProps = {
+ setPlayerRef: (player: HTMLVideoElement) => void;
+ inputFilePath: string;
+ onLoadedMetadata: () => void;
+};
+
+export default function VideoPreview(props: VideoPreviewProps) {
+ const [_startTime, _setStartTime] = useState("");
+ const [_endTime, _setEndTime] = useState("");
+
+ const onError = () => {
+ console.error("error loading video!");
+ };
+
+ return (
+
+ );
+}
\ No newline at end of file
diff --git a/src/main.tsx b/src/main.tsx
new file mode 100644
index 0000000..2be325e
--- /dev/null
+++ b/src/main.tsx
@@ -0,0 +1,9 @@
+import React from "react";
+import ReactDOM from "react-dom/client";
+import App from "./App";
+
+ReactDOM.createRoot(document.getElementById("root") as HTMLElement).render(
+
+
+ ,
+);
diff --git a/src/vite-env.d.ts b/src/vite-env.d.ts
new file mode 100644
index 0000000..11f02fe
--- /dev/null
+++ b/src/vite-env.d.ts
@@ -0,0 +1 @@
+///
diff --git a/tsconfig.json b/tsconfig.json
new file mode 100644
index 0000000..a7fc6fb
--- /dev/null
+++ b/tsconfig.json
@@ -0,0 +1,25 @@
+{
+ "compilerOptions": {
+ "target": "ES2020",
+ "useDefineForClassFields": true,
+ "lib": ["ES2020", "DOM", "DOM.Iterable"],
+ "module": "ESNext",
+ "skipLibCheck": true,
+
+ /* Bundler mode */
+ "moduleResolution": "bundler",
+ "allowImportingTsExtensions": true,
+ "resolveJsonModule": true,
+ "isolatedModules": true,
+ "noEmit": true,
+ "jsx": "react-jsx",
+
+ /* Linting */
+ "strict": true,
+ "noUnusedLocals": true,
+ "noUnusedParameters": true,
+ "noFallthroughCasesInSwitch": true
+ },
+ "include": ["src"],
+ "references": [{ "path": "./tsconfig.node.json" }]
+}
diff --git a/tsconfig.node.json b/tsconfig.node.json
new file mode 100644
index 0000000..42872c5
--- /dev/null
+++ b/tsconfig.node.json
@@ -0,0 +1,10 @@
+{
+ "compilerOptions": {
+ "composite": true,
+ "skipLibCheck": true,
+ "module": "ESNext",
+ "moduleResolution": "bundler",
+ "allowSyntheticDefaultImports": true
+ },
+ "include": ["vite.config.ts"]
+}
diff --git a/vite.config.ts b/vite.config.ts
new file mode 100644
index 0000000..3ba3a9c
--- /dev/null
+++ b/vite.config.ts
@@ -0,0 +1,32 @@
+import { defineConfig } from "vite";
+import react from "@vitejs/plugin-react";
+
+// @ts-expect-error process is a nodejs global
+const host = process.env.TAURI_DEV_HOST;
+
+// https://vitejs.dev/config/
+export default defineConfig(async () => ({
+ plugins: [react()],
+
+ // Vite options tailored for Tauri development and only applied in `tauri dev` or `tauri build`
+ //
+ // 1. prevent vite from obscuring rust errors
+ clearScreen: false,
+ // 2. tauri expects a fixed port, fail if that port is not available
+ server: {
+ port: 1420,
+ strictPort: true,
+ host: host || false,
+ hmr: host
+ ? {
+ protocol: "ws",
+ host,
+ port: 1420,
+ }
+ : undefined,
+ watch: {
+ // 3. tell vite to ignore watching `src-tauri`
+ ignored: ["**/src-tauri/**"],
+ },
+ },
+}));