diff --git a/App.axaml b/App.axaml index eec35c6..e793ebb 100644 --- a/App.axaml +++ b/App.axaml @@ -1,6 +1,6 @@ diff --git a/App.axaml.cs b/App.axaml.cs index d970dde..826b96f 100644 --- a/App.axaml.cs +++ b/App.axaml.cs @@ -5,15 +5,15 @@ using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Hosting; using Microsoft.Extensions.Logging; -using MyAvaloniaApp.Configuration; -using MyAvaloniaApp.Extensions; -using MyAvaloniaApp.Views; +using AuroraDesk.Configuration; +using AuroraDesk.Extensions; +using AuroraDesk.Views; using ReactiveUI; using Splat; using System; using System.IO; -namespace MyAvaloniaApp; +namespace AuroraDesk; public partial class App : Application { diff --git a/Attached/TextEditorAssist.cs b/Attached/TextEditorAssist.cs index df68aed..f7288d3 100644 --- a/Attached/TextEditorAssist.cs +++ b/Attached/TextEditorAssist.cs @@ -1,9 +1,9 @@ -using Avalonia; +using Avalonia; using Avalonia.Data; using AvaloniaEdit; using AvaloniaEdit.Document; -namespace MyAvaloniaApp.Attached; +namespace AuroraDesk.Attached; /// /// 为 提供可绑定的 附加属性, diff --git a/Attached/TextMateHelper.cs b/Attached/TextMateHelper.cs index b8bc4b1..b61b0ad 100644 --- a/Attached/TextMateHelper.cs +++ b/Attached/TextMateHelper.cs @@ -1,11 +1,11 @@ -using System; +using System; using System.Collections.Generic; using Avalonia; using AvaloniaEdit; using AvaloniaEdit.TextMate; using TextMateSharp.Grammars; -namespace MyAvaloniaApp.Attached; +namespace AuroraDesk.Attached; /// /// 为 提供基于 TextMate 的语法高亮附加属性, diff --git a/MyAvaloniaApp.csproj b/AuroraDesk.csproj similarity index 96% rename from MyAvaloniaApp.csproj rename to AuroraDesk.csproj index a670989..cbc2030 100644 --- a/MyAvaloniaApp.csproj +++ b/AuroraDesk.csproj @@ -8,6 +8,8 @@ true false false + AuroraDesk + AuroraDesk diff --git a/MyAvaloniaApp.sln b/AuroraDesk.sln similarity index 87% rename from MyAvaloniaApp.sln rename to AuroraDesk.sln index d33c1af..7010fc8 100644 --- a/MyAvaloniaApp.sln +++ b/AuroraDesk.sln @@ -2,7 +2,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 17 VisualStudioVersion = 17.0.31903.59 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MyAvaloniaApp", "MyAvaloniaApp.csproj", "{A1B2C3D4-E5F6-7890-ABCD-EF1234567890}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AuroraDesk", "AuroraDesk.csproj", "{A1B2C3D4-E5F6-7890-ABCD-EF1234567890}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution diff --git a/AuroraDesk重构计划.md b/AuroraDesk重构计划.md new file mode 100644 index 0000000..ca896a4 --- /dev/null +++ b/AuroraDesk重构计划.md @@ -0,0 +1,441 @@ +# AuroraDesk 项目重构计划 + +## 📋 项目概述 + +**目标项目名**: AuroraDesk +**原项目名**: MyAvaloniaApp +**目标架构**: 整洁架构 (Clean Architecture) +**重点优化**: 减少 ViewModels 耦合,提高代码可维护性 +**环境**: Windows 10 +**注意事项**: 避免使用 Linux 语法,防止乱码问题 + +--- + +## 🎯 重构目标 + +### 1. 项目重命名 +- 项目名称:`MyAvaloniaApp` → `AuroraDesk` +- 解决方案文件:`MyAvaloniaApp.sln` → `AuroraDesk.sln` +- 项目文件:`MyAvaloniaApp.csproj` → `AuroraDesk.csproj` +- 命名空间前缀:`MyAvaloniaApp.*` → `AuroraDesk.*` + +### 2. 架构重构(整洁架构) + +#### 2.1 项目分层结构 + +``` +AuroraDesk/ +├── AuroraDesk.Core/ # 核心领域层 +│ ├── Entities/ # 领域实体 +│ │ ├── NavigationItem.cs +│ │ ├── TabItem.cs +│ │ └── ... +│ ├── Interfaces/ # 领域接口 +│ └── Exceptions/ # 领域异常 +│ +├── AuroraDesk.Application/ # 应用层 +│ ├── Services/ # 应用服务接口 +│ │ ├── INavigationService.cs +│ │ ├── IPageFactory.cs +│ │ └── ... +│ ├── DTOs/ # 数据传输对象 +│ └── Mappings/ # 映射配置 +│ +├── AuroraDesk.Infrastructure/ # 基础设施层 +│ ├── Services/ # 服务实现 +│ │ ├── NavigationService.cs +│ │ ├── PageFactory.cs +│ │ ├── DataService.cs +│ │ ├── ApiService.cs +│ │ └── ResourceService.cs +│ ├── Configuration/ # 配置 +│ │ └── AppSettings.cs +│ └── Extensions/ # 扩展方法 +│ └── ServiceCollectionExtensions.cs +│ +└── AuroraDesk.Presentation/ # 表示层 + ├── ViewModels/ # ViewModels(精简) + │ ├── MainWindowViewModel.cs + │ ├── AppViewModel.cs + │ └── Base/ + │ └── RoutableViewModel.cs + ├── Views/ # Views + │ ├── ViewLocator.cs + │ └── Pages/ + ├── Converters/ # 转换器 + └── Behaviors/ # 行为 +``` + +#### 2.2 命名空间规划 + +```csharp +// 核心领域层 +AuroraDesk.Core +AuroraDesk.Core.Entities +AuroraDesk.Core.Interfaces +AuroraDesk.Core.Exceptions + +// 应用层 +AuroraDesk.Application +AuroraDesk.Application.Services +AuroraDesk.Application.DTOs +AuroraDesk.Application.Mappings + +// 基础设施层 +AuroraDesk.Infrastructure +AuroraDesk.Infrastructure.Services +AuroraDesk.Infrastructure.Configuration +AuroraDesk.Infrastructure.Extensions + +// 表示层 +AuroraDesk.Presentation +AuroraDesk.Presentation.ViewModels +AuroraDesk.Presentation.ViewModels.Base +AuroraDesk.Presentation.Views +AuroraDesk.Presentation.Views.Pages +AuroraDesk.Presentation.Converters +AuroraDesk.Presentation.Behaviors +``` + +### 3. 解耦 ViewModels 策略 + +#### 3.1 问题分析 +**当前问题**: +- `MainWindowViewModel` 中直接创建了所有 `PageViewModel` 实例(高耦合) +- ViewModel 创建逻辑分散在 `InitializeNavigationItems` 方法中 +- 难以进行单元测试 +- 违反单一职责原则 + +**解决方案**: +1. **引入 PageViewModel 工厂模式** + - 创建 `IPageViewModelFactory` 接口 + - 实现 `PageViewModelFactory` 类 + - 通过依赖注入管理 ViewModel 创建 + +2. **引入导航服务** + - 创建 `INavigationService` 接口 + - 封装导航逻辑,减少 MainWindowViewModel 职责 + - 统一管理导航项配置 + +3. **将配置数据外置** + - 创建导航配置数据类(NavigationConfig) + - 从 ViewModel 中分离配置数据 + - 配置可在应用启动时注入 + +#### 3.2 重构后的依赖关系 + +``` +MainWindowViewModel + ↓ (依赖) +INavigationService // 处理导航逻辑 +IPageViewModelFactory // 创建 PageViewModel +ILogger // 日志记录 +IScreen // ReactiveUI 路由 + +不再直接依赖: +❌ DashboardPageViewModel +❌ UsersPageViewModel +❌ SettingsPageViewModel +... (所有具体的 PageViewModel) +``` + +--- + +## 📝 详细重构步骤 + +### 阶段一:准备工作(不修改代码) + +#### 步骤 1.1: 创建新项目结构(可选,建议先单项目重构) +- [ ] 创建分层项目结构(或多文件夹结构) +- [ ] 规划文件迁移路径 +- [ ] 备份当前代码 + +#### 步骤 1.2: 分析依赖关系 +- [ ] 梳理所有 ViewModel 之间的依赖 +- [ ] 识别所有直接 new 实例化的地方 +- [ ] 记录需要注入的服务 + +--- + +### 阶段二:架构重构(按顺序执行) + +#### 步骤 2.1: 创建核心领域层 +- [ ] 创建 `AuroraDesk.Core` 项目/文件夹 +- [ ] 迁移实体类:`NavigationItem`, `TabItem` 到 `Core.Entities` +- [ ] 更新命名空间:`AuroraDesk.Core.Entities` +- [ ] 移除业务逻辑,只保留数据模型 + +#### 步骤 2.2: 创建应用层接口 +- [ ] 创建 `AuroraDesk.Application` 项目/文件夹 +- [ ] 定义 `INavigationService` 接口 +- [ ] 定义 `IPageViewModelFactory` 接口 +- [ ] 定义导航配置 DTO(NavigationConfig) + +#### 步骤 2.3: 创建基础设施层实现 +- [ ] 创建 `AuroraDesk.Infrastructure` 项目/文件夹 +- [ ] 实现 `NavigationService` +- [ ] 实现 `PageViewModelFactory` +- [ ] 迁移现有服务:`DataService`, `ApiService`, `ResourceService` +- [ ] 更新服务命名空间为 `AuroraDesk.Infrastructure.Services` + +#### 步骤 2.4: 重构表示层 +- [ ] 更新 `MainWindowViewModel`,移除直接创建 ViewModel 的代码 +- [ ] 注入 `INavigationService` 和 `IPageViewModelFactory` +- [ ] 简化 `MainWindowViewModel` 的职责 +- [ ] 更新所有命名空间为 `AuroraDesk.Presentation.*` + +--- + +### 阶段三:项目重命名(谨慎执行) + +#### 步骤 3.1: 重命名项目文件 +- [ ] 重命名 `.csproj` 文件 +- [ ] 重命名 `.sln` 文件 +- [ ] 更新项目文件中的 `` 和 `` + +#### 步骤 3.2: 重命名命名空间(逐个文件修改) +- [ ] **不要使用批量替换** +- [ ] 逐个文件修改命名空间声明 +- [ ] 逐个文件更新 using 语句 +- [ ] 每次修改后编译测试 + +#### 步骤 3.3: 更新配置文件 +- [ ] 更新 `appsettings.json` 中的项目相关配置 +- [ ] 更新 `app.manifest` 中的程序集名称 +- [ ] 更新所有批处理文件和脚本 + +--- + +### 阶段四:解耦 ViewModels(重点) + +#### 步骤 4.1: 创建工厂接口和实现 +```csharp +// AuroraDesk.Application/Services/IPageViewModelFactory.cs +public interface IPageViewModelFactory +{ + T CreatePageViewModel(IScreen screen) where T : IRoutableViewModel; + IRoutableViewModel CreatePageViewModel(string pageId, IScreen screen); +} +``` + +#### 步骤 4.2: 实现工厂类 +```csharp +// AuroraDesk.Infrastructure/Services/PageViewModelFactory.cs +public class PageViewModelFactory : IPageViewModelFactory +{ + private readonly IServiceProvider _serviceProvider; + + public IRoutableViewModel CreatePageViewModel(string pageId, IScreen screen) + { + return pageId switch + { + "dashboard" => _serviceProvider.GetRequiredService(), + "users" => _serviceProvider.GetRequiredService(), + // ... 其他页面 + _ => throw new ArgumentException($"Unknown page: {pageId}") + }; + } +} +``` + +#### 步骤 4.3: 创建导航服务 +```csharp +// AuroraDesk.Application/Services/INavigationService.cs +public interface INavigationService +{ + ObservableCollection GetNavigationItems(); + void NavigateToPage(NavigationItem item); +} +``` + +#### 步骤 4.4: 重构 MainWindowViewModel +- [ ] 移除 `InitializeNavigationItems` 方法中的 ViewModel 创建逻辑 +- [ ] 注入 `INavigationService` 获取导航项 +- [ ] 使用 `IPageViewModelFactory` 创建 ViewModel +- [ ] 简化导航逻辑,委托给 `INavigationService` + +--- + +### 阶段五:注册依赖注入 + +#### 步骤 5.1: 更新 ServiceCollectionExtensions +- [ ] 注册 `IPageViewModelFactory` → `PageViewModelFactory` +- [ ] 注册 `INavigationService` → `NavigationService` +- [ ] 注册所有 PageViewModel 为 Transient(或 Scoped) +- [ ] 更新命名空间引用 + +#### 步骤 5.2: 更新 App.axaml.cs +- [ ] 确保所有新服务正确注册 +- [ ] 更新 ViewLocator 的命名空间 +- [ ] 测试依赖注入是否正常工作 + +--- + +### 阶段六:测试和验证 + +#### 步骤 6.1: 编译测试 +- [ ] 清理解决方案并重新编译 +- [ ] 修复所有编译错误 +- [ ] 修复所有命名空间引用错误 + +#### 步骤 6.2: 运行时测试 +- [ ] 启动应用程序 +- [ ] 测试导航功能 +- [ ] 测试所有页面能否正常加载 +- [ ] 测试标签页功能 + +#### 步骤 6.3: 代码检查 +- [ ] 检查是否还有直接 new ViewModel 的地方 +- [ ] 检查命名空间是否全部更新 +- [ ] 检查是否有循环依赖 + +--- + +## 🔧 技术实现细节 + +### 1. PageViewModel 注册方式 + +```csharp +// ServiceCollectionExtensions.cs +services.AddTransient(); +services.AddTransient(); +services.AddTransient(); +// ... 其他 PageViewModel +``` + +### 2. 导航配置数据 + +```csharp +// NavigationConfig.cs +public class NavigationConfig +{ + public List Items { get; set; } = new(); +} + +public class NavigationItemConfig +{ + public string Id { get; set; } = string.Empty; + public string Title { get; set; } = string.Empty; + public string PageViewModelType { get; set; } = string.Empty; + public IconType IconType { get; set; } + public List? Children { get; set; } +} +``` + +### 3. MainWindowViewModel 重构示例 + +**重构前**: +```csharp +private void InitializeNavigationItems() +{ + _navigationItems = new ObservableCollection + { + new NavigationItem { ViewModel = new DashboardPageViewModel(_screen) }, + new NavigationItem { ViewModel = new UsersPageViewModel(_screen) }, + // ... + }; +} +``` + +**重构后**: +```csharp +private readonly INavigationService _navigationService; + +public MainWindowViewModel( + IScreen screen, + INavigationService navigationService, + ILogger? logger = null) +{ + _screen = screen; + _navigationService = navigationService; + _logger = logger; + + NavigationItems = _navigationService.GetNavigationItems(); +} +``` + +--- + +## ⚠️ 注意事项 + +### 1. 不要批量替换 +- ❌ **禁止**:使用 Visual Studio 的全局查找替换功能批量替换命名空间 +- ✅ **正确做法**:逐个文件修改,每次修改后编译测试 + +### 2. Windows 10 环境 +- ❌ **避免**:使用 Linux 风格的路径分隔符或命令 +- ✅ **使用**:Windows 路径分隔符 `\` 或使用 `Path.Combine` +- ✅ **使用**:PowerShell 脚本而非 Bash 脚本 + +### 3. 编译顺序 +- 先编译被依赖的层(Core → Application → Infrastructure → Presentation) +- 每次修改一层后立即编译测试 + +### 4. Git 版本控制 +- 每个阶段完成后提交一次代码 +- 使用有意义的提交信息 +- 如果出现问题可以回退到上一个阶段 + +--- + +## 📊 预期成果 + +### 代码质量提升 +- ✅ ViewModels 耦合度降低 80%+ +- ✅ 代码可测试性提升 +- ✅ 符合整洁架构原则 +- ✅ 易于扩展新功能 + +### 项目结构 +- ✅ 清晰的分层架构 +- ✅ 统一的命名空间规范(Aurora 前缀) +- ✅ 更好的代码组织 + +### 维护性 +- ✅ 新页面添加只需注册,无需修改 MainWindowViewModel +- ✅ 导航逻辑集中管理 +- ✅ 配置与代码分离 + +--- + +## 📅 执行时间估算 + +- **阶段一**(准备):0.5 天 +- **阶段二**(架构重构):2-3 天 +- **阶段三**(重命名):1-2 天 +- **阶段四**(解耦):2-3 天 +- **阶段五**(DI注册):0.5 天 +- **阶段六**(测试):1 天 + +**总计**:约 7-10 个工作日 + +--- + +## ✅ 检查清单 + +在每个阶段完成后,使用此清单验证: + +- [ ] 所有文件命名空间已更新 +- [ ] 所有 using 语句已更新 +- [ ] 项目文件已更新 +- [ ] 解决方案文件已更新 +- [ ] 代码编译无错误 +- [ ] 应用程序可以正常启动 +- [ ] 主要功能正常工作 +- [ ] 已更新 modify.md 记录修改 + +--- + +## 📝 修改记录 + +每次完成一个重要步骤后,请在 `modify.md` 文件中记录: +- 修改日期 +- 修改内容 +- 修改的文件列表 +- 遇到的问题及解决方案 + +--- + +**文档创建日期**: 2025年1月 +**最后更新**: 2025年1月 +**状态**: 计划阶段 diff --git a/Configuration/AppSettings.cs b/Configuration/AppSettings.cs index e01b4a2..05f517b 100644 --- a/Configuration/AppSettings.cs +++ b/Configuration/AppSettings.cs @@ -1,7 +1,7 @@ -namespace MyAvaloniaApp.Configuration; +namespace AuroraDesk.Configuration; /// -/// 应用程序设置 +/// 搴旂敤绋嬪簭璁剧疆 /// public class AppSettings { @@ -12,7 +12,7 @@ public class AppSettings } /// -/// 功能设置 +/// 鍔熻兘璁剧疆 /// public class FeatureSettings { diff --git a/Converters/StringConverters.cs b/Converters/StringConverters.cs index 9bae45f..f68fbf1 100644 --- a/Converters/StringConverters.cs +++ b/Converters/StringConverters.cs @@ -1,10 +1,10 @@ -using Avalonia.Data.Converters; +using Avalonia.Data.Converters; using Avalonia.Media; using HeroIconsAvalonia.Enums; using System; using System.Globalization; -namespace MyAvaloniaApp.Converters; +namespace AuroraDesk.Converters; /// /// 字符串转换器类 diff --git a/Converters/TabStyleConverter.cs b/Converters/TabStyleConverter.cs index b2af776..bd0f967 100644 --- a/Converters/TabStyleConverter.cs +++ b/Converters/TabStyleConverter.cs @@ -1,9 +1,9 @@ -using Avalonia.Data.Converters; +using Avalonia.Data.Converters; using Avalonia.Media; using System; using System.Globalization; -namespace MyAvaloniaApp.Converters; +namespace AuroraDesk.Converters; /// /// 标签页样式转换器 diff --git a/Extensions/ServiceCollectionExtensions.cs b/Extensions/ServiceCollectionExtensions.cs index ca428e7..413b4e6 100644 --- a/Extensions/ServiceCollectionExtensions.cs +++ b/Extensions/ServiceCollectionExtensions.cs @@ -1,26 +1,26 @@ -using Microsoft.Extensions.DependencyInjection; +using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Logging; -using MyAvaloniaApp.Services; -using MyAvaloniaApp.ViewModels; +using AuroraDesk.Services; +using AuroraDesk.ViewModels; using ReactiveUI; using Splat; using System; -namespace MyAvaloniaApp.Extensions; +namespace AuroraDesk.Extensions; /// -/// 服务集合扩展方法 +/// 鏈嶅姟闆嗗悎鎵╁睍鏂规硶 /// public static class ServiceCollectionExtensions { /// - /// 添加 ReactiveUI 相关服务 + /// 娣诲姞 ReactiveUI 鐩稿叧鏈嶅姟 /// - /// 服务集合 - /// 服务集合 + /// 鏈嶅姟闆嗗悎 + /// 鏈嶅姟闆嗗悎 public static IServiceCollection AddReactiveUI(this IServiceCollection services) { - // 注册 ReactiveUI 相关服务 + // 娉ㄥ唽 ReactiveUI 鐩稿叧鏈嶅姟 services.AddSingleton(); services.AddSingleton(provider => provider.GetRequiredService()); @@ -28,31 +28,31 @@ public static class ServiceCollectionExtensions } /// - /// 添加业务服务 + /// 娣诲姞涓氬姟鏈嶅姟 /// - /// 服务集合 - /// 服务集合 + /// 鏈嶅姟闆嗗悎 + /// 鏈嶅姟闆嗗悎 public static IServiceCollection AddBusinessServices(this IServiceCollection services) { - // 注册业务服务 + // 娉ㄥ唽涓氬姟鏈嶅姟 services.AddTransient(); services.AddTransient(); - // 注册资源服务 + // 娉ㄥ唽璧勬簮鏈嶅姟 services.AddSingleton(); return services; } /// - /// 添加 ViewModel 服务 + /// 娣诲姞 ViewModel 鏈嶅姟 /// - /// 服务集合 - /// 服务集合 + /// 鏈嶅姟闆嗗悎 + /// 鏈嶅姟闆嗗悎 public static IServiceCollection AddViewModels(this IServiceCollection services) { - // 注册 MainWindowViewModel,通过 AppViewModel 获取 - // 注意:需要先注册 AppViewModel + // 娉ㄥ唽 MainWindowViewModel锛岄€氳繃 AppViewModel 鑾峰彇 + // 娉ㄦ剰锛氶渶瑕佸厛娉ㄥ唽 AppViewModel services.AddTransient(provider => { var appViewModel = provider.GetRequiredService(); diff --git a/MainWindow.axaml b/MainWindow.axaml index 3ec0a4c..1b188ee 100644 --- a/MainWindow.axaml +++ b/MainWindow.axaml @@ -2,13 +2,13 @@ xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" - xmlns:vm="using:MyAvaloniaApp.ViewModels" - xmlns:converters="using:MyAvaloniaApp.Converters" + xmlns:vm="using:AuroraDesk.ViewModels" + xmlns:converters="using:AuroraDesk.Converters" xmlns:tooltip="using:Avalonia.Controls" xmlns:heroicons="clr-namespace:HeroIconsAvalonia.Controls;assembly=HeroIconsAvalonia" xmlns:reactive="clr-namespace:Avalonia.ReactiveUI;assembly=Avalonia.ReactiveUI" mc:Ignorable="d" d:DesignWidth="1200" d:DesignHeight="800" - x:Class="MyAvaloniaApp.MainWindow" + x:Class="AuroraDesk.MainWindow" x:TypeArguments="vm:MainWindowViewModel" x:DataType="vm:MainWindowViewModel" Title="{Binding Title}" diff --git a/MainWindow.axaml.cs b/MainWindow.axaml.cs index 68f3bd1..d40f907 100644 --- a/MainWindow.axaml.cs +++ b/MainWindow.axaml.cs @@ -5,11 +5,11 @@ using Avalonia.Input; using Avalonia.Markup.Xaml; using Avalonia.ReactiveUI; using Microsoft.Extensions.Logging; -using MyAvaloniaApp.ViewModels; +using AuroraDesk.ViewModels; using ReactiveUI; using System.Reactive.Disposables; -namespace MyAvaloniaApp; +namespace AuroraDesk; public partial class MainWindow : ReactiveWindow, IActivatableView { diff --git a/Program.cs b/Program.cs index b739695..6812eb4 100644 --- a/Program.cs +++ b/Program.cs @@ -4,7 +4,7 @@ using Avalonia.ReactiveUI; using System; using System.Runtime.InteropServices; -namespace MyAvaloniaApp; +namespace AuroraDesk; class Program { diff --git a/Services/ApiService.cs b/Services/ApiService.cs index 9021b42..dd8e453 100644 --- a/Services/ApiService.cs +++ b/Services/ApiService.cs @@ -1,8 +1,8 @@ -using Microsoft.Extensions.Logging; +using Microsoft.Extensions.Logging; using System; using System.Threading.Tasks; -namespace MyAvaloniaApp.Services; +namespace AuroraDesk.Services; /// /// API 服务实现 diff --git a/Services/DataService.cs b/Services/DataService.cs index 92f3a9a..10b66b4 100644 --- a/Services/DataService.cs +++ b/Services/DataService.cs @@ -1,8 +1,8 @@ -using Microsoft.Extensions.Logging; +using Microsoft.Extensions.Logging; using System; using System.Threading.Tasks; -namespace MyAvaloniaApp.Services; +namespace AuroraDesk.Services; /// /// 数据服务实现 diff --git a/Services/IApiService.cs b/Services/IApiService.cs index d02816a..b93475c 100644 --- a/Services/IApiService.cs +++ b/Services/IApiService.cs @@ -1,6 +1,6 @@ -using System.Threading.Tasks; +using System.Threading.Tasks; -namespace MyAvaloniaApp.Services; +namespace AuroraDesk.Services; /// /// API 服务接口 diff --git a/Services/IDataService.cs b/Services/IDataService.cs index 73c0401..fc3d44d 100644 --- a/Services/IDataService.cs +++ b/Services/IDataService.cs @@ -1,6 +1,6 @@ -using System.Threading.Tasks; +using System.Threading.Tasks; -namespace MyAvaloniaApp.Services; +namespace AuroraDesk.Services; /// /// 数据服务接口 diff --git a/Services/IResourceService.cs b/Services/IResourceService.cs index aaa4a85..d915fd1 100644 --- a/Services/IResourceService.cs +++ b/Services/IResourceService.cs @@ -1,7 +1,7 @@ -using System; +using System; using System.Globalization; -namespace MyAvaloniaApp.Services +namespace AuroraDesk.Services { /// /// 资源服务接口,用于管理多语言资源 diff --git a/Services/LanguageManager.cs b/Services/LanguageManager.cs index 0d42936..247875c 100644 --- a/Services/LanguageManager.cs +++ b/Services/LanguageManager.cs @@ -1,8 +1,8 @@ -using System; +using System; using System.Globalization; using System.Threading.Tasks; -namespace MyAvaloniaApp.Services +namespace AuroraDesk.Services { /// /// 语言管理器,用于管理应用程序的语言设置 diff --git a/Services/ResourceService.cs b/Services/ResourceService.cs index b7b2fdd..d7132a5 100644 --- a/Services/ResourceService.cs +++ b/Services/ResourceService.cs @@ -1,10 +1,10 @@ -using System; +using System; using System.Collections.Generic; using System.Globalization; using System.Resources; using System.Reflection; -namespace MyAvaloniaApp.Services +namespace AuroraDesk.Services { /// /// 资源服务实现,用于管理多语言资源 diff --git a/ViewModels/AppViewModel.cs b/ViewModels/AppViewModel.cs index e06a619..bea4f10 100644 --- a/ViewModels/AppViewModel.cs +++ b/ViewModels/AppViewModel.cs @@ -1,9 +1,9 @@ -using System; +using System; using Microsoft.Extensions.Logging; -using MyAvaloniaApp.Services; +using AuroraDesk.Services; using ReactiveUI; -namespace MyAvaloniaApp.ViewModels; +namespace AuroraDesk.ViewModels; /// /// 应用程序级别的 ViewModel,实现 IScreen 接口 diff --git a/ViewModels/Base/RoutableViewModel.cs b/ViewModels/Base/RoutableViewModel.cs index 45dea60..d9c7efb 100644 --- a/ViewModels/Base/RoutableViewModel.cs +++ b/ViewModels/Base/RoutableViewModel.cs @@ -1,6 +1,6 @@ -using ReactiveUI; +using ReactiveUI; -namespace MyAvaloniaApp.ViewModels.Base; +namespace AuroraDesk.ViewModels.Base; /// /// 可路由的 ViewModel 基类,实现 IRoutableViewModel 接口 diff --git a/ViewModels/MainWindowViewModel.cs b/ViewModels/MainWindowViewModel.cs index 166e3d0..10c48da 100644 --- a/ViewModels/MainWindowViewModel.cs +++ b/ViewModels/MainWindowViewModel.cs @@ -1,7 +1,7 @@ -using Microsoft.Extensions.Logging; -using MyAvaloniaApp.Services; -using MyAvaloniaApp.ViewModels.Base; -using MyAvaloniaApp.ViewModels.Pages; +using Microsoft.Extensions.Logging; +using AuroraDesk.Services; +using AuroraDesk.ViewModels.Base; +using AuroraDesk.ViewModels.Pages; using ReactiveUI; using System; using System.Collections.ObjectModel; @@ -9,7 +9,7 @@ using System.Linq; using System.Reactive; using System.Reactive.Linq; -namespace MyAvaloniaApp.ViewModels; +namespace AuroraDesk.ViewModels; /// /// 主窗口的 ViewModel,使用完整的 ReactiveUI 路由系统 diff --git a/ViewModels/NavigationItem.cs b/ViewModels/NavigationItem.cs index 2f1b8c8..f95b6ee 100644 --- a/ViewModels/NavigationItem.cs +++ b/ViewModels/NavigationItem.cs @@ -1,9 +1,9 @@ -using ReactiveUI; +using ReactiveUI; using HeroIconsAvalonia.Enums; using System; using System.Collections.ObjectModel; -namespace MyAvaloniaApp.ViewModels; +namespace AuroraDesk.ViewModels; /// /// 导航项模型 diff --git a/ViewModels/Pages/DashboardPageViewModel.cs b/ViewModels/Pages/DashboardPageViewModel.cs index 012411c..9c44d90 100644 --- a/ViewModels/Pages/DashboardPageViewModel.cs +++ b/ViewModels/Pages/DashboardPageViewModel.cs @@ -1,7 +1,7 @@ -using MyAvaloniaApp.ViewModels.Base; +using AuroraDesk.ViewModels.Base; using ReactiveUI; -namespace MyAvaloniaApp.ViewModels.Pages; +namespace AuroraDesk.ViewModels.Pages; /// /// 仪表板页面ViewModel diff --git a/ViewModels/Pages/DialogHostPageViewModel.cs b/ViewModels/Pages/DialogHostPageViewModel.cs index d42487b..229a309 100644 --- a/ViewModels/Pages/DialogHostPageViewModel.cs +++ b/ViewModels/Pages/DialogHostPageViewModel.cs @@ -1,7 +1,7 @@ -using Avalonia.Media; +using Avalonia.Media; using Avalonia.Threading; using HeroIconsAvalonia.Enums; -using MyAvaloniaApp.ViewModels.Base; +using AuroraDesk.ViewModels.Base; using ReactiveUI; using System; using System.Globalization; @@ -9,7 +9,7 @@ using System.Reactive; using System.Threading; using System.Threading.Tasks; -namespace MyAvaloniaApp.ViewModels.Pages; +namespace AuroraDesk.ViewModels.Pages; /// /// DialogHost 示例页面的 ViewModel diff --git a/ViewModels/Pages/EditorPageViewModel.cs b/ViewModels/Pages/EditorPageViewModel.cs index 23e40f5..061cfa2 100644 --- a/ViewModels/Pages/EditorPageViewModel.cs +++ b/ViewModels/Pages/EditorPageViewModel.cs @@ -1,12 +1,12 @@ -using Microsoft.Extensions.Logging; -using MyAvaloniaApp.ViewModels.Base; +using Microsoft.Extensions.Logging; +using AuroraDesk.ViewModels.Base; using ReactiveUI; using System; using System.Collections.ObjectModel; using System.Reactive; using AvaloniaEdit.Document; -namespace MyAvaloniaApp.ViewModels.Pages; +namespace AuroraDesk.ViewModels.Pages; /// /// 代码编辑器页面的 ViewModel @@ -87,7 +87,7 @@ public class EditorPageViewModel : RoutableViewModel "\n" + "using System;\n" + "\n" + - "namespace MyAvaloniaApp\n" + + "namespace AuroraDesk\n" + "{\n" + " public class Program\n" + " {\n" + diff --git a/ViewModels/Pages/HelpPageViewModel.cs b/ViewModels/Pages/HelpPageViewModel.cs index dc2f7d4..f23a62e 100644 --- a/ViewModels/Pages/HelpPageViewModel.cs +++ b/ViewModels/Pages/HelpPageViewModel.cs @@ -1,7 +1,7 @@ -using MyAvaloniaApp.ViewModels.Base; +using AuroraDesk.ViewModels.Base; using ReactiveUI; -namespace MyAvaloniaApp.ViewModels.Pages; +namespace AuroraDesk.ViewModels.Pages; /// /// 帮助中心页面ViewModel diff --git a/ViewModels/Pages/IconsPageViewModel.cs b/ViewModels/Pages/IconsPageViewModel.cs index b2e0fb0..c1f38c1 100644 --- a/ViewModels/Pages/IconsPageViewModel.cs +++ b/ViewModels/Pages/IconsPageViewModel.cs @@ -1,5 +1,5 @@ -using Microsoft.Extensions.Logging; -using MyAvaloniaApp.ViewModels.Base; +using Microsoft.Extensions.Logging; +using AuroraDesk.ViewModels.Base; using ReactiveUI; using System; using System.Collections.Generic; @@ -15,7 +15,7 @@ using Avalonia.Controls; using Avalonia; using Avalonia.Layout; -namespace MyAvaloniaApp.ViewModels.Pages; +namespace AuroraDesk.ViewModels.Pages; /// /// 图标导航页面的 ViewModel diff --git a/ViewModels/Pages/ReportsPageViewModel.cs b/ViewModels/Pages/ReportsPageViewModel.cs index 8df0293..d26cdd2 100644 --- a/ViewModels/Pages/ReportsPageViewModel.cs +++ b/ViewModels/Pages/ReportsPageViewModel.cs @@ -1,7 +1,7 @@ -using MyAvaloniaApp.ViewModels.Base; +using AuroraDesk.ViewModels.Base; using ReactiveUI; -namespace MyAvaloniaApp.ViewModels.Pages; +namespace AuroraDesk.ViewModels.Pages; /// /// 报表统计页面ViewModel diff --git a/ViewModels/Pages/SettingsPageViewModel.cs b/ViewModels/Pages/SettingsPageViewModel.cs index 58f4046..fa88e1a 100644 --- a/ViewModels/Pages/SettingsPageViewModel.cs +++ b/ViewModels/Pages/SettingsPageViewModel.cs @@ -1,7 +1,7 @@ -using MyAvaloniaApp.ViewModels.Base; +using AuroraDesk.ViewModels.Base; using ReactiveUI; -namespace MyAvaloniaApp.ViewModels.Pages; +namespace AuroraDesk.ViewModels.Pages; /// /// 设置页面ViewModel diff --git a/ViewModels/Pages/UsersPageViewModel.cs b/ViewModels/Pages/UsersPageViewModel.cs index 07aba73..18f698c 100644 --- a/ViewModels/Pages/UsersPageViewModel.cs +++ b/ViewModels/Pages/UsersPageViewModel.cs @@ -1,8 +1,8 @@ -using MyAvaloniaApp.ViewModels.Base; +using AuroraDesk.ViewModels.Base; using ReactiveUI; using System.Collections.ObjectModel; -namespace MyAvaloniaApp.ViewModels.Pages; +namespace AuroraDesk.ViewModels.Pages; /// /// 用户管理页面ViewModel diff --git a/ViewModels/TabItem.cs b/ViewModels/TabItem.cs index 0da1e1e..4c076e1 100644 --- a/ViewModels/TabItem.cs +++ b/ViewModels/TabItem.cs @@ -1,7 +1,7 @@ -using ReactiveUI; +using ReactiveUI; using HeroIconsAvalonia.Enums; -namespace MyAvaloniaApp.ViewModels; +namespace AuroraDesk.ViewModels; /// /// 标签页项模型 diff --git a/Views/Pages/DashboardPageView.axaml b/Views/Pages/DashboardPageView.axaml index 3f22aa8..68b66c6 100644 --- a/Views/Pages/DashboardPageView.axaml +++ b/Views/Pages/DashboardPageView.axaml @@ -1,11 +1,11 @@ - diff --git a/Views/Pages/DashboardPageView.axaml.cs b/Views/Pages/DashboardPageView.axaml.cs index 8d60997..5cd19c2 100644 --- a/Views/Pages/DashboardPageView.axaml.cs +++ b/Views/Pages/DashboardPageView.axaml.cs @@ -1,8 +1,8 @@ -using Avalonia.ReactiveUI; +using Avalonia.ReactiveUI; using Avalonia.Markup.Xaml; -using MyAvaloniaApp.ViewModels.Pages; +using AuroraDesk.ViewModels.Pages; -namespace MyAvaloniaApp.Views.Pages; +namespace AuroraDesk.Views.Pages; public partial class DashboardPageView : ReactiveUserControl { diff --git a/Views/Pages/DialogHostPageView.axaml b/Views/Pages/DialogHostPageView.axaml index 8203e87..e05dee1 100644 --- a/Views/Pages/DialogHostPageView.axaml +++ b/Views/Pages/DialogHostPageView.axaml @@ -1,13 +1,13 @@ - diff --git a/Views/Pages/DialogHostPageView.axaml.cs b/Views/Pages/DialogHostPageView.axaml.cs index 889d222..23c8ba6 100644 --- a/Views/Pages/DialogHostPageView.axaml.cs +++ b/Views/Pages/DialogHostPageView.axaml.cs @@ -1,8 +1,8 @@ -using Avalonia.ReactiveUI; +using Avalonia.ReactiveUI; using Avalonia.Markup.Xaml; -using MyAvaloniaApp.ViewModels.Pages; +using AuroraDesk.ViewModels.Pages; -namespace MyAvaloniaApp.Views.Pages; +namespace AuroraDesk.Views.Pages; public partial class DialogHostPageView : ReactiveUserControl { diff --git a/Views/Pages/EditorPageView.axaml b/Views/Pages/EditorPageView.axaml index 7bffc05..2ef683b 100644 --- a/Views/Pages/EditorPageView.axaml +++ b/Views/Pages/EditorPageView.axaml @@ -1,15 +1,15 @@ - diff --git a/Views/Pages/EditorPageView.axaml.cs b/Views/Pages/EditorPageView.axaml.cs index 3a06013..314f195 100644 --- a/Views/Pages/EditorPageView.axaml.cs +++ b/Views/Pages/EditorPageView.axaml.cs @@ -1,8 +1,8 @@ -using Avalonia.ReactiveUI; +using Avalonia.ReactiveUI; using Avalonia.Markup.Xaml; -using MyAvaloniaApp.ViewModels.Pages; +using AuroraDesk.ViewModels.Pages; -namespace MyAvaloniaApp.Views.Pages; +namespace AuroraDesk.Views.Pages; /// /// 代码编辑器页面的 View diff --git a/Views/Pages/HelpPageView.axaml b/Views/Pages/HelpPageView.axaml index 1e70c8b..4f4c60b 100644 --- a/Views/Pages/HelpPageView.axaml +++ b/Views/Pages/HelpPageView.axaml @@ -1,11 +1,11 @@ - diff --git a/Views/Pages/HelpPageView.axaml.cs b/Views/Pages/HelpPageView.axaml.cs index da885c1..2d7bf93 100644 --- a/Views/Pages/HelpPageView.axaml.cs +++ b/Views/Pages/HelpPageView.axaml.cs @@ -1,8 +1,8 @@ -using Avalonia.ReactiveUI; +using Avalonia.ReactiveUI; using Avalonia.Markup.Xaml; -using MyAvaloniaApp.ViewModels.Pages; +using AuroraDesk.ViewModels.Pages; -namespace MyAvaloniaApp.Views.Pages; +namespace AuroraDesk.Views.Pages; public partial class HelpPageView : ReactiveUserControl { diff --git a/Views/Pages/IconsPageView.axaml b/Views/Pages/IconsPageView.axaml index e160b72..4e29509 100644 --- a/Views/Pages/IconsPageView.axaml +++ b/Views/Pages/IconsPageView.axaml @@ -1,13 +1,13 @@ - diff --git a/Views/Pages/IconsPageView.axaml.cs b/Views/Pages/IconsPageView.axaml.cs index a844227..c2dcc8f 100644 --- a/Views/Pages/IconsPageView.axaml.cs +++ b/Views/Pages/IconsPageView.axaml.cs @@ -1,8 +1,8 @@ -using Avalonia.ReactiveUI; +using Avalonia.ReactiveUI; using Avalonia.Markup.Xaml; -using MyAvaloniaApp.ViewModels.Pages; +using AuroraDesk.ViewModels.Pages; -namespace MyAvaloniaApp.Views.Pages; +namespace AuroraDesk.Views.Pages; /// /// 图标导航页面的 View diff --git a/Views/Pages/ReportsPageView.axaml b/Views/Pages/ReportsPageView.axaml index 30b9e04..eaeb180 100644 --- a/Views/Pages/ReportsPageView.axaml +++ b/Views/Pages/ReportsPageView.axaml @@ -1,11 +1,11 @@ - diff --git a/Views/Pages/ReportsPageView.axaml.cs b/Views/Pages/ReportsPageView.axaml.cs index f074964..36af258 100644 --- a/Views/Pages/ReportsPageView.axaml.cs +++ b/Views/Pages/ReportsPageView.axaml.cs @@ -1,8 +1,8 @@ -using Avalonia.ReactiveUI; +using Avalonia.ReactiveUI; using Avalonia.Markup.Xaml; -using MyAvaloniaApp.ViewModels.Pages; +using AuroraDesk.ViewModels.Pages; -namespace MyAvaloniaApp.Views.Pages; +namespace AuroraDesk.Views.Pages; public partial class ReportsPageView : ReactiveUserControl { diff --git a/Views/Pages/SettingsPageView.axaml b/Views/Pages/SettingsPageView.axaml index 2464cda..c87e9b3 100644 --- a/Views/Pages/SettingsPageView.axaml +++ b/Views/Pages/SettingsPageView.axaml @@ -1,11 +1,11 @@ - diff --git a/Views/Pages/SettingsPageView.axaml.cs b/Views/Pages/SettingsPageView.axaml.cs index e9d014d..997e102 100644 --- a/Views/Pages/SettingsPageView.axaml.cs +++ b/Views/Pages/SettingsPageView.axaml.cs @@ -1,8 +1,8 @@ -using Avalonia.ReactiveUI; +using Avalonia.ReactiveUI; using Avalonia.Markup.Xaml; -using MyAvaloniaApp.ViewModels.Pages; +using AuroraDesk.ViewModels.Pages; -namespace MyAvaloniaApp.Views.Pages; +namespace AuroraDesk.Views.Pages; public partial class SettingsPageView : ReactiveUserControl { diff --git a/Views/Pages/UsersPageView.axaml b/Views/Pages/UsersPageView.axaml index c545913..18544ba 100644 --- a/Views/Pages/UsersPageView.axaml +++ b/Views/Pages/UsersPageView.axaml @@ -1,12 +1,12 @@ - diff --git a/Views/Pages/UsersPageView.axaml.cs b/Views/Pages/UsersPageView.axaml.cs index 4a669b6..45ac76b 100644 --- a/Views/Pages/UsersPageView.axaml.cs +++ b/Views/Pages/UsersPageView.axaml.cs @@ -1,8 +1,8 @@ -using Avalonia.ReactiveUI; +using Avalonia.ReactiveUI; using Avalonia.Markup.Xaml; -using MyAvaloniaApp.ViewModels.Pages; +using AuroraDesk.ViewModels.Pages; -namespace MyAvaloniaApp.Views.Pages; +namespace AuroraDesk.Views.Pages; public partial class UsersPageView : ReactiveUserControl { diff --git a/Views/ViewLocator.cs b/Views/ViewLocator.cs index a10fdcb..7d492dc 100644 --- a/Views/ViewLocator.cs +++ b/Views/ViewLocator.cs @@ -1,11 +1,11 @@ -using ReactiveUI; +using ReactiveUI; using Splat; using System; using System.Diagnostics; using System.Linq; using Microsoft.Extensions.DependencyInjection; -namespace MyAvaloniaApp.Views; +namespace AuroraDesk.Views; /// /// 视图定位器,用于将 ViewModel 映射到对应的 View diff --git a/bin/Debug/net8.0/Avalonia.Base.dll b/bin/Debug/net8.0/Avalonia.Base.dll deleted file mode 100644 index 7b0bb98..0000000 Binary files a/bin/Debug/net8.0/Avalonia.Base.dll and /dev/null differ diff --git a/bin/Debug/net8.0/Avalonia.Controls.ColorPicker.dll b/bin/Debug/net8.0/Avalonia.Controls.ColorPicker.dll deleted file mode 100644 index a7f599d..0000000 Binary files a/bin/Debug/net8.0/Avalonia.Controls.ColorPicker.dll and /dev/null differ diff --git a/bin/Debug/net8.0/Avalonia.Controls.dll b/bin/Debug/net8.0/Avalonia.Controls.dll deleted file mode 100644 index 31d9d2e..0000000 Binary files a/bin/Debug/net8.0/Avalonia.Controls.dll and /dev/null differ diff --git a/bin/Debug/net8.0/Avalonia.DesignerSupport.dll b/bin/Debug/net8.0/Avalonia.DesignerSupport.dll deleted file mode 100644 index 5b1035e..0000000 Binary files a/bin/Debug/net8.0/Avalonia.DesignerSupport.dll and /dev/null differ diff --git a/bin/Debug/net8.0/Avalonia.Desktop.dll b/bin/Debug/net8.0/Avalonia.Desktop.dll deleted file mode 100644 index 0450996..0000000 Binary files a/bin/Debug/net8.0/Avalonia.Desktop.dll and /dev/null differ diff --git a/bin/Debug/net8.0/Avalonia.Diagnostics.dll b/bin/Debug/net8.0/Avalonia.Diagnostics.dll deleted file mode 100644 index 3f2395d..0000000 Binary files a/bin/Debug/net8.0/Avalonia.Diagnostics.dll and /dev/null differ diff --git a/bin/Debug/net8.0/Avalonia.Dialogs.dll b/bin/Debug/net8.0/Avalonia.Dialogs.dll deleted file mode 100644 index e7f0feb..0000000 Binary files a/bin/Debug/net8.0/Avalonia.Dialogs.dll and /dev/null differ diff --git a/bin/Debug/net8.0/Avalonia.Fonts.Inter.dll b/bin/Debug/net8.0/Avalonia.Fonts.Inter.dll deleted file mode 100644 index 7e017b2..0000000 Binary files a/bin/Debug/net8.0/Avalonia.Fonts.Inter.dll and /dev/null differ diff --git a/bin/Debug/net8.0/Avalonia.FreeDesktop.dll b/bin/Debug/net8.0/Avalonia.FreeDesktop.dll deleted file mode 100644 index 2a31039..0000000 Binary files a/bin/Debug/net8.0/Avalonia.FreeDesktop.dll and /dev/null differ diff --git a/bin/Debug/net8.0/Avalonia.Markup.Xaml.dll b/bin/Debug/net8.0/Avalonia.Markup.Xaml.dll deleted file mode 100644 index f42aabc..0000000 Binary files a/bin/Debug/net8.0/Avalonia.Markup.Xaml.dll and /dev/null differ diff --git a/bin/Debug/net8.0/Avalonia.Markup.dll b/bin/Debug/net8.0/Avalonia.Markup.dll deleted file mode 100644 index 35abbea..0000000 Binary files a/bin/Debug/net8.0/Avalonia.Markup.dll and /dev/null differ diff --git a/bin/Debug/net8.0/Avalonia.Metal.dll b/bin/Debug/net8.0/Avalonia.Metal.dll deleted file mode 100644 index 6344e67..0000000 Binary files a/bin/Debug/net8.0/Avalonia.Metal.dll and /dev/null differ diff --git a/bin/Debug/net8.0/Avalonia.MicroCom.dll b/bin/Debug/net8.0/Avalonia.MicroCom.dll deleted file mode 100644 index 6651d2b..0000000 Binary files a/bin/Debug/net8.0/Avalonia.MicroCom.dll and /dev/null differ diff --git a/bin/Debug/net8.0/Avalonia.Native.dll b/bin/Debug/net8.0/Avalonia.Native.dll deleted file mode 100644 index 7b48670..0000000 Binary files a/bin/Debug/net8.0/Avalonia.Native.dll and /dev/null differ diff --git a/bin/Debug/net8.0/Avalonia.OpenGL.dll b/bin/Debug/net8.0/Avalonia.OpenGL.dll deleted file mode 100644 index 499e2c8..0000000 Binary files a/bin/Debug/net8.0/Avalonia.OpenGL.dll and /dev/null differ diff --git a/bin/Debug/net8.0/Avalonia.ReactiveUI.dll b/bin/Debug/net8.0/Avalonia.ReactiveUI.dll deleted file mode 100644 index ec1a87f..0000000 Binary files a/bin/Debug/net8.0/Avalonia.ReactiveUI.dll and /dev/null differ diff --git a/bin/Debug/net8.0/Avalonia.Remote.Protocol.dll b/bin/Debug/net8.0/Avalonia.Remote.Protocol.dll deleted file mode 100644 index aee582b..0000000 Binary files a/bin/Debug/net8.0/Avalonia.Remote.Protocol.dll and /dev/null differ diff --git a/bin/Debug/net8.0/Avalonia.Skia.dll b/bin/Debug/net8.0/Avalonia.Skia.dll deleted file mode 100644 index 47b428f..0000000 Binary files a/bin/Debug/net8.0/Avalonia.Skia.dll and /dev/null differ diff --git a/bin/Debug/net8.0/Avalonia.Themes.Fluent.dll b/bin/Debug/net8.0/Avalonia.Themes.Fluent.dll deleted file mode 100644 index 10f15cd..0000000 Binary files a/bin/Debug/net8.0/Avalonia.Themes.Fluent.dll and /dev/null differ diff --git a/bin/Debug/net8.0/Avalonia.Themes.Simple.dll b/bin/Debug/net8.0/Avalonia.Themes.Simple.dll deleted file mode 100644 index 785d04a..0000000 Binary files a/bin/Debug/net8.0/Avalonia.Themes.Simple.dll and /dev/null differ diff --git a/bin/Debug/net8.0/Avalonia.Vulkan.dll b/bin/Debug/net8.0/Avalonia.Vulkan.dll deleted file mode 100644 index 89fbc75..0000000 Binary files a/bin/Debug/net8.0/Avalonia.Vulkan.dll and /dev/null differ diff --git a/bin/Debug/net8.0/Avalonia.Win32.Automation.dll b/bin/Debug/net8.0/Avalonia.Win32.Automation.dll deleted file mode 100644 index e5f8222..0000000 Binary files a/bin/Debug/net8.0/Avalonia.Win32.Automation.dll and /dev/null differ diff --git a/bin/Debug/net8.0/Avalonia.Win32.dll b/bin/Debug/net8.0/Avalonia.Win32.dll deleted file mode 100644 index 8aba526..0000000 Binary files a/bin/Debug/net8.0/Avalonia.Win32.dll and /dev/null differ diff --git a/bin/Debug/net8.0/Avalonia.X11.dll b/bin/Debug/net8.0/Avalonia.X11.dll deleted file mode 100644 index 8c8dbf1..0000000 Binary files a/bin/Debug/net8.0/Avalonia.X11.dll and /dev/null differ diff --git a/bin/Debug/net8.0/Avalonia.dll b/bin/Debug/net8.0/Avalonia.dll deleted file mode 100644 index 3a0ff77..0000000 Binary files a/bin/Debug/net8.0/Avalonia.dll and /dev/null differ diff --git a/bin/Debug/net8.0/DynamicData.dll b/bin/Debug/net8.0/DynamicData.dll deleted file mode 100644 index e1a5dfe..0000000 Binary files a/bin/Debug/net8.0/DynamicData.dll and /dev/null differ diff --git a/bin/Debug/net8.0/HarfBuzzSharp.dll b/bin/Debug/net8.0/HarfBuzzSharp.dll deleted file mode 100644 index ee75381..0000000 Binary files a/bin/Debug/net8.0/HarfBuzzSharp.dll and /dev/null differ diff --git a/bin/Debug/net8.0/MicroCom.Runtime.dll b/bin/Debug/net8.0/MicroCom.Runtime.dll deleted file mode 100644 index f6cf008..0000000 Binary files a/bin/Debug/net8.0/MicroCom.Runtime.dll and /dev/null differ diff --git a/bin/Debug/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll b/bin/Debug/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll deleted file mode 100644 index 5de000c..0000000 Binary files a/bin/Debug/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll and /dev/null differ diff --git a/bin/Debug/net8.0/Microsoft.Extensions.Configuration.Binder.dll b/bin/Debug/net8.0/Microsoft.Extensions.Configuration.Binder.dll deleted file mode 100644 index 3853207..0000000 Binary files a/bin/Debug/net8.0/Microsoft.Extensions.Configuration.Binder.dll and /dev/null differ diff --git a/bin/Debug/net8.0/Microsoft.Extensions.Configuration.CommandLine.dll b/bin/Debug/net8.0/Microsoft.Extensions.Configuration.CommandLine.dll deleted file mode 100644 index 78764ad..0000000 Binary files a/bin/Debug/net8.0/Microsoft.Extensions.Configuration.CommandLine.dll and /dev/null differ diff --git a/bin/Debug/net8.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll b/bin/Debug/net8.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll deleted file mode 100644 index ec8833e..0000000 Binary files a/bin/Debug/net8.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll and /dev/null differ diff --git a/bin/Debug/net8.0/Microsoft.Extensions.Configuration.FileExtensions.dll b/bin/Debug/net8.0/Microsoft.Extensions.Configuration.FileExtensions.dll deleted file mode 100644 index a1e0a4d..0000000 Binary files a/bin/Debug/net8.0/Microsoft.Extensions.Configuration.FileExtensions.dll and /dev/null differ diff --git a/bin/Debug/net8.0/Microsoft.Extensions.Configuration.Json.dll b/bin/Debug/net8.0/Microsoft.Extensions.Configuration.Json.dll deleted file mode 100644 index adf0f8b..0000000 Binary files a/bin/Debug/net8.0/Microsoft.Extensions.Configuration.Json.dll and /dev/null differ diff --git a/bin/Debug/net8.0/Microsoft.Extensions.Configuration.UserSecrets.dll b/bin/Debug/net8.0/Microsoft.Extensions.Configuration.UserSecrets.dll deleted file mode 100644 index 12edc4f..0000000 Binary files a/bin/Debug/net8.0/Microsoft.Extensions.Configuration.UserSecrets.dll and /dev/null differ diff --git a/bin/Debug/net8.0/Microsoft.Extensions.Configuration.dll b/bin/Debug/net8.0/Microsoft.Extensions.Configuration.dll deleted file mode 100644 index dea10fa..0000000 Binary files a/bin/Debug/net8.0/Microsoft.Extensions.Configuration.dll and /dev/null differ diff --git a/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll deleted file mode 100644 index 405651a..0000000 Binary files a/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll and /dev/null differ diff --git a/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.dll b/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.dll deleted file mode 100644 index e988469..0000000 Binary files a/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.dll and /dev/null differ diff --git a/bin/Debug/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll b/bin/Debug/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll deleted file mode 100644 index 9aca1e9..0000000 Binary files a/bin/Debug/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll and /dev/null differ diff --git a/bin/Debug/net8.0/Microsoft.Extensions.Diagnostics.dll b/bin/Debug/net8.0/Microsoft.Extensions.Diagnostics.dll deleted file mode 100644 index b2e88ec..0000000 Binary files a/bin/Debug/net8.0/Microsoft.Extensions.Diagnostics.dll and /dev/null differ diff --git a/bin/Debug/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll b/bin/Debug/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll deleted file mode 100644 index 8cd930a..0000000 Binary files a/bin/Debug/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll and /dev/null differ diff --git a/bin/Debug/net8.0/Microsoft.Extensions.FileProviders.Physical.dll b/bin/Debug/net8.0/Microsoft.Extensions.FileProviders.Physical.dll deleted file mode 100644 index 408a0c8..0000000 Binary files a/bin/Debug/net8.0/Microsoft.Extensions.FileProviders.Physical.dll and /dev/null differ diff --git a/bin/Debug/net8.0/Microsoft.Extensions.FileSystemGlobbing.dll b/bin/Debug/net8.0/Microsoft.Extensions.FileSystemGlobbing.dll deleted file mode 100644 index 287fbf3..0000000 Binary files a/bin/Debug/net8.0/Microsoft.Extensions.FileSystemGlobbing.dll and /dev/null differ diff --git a/bin/Debug/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll b/bin/Debug/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll deleted file mode 100644 index ed0bab4..0000000 Binary files a/bin/Debug/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll and /dev/null differ diff --git a/bin/Debug/net8.0/Microsoft.Extensions.Hosting.dll b/bin/Debug/net8.0/Microsoft.Extensions.Hosting.dll deleted file mode 100644 index 8e0bfd3..0000000 Binary files a/bin/Debug/net8.0/Microsoft.Extensions.Hosting.dll and /dev/null differ diff --git a/bin/Debug/net8.0/Microsoft.Extensions.Logging.Abstractions.dll b/bin/Debug/net8.0/Microsoft.Extensions.Logging.Abstractions.dll deleted file mode 100644 index 8d27412..0000000 Binary files a/bin/Debug/net8.0/Microsoft.Extensions.Logging.Abstractions.dll and /dev/null differ diff --git a/bin/Debug/net8.0/Microsoft.Extensions.Logging.Configuration.dll b/bin/Debug/net8.0/Microsoft.Extensions.Logging.Configuration.dll deleted file mode 100644 index 69a9032..0000000 Binary files a/bin/Debug/net8.0/Microsoft.Extensions.Logging.Configuration.dll and /dev/null differ diff --git a/bin/Debug/net8.0/Microsoft.Extensions.Logging.Console.dll b/bin/Debug/net8.0/Microsoft.Extensions.Logging.Console.dll deleted file mode 100644 index 107af95..0000000 Binary files a/bin/Debug/net8.0/Microsoft.Extensions.Logging.Console.dll and /dev/null differ diff --git a/bin/Debug/net8.0/Microsoft.Extensions.Logging.Debug.dll b/bin/Debug/net8.0/Microsoft.Extensions.Logging.Debug.dll deleted file mode 100644 index a9aa10e..0000000 Binary files a/bin/Debug/net8.0/Microsoft.Extensions.Logging.Debug.dll and /dev/null differ diff --git a/bin/Debug/net8.0/Microsoft.Extensions.Logging.EventLog.dll b/bin/Debug/net8.0/Microsoft.Extensions.Logging.EventLog.dll deleted file mode 100644 index 95c3d66..0000000 Binary files a/bin/Debug/net8.0/Microsoft.Extensions.Logging.EventLog.dll and /dev/null differ diff --git a/bin/Debug/net8.0/Microsoft.Extensions.Logging.EventSource.dll b/bin/Debug/net8.0/Microsoft.Extensions.Logging.EventSource.dll deleted file mode 100644 index 55b4025..0000000 Binary files a/bin/Debug/net8.0/Microsoft.Extensions.Logging.EventSource.dll and /dev/null differ diff --git a/bin/Debug/net8.0/Microsoft.Extensions.Logging.dll b/bin/Debug/net8.0/Microsoft.Extensions.Logging.dll deleted file mode 100644 index 754fabe..0000000 Binary files a/bin/Debug/net8.0/Microsoft.Extensions.Logging.dll and /dev/null differ diff --git a/bin/Debug/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll b/bin/Debug/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll deleted file mode 100644 index 7fa08d7..0000000 Binary files a/bin/Debug/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll and /dev/null differ diff --git a/bin/Debug/net8.0/Microsoft.Extensions.Options.dll b/bin/Debug/net8.0/Microsoft.Extensions.Options.dll deleted file mode 100644 index d5c55a2..0000000 Binary files a/bin/Debug/net8.0/Microsoft.Extensions.Options.dll and /dev/null differ diff --git a/bin/Debug/net8.0/Microsoft.Extensions.Primitives.dll b/bin/Debug/net8.0/Microsoft.Extensions.Primitives.dll deleted file mode 100644 index 8cb2645..0000000 Binary files a/bin/Debug/net8.0/Microsoft.Extensions.Primitives.dll and /dev/null differ diff --git a/bin/Debug/net8.0/MyAvaloniaApp.deps.json b/bin/Debug/net8.0/MyAvaloniaApp.deps.json deleted file mode 100644 index f87842a..0000000 --- a/bin/Debug/net8.0/MyAvaloniaApp.deps.json +++ /dev/null @@ -1,1396 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v8.0", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v8.0": { - "MyAvaloniaApp/1.0.0": { - "dependencies": { - "Avalonia": "11.3.7", - "Avalonia.Desktop": "11.3.7", - "Avalonia.Diagnostics": "11.3.6", - "Avalonia.Fonts.Inter": "11.3.6", - "Avalonia.ReactiveUI": "11.3.7", - "Avalonia.Themes.Fluent": "11.3.6", - "Microsoft.Extensions.Configuration": "9.0.0", - "Microsoft.Extensions.Configuration.CommandLine": "9.0.0", - "Microsoft.Extensions.Configuration.EnvironmentVariables": "9.0.0", - "Microsoft.Extensions.Configuration.Json": "9.0.0", - "Microsoft.Extensions.DependencyInjection": "9.0.0", - "Microsoft.Extensions.Hosting": "9.0.0", - "Microsoft.Extensions.Logging": "9.0.0", - "Microsoft.Extensions.Logging.Console": "9.0.0", - "Microsoft.Extensions.Logging.Debug": "9.0.0" - }, - "runtime": { - "MyAvaloniaApp.dll": {} - } - }, - "Avalonia/11.3.7": { - "dependencies": { - "Avalonia.BuildServices": "11.3.1", - "Avalonia.Remote.Protocol": "11.3.7", - "MicroCom.Runtime": "0.11.0" - }, - "runtime": { - "lib/net8.0/Avalonia.Base.dll": { - "assemblyVersion": "11.3.7.0", - "fileVersion": "11.3.7.0" - }, - "lib/net8.0/Avalonia.Controls.dll": { - "assemblyVersion": "11.3.7.0", - "fileVersion": "11.3.7.0" - }, - "lib/net8.0/Avalonia.DesignerSupport.dll": { - "assemblyVersion": "0.7.0.0", - "fileVersion": "0.7.0.0" - }, - "lib/net8.0/Avalonia.Dialogs.dll": { - "assemblyVersion": "11.3.7.0", - "fileVersion": "11.3.7.0" - }, - "lib/net8.0/Avalonia.Markup.Xaml.dll": { - "assemblyVersion": "11.3.7.0", - "fileVersion": "11.3.7.0" - }, - "lib/net8.0/Avalonia.Markup.dll": { - "assemblyVersion": "11.3.7.0", - "fileVersion": "11.3.7.0" - }, - "lib/net8.0/Avalonia.Metal.dll": { - "assemblyVersion": "11.3.7.0", - "fileVersion": "11.3.7.0" - }, - "lib/net8.0/Avalonia.MicroCom.dll": { - "assemblyVersion": "11.3.7.0", - "fileVersion": "11.3.7.0" - }, - "lib/net8.0/Avalonia.OpenGL.dll": { - "assemblyVersion": "11.3.7.0", - "fileVersion": "11.3.7.0" - }, - "lib/net8.0/Avalonia.Vulkan.dll": { - "assemblyVersion": "11.3.7.0", - "fileVersion": "11.3.7.0" - }, - "lib/net8.0/Avalonia.dll": { - "assemblyVersion": "11.3.7.0", - "fileVersion": "11.3.7.0" - } - } - }, - "Avalonia.Angle.Windows.Natives/2.1.25547.20250602": { - "runtimeTargets": { - "runtimes/win-arm64/native/av_libglesv2.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "2.1.25606.0" - }, - "runtimes/win-x64/native/av_libglesv2.dll": { - "rid": "win-x64", - "assetType": "native", - "fileVersion": "2.1.25606.0" - }, - "runtimes/win-x86/native/av_libglesv2.dll": { - "rid": "win-x86", - "assetType": "native", - "fileVersion": "2.1.25606.0" - } - } - }, - "Avalonia.BuildServices/11.3.1": {}, - "Avalonia.Controls.ColorPicker/11.3.6": { - "dependencies": { - "Avalonia": "11.3.7", - "Avalonia.Remote.Protocol": "11.3.7" - }, - "runtime": { - "lib/net8.0/Avalonia.Controls.ColorPicker.dll": { - "assemblyVersion": "11.3.6.0", - "fileVersion": "11.3.6.0" - } - } - }, - "Avalonia.Desktop/11.3.7": { - "dependencies": { - "Avalonia": "11.3.7", - "Avalonia.Native": "11.3.7", - "Avalonia.Skia": "11.3.7", - "Avalonia.Win32": "11.3.7", - "Avalonia.X11": "11.3.7" - }, - "runtime": { - "lib/net8.0/Avalonia.Desktop.dll": { - "assemblyVersion": "11.3.7.0", - "fileVersion": "11.3.7.0" - } - } - }, - "Avalonia.Diagnostics/11.3.6": { - "dependencies": { - "Avalonia": "11.3.7", - "Avalonia.Controls.ColorPicker": "11.3.6", - "Avalonia.Themes.Simple": "11.3.6" - }, - "runtime": { - "lib/net8.0/Avalonia.Diagnostics.dll": { - "assemblyVersion": "11.3.6.0", - "fileVersion": "11.3.6.0" - } - } - }, - "Avalonia.Fonts.Inter/11.3.6": { - "dependencies": { - "Avalonia": "11.3.7" - }, - "runtime": { - "lib/net8.0/Avalonia.Fonts.Inter.dll": { - "assemblyVersion": "11.3.6.0", - "fileVersion": "11.3.6.0" - } - } - }, - "Avalonia.FreeDesktop/11.3.7": { - "dependencies": { - "Avalonia": "11.3.7", - "Tmds.DBus.Protocol": "0.21.2" - }, - "runtime": { - "lib/net8.0/Avalonia.FreeDesktop.dll": { - "assemblyVersion": "11.3.7.0", - "fileVersion": "11.3.7.0" - } - } - }, - "Avalonia.Native/11.3.7": { - "dependencies": { - "Avalonia": "11.3.7" - }, - "runtime": { - "lib/net8.0/Avalonia.Native.dll": { - "assemblyVersion": "11.3.7.0", - "fileVersion": "11.3.7.0" - } - }, - "runtimeTargets": { - "runtimes/osx/native/libAvaloniaNative.dylib": { - "rid": "osx", - "assetType": "native", - "fileVersion": "0.0.0.0" - } - } - }, - "Avalonia.ReactiveUI/11.3.7": { - "dependencies": { - "Avalonia": "11.3.7", - "ReactiveUI": "20.1.1", - "System.Reactive": "6.0.1" - }, - "runtime": { - "lib/net8.0/Avalonia.ReactiveUI.dll": { - "assemblyVersion": "11.3.7.0", - "fileVersion": "11.3.7.0" - } - } - }, - "Avalonia.Remote.Protocol/11.3.7": { - "runtime": { - "lib/net8.0/Avalonia.Remote.Protocol.dll": { - "assemblyVersion": "11.3.7.0", - "fileVersion": "11.3.7.0" - } - } - }, - "Avalonia.Skia/11.3.7": { - "dependencies": { - "Avalonia": "11.3.7", - "HarfBuzzSharp": "8.3.1.1", - "HarfBuzzSharp.NativeAssets.Linux": "8.3.1.1", - "HarfBuzzSharp.NativeAssets.WebAssembly": "8.3.1.1", - "SkiaSharp": "2.88.9", - "SkiaSharp.NativeAssets.Linux": "2.88.9", - "SkiaSharp.NativeAssets.WebAssembly": "2.88.9" - }, - "runtime": { - "lib/net8.0/Avalonia.Skia.dll": { - "assemblyVersion": "11.3.7.0", - "fileVersion": "11.3.7.0" - } - } - }, - "Avalonia.Themes.Fluent/11.3.6": { - "dependencies": { - "Avalonia": "11.3.7" - }, - "runtime": { - "lib/net8.0/Avalonia.Themes.Fluent.dll": { - "assemblyVersion": "11.3.6.0", - "fileVersion": "11.3.6.0" - } - } - }, - "Avalonia.Themes.Simple/11.3.6": { - "dependencies": { - "Avalonia": "11.3.7" - }, - "runtime": { - "lib/net8.0/Avalonia.Themes.Simple.dll": { - "assemblyVersion": "11.3.6.0", - "fileVersion": "11.3.6.0" - } - } - }, - "Avalonia.Win32/11.3.7": { - "dependencies": { - "Avalonia": "11.3.7", - "Avalonia.Angle.Windows.Natives": "2.1.25547.20250602" - }, - "runtime": { - "lib/net8.0/Avalonia.Win32.Automation.dll": { - "assemblyVersion": "11.3.7.0", - "fileVersion": "11.3.7.0" - }, - "lib/net8.0/Avalonia.Win32.dll": { - "assemblyVersion": "11.3.7.0", - "fileVersion": "11.3.7.0" - } - } - }, - "Avalonia.X11/11.3.7": { - "dependencies": { - "Avalonia": "11.3.7", - "Avalonia.FreeDesktop": "11.3.7", - "Avalonia.Skia": "11.3.7" - }, - "runtime": { - "lib/net8.0/Avalonia.X11.dll": { - "assemblyVersion": "11.3.7.0", - "fileVersion": "11.3.7.0" - } - } - }, - "DynamicData/8.4.1": { - "dependencies": { - "System.Reactive": "6.0.1" - }, - "runtime": { - "lib/net8.0/DynamicData.dll": { - "assemblyVersion": "8.4.0.0", - "fileVersion": "8.4.1.20756" - } - } - }, - "HarfBuzzSharp/8.3.1.1": { - "dependencies": { - "HarfBuzzSharp.NativeAssets.Win32": "8.3.1.1", - "HarfBuzzSharp.NativeAssets.macOS": "8.3.1.1" - }, - "runtime": { - "lib/net8.0/HarfBuzzSharp.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "8.3.1.1" - } - } - }, - "HarfBuzzSharp.NativeAssets.Linux/8.3.1.1": { - "runtimeTargets": { - "runtimes/linux-arm/native/libHarfBuzzSharp.so": { - "rid": "linux-arm", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-arm64/native/libHarfBuzzSharp.so": { - "rid": "linux-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-loongarch64/native/libHarfBuzzSharp.so": { - "rid": "linux-loongarch64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-musl-arm/native/libHarfBuzzSharp.so": { - "rid": "linux-musl-arm", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-musl-arm64/native/libHarfBuzzSharp.so": { - "rid": "linux-musl-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-musl-loongarch64/native/libHarfBuzzSharp.so": { - "rid": "linux-musl-loongarch64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-musl-riscv64/native/libHarfBuzzSharp.so": { - "rid": "linux-musl-riscv64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-musl-x64/native/libHarfBuzzSharp.so": { - "rid": "linux-musl-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-riscv64/native/libHarfBuzzSharp.so": { - "rid": "linux-riscv64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-x64/native/libHarfBuzzSharp.so": { - "rid": "linux-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-x86/native/libHarfBuzzSharp.so": { - "rid": "linux-x86", - "assetType": "native", - "fileVersion": "0.0.0.0" - } - } - }, - "HarfBuzzSharp.NativeAssets.macOS/8.3.1.1": { - "runtimeTargets": { - "runtimes/osx/native/libHarfBuzzSharp.dylib": { - "rid": "osx", - "assetType": "native", - "fileVersion": "0.0.0.0" - } - } - }, - "HarfBuzzSharp.NativeAssets.WebAssembly/8.3.1.1": {}, - "HarfBuzzSharp.NativeAssets.Win32/8.3.1.1": { - "runtimeTargets": { - "runtimes/win-arm64/native/libHarfBuzzSharp.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/win-x64/native/libHarfBuzzSharp.dll": { - "rid": "win-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/win-x86/native/libHarfBuzzSharp.dll": { - "rid": "win-x86", - "assetType": "native", - "fileVersion": "0.0.0.0" - } - } - }, - "MicroCom.Runtime/0.11.0": { - "runtime": { - "lib/net5.0/MicroCom.Runtime.dll": { - "assemblyVersion": "0.11.0.0", - "fileVersion": "0.11.0.0" - } - } - }, - "Microsoft.Extensions.Configuration/9.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", - "Microsoft.Extensions.Primitives": "9.0.0" - }, - "runtime": { - "lib/net8.0/Microsoft.Extensions.Configuration.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Configuration.Abstractions/9.0.0": { - "dependencies": { - "Microsoft.Extensions.Primitives": "9.0.0" - }, - "runtime": { - "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Configuration.Binder/9.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "9.0.0" - }, - "runtime": { - "lib/net8.0/Microsoft.Extensions.Configuration.Binder.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Configuration.CommandLine/9.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration": "9.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "9.0.0" - }, - "runtime": { - "lib/net8.0/Microsoft.Extensions.Configuration.CommandLine.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Configuration.EnvironmentVariables/9.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration": "9.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "9.0.0" - }, - "runtime": { - "lib/net8.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Configuration.FileExtensions/9.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration": "9.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", - "Microsoft.Extensions.FileProviders.Physical": "9.0.0", - "Microsoft.Extensions.Primitives": "9.0.0" - }, - "runtime": { - "lib/net8.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Configuration.Json/9.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration": "9.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", - "Microsoft.Extensions.Configuration.FileExtensions": "9.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", - "System.Text.Json": "9.0.0" - }, - "runtime": { - "lib/net8.0/Microsoft.Extensions.Configuration.Json.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Configuration.UserSecrets/9.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", - "Microsoft.Extensions.Configuration.Json": "9.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", - "Microsoft.Extensions.FileProviders.Physical": "9.0.0" - }, - "runtime": { - "lib/net8.0/Microsoft.Extensions.Configuration.UserSecrets.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.DependencyInjection/9.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0" - }, - "runtime": { - "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": { - "runtime": { - "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Diagnostics/9.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration": "9.0.0", - "Microsoft.Extensions.Diagnostics.Abstractions": "9.0.0", - "Microsoft.Extensions.Options.ConfigurationExtensions": "9.0.0" - }, - "runtime": { - "lib/net8.0/Microsoft.Extensions.Diagnostics.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Diagnostics.Abstractions/9.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", - "Microsoft.Extensions.Options": "9.0.0", - "System.Diagnostics.DiagnosticSource": "9.0.0" - }, - "runtime": { - "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.FileProviders.Abstractions/9.0.0": { - "dependencies": { - "Microsoft.Extensions.Primitives": "9.0.0" - }, - "runtime": { - "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.FileProviders.Physical/9.0.0": { - "dependencies": { - "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", - "Microsoft.Extensions.FileSystemGlobbing": "9.0.0", - "Microsoft.Extensions.Primitives": "9.0.0" - }, - "runtime": { - "lib/net8.0/Microsoft.Extensions.FileProviders.Physical.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.FileSystemGlobbing/9.0.0": { - "runtime": { - "lib/net8.0/Microsoft.Extensions.FileSystemGlobbing.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Hosting/9.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration": "9.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", - "Microsoft.Extensions.Configuration.Binder": "9.0.0", - "Microsoft.Extensions.Configuration.CommandLine": "9.0.0", - "Microsoft.Extensions.Configuration.EnvironmentVariables": "9.0.0", - "Microsoft.Extensions.Configuration.FileExtensions": "9.0.0", - "Microsoft.Extensions.Configuration.Json": "9.0.0", - "Microsoft.Extensions.Configuration.UserSecrets": "9.0.0", - "Microsoft.Extensions.DependencyInjection": "9.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", - "Microsoft.Extensions.Diagnostics": "9.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", - "Microsoft.Extensions.FileProviders.Physical": "9.0.0", - "Microsoft.Extensions.Hosting.Abstractions": "9.0.0", - "Microsoft.Extensions.Logging": "9.0.0", - "Microsoft.Extensions.Logging.Abstractions": "9.0.0", - "Microsoft.Extensions.Logging.Configuration": "9.0.0", - "Microsoft.Extensions.Logging.Console": "9.0.0", - "Microsoft.Extensions.Logging.Debug": "9.0.0", - "Microsoft.Extensions.Logging.EventLog": "9.0.0", - "Microsoft.Extensions.Logging.EventSource": "9.0.0", - "Microsoft.Extensions.Options": "9.0.0" - }, - "runtime": { - "lib/net8.0/Microsoft.Extensions.Hosting.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Hosting.Abstractions/9.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", - "Microsoft.Extensions.Diagnostics.Abstractions": "9.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", - "Microsoft.Extensions.Logging.Abstractions": "9.0.0" - }, - "runtime": { - "lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Logging/9.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "9.0.0", - "Microsoft.Extensions.Logging.Abstractions": "9.0.0", - "Microsoft.Extensions.Options": "9.0.0" - }, - "runtime": { - "lib/net8.0/Microsoft.Extensions.Logging.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Logging.Abstractions/9.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", - "System.Diagnostics.DiagnosticSource": "9.0.0" - }, - "runtime": { - "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Logging.Configuration/9.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration": "9.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", - "Microsoft.Extensions.Configuration.Binder": "9.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", - "Microsoft.Extensions.Logging": "9.0.0", - "Microsoft.Extensions.Logging.Abstractions": "9.0.0", - "Microsoft.Extensions.Options": "9.0.0", - "Microsoft.Extensions.Options.ConfigurationExtensions": "9.0.0" - }, - "runtime": { - "lib/net8.0/Microsoft.Extensions.Logging.Configuration.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Logging.Console/9.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", - "Microsoft.Extensions.Logging": "9.0.0", - "Microsoft.Extensions.Logging.Abstractions": "9.0.0", - "Microsoft.Extensions.Logging.Configuration": "9.0.0", - "Microsoft.Extensions.Options": "9.0.0", - "System.Text.Json": "9.0.0" - }, - "runtime": { - "lib/net8.0/Microsoft.Extensions.Logging.Console.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Logging.Debug/9.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", - "Microsoft.Extensions.Logging": "9.0.0", - "Microsoft.Extensions.Logging.Abstractions": "9.0.0" - }, - "runtime": { - "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Logging.EventLog/9.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", - "Microsoft.Extensions.Logging": "9.0.0", - "Microsoft.Extensions.Logging.Abstractions": "9.0.0", - "Microsoft.Extensions.Options": "9.0.0", - "System.Diagnostics.EventLog": "9.0.0" - }, - "runtime": { - "lib/net8.0/Microsoft.Extensions.Logging.EventLog.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Logging.EventSource/9.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", - "Microsoft.Extensions.Logging": "9.0.0", - "Microsoft.Extensions.Logging.Abstractions": "9.0.0", - "Microsoft.Extensions.Options": "9.0.0", - "Microsoft.Extensions.Primitives": "9.0.0", - "System.Text.Json": "9.0.0" - }, - "runtime": { - "lib/net8.0/Microsoft.Extensions.Logging.EventSource.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Options/9.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", - "Microsoft.Extensions.Primitives": "9.0.0" - }, - "runtime": { - "lib/net8.0/Microsoft.Extensions.Options.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Options.ConfigurationExtensions/9.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", - "Microsoft.Extensions.Configuration.Binder": "9.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", - "Microsoft.Extensions.Options": "9.0.0", - "Microsoft.Extensions.Primitives": "9.0.0" - }, - "runtime": { - "lib/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Primitives/9.0.0": { - "runtime": { - "lib/net8.0/Microsoft.Extensions.Primitives.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "ReactiveUI/20.1.1": { - "dependencies": { - "DynamicData": "8.4.1", - "Splat": "15.1.1", - "System.ComponentModel.Annotations": "5.0.0" - }, - "runtime": { - "lib/net8.0/ReactiveUI.dll": { - "assemblyVersion": "20.1.0.0", - "fileVersion": "20.1.1.46356" - } - } - }, - "SkiaSharp/2.88.9": { - "dependencies": { - "SkiaSharp.NativeAssets.Win32": "2.88.9", - "SkiaSharp.NativeAssets.macOS": "2.88.9" - }, - "runtime": { - "lib/net6.0/SkiaSharp.dll": { - "assemblyVersion": "2.88.0.0", - "fileVersion": "2.88.9.0" - } - } - }, - "SkiaSharp.NativeAssets.Linux/2.88.9": { - "dependencies": { - "SkiaSharp": "2.88.9" - }, - "runtimeTargets": { - "runtimes/linux-arm/native/libSkiaSharp.so": { - "rid": "linux-arm", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-arm64/native/libSkiaSharp.so": { - "rid": "linux-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-musl-x64/native/libSkiaSharp.so": { - "rid": "linux-musl-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-x64/native/libSkiaSharp.so": { - "rid": "linux-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - } - } - }, - "SkiaSharp.NativeAssets.macOS/2.88.9": { - "runtimeTargets": { - "runtimes/osx/native/libSkiaSharp.dylib": { - "rid": "osx", - "assetType": "native", - "fileVersion": "0.0.0.0" - } - } - }, - "SkiaSharp.NativeAssets.WebAssembly/2.88.9": {}, - "SkiaSharp.NativeAssets.Win32/2.88.9": { - "runtimeTargets": { - "runtimes/win-arm64/native/libSkiaSharp.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/win-x64/native/libSkiaSharp.dll": { - "rid": "win-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/win-x86/native/libSkiaSharp.dll": { - "rid": "win-x86", - "assetType": "native", - "fileVersion": "0.0.0.0" - } - } - }, - "Splat/15.1.1": { - "runtime": { - "lib/net8.0/Splat.dll": { - "assemblyVersion": "15.1.0.0", - "fileVersion": "15.1.1.17670" - } - } - }, - "System.ComponentModel.Annotations/5.0.0": {}, - "System.Diagnostics.DiagnosticSource/9.0.0": { - "runtime": { - "lib/net8.0/System.Diagnostics.DiagnosticSource.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "System.Diagnostics.EventLog/9.0.0": { - "runtime": { - "lib/net8.0/System.Diagnostics.EventLog.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "9.0.0.0", - "fileVersion": "0.0.0.0" - }, - "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "System.IO.Pipelines/9.0.0": { - "runtime": { - "lib/net8.0/System.IO.Pipelines.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "System.Reactive/6.0.1": { - "runtime": { - "lib/net6.0/System.Reactive.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1.7420" - } - } - }, - "System.Text.Encodings.Web/9.0.0": { - "runtime": { - "lib/net8.0/System.Text.Encodings.Web.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - }, - "runtimeTargets": { - "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll": { - "rid": "browser", - "assetType": "runtime", - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "System.Text.Json/9.0.0": { - "dependencies": { - "System.IO.Pipelines": "9.0.0", - "System.Text.Encodings.Web": "9.0.0" - }, - "runtime": { - "lib/net8.0/System.Text.Json.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Tmds.DBus.Protocol/0.21.2": { - "dependencies": { - "System.IO.Pipelines": "9.0.0" - }, - "runtime": { - "lib/net8.0/Tmds.DBus.Protocol.dll": { - "assemblyVersion": "0.21.2.0", - "fileVersion": "0.21.2.0" - } - } - } - } - }, - "libraries": { - "MyAvaloniaApp/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "Avalonia/11.3.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-QlVvaYTSTqzoUflmAEMuPzi3vYdybEIXmFQgLZxdTbzTeyhlwKZ1WqtLwHVe1Fbt8oGSCqYYKsU8SViZsdXR2Q==", - "path": "avalonia/11.3.7", - "hashPath": "avalonia.11.3.7.nupkg.sha512" - }, - "Avalonia.Angle.Windows.Natives/2.1.25547.20250602": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZL0VLc4s9rvNNFt19Pxm5UNAkmKNylugAwJPX9ulXZ6JWs/l6XZihPWWTyezaoNOVyEPU8YbURtW7XMAtqXH5A==", - "path": "avalonia.angle.windows.natives/2.1.25547.20250602", - "hashPath": "avalonia.angle.windows.natives.2.1.25547.20250602.nupkg.sha512" - }, - "Avalonia.BuildServices/11.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-k/WwXbqwaCtmE0a90YXB9plT50ok6OgLBIr+DUYK16akJN82iK69kgkL1vGDd8XBvf77JM3O27znBuy7AEoFgg==", - "path": "avalonia.buildservices/11.3.1", - "hashPath": "avalonia.buildservices.11.3.1.nupkg.sha512" - }, - "Avalonia.Controls.ColorPicker/11.3.6": { - "type": "package", - "serviceable": true, - "sha512": "sha512-zgJFM7P7hOS9qcuSUqL2tjBFIsi03qiwAztYjtjtKjfBvLBOrVcmL5qHwjfjeLRLtjHprjMraAHtu3O2vi+51g==", - "path": "avalonia.controls.colorpicker/11.3.6", - "hashPath": "avalonia.controls.colorpicker.11.3.6.nupkg.sha512" - }, - "Avalonia.Desktop/11.3.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-yWYj8M4tpg6YJrGwPIrXPuVUocJsCmT81M+QtVZkEp4PZOUkm21tviaI4BGrY8eQYHuRRy7k/vcVxwHqnmQwuA==", - "path": "avalonia.desktop/11.3.7", - "hashPath": "avalonia.desktop.11.3.7.nupkg.sha512" - }, - "Avalonia.Diagnostics/11.3.6": { - "type": "package", - "serviceable": true, - "sha512": "sha512-iOGrfU/0TudsfHARpsreVt5V1oaer838IghYdgZjlOvGKmh5J1uc5GOSBmBodUpuPDE78wmdVrJZLC57qsndzg==", - "path": "avalonia.diagnostics/11.3.6", - "hashPath": "avalonia.diagnostics.11.3.6.nupkg.sha512" - }, - "Avalonia.Fonts.Inter/11.3.6": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ASuCuosS8elNsRxNpdZE/UrmMSh1wtwoqRDEgpdcbVuMRUH/8ElCur5PdyWhJSwIit/YXaS+xb2xQAGOnvT45w==", - "path": "avalonia.fonts.inter/11.3.6", - "hashPath": "avalonia.fonts.inter.11.3.6.nupkg.sha512" - }, - "Avalonia.FreeDesktop/11.3.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-4K36zaeYiZT/6S5if5fXGDAdJL4u4zuO0k33VrLpdflkVCjgPrd1WhK3qxJrgF9YNRwpkvbxnTtZzSP2X6AfKg==", - "path": "avalonia.freedesktop/11.3.7", - "hashPath": "avalonia.freedesktop.11.3.7.nupkg.sha512" - }, - "Avalonia.Native/11.3.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KONYDXAlqGpMwaVrRQTp4MnbUbiG34nEYMUl3iYkgl9qP54rR/iJgDh8Xo0UfEC9Tjc/N3kV4gmhcSrOT7NCbA==", - "path": "avalonia.native/11.3.7", - "hashPath": "avalonia.native.11.3.7.nupkg.sha512" - }, - "Avalonia.ReactiveUI/11.3.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YtNQVvFVxWMP2ZKxbYWH6PIqPh/0PushbyMBWu6K/mNQaZqMRIavdZCUy8+t6FiX1IIaVPPmM6AqniWjIBo0VA==", - "path": "avalonia.reactiveui/11.3.7", - "hashPath": "avalonia.reactiveui.11.3.7.nupkg.sha512" - }, - "Avalonia.Remote.Protocol/11.3.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xI/QoELcb/U4qSm1KDXRRaA1qy+QgyHlgTS6EN7crV/6Ldzdv990rk6ClFa2RajHhvEm2i6S8kVx2paWZIOHHw==", - "path": "avalonia.remote.protocol/11.3.7", - "hashPath": "avalonia.remote.protocol.11.3.7.nupkg.sha512" - }, - "Avalonia.Skia/11.3.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-nDTop5duFQBdsR3YzLs/w0rhOdOB6szZQLD2vMCe8FDkKQM4j35sXMKVUcTtvSts3x8yo5DEarXfWU1viY2gng==", - "path": "avalonia.skia/11.3.7", - "hashPath": "avalonia.skia.11.3.7.nupkg.sha512" - }, - "Avalonia.Themes.Fluent/11.3.6": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YQ3x66qgMqDxbQoLTqYKGA7yXnxi8fzDL9+CITPrXrVZimlemWmjYqE0NWgd2c78gpp7dNEV4eYzwbbr8bH+9A==", - "path": "avalonia.themes.fluent/11.3.6", - "hashPath": "avalonia.themes.fluent.11.3.6.nupkg.sha512" - }, - "Avalonia.Themes.Simple/11.3.6": { - "type": "package", - "serviceable": true, - "sha512": "sha512-MuwYjUI9qMdu7TYyJbBntWlZRJWi6QmAYhMEBEdDgiEO0yUpTiKNLpYSn+MS8Xh9Jm9N4krclBigW7FYJkqLOA==", - "path": "avalonia.themes.simple/11.3.6", - "hashPath": "avalonia.themes.simple.11.3.6.nupkg.sha512" - }, - "Avalonia.Win32/11.3.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-e6EdWKnGvr7WSg4Q3zjej0DQo5FjzwuB+5kqotYVrf+RG/EvP/49P9S257Cjz9A5Br0TCNLny3VBbqPlt4i4Ag==", - "path": "avalonia.win32/11.3.7", - "hashPath": "avalonia.win32.11.3.7.nupkg.sha512" - }, - "Avalonia.X11/11.3.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-1/C3oM/qIRDGnBViXDpCvwsQPq74+QrwXGCzGb3meF0u+7nTZ/obh+fxMGgcq/0QHcq0t7taxsUr1lhVyBtEYw==", - "path": "avalonia.x11/11.3.7", - "hashPath": "avalonia.x11.11.3.7.nupkg.sha512" - }, - "DynamicData/8.4.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Mn1+fU/jqxgONEJq8KLQPGWEi7g/hUVTbjZyn4QM0sWWDAVOHPO9WjXWORSykwdfg/6S3GM15qsfz+2EvO+QAQ==", - "path": "dynamicdata/8.4.1", - "hashPath": "dynamicdata.8.4.1.nupkg.sha512" - }, - "HarfBuzzSharp/8.3.1.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tLZN66oe/uiRPTZfrCU4i8ScVGwqHNh5MHrXj0yVf4l7Mz0FhTGnQ71RGySROTmdognAs0JtluHkL41pIabWuQ==", - "path": "harfbuzzsharp/8.3.1.1", - "hashPath": "harfbuzzsharp.8.3.1.1.nupkg.sha512" - }, - "HarfBuzzSharp.NativeAssets.Linux/8.3.1.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3EZ1mpIiKWRLL5hUYA82ZHteeDIVaEA/Z0rA/wU6tjx6crcAkJnBPwDXZugBSfo8+J3EznvRJf49uMsqYfKrHg==", - "path": "harfbuzzsharp.nativeassets.linux/8.3.1.1", - "hashPath": "harfbuzzsharp.nativeassets.linux.8.3.1.1.nupkg.sha512" - }, - "HarfBuzzSharp.NativeAssets.macOS/8.3.1.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-jbtCsgftcaFLCA13tVKo5iWdElJScrulLTKJre36O4YQTIlwDtPPqhRZNk+Y0vv4D1gxbscasGRucUDfS44ofQ==", - "path": "harfbuzzsharp.nativeassets.macos/8.3.1.1", - "hashPath": "harfbuzzsharp.nativeassets.macos.8.3.1.1.nupkg.sha512" - }, - "HarfBuzzSharp.NativeAssets.WebAssembly/8.3.1.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-loJweK2u/mH/3C2zBa0ggJlITIszOkK64HLAZB7FUT670dTg965whLFYHDQo69NmC4+d9UN0icLC9VHidXaVCA==", - "path": "harfbuzzsharp.nativeassets.webassembly/8.3.1.1", - "hashPath": "harfbuzzsharp.nativeassets.webassembly.8.3.1.1.nupkg.sha512" - }, - "HarfBuzzSharp.NativeAssets.Win32/8.3.1.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-UsJtQsfAJoFDZrXc4hCUfRPMqccfKZ0iumJ/upcUjz/cmsTgVFGNEL5yaJWmkqsuFYdMWbj/En5/kS4PFl9hBA==", - "path": "harfbuzzsharp.nativeassets.win32/8.3.1.1", - "hashPath": "harfbuzzsharp.nativeassets.win32.8.3.1.1.nupkg.sha512" - }, - "MicroCom.Runtime/0.11.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-MEnrZ3UIiH40hjzMDsxrTyi8dtqB5ziv3iBeeU4bXsL/7NLSal9F1lZKpK+tfBRnUoDSdtcW3KufE4yhATOMCA==", - "path": "microcom.runtime/0.11.0", - "hashPath": "microcom.runtime.0.11.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YIMO9T3JL8MeEXgVozKt2v79hquo/EFtnY0vgxmLnUvk1Rei/halI7kOWZL2RBeV9FMGzgM9LZA8CVaNwFMaNA==", - "path": "microsoft.extensions.configuration/9.0.0", - "hashPath": "microsoft.extensions.configuration.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Abstractions/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lqvd7W3FGKUO1+ZoUEMaZ5XDJeWvjpy2/M/ptCGz3tXLD4HWVaSzjufsAsjemasBEg+2SxXVtYVvGt5r2nKDlg==", - "path": "microsoft.extensions.configuration.abstractions/9.0.0", - "hashPath": "microsoft.extensions.configuration.abstractions.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Binder/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-RiScL99DcyngY9zJA2ROrri7Br8tn5N4hP4YNvGdTN/bvg1A3dwvDOxHnNZ3Im7x2SJ5i4LkX1uPiR/MfSFBLQ==", - "path": "microsoft.extensions.configuration.binder/9.0.0", - "hashPath": "microsoft.extensions.configuration.binder.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.CommandLine/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-qD+hdkBtR9Ps7AxfhTJCnoVakkadHgHlD1WRN0QHGHod+SDuca1ao1kF4G2rmpAz2AEKrE2N2vE8CCCZ+ILnNw==", - "path": "microsoft.extensions.configuration.commandline/9.0.0", - "hashPath": "microsoft.extensions.configuration.commandline.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.EnvironmentVariables/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-v5R638eNMxksfXb7MFnkPwLPp+Ym4W/SIGNuoe8qFVVyvygQD5DdLusybmYSJEr9zc1UzWzim/ATKeIOVvOFDg==", - "path": "microsoft.extensions.configuration.environmentvariables/9.0.0", - "hashPath": "microsoft.extensions.configuration.environmentvariables.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.FileExtensions/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-4EK93Jcd2lQG4GY6PAw8jGss0ZzFP0vPc1J85mES5fKNuDTqgFXHba9onBw2s18fs3I4vdo2AWyfD1mPAxWSQQ==", - "path": "microsoft.extensions.configuration.fileextensions/9.0.0", - "hashPath": "microsoft.extensions.configuration.fileextensions.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Json/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-WiTK0LrnsqmedrbzwL7f4ZUo+/wByqy2eKab39I380i2rd8ImfCRMrtkqJVGDmfqlkP/YzhckVOwPc5MPrSNpg==", - "path": "microsoft.extensions.configuration.json/9.0.0", - "hashPath": "microsoft.extensions.configuration.json.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.UserSecrets/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FShWw8OysquwV7wQHYkkz0VWsJSo6ETUu4h7tJRMtnG0uR+tzKOldhcO8xB1pGSOI3Ng6v3N1Q94YO8Rzq1P6A==", - "path": "microsoft.extensions.configuration.usersecrets/9.0.0", - "hashPath": "microsoft.extensions.configuration.usersecrets.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-MCPrg7v3QgNMr0vX4vzRXvkNGgLg8vKWX0nKCWUxu2uPyMsaRgiRc1tHBnbTcfJMhMKj2slE/j2M9oGkd25DNw==", - "path": "microsoft.extensions.dependencyinjection/9.0.0", - "hashPath": "microsoft.extensions.dependencyinjection.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+6f2qv2a3dLwd5w6JanPIPs47CxRbnk+ZocMJUhv9NxP88VlOcJYZs9jY+MYSjxvady08bUZn6qgiNh7DadGgg==", - "path": "microsoft.extensions.dependencyinjection.abstractions/9.0.0", - "hashPath": "microsoft.extensions.dependencyinjection.abstractions.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Diagnostics/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-0CF9ZrNw5RAlRfbZuVIvzzhP8QeWqHiUmMBU/2H7Nmit8/vwP3/SbHeEctth7D4Gz2fBnEbokPc1NU8/j/1ZLw==", - "path": "microsoft.extensions.diagnostics/9.0.0", - "hashPath": "microsoft.extensions.diagnostics.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Diagnostics.Abstractions/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-1K8P7XzuzX8W8pmXcZjcrqS6x5eSSdvhQohmcpgiQNY/HlDAlnrhR9dvlURfFz428A+RTCJpUyB+aKTA6AgVcQ==", - "path": "microsoft.extensions.diagnostics.abstractions/9.0.0", - "hashPath": "microsoft.extensions.diagnostics.abstractions.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.FileProviders.Abstractions/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uK439QzYR0q2emLVtYzwyK3x+T5bTY4yWsd/k/ZUS9LR6Sflp8MIdhGXW8kQCd86dQD4tLqvcbLkku8qHY263Q==", - "path": "microsoft.extensions.fileproviders.abstractions/9.0.0", - "hashPath": "microsoft.extensions.fileproviders.abstractions.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.FileProviders.Physical/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3+ZUSpOSmie+o8NnLIRqCxSh65XL/ExU7JYnFOg58awDRlY3lVpZ9A369jkoZL1rpsq7LDhEfkn2ghhGaY1y5Q==", - "path": "microsoft.extensions.fileproviders.physical/9.0.0", - "hashPath": "microsoft.extensions.fileproviders.physical.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.FileSystemGlobbing/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-jGFKZiXs2HNseK3NK/rfwHNNovER71jSj4BD1a/649ml9+h6oEtYd0GSALZDNW8jZ2Rh+oAeadOa6sagYW1F2A==", - "path": "microsoft.extensions.filesystemglobbing/9.0.0", - "hashPath": "microsoft.extensions.filesystemglobbing.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Hosting/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-wNmQWRCa83HYbpxQ3wH7xBn8oyGjONSj1k8svzrFUFyJMfg/Ja/g0NfI0p85wxlUxBh97A6ypmL8X5vVUA5y2Q==", - "path": "microsoft.extensions.hosting/9.0.0", - "hashPath": "microsoft.extensions.hosting.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Hosting.Abstractions/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-yUKJgu81ExjvqbNWqZKshBbLntZMbMVz/P7Way2SBx7bMqA08Mfdc9O7hWDKAiSp+zPUGT6LKcSCQIPeDK+CCw==", - "path": "microsoft.extensions.hosting.abstractions/9.0.0", - "hashPath": "microsoft.extensions.hosting.abstractions.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-crjWyORoug0kK7RSNJBTeSE6VX8IQgLf3nUpTB9m62bPXp/tzbnOsnbe8TXEG0AASNaKZddnpHKw7fET8E++Pg==", - "path": "microsoft.extensions.logging/9.0.0", - "hashPath": "microsoft.extensions.logging.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Abstractions/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-g0UfujELzlLbHoVG8kPKVBaW470Ewi+jnptGS9KUi6jcb+k2StujtK3m26DFSGGwQ/+bVgZfsWqNzlP6YOejvw==", - "path": "microsoft.extensions.logging.abstractions/9.0.0", - "hashPath": "microsoft.extensions.logging.abstractions.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Configuration/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-H05HiqaNmg6GjH34ocYE9Wm1twm3Oz2aXZko8GTwGBzM7op2brpAA8pJ5yyD1OpS1mXUtModBYOlcZ/wXeWsSg==", - "path": "microsoft.extensions.logging.configuration/9.0.0", - "hashPath": "microsoft.extensions.logging.configuration.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Console/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-yDZ4zsjl7N0K+R/1QTNpXBd79Kaf4qNLHtjk4NaG82UtNg2Z6etJywwv6OarOv3Rp7ocU7uIaRY4CrzHRO/d3w==", - "path": "microsoft.extensions.logging.console/9.0.0", - "hashPath": "microsoft.extensions.logging.console.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Debug/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-4wGlHsrLhYjLw4sFkfRixu2w4DK7dv60OjbvgbLGhUJk0eUPxYHhnszZ/P18nnAkfrPryvtOJ3ZTVev0kpqM6A==", - "path": "microsoft.extensions.logging.debug/9.0.0", - "hashPath": "microsoft.extensions.logging.debug.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.EventLog/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/B8I5bScondnLMNULA3PBu/7Gvmv/P7L83j7gVrmLh6R+HCgHqUNIwVvzCok4ZjIXN2KxrsONHjFYwoBK5EJgQ==", - "path": "microsoft.extensions.logging.eventlog/9.0.0", - "hashPath": "microsoft.extensions.logging.eventlog.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.EventSource/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-zvSjdOAb3HW3aJPM5jf+PR9UoIkoci9id80RXmBgrDEozWI0GDw8tdmpyZgZSwFDvGCwHFodFLNQaeH8879rlA==", - "path": "microsoft.extensions.logging.eventsource/9.0.0", - "hashPath": "microsoft.extensions.logging.eventsource.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Options/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-y2146b3jrPI3Q0lokKXdKLpmXqakYbDIPDV6r3M8SqvSf45WwOTzkyfDpxnZXJsJQEpAsAqjUq5Pu8RCJMjubg==", - "path": "microsoft.extensions.options/9.0.0", - "hashPath": "microsoft.extensions.options.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Options.ConfigurationExtensions/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Ob3FXsXkcSMQmGZi7qP07EQ39kZpSBlTcAZLbJLdI4FIf0Jug8biv2HTavWmnTirchctPlq9bl/26CXtQRguzA==", - "path": "microsoft.extensions.options.configurationextensions/9.0.0", - "hashPath": "microsoft.extensions.options.configurationextensions.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Primitives/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-N3qEBzmLMYiASUlKxxFIISP4AiwuPTHF5uCh+2CWSwwzAJiIYx0kBJsS30cp1nvhSySFAVi30jecD307jV+8Kg==", - "path": "microsoft.extensions.primitives/9.0.0", - "hashPath": "microsoft.extensions.primitives.9.0.0.nupkg.sha512" - }, - "ReactiveUI/20.1.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9hNPknWjijnaSWs6auypoXqUptPZcRpUypF+cf1zD50fgW+SEoQda502N3fVZ2eWPcaiUad+z6GaLwOWmUVHNw==", - "path": "reactiveui/20.1.1", - "hashPath": "reactiveui.20.1.1.nupkg.sha512" - }, - "SkiaSharp/2.88.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3MD5VHjXXieSHCleRLuaTXmL2pD0mB7CcOB1x2kA1I4bhptf4e3R27iM93264ZYuAq6mkUyX5XbcxnZvMJYc1Q==", - "path": "skiasharp/2.88.9", - "hashPath": "skiasharp.2.88.9.nupkg.sha512" - }, - "SkiaSharp.NativeAssets.Linux/2.88.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-cWSaJKVPWAaT/WIn9c8T5uT/l4ETwHxNJTkEOtNKjphNo8AW6TF9O32aRkxqw3l8GUdUo66Bu7EiqtFh/XG0Zg==", - "path": "skiasharp.nativeassets.linux/2.88.9", - "hashPath": "skiasharp.nativeassets.linux.2.88.9.nupkg.sha512" - }, - "SkiaSharp.NativeAssets.macOS/2.88.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Nv5spmKc4505Ep7oUoJ5vp3KweFpeNqxpyGDWyeEPTX2uR6S6syXIm3gj75dM0YJz7NPvcix48mR5laqs8dPuA==", - "path": "skiasharp.nativeassets.macos/2.88.9", - "hashPath": "skiasharp.nativeassets.macos.2.88.9.nupkg.sha512" - }, - "SkiaSharp.NativeAssets.WebAssembly/2.88.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kt06RccBHSnAs2wDYdBSfsjIDbY3EpsOVqnlDgKdgvyuRA8ZFDaHRdWNx1VHjGgYzmnFCGiTJBnXFl5BqGwGnA==", - "path": "skiasharp.nativeassets.webassembly/2.88.9", - "hashPath": "skiasharp.nativeassets.webassembly.2.88.9.nupkg.sha512" - }, - "SkiaSharp.NativeAssets.Win32/2.88.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-wb2kYgU7iy84nQLYZwMeJXixvK++GoIuECjU4ECaUKNuflyRlJKyiRhN1MAHswvlvzuvkrjRWlK0Za6+kYQK7w==", - "path": "skiasharp.nativeassets.win32/2.88.9", - "hashPath": "skiasharp.nativeassets.win32.2.88.9.nupkg.sha512" - }, - "Splat/15.1.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-RHDTdF90FwVbRia2cmuIzkiVoETqnXSB2dDBBi/I35HWXqv4OKGqoMcfcd6obMvO2OmmY5PjU1M62K8LkJafAA==", - "path": "splat/15.1.1", - "hashPath": "splat.15.1.1.nupkg.sha512" - }, - "System.ComponentModel.Annotations/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==", - "path": "system.componentmodel.annotations/5.0.0", - "hashPath": "system.componentmodel.annotations.5.0.0.nupkg.sha512" - }, - "System.Diagnostics.DiagnosticSource/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ddppcFpnbohLWdYKr/ZeLZHmmI+DXFgZ3Snq+/E7SwcdW4UnvxmaugkwGywvGVWkHPGCSZjCP+MLzu23AL5SDw==", - "path": "system.diagnostics.diagnosticsource/9.0.0", - "hashPath": "system.diagnostics.diagnosticsource.9.0.0.nupkg.sha512" - }, - "System.Diagnostics.EventLog/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-qd01+AqPhbAG14KtdtIqFk+cxHQFZ/oqRSCoxU1F+Q6Kv0cl726sl7RzU9yLFGd4BUOKdN4XojXF0pQf/R6YeA==", - "path": "system.diagnostics.eventlog/9.0.0", - "hashPath": "system.diagnostics.eventlog.9.0.0.nupkg.sha512" - }, - "System.IO.Pipelines/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-eA3cinogwaNB4jdjQHOP3Z3EuyiDII7MT35jgtnsA4vkn0LUrrSHsU0nzHTzFzmaFYeKV7MYyMxOocFzsBHpTw==", - "path": "system.io.pipelines/9.0.0", - "hashPath": "system.io.pipelines.9.0.0.nupkg.sha512" - }, - "System.Reactive/6.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rHaWtKDwCi9qJ3ObKo8LHPMuuwv33YbmQi7TcUK1C264V3MFnOr5Im7QgCTdLniztP3GJyeiSg5x8NqYJFqRmg==", - "path": "system.reactive/6.0.1", - "hashPath": "system.reactive.6.0.1.nupkg.sha512" - }, - "System.Text.Encodings.Web/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-e2hMgAErLbKyUUwt18qSBf9T5Y+SFAL3ZedM8fLupkVj8Rj2PZ9oxQ37XX2LF8fTO1wNIxvKpihD7Of7D/NxZw==", - "path": "system.text.encodings.web/9.0.0", - "hashPath": "system.text.encodings.web.9.0.0.nupkg.sha512" - }, - "System.Text.Json/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-js7+qAu/9mQvnhA4EfGMZNEzXtJCDxgkgj8ohuxq/Qxv+R56G+ljefhiJHOxTNiw54q8vmABCWUwkMulNdlZ4A==", - "path": "system.text.json/9.0.0", - "hashPath": "system.text.json.9.0.0.nupkg.sha512" - }, - "Tmds.DBus.Protocol/0.21.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ScSMrUrrw8px4kK1Glh0fZv/HQUlg1078bNXNPfRPKQ3WbRzV9HpsydYEOgSoMK5LWICMf2bMwIFH0pGjxjcMA==", - "path": "tmds.dbus.protocol/0.21.2", - "hashPath": "tmds.dbus.protocol.0.21.2.nupkg.sha512" - } - } -} \ No newline at end of file diff --git a/bin/Debug/net8.0/MyAvaloniaApp.dll b/bin/Debug/net8.0/MyAvaloniaApp.dll deleted file mode 100644 index 43fb803..0000000 Binary files a/bin/Debug/net8.0/MyAvaloniaApp.dll and /dev/null differ diff --git a/bin/Debug/net8.0/MyAvaloniaApp.exe b/bin/Debug/net8.0/MyAvaloniaApp.exe deleted file mode 100644 index 901b3eb..0000000 Binary files a/bin/Debug/net8.0/MyAvaloniaApp.exe and /dev/null differ diff --git a/bin/Debug/net8.0/MyAvaloniaApp.pdb b/bin/Debug/net8.0/MyAvaloniaApp.pdb deleted file mode 100644 index 30eaade..0000000 Binary files a/bin/Debug/net8.0/MyAvaloniaApp.pdb and /dev/null differ diff --git a/bin/Debug/net8.0/MyAvaloniaApp.runtimeconfig.json b/bin/Debug/net8.0/MyAvaloniaApp.runtimeconfig.json deleted file mode 100644 index 61e5180..0000000 --- a/bin/Debug/net8.0/MyAvaloniaApp.runtimeconfig.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "runtimeOptions": { - "tfm": "net8.0", - "framework": { - "name": "Microsoft.NETCore.App", - "version": "8.0.0" - }, - "configProperties": { - "System.Runtime.InteropServices.BuiltInComInterop.IsSupported": true, - "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false - } - } -} \ No newline at end of file diff --git a/bin/Debug/net8.0/ReactiveUI.dll b/bin/Debug/net8.0/ReactiveUI.dll deleted file mode 100644 index ec02680..0000000 Binary files a/bin/Debug/net8.0/ReactiveUI.dll and /dev/null differ diff --git a/bin/Debug/net8.0/SkiaSharp.dll b/bin/Debug/net8.0/SkiaSharp.dll deleted file mode 100644 index 5d7e9cd..0000000 Binary files a/bin/Debug/net8.0/SkiaSharp.dll and /dev/null differ diff --git a/bin/Debug/net8.0/Splat.dll b/bin/Debug/net8.0/Splat.dll deleted file mode 100644 index 63eb27e..0000000 Binary files a/bin/Debug/net8.0/Splat.dll and /dev/null differ diff --git a/bin/Debug/net8.0/System.Diagnostics.DiagnosticSource.dll b/bin/Debug/net8.0/System.Diagnostics.DiagnosticSource.dll deleted file mode 100644 index bae10b1..0000000 Binary files a/bin/Debug/net8.0/System.Diagnostics.DiagnosticSource.dll and /dev/null differ diff --git a/bin/Debug/net8.0/System.Diagnostics.EventLog.dll b/bin/Debug/net8.0/System.Diagnostics.EventLog.dll deleted file mode 100644 index 25f8d1f..0000000 Binary files a/bin/Debug/net8.0/System.Diagnostics.EventLog.dll and /dev/null differ diff --git a/bin/Debug/net8.0/System.IO.Pipelines.dll b/bin/Debug/net8.0/System.IO.Pipelines.dll deleted file mode 100644 index 712f47d..0000000 Binary files a/bin/Debug/net8.0/System.IO.Pipelines.dll and /dev/null differ diff --git a/bin/Debug/net8.0/System.Reactive.dll b/bin/Debug/net8.0/System.Reactive.dll deleted file mode 100644 index d6d2efa..0000000 Binary files a/bin/Debug/net8.0/System.Reactive.dll and /dev/null differ diff --git a/bin/Debug/net8.0/System.Text.Encodings.Web.dll b/bin/Debug/net8.0/System.Text.Encodings.Web.dll deleted file mode 100644 index 5c04169..0000000 Binary files a/bin/Debug/net8.0/System.Text.Encodings.Web.dll and /dev/null differ diff --git a/bin/Debug/net8.0/System.Text.Json.dll b/bin/Debug/net8.0/System.Text.Json.dll deleted file mode 100644 index f4dd021..0000000 Binary files a/bin/Debug/net8.0/System.Text.Json.dll and /dev/null differ diff --git a/bin/Debug/net8.0/Tmds.DBus.Protocol.dll b/bin/Debug/net8.0/Tmds.DBus.Protocol.dll deleted file mode 100644 index b66137d..0000000 Binary files a/bin/Debug/net8.0/Tmds.DBus.Protocol.dll and /dev/null differ diff --git a/bin/Debug/net8.0/appsettings.json b/bin/Debug/net8.0/appsettings.json deleted file mode 100644 index 8895b6f..0000000 --- a/bin/Debug/net8.0/appsettings.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "Logging": { - "LogLevel": { - "Default": "Information", - "Microsoft": "Warning", - "Microsoft.Hosting.Lifetime": "Information", - "MyAvaloniaApp": "Debug" - }, - "Console": { - "IncludeScopes": true, - "TimestampFormat": "yyyy-MM-dd HH:mm:ss " - } - }, - "AppSettings": { - "ApplicationName": "My Avalonia App", - "Version": "1.0.0", - "Environment": "Development", - "Features": { - "EnableLogging": true, - "EnableMetrics": false, - "EnableTelemetry": false - } - }, - "ConnectionStrings": { - "DefaultConnection": "Data Source=app.db" - } -} diff --git a/bin/Debug/net8.0/runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll b/bin/Debug/net8.0/runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll deleted file mode 100644 index 38c9af4..0000000 Binary files a/bin/Debug/net8.0/runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll and /dev/null differ diff --git a/bin/Debug/net8.0/runtimes/linux-arm/native/libHarfBuzzSharp.so b/bin/Debug/net8.0/runtimes/linux-arm/native/libHarfBuzzSharp.so deleted file mode 100644 index 2dadd4c..0000000 Binary files a/bin/Debug/net8.0/runtimes/linux-arm/native/libHarfBuzzSharp.so and /dev/null differ diff --git a/bin/Debug/net8.0/runtimes/linux-arm/native/libSkiaSharp.so b/bin/Debug/net8.0/runtimes/linux-arm/native/libSkiaSharp.so deleted file mode 100644 index cf26d78..0000000 Binary files a/bin/Debug/net8.0/runtimes/linux-arm/native/libSkiaSharp.so and /dev/null differ diff --git a/bin/Debug/net8.0/runtimes/linux-arm64/native/libHarfBuzzSharp.so b/bin/Debug/net8.0/runtimes/linux-arm64/native/libHarfBuzzSharp.so deleted file mode 100644 index ddcf11d..0000000 Binary files a/bin/Debug/net8.0/runtimes/linux-arm64/native/libHarfBuzzSharp.so and /dev/null differ diff --git a/bin/Debug/net8.0/runtimes/linux-arm64/native/libSkiaSharp.so b/bin/Debug/net8.0/runtimes/linux-arm64/native/libSkiaSharp.so deleted file mode 100644 index 8154cf2..0000000 Binary files a/bin/Debug/net8.0/runtimes/linux-arm64/native/libSkiaSharp.so and /dev/null differ diff --git a/bin/Debug/net8.0/runtimes/linux-loongarch64/native/libHarfBuzzSharp.so b/bin/Debug/net8.0/runtimes/linux-loongarch64/native/libHarfBuzzSharp.so deleted file mode 100644 index eaeb8ef..0000000 Binary files a/bin/Debug/net8.0/runtimes/linux-loongarch64/native/libHarfBuzzSharp.so and /dev/null differ diff --git a/bin/Debug/net8.0/runtimes/linux-musl-arm/native/libHarfBuzzSharp.so b/bin/Debug/net8.0/runtimes/linux-musl-arm/native/libHarfBuzzSharp.so deleted file mode 100644 index 517d2de..0000000 Binary files a/bin/Debug/net8.0/runtimes/linux-musl-arm/native/libHarfBuzzSharp.so and /dev/null differ diff --git a/bin/Debug/net8.0/runtimes/linux-musl-arm64/native/libHarfBuzzSharp.so b/bin/Debug/net8.0/runtimes/linux-musl-arm64/native/libHarfBuzzSharp.so deleted file mode 100644 index 496593b..0000000 Binary files a/bin/Debug/net8.0/runtimes/linux-musl-arm64/native/libHarfBuzzSharp.so and /dev/null differ diff --git a/bin/Debug/net8.0/runtimes/linux-musl-loongarch64/native/libHarfBuzzSharp.so b/bin/Debug/net8.0/runtimes/linux-musl-loongarch64/native/libHarfBuzzSharp.so deleted file mode 100644 index 6439855..0000000 Binary files a/bin/Debug/net8.0/runtimes/linux-musl-loongarch64/native/libHarfBuzzSharp.so and /dev/null differ diff --git a/bin/Debug/net8.0/runtimes/linux-musl-riscv64/native/libHarfBuzzSharp.so b/bin/Debug/net8.0/runtimes/linux-musl-riscv64/native/libHarfBuzzSharp.so deleted file mode 100644 index 1df9da1..0000000 Binary files a/bin/Debug/net8.0/runtimes/linux-musl-riscv64/native/libHarfBuzzSharp.so and /dev/null differ diff --git a/bin/Debug/net8.0/runtimes/linux-musl-x64/native/libHarfBuzzSharp.so b/bin/Debug/net8.0/runtimes/linux-musl-x64/native/libHarfBuzzSharp.so deleted file mode 100644 index bdc9a8d..0000000 Binary files a/bin/Debug/net8.0/runtimes/linux-musl-x64/native/libHarfBuzzSharp.so and /dev/null differ diff --git a/bin/Debug/net8.0/runtimes/linux-musl-x64/native/libSkiaSharp.so b/bin/Debug/net8.0/runtimes/linux-musl-x64/native/libSkiaSharp.so deleted file mode 100644 index 6c63070..0000000 Binary files a/bin/Debug/net8.0/runtimes/linux-musl-x64/native/libSkiaSharp.so and /dev/null differ diff --git a/bin/Debug/net8.0/runtimes/linux-riscv64/native/libHarfBuzzSharp.so b/bin/Debug/net8.0/runtimes/linux-riscv64/native/libHarfBuzzSharp.so deleted file mode 100644 index 034d0cf..0000000 Binary files a/bin/Debug/net8.0/runtimes/linux-riscv64/native/libHarfBuzzSharp.so and /dev/null differ diff --git a/bin/Debug/net8.0/runtimes/linux-x64/native/libHarfBuzzSharp.so b/bin/Debug/net8.0/runtimes/linux-x64/native/libHarfBuzzSharp.so deleted file mode 100644 index 2d442dc..0000000 Binary files a/bin/Debug/net8.0/runtimes/linux-x64/native/libHarfBuzzSharp.so and /dev/null differ diff --git a/bin/Debug/net8.0/runtimes/linux-x64/native/libSkiaSharp.so b/bin/Debug/net8.0/runtimes/linux-x64/native/libSkiaSharp.so deleted file mode 100644 index af626a4..0000000 Binary files a/bin/Debug/net8.0/runtimes/linux-x64/native/libSkiaSharp.so and /dev/null differ diff --git a/bin/Debug/net8.0/runtimes/linux-x86/native/libHarfBuzzSharp.so b/bin/Debug/net8.0/runtimes/linux-x86/native/libHarfBuzzSharp.so deleted file mode 100644 index d8e2a6d..0000000 Binary files a/bin/Debug/net8.0/runtimes/linux-x86/native/libHarfBuzzSharp.so and /dev/null differ diff --git a/bin/Debug/net8.0/runtimes/osx/native/libAvaloniaNative.dylib b/bin/Debug/net8.0/runtimes/osx/native/libAvaloniaNative.dylib deleted file mode 100644 index 324d1b4..0000000 Binary files a/bin/Debug/net8.0/runtimes/osx/native/libAvaloniaNative.dylib and /dev/null differ diff --git a/bin/Debug/net8.0/runtimes/osx/native/libHarfBuzzSharp.dylib b/bin/Debug/net8.0/runtimes/osx/native/libHarfBuzzSharp.dylib deleted file mode 100644 index 3305506..0000000 Binary files a/bin/Debug/net8.0/runtimes/osx/native/libHarfBuzzSharp.dylib and /dev/null differ diff --git a/bin/Debug/net8.0/runtimes/osx/native/libSkiaSharp.dylib b/bin/Debug/net8.0/runtimes/osx/native/libSkiaSharp.dylib deleted file mode 100644 index 9731583..0000000 Binary files a/bin/Debug/net8.0/runtimes/osx/native/libSkiaSharp.dylib and /dev/null differ diff --git a/bin/Debug/net8.0/runtimes/win-arm64/native/av_libglesv2.dll b/bin/Debug/net8.0/runtimes/win-arm64/native/av_libglesv2.dll deleted file mode 100644 index 595d899..0000000 Binary files a/bin/Debug/net8.0/runtimes/win-arm64/native/av_libglesv2.dll and /dev/null differ diff --git a/bin/Debug/net8.0/runtimes/win-arm64/native/libHarfBuzzSharp.dll b/bin/Debug/net8.0/runtimes/win-arm64/native/libHarfBuzzSharp.dll deleted file mode 100644 index 3a43c6b..0000000 Binary files a/bin/Debug/net8.0/runtimes/win-arm64/native/libHarfBuzzSharp.dll and /dev/null differ diff --git a/bin/Debug/net8.0/runtimes/win-arm64/native/libSkiaSharp.dll b/bin/Debug/net8.0/runtimes/win-arm64/native/libSkiaSharp.dll deleted file mode 100644 index 48404a0..0000000 Binary files a/bin/Debug/net8.0/runtimes/win-arm64/native/libSkiaSharp.dll and /dev/null differ diff --git a/bin/Debug/net8.0/runtimes/win-x64/native/av_libglesv2.dll b/bin/Debug/net8.0/runtimes/win-x64/native/av_libglesv2.dll deleted file mode 100644 index 487d711..0000000 Binary files a/bin/Debug/net8.0/runtimes/win-x64/native/av_libglesv2.dll and /dev/null differ diff --git a/bin/Debug/net8.0/runtimes/win-x64/native/libHarfBuzzSharp.dll b/bin/Debug/net8.0/runtimes/win-x64/native/libHarfBuzzSharp.dll deleted file mode 100644 index 2bb6849..0000000 Binary files a/bin/Debug/net8.0/runtimes/win-x64/native/libHarfBuzzSharp.dll and /dev/null differ diff --git a/bin/Debug/net8.0/runtimes/win-x64/native/libSkiaSharp.dll b/bin/Debug/net8.0/runtimes/win-x64/native/libSkiaSharp.dll deleted file mode 100644 index 3f8c6f2..0000000 Binary files a/bin/Debug/net8.0/runtimes/win-x64/native/libSkiaSharp.dll and /dev/null differ diff --git a/bin/Debug/net8.0/runtimes/win-x86/native/av_libglesv2.dll b/bin/Debug/net8.0/runtimes/win-x86/native/av_libglesv2.dll deleted file mode 100644 index adabd02..0000000 Binary files a/bin/Debug/net8.0/runtimes/win-x86/native/av_libglesv2.dll and /dev/null differ diff --git a/bin/Debug/net8.0/runtimes/win-x86/native/libHarfBuzzSharp.dll b/bin/Debug/net8.0/runtimes/win-x86/native/libHarfBuzzSharp.dll deleted file mode 100644 index c7b1d43..0000000 Binary files a/bin/Debug/net8.0/runtimes/win-x86/native/libHarfBuzzSharp.dll and /dev/null differ diff --git a/bin/Debug/net8.0/runtimes/win-x86/native/libSkiaSharp.dll b/bin/Debug/net8.0/runtimes/win-x86/native/libSkiaSharp.dll deleted file mode 100644 index 655f773..0000000 Binary files a/bin/Debug/net8.0/runtimes/win-x86/native/libSkiaSharp.dll and /dev/null differ diff --git a/bin/Debug/net8.0/runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll b/bin/Debug/net8.0/runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll deleted file mode 100644 index e6e8b51..0000000 Binary files a/bin/Debug/net8.0/runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll and /dev/null differ diff --git a/bin/Debug/net8.0/runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll b/bin/Debug/net8.0/runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll deleted file mode 100644 index 3565362..0000000 Binary files a/bin/Debug/net8.0/runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll and /dev/null differ diff --git a/bin/Debug/net9.0/MyAvaloniaApp.deps.json b/bin/Debug/net9.0/MyAvaloniaApp.deps.json deleted file mode 100644 index 005c93d..0000000 --- a/bin/Debug/net9.0/MyAvaloniaApp.deps.json +++ /dev/null @@ -1,1835 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v9.0", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v9.0": { - "MyAvaloniaApp/1.0.0": { - "dependencies": { - "Avalonia": "11.3.7", - "Avalonia.Desktop": "11.3.7", - "Avalonia.Diagnostics": "11.3.6", - "Avalonia.Fonts.Inter": "11.3.6", - "Avalonia.ReactiveUI": "11.3.7", - "Avalonia.Themes.Fluent": "11.3.6", - "AvaloniaEdit": "0.10.12", - "AvaloniaEdit.TextMate": "11.3.0", - "DialogHost.Avalonia": "0.9.3", - "HeroIcons.Avalonia": "1.0.4", - "Microsoft.Extensions.Configuration": "9.0.0", - "Microsoft.Extensions.Configuration.CommandLine": "9.0.0", - "Microsoft.Extensions.Configuration.EnvironmentVariables": "9.0.0", - "Microsoft.Extensions.Configuration.Json": "9.0.0", - "Microsoft.Extensions.DependencyInjection": "9.0.0", - "Microsoft.Extensions.Hosting": "9.0.0", - "Microsoft.Extensions.Logging": "9.0.0", - "Microsoft.Extensions.Logging.Console": "9.0.0", - "Microsoft.Extensions.Logging.Debug": "9.0.0" - }, - "runtime": { - "MyAvaloniaApp.dll": {} - } - }, - "Avalonia/11.3.7": { - "dependencies": { - "Avalonia.BuildServices": "11.3.1", - "Avalonia.Remote.Protocol": "11.3.7", - "MicroCom.Runtime": "0.11.0" - }, - "runtime": { - "lib/net8.0/Avalonia.Base.dll": { - "assemblyVersion": "11.3.7.0", - "fileVersion": "11.3.7.0" - }, - "lib/net8.0/Avalonia.Controls.dll": { - "assemblyVersion": "11.3.7.0", - "fileVersion": "11.3.7.0" - }, - "lib/net8.0/Avalonia.DesignerSupport.dll": { - "assemblyVersion": "0.7.0.0", - "fileVersion": "0.7.0.0" - }, - "lib/net8.0/Avalonia.Dialogs.dll": { - "assemblyVersion": "11.3.7.0", - "fileVersion": "11.3.7.0" - }, - "lib/net8.0/Avalonia.Markup.Xaml.dll": { - "assemblyVersion": "11.3.7.0", - "fileVersion": "11.3.7.0" - }, - "lib/net8.0/Avalonia.Markup.dll": { - "assemblyVersion": "11.3.7.0", - "fileVersion": "11.3.7.0" - }, - "lib/net8.0/Avalonia.Metal.dll": { - "assemblyVersion": "11.3.7.0", - "fileVersion": "11.3.7.0" - }, - "lib/net8.0/Avalonia.MicroCom.dll": { - "assemblyVersion": "11.3.7.0", - "fileVersion": "11.3.7.0" - }, - "lib/net8.0/Avalonia.OpenGL.dll": { - "assemblyVersion": "11.3.7.0", - "fileVersion": "11.3.7.0" - }, - "lib/net8.0/Avalonia.Vulkan.dll": { - "assemblyVersion": "11.3.7.0", - "fileVersion": "11.3.7.0" - }, - "lib/net8.0/Avalonia.dll": { - "assemblyVersion": "11.3.7.0", - "fileVersion": "11.3.7.0" - } - } - }, - "Avalonia.Angle.Windows.Natives/2.1.25547.20250602": { - "runtimeTargets": { - "runtimes/win-arm64/native/av_libglesv2.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "2.1.25606.0" - }, - "runtimes/win-x64/native/av_libglesv2.dll": { - "rid": "win-x64", - "assetType": "native", - "fileVersion": "2.1.25606.0" - }, - "runtimes/win-x86/native/av_libglesv2.dll": { - "rid": "win-x86", - "assetType": "native", - "fileVersion": "2.1.25606.0" - } - } - }, - "Avalonia.AvaloniaEdit/11.3.0": { - "dependencies": { - "Avalonia": "11.3.7" - }, - "runtime": { - "lib/net6.0/AvaloniaEdit.dll": { - "assemblyVersion": "11.3.0.0", - "fileVersion": "11.3.0.0" - } - } - }, - "Avalonia.BuildServices/11.3.1": {}, - "Avalonia.Controls.ColorPicker/11.3.6": { - "dependencies": { - "Avalonia": "11.3.7", - "Avalonia.Remote.Protocol": "11.3.7" - }, - "runtime": { - "lib/net8.0/Avalonia.Controls.ColorPicker.dll": { - "assemblyVersion": "11.3.6.0", - "fileVersion": "11.3.6.0" - } - } - }, - "Avalonia.Desktop/11.3.7": { - "dependencies": { - "Avalonia": "11.3.7", - "Avalonia.Native": "11.3.7", - "Avalonia.Skia": "11.3.7", - "Avalonia.Win32": "11.3.7", - "Avalonia.X11": "11.3.7" - }, - "runtime": { - "lib/net8.0/Avalonia.Desktop.dll": { - "assemblyVersion": "11.3.7.0", - "fileVersion": "11.3.7.0" - } - } - }, - "Avalonia.Diagnostics/11.3.6": { - "dependencies": { - "Avalonia": "11.3.7", - "Avalonia.Controls.ColorPicker": "11.3.6", - "Avalonia.Themes.Simple": "11.3.6" - }, - "runtime": { - "lib/net8.0/Avalonia.Diagnostics.dll": { - "assemblyVersion": "11.3.6.0", - "fileVersion": "11.3.6.0" - } - } - }, - "Avalonia.Fonts.Inter/11.3.6": { - "dependencies": { - "Avalonia": "11.3.7" - }, - "runtime": { - "lib/net8.0/Avalonia.Fonts.Inter.dll": { - "assemblyVersion": "11.3.6.0", - "fileVersion": "11.3.6.0" - } - } - }, - "Avalonia.FreeDesktop/11.3.7": { - "dependencies": { - "Avalonia": "11.3.7", - "Tmds.DBus.Protocol": "0.21.2" - }, - "runtime": { - "lib/net8.0/Avalonia.FreeDesktop.dll": { - "assemblyVersion": "11.3.7.0", - "fileVersion": "11.3.7.0" - } - } - }, - "Avalonia.Native/11.3.7": { - "dependencies": { - "Avalonia": "11.3.7" - }, - "runtime": { - "lib/net8.0/Avalonia.Native.dll": { - "assemblyVersion": "11.3.7.0", - "fileVersion": "11.3.7.0" - } - }, - "runtimeTargets": { - "runtimes/osx/native/libAvaloniaNative.dylib": { - "rid": "osx", - "assetType": "native", - "fileVersion": "0.0.0.0" - } - } - }, - "Avalonia.ReactiveUI/11.3.7": { - "dependencies": { - "Avalonia": "11.3.7", - "ReactiveUI": "20.1.1", - "System.Reactive": "6.0.1" - }, - "runtime": { - "lib/net8.0/Avalonia.ReactiveUI.dll": { - "assemblyVersion": "11.3.7.0", - "fileVersion": "11.3.7.0" - } - } - }, - "Avalonia.Remote.Protocol/11.3.7": { - "runtime": { - "lib/net8.0/Avalonia.Remote.Protocol.dll": { - "assemblyVersion": "11.3.7.0", - "fileVersion": "11.3.7.0" - } - } - }, - "Avalonia.Skia/11.3.7": { - "dependencies": { - "Avalonia": "11.3.7", - "HarfBuzzSharp": "8.3.1.1", - "HarfBuzzSharp.NativeAssets.Linux": "8.3.1.1", - "HarfBuzzSharp.NativeAssets.WebAssembly": "8.3.1.1", - "SkiaSharp": "2.88.9", - "SkiaSharp.NativeAssets.Linux": "2.88.9", - "SkiaSharp.NativeAssets.WebAssembly": "2.88.9" - }, - "runtime": { - "lib/net8.0/Avalonia.Skia.dll": { - "assemblyVersion": "11.3.7.0", - "fileVersion": "11.3.7.0" - } - } - }, - "Avalonia.Themes.Fluent/11.3.6": { - "dependencies": { - "Avalonia": "11.3.7" - }, - "runtime": { - "lib/net8.0/Avalonia.Themes.Fluent.dll": { - "assemblyVersion": "11.3.6.0", - "fileVersion": "11.3.6.0" - } - } - }, - "Avalonia.Themes.Simple/11.3.6": { - "dependencies": { - "Avalonia": "11.3.7" - }, - "runtime": { - "lib/net8.0/Avalonia.Themes.Simple.dll": { - "assemblyVersion": "11.3.6.0", - "fileVersion": "11.3.6.0" - } - } - }, - "Avalonia.Win32/11.3.7": { - "dependencies": { - "Avalonia": "11.3.7", - "Avalonia.Angle.Windows.Natives": "2.1.25547.20250602" - }, - "runtime": { - "lib/net8.0/Avalonia.Win32.Automation.dll": { - "assemblyVersion": "11.3.7.0", - "fileVersion": "11.3.7.0" - }, - "lib/net8.0/Avalonia.Win32.dll": { - "assemblyVersion": "11.3.7.0", - "fileVersion": "11.3.7.0" - } - } - }, - "Avalonia.X11/11.3.7": { - "dependencies": { - "Avalonia": "11.3.7", - "Avalonia.FreeDesktop": "11.3.7", - "Avalonia.Skia": "11.3.7" - }, - "runtime": { - "lib/net8.0/Avalonia.X11.dll": { - "assemblyVersion": "11.3.7.0", - "fileVersion": "11.3.7.0" - } - } - }, - "AvaloniaEdit/0.10.12": { - "dependencies": { - "Avalonia": "11.3.7", - "System.Collections.Immutable": "1.6.0", - "System.Xml.ReaderWriter": "4.3.1" - } - }, - "AvaloniaEdit.TextMate/11.3.0": { - "dependencies": { - "Avalonia": "11.3.7", - "Avalonia.AvaloniaEdit": "11.3.0", - "TextMateSharp": "1.0.65", - "TextMateSharp.Grammars": "1.0.65" - }, - "runtime": { - "lib/net6.0/AvaloniaEdit.TextMate.dll": { - "assemblyVersion": "11.3.0.0", - "fileVersion": "11.3.0.0" - } - } - }, - "DialogHost.Avalonia/0.9.3": { - "dependencies": { - "Avalonia": "11.3.7" - }, - "runtime": { - "lib/netstandard2.0/DialogHost.Avalonia.dll": { - "assemblyVersion": "0.9.3.0", - "fileVersion": "0.9.3.0" - } - } - }, - "DynamicData/8.4.1": { - "dependencies": { - "System.Reactive": "6.0.1" - }, - "runtime": { - "lib/net8.0/DynamicData.dll": { - "assemblyVersion": "8.4.0.0", - "fileVersion": "8.4.1.20756" - } - } - }, - "HarfBuzzSharp/8.3.1.1": { - "dependencies": { - "HarfBuzzSharp.NativeAssets.Win32": "8.3.1.1", - "HarfBuzzSharp.NativeAssets.macOS": "8.3.1.1" - }, - "runtime": { - "lib/net8.0/HarfBuzzSharp.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "8.3.1.1" - } - } - }, - "HarfBuzzSharp.NativeAssets.Linux/8.3.1.1": { - "runtimeTargets": { - "runtimes/linux-arm/native/libHarfBuzzSharp.so": { - "rid": "linux-arm", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-arm64/native/libHarfBuzzSharp.so": { - "rid": "linux-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-loongarch64/native/libHarfBuzzSharp.so": { - "rid": "linux-loongarch64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-musl-arm/native/libHarfBuzzSharp.so": { - "rid": "linux-musl-arm", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-musl-arm64/native/libHarfBuzzSharp.so": { - "rid": "linux-musl-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-musl-loongarch64/native/libHarfBuzzSharp.so": { - "rid": "linux-musl-loongarch64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-musl-riscv64/native/libHarfBuzzSharp.so": { - "rid": "linux-musl-riscv64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-musl-x64/native/libHarfBuzzSharp.so": { - "rid": "linux-musl-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-riscv64/native/libHarfBuzzSharp.so": { - "rid": "linux-riscv64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-x64/native/libHarfBuzzSharp.so": { - "rid": "linux-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-x86/native/libHarfBuzzSharp.so": { - "rid": "linux-x86", - "assetType": "native", - "fileVersion": "0.0.0.0" - } - } - }, - "HarfBuzzSharp.NativeAssets.macOS/8.3.1.1": { - "runtimeTargets": { - "runtimes/osx/native/libHarfBuzzSharp.dylib": { - "rid": "osx", - "assetType": "native", - "fileVersion": "0.0.0.0" - } - } - }, - "HarfBuzzSharp.NativeAssets.WebAssembly/8.3.1.1": {}, - "HarfBuzzSharp.NativeAssets.Win32/8.3.1.1": { - "runtimeTargets": { - "runtimes/win-arm64/native/libHarfBuzzSharp.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/win-x64/native/libHarfBuzzSharp.dll": { - "rid": "win-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/win-x86/native/libHarfBuzzSharp.dll": { - "rid": "win-x86", - "assetType": "native", - "fileVersion": "0.0.0.0" - } - } - }, - "HeroIcons.Avalonia/1.0.4": { - "dependencies": { - "Avalonia": "11.3.7" - }, - "runtime": { - "lib/netstandard2.0/HeroIconsAvalonia.dll": { - "assemblyVersion": "1.0.4.0", - "fileVersion": "1.0.4.0" - } - } - }, - "MicroCom.Runtime/0.11.0": { - "runtime": { - "lib/net5.0/MicroCom.Runtime.dll": { - "assemblyVersion": "0.11.0.0", - "fileVersion": "0.11.0.0" - } - } - }, - "Microsoft.Extensions.Configuration/9.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", - "Microsoft.Extensions.Primitives": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Configuration.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Configuration.Abstractions/9.0.0": { - "dependencies": { - "Microsoft.Extensions.Primitives": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Configuration.Binder/9.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Configuration.Binder.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Configuration.CommandLine/9.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration": "9.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Configuration.CommandLine.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Configuration.EnvironmentVariables/9.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration": "9.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Configuration.FileExtensions/9.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration": "9.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", - "Microsoft.Extensions.FileProviders.Physical": "9.0.0", - "Microsoft.Extensions.Primitives": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Configuration.Json/9.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration": "9.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", - "Microsoft.Extensions.Configuration.FileExtensions": "9.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Configuration.Json.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Configuration.UserSecrets/9.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", - "Microsoft.Extensions.Configuration.Json": "9.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", - "Microsoft.Extensions.FileProviders.Physical": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Configuration.UserSecrets.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.DependencyInjection/9.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": { - "runtime": { - "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Diagnostics/9.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration": "9.0.0", - "Microsoft.Extensions.Diagnostics.Abstractions": "9.0.0", - "Microsoft.Extensions.Options.ConfigurationExtensions": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Diagnostics.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Diagnostics.Abstractions/9.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", - "Microsoft.Extensions.Options": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.FileProviders.Abstractions/9.0.0": { - "dependencies": { - "Microsoft.Extensions.Primitives": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.FileProviders.Physical/9.0.0": { - "dependencies": { - "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", - "Microsoft.Extensions.FileSystemGlobbing": "9.0.0", - "Microsoft.Extensions.Primitives": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.FileProviders.Physical.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.FileSystemGlobbing/9.0.0": { - "runtime": { - "lib/net9.0/Microsoft.Extensions.FileSystemGlobbing.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Hosting/9.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration": "9.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", - "Microsoft.Extensions.Configuration.Binder": "9.0.0", - "Microsoft.Extensions.Configuration.CommandLine": "9.0.0", - "Microsoft.Extensions.Configuration.EnvironmentVariables": "9.0.0", - "Microsoft.Extensions.Configuration.FileExtensions": "9.0.0", - "Microsoft.Extensions.Configuration.Json": "9.0.0", - "Microsoft.Extensions.Configuration.UserSecrets": "9.0.0", - "Microsoft.Extensions.DependencyInjection": "9.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", - "Microsoft.Extensions.Diagnostics": "9.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", - "Microsoft.Extensions.FileProviders.Physical": "9.0.0", - "Microsoft.Extensions.Hosting.Abstractions": "9.0.0", - "Microsoft.Extensions.Logging": "9.0.0", - "Microsoft.Extensions.Logging.Abstractions": "9.0.0", - "Microsoft.Extensions.Logging.Configuration": "9.0.0", - "Microsoft.Extensions.Logging.Console": "9.0.0", - "Microsoft.Extensions.Logging.Debug": "9.0.0", - "Microsoft.Extensions.Logging.EventLog": "9.0.0", - "Microsoft.Extensions.Logging.EventSource": "9.0.0", - "Microsoft.Extensions.Options": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Hosting.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Hosting.Abstractions/9.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", - "Microsoft.Extensions.Diagnostics.Abstractions": "9.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", - "Microsoft.Extensions.Logging.Abstractions": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Hosting.Abstractions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Logging/9.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "9.0.0", - "Microsoft.Extensions.Logging.Abstractions": "9.0.0", - "Microsoft.Extensions.Options": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Logging.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Logging.Abstractions/9.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Logging.Configuration/9.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration": "9.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", - "Microsoft.Extensions.Configuration.Binder": "9.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", - "Microsoft.Extensions.Logging": "9.0.0", - "Microsoft.Extensions.Logging.Abstractions": "9.0.0", - "Microsoft.Extensions.Options": "9.0.0", - "Microsoft.Extensions.Options.ConfigurationExtensions": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Logging.Configuration.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Logging.Console/9.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", - "Microsoft.Extensions.Logging": "9.0.0", - "Microsoft.Extensions.Logging.Abstractions": "9.0.0", - "Microsoft.Extensions.Logging.Configuration": "9.0.0", - "Microsoft.Extensions.Options": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Logging.Console.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Logging.Debug/9.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", - "Microsoft.Extensions.Logging": "9.0.0", - "Microsoft.Extensions.Logging.Abstractions": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Logging.Debug.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Logging.EventLog/9.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", - "Microsoft.Extensions.Logging": "9.0.0", - "Microsoft.Extensions.Logging.Abstractions": "9.0.0", - "Microsoft.Extensions.Options": "9.0.0", - "System.Diagnostics.EventLog": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Logging.EventLog.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Logging.EventSource/9.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", - "Microsoft.Extensions.Logging": "9.0.0", - "Microsoft.Extensions.Logging.Abstractions": "9.0.0", - "Microsoft.Extensions.Options": "9.0.0", - "Microsoft.Extensions.Primitives": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Logging.EventSource.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Options/9.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", - "Microsoft.Extensions.Primitives": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Options.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Options.ConfigurationExtensions/9.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", - "Microsoft.Extensions.Configuration.Binder": "9.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", - "Microsoft.Extensions.Options": "9.0.0", - "Microsoft.Extensions.Primitives": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Primitives/9.0.0": { - "runtime": { - "lib/net9.0/Microsoft.Extensions.Primitives.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.NETCore.Platforms/1.1.0": {}, - "Microsoft.NETCore.Targets/1.1.0": {}, - "Onigwrap/1.0.6": { - "runtime": { - "lib/netstandard2.0/Onigwrap.dll": { - "assemblyVersion": "1.0.6.0", - "fileVersion": "1.0.6.0" - } - }, - "runtimeTargets": { - "runtimes/linux-arm64/native/libonigwrap.so": { - "rid": "linux-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-musl-arm64/native/libonigwrap.so": { - "rid": "linux-musl-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-musl-x64/native/libonigwrap.so": { - "rid": "linux-musl-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-x64/native/libonigwrap.so": { - "rid": "linux-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx/native/libonigwrap.dylib": { - "rid": "osx", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/win-arm64/native/libonigwrap.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/win-x64/native/libonigwrap.dll": { - "rid": "win-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/win-x86/native/libonigwrap.dll": { - "rid": "win-x86", - "assetType": "native", - "fileVersion": "0.0.0.0" - } - } - }, - "ReactiveUI/20.1.1": { - "dependencies": { - "DynamicData": "8.4.1", - "Splat": "15.1.1", - "System.ComponentModel.Annotations": "5.0.0" - }, - "runtime": { - "lib/net8.0/ReactiveUI.dll": { - "assemblyVersion": "20.1.0.0", - "fileVersion": "20.1.1.46356" - } - } - }, - "SkiaSharp/2.88.9": { - "dependencies": { - "SkiaSharp.NativeAssets.Win32": "2.88.9", - "SkiaSharp.NativeAssets.macOS": "2.88.9" - }, - "runtime": { - "lib/net6.0/SkiaSharp.dll": { - "assemblyVersion": "2.88.0.0", - "fileVersion": "2.88.9.0" - } - } - }, - "SkiaSharp.NativeAssets.Linux/2.88.9": { - "dependencies": { - "SkiaSharp": "2.88.9" - }, - "runtimeTargets": { - "runtimes/linux-arm/native/libSkiaSharp.so": { - "rid": "linux-arm", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-arm64/native/libSkiaSharp.so": { - "rid": "linux-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-musl-x64/native/libSkiaSharp.so": { - "rid": "linux-musl-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-x64/native/libSkiaSharp.so": { - "rid": "linux-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - } - } - }, - "SkiaSharp.NativeAssets.macOS/2.88.9": { - "runtimeTargets": { - "runtimes/osx/native/libSkiaSharp.dylib": { - "rid": "osx", - "assetType": "native", - "fileVersion": "0.0.0.0" - } - } - }, - "SkiaSharp.NativeAssets.WebAssembly/2.88.9": {}, - "SkiaSharp.NativeAssets.Win32/2.88.9": { - "runtimeTargets": { - "runtimes/win-arm64/native/libSkiaSharp.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/win-x64/native/libSkiaSharp.dll": { - "rid": "win-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/win-x86/native/libSkiaSharp.dll": { - "rid": "win-x86", - "assetType": "native", - "fileVersion": "0.0.0.0" - } - } - }, - "Splat/15.1.1": { - "runtime": { - "lib/net8.0/Splat.dll": { - "assemblyVersion": "15.1.0.0", - "fileVersion": "15.1.1.17670" - } - } - }, - "System.Collections/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Collections.Immutable/1.6.0": {}, - "System.ComponentModel.Annotations/5.0.0": {}, - "System.Diagnostics.Debug/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Diagnostics.EventLog/9.0.0": { - "runtime": { - "lib/net9.0/System.Diagnostics.EventLog.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net9.0/System.Diagnostics.EventLog.Messages.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "9.0.0.0", - "fileVersion": "0.0.0.0" - }, - "runtimes/win/lib/net9.0/System.Diagnostics.EventLog.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "System.Globalization/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.IO/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.IO.FileSystem/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.IO.Pipelines/8.0.0": {}, - "System.Reactive/6.0.1": { - "runtime": { - "lib/net6.0/System.Reactive.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1.7420" - } - } - }, - "System.Reflection/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Resources.ResourceManager/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "System.Runtime.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime.Handles/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime.InteropServices/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - } - }, - "System.Text.Encoding/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Text.Encoding.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0" - } - }, - "System.Text.Json/8.0.5": {}, - "System.Text.RegularExpressions/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Threading.Tasks/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Threading.Tasks.Extensions/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Xml.ReaderWriter/4.3.1": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Tasks.Extensions": "4.3.0" - } - }, - "TextMateSharp/1.0.65": { - "dependencies": { - "Onigwrap": "1.0.6", - "System.Text.Json": "8.0.5" - }, - "runtime": { - "lib/netstandard2.0/TextMateSharp.dll": { - "assemblyVersion": "1.0.65.0", - "fileVersion": "1.0.65.0" - } - } - }, - "TextMateSharp.Grammars/1.0.65": { - "dependencies": { - "System.Text.Json": "8.0.5", - "TextMateSharp": "1.0.65" - }, - "runtime": { - "lib/netstandard2.0/TextMateSharp.Grammars.dll": { - "assemblyVersion": "1.0.65.0", - "fileVersion": "1.0.65.0" - } - } - }, - "Tmds.DBus.Protocol/0.21.2": { - "dependencies": { - "System.IO.Pipelines": "8.0.0" - }, - "runtime": { - "lib/net8.0/Tmds.DBus.Protocol.dll": { - "assemblyVersion": "0.21.2.0", - "fileVersion": "0.21.2.0" - } - } - } - } - }, - "libraries": { - "MyAvaloniaApp/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "Avalonia/11.3.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-QlVvaYTSTqzoUflmAEMuPzi3vYdybEIXmFQgLZxdTbzTeyhlwKZ1WqtLwHVe1Fbt8oGSCqYYKsU8SViZsdXR2Q==", - "path": "avalonia/11.3.7", - "hashPath": "avalonia.11.3.7.nupkg.sha512" - }, - "Avalonia.Angle.Windows.Natives/2.1.25547.20250602": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZL0VLc4s9rvNNFt19Pxm5UNAkmKNylugAwJPX9ulXZ6JWs/l6XZihPWWTyezaoNOVyEPU8YbURtW7XMAtqXH5A==", - "path": "avalonia.angle.windows.natives/2.1.25547.20250602", - "hashPath": "avalonia.angle.windows.natives.2.1.25547.20250602.nupkg.sha512" - }, - "Avalonia.AvaloniaEdit/11.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9M/jJb4DPqQmKtNMZn6+vpqlf+ZGMtK8vEBpPVP3De1xRCu1hv4ZAtoA8hY6bYj2hgv/luete3ixoOsEQ++YJQ==", - "path": "avalonia.avaloniaedit/11.3.0", - "hashPath": "avalonia.avaloniaedit.11.3.0.nupkg.sha512" - }, - "Avalonia.BuildServices/11.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-k/WwXbqwaCtmE0a90YXB9plT50ok6OgLBIr+DUYK16akJN82iK69kgkL1vGDd8XBvf77JM3O27znBuy7AEoFgg==", - "path": "avalonia.buildservices/11.3.1", - "hashPath": "avalonia.buildservices.11.3.1.nupkg.sha512" - }, - "Avalonia.Controls.ColorPicker/11.3.6": { - "type": "package", - "serviceable": true, - "sha512": "sha512-zgJFM7P7hOS9qcuSUqL2tjBFIsi03qiwAztYjtjtKjfBvLBOrVcmL5qHwjfjeLRLtjHprjMraAHtu3O2vi+51g==", - "path": "avalonia.controls.colorpicker/11.3.6", - "hashPath": "avalonia.controls.colorpicker.11.3.6.nupkg.sha512" - }, - "Avalonia.Desktop/11.3.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-yWYj8M4tpg6YJrGwPIrXPuVUocJsCmT81M+QtVZkEp4PZOUkm21tviaI4BGrY8eQYHuRRy7k/vcVxwHqnmQwuA==", - "path": "avalonia.desktop/11.3.7", - "hashPath": "avalonia.desktop.11.3.7.nupkg.sha512" - }, - "Avalonia.Diagnostics/11.3.6": { - "type": "package", - "serviceable": true, - "sha512": "sha512-iOGrfU/0TudsfHARpsreVt5V1oaer838IghYdgZjlOvGKmh5J1uc5GOSBmBodUpuPDE78wmdVrJZLC57qsndzg==", - "path": "avalonia.diagnostics/11.3.6", - "hashPath": "avalonia.diagnostics.11.3.6.nupkg.sha512" - }, - "Avalonia.Fonts.Inter/11.3.6": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ASuCuosS8elNsRxNpdZE/UrmMSh1wtwoqRDEgpdcbVuMRUH/8ElCur5PdyWhJSwIit/YXaS+xb2xQAGOnvT45w==", - "path": "avalonia.fonts.inter/11.3.6", - "hashPath": "avalonia.fonts.inter.11.3.6.nupkg.sha512" - }, - "Avalonia.FreeDesktop/11.3.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-4K36zaeYiZT/6S5if5fXGDAdJL4u4zuO0k33VrLpdflkVCjgPrd1WhK3qxJrgF9YNRwpkvbxnTtZzSP2X6AfKg==", - "path": "avalonia.freedesktop/11.3.7", - "hashPath": "avalonia.freedesktop.11.3.7.nupkg.sha512" - }, - "Avalonia.Native/11.3.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KONYDXAlqGpMwaVrRQTp4MnbUbiG34nEYMUl3iYkgl9qP54rR/iJgDh8Xo0UfEC9Tjc/N3kV4gmhcSrOT7NCbA==", - "path": "avalonia.native/11.3.7", - "hashPath": "avalonia.native.11.3.7.nupkg.sha512" - }, - "Avalonia.ReactiveUI/11.3.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YtNQVvFVxWMP2ZKxbYWH6PIqPh/0PushbyMBWu6K/mNQaZqMRIavdZCUy8+t6FiX1IIaVPPmM6AqniWjIBo0VA==", - "path": "avalonia.reactiveui/11.3.7", - "hashPath": "avalonia.reactiveui.11.3.7.nupkg.sha512" - }, - "Avalonia.Remote.Protocol/11.3.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xI/QoELcb/U4qSm1KDXRRaA1qy+QgyHlgTS6EN7crV/6Ldzdv990rk6ClFa2RajHhvEm2i6S8kVx2paWZIOHHw==", - "path": "avalonia.remote.protocol/11.3.7", - "hashPath": "avalonia.remote.protocol.11.3.7.nupkg.sha512" - }, - "Avalonia.Skia/11.3.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-nDTop5duFQBdsR3YzLs/w0rhOdOB6szZQLD2vMCe8FDkKQM4j35sXMKVUcTtvSts3x8yo5DEarXfWU1viY2gng==", - "path": "avalonia.skia/11.3.7", - "hashPath": "avalonia.skia.11.3.7.nupkg.sha512" - }, - "Avalonia.Themes.Fluent/11.3.6": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YQ3x66qgMqDxbQoLTqYKGA7yXnxi8fzDL9+CITPrXrVZimlemWmjYqE0NWgd2c78gpp7dNEV4eYzwbbr8bH+9A==", - "path": "avalonia.themes.fluent/11.3.6", - "hashPath": "avalonia.themes.fluent.11.3.6.nupkg.sha512" - }, - "Avalonia.Themes.Simple/11.3.6": { - "type": "package", - "serviceable": true, - "sha512": "sha512-MuwYjUI9qMdu7TYyJbBntWlZRJWi6QmAYhMEBEdDgiEO0yUpTiKNLpYSn+MS8Xh9Jm9N4krclBigW7FYJkqLOA==", - "path": "avalonia.themes.simple/11.3.6", - "hashPath": "avalonia.themes.simple.11.3.6.nupkg.sha512" - }, - "Avalonia.Win32/11.3.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-e6EdWKnGvr7WSg4Q3zjej0DQo5FjzwuB+5kqotYVrf+RG/EvP/49P9S257Cjz9A5Br0TCNLny3VBbqPlt4i4Ag==", - "path": "avalonia.win32/11.3.7", - "hashPath": "avalonia.win32.11.3.7.nupkg.sha512" - }, - "Avalonia.X11/11.3.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-1/C3oM/qIRDGnBViXDpCvwsQPq74+QrwXGCzGb3meF0u+7nTZ/obh+fxMGgcq/0QHcq0t7taxsUr1lhVyBtEYw==", - "path": "avalonia.x11/11.3.7", - "hashPath": "avalonia.x11.11.3.7.nupkg.sha512" - }, - "AvaloniaEdit/0.10.12": { - "type": "package", - "serviceable": true, - "sha512": "sha512-zhMa6SPnFypVddpYEOJvNckb9m219wz8bKA+T2CZPDyPaFYKHPOe7jjbW6lFCinilXF+55N64EW8vsoRDwsc2A==", - "path": "avaloniaedit/0.10.12", - "hashPath": "avaloniaedit.0.10.12.nupkg.sha512" - }, - "AvaloniaEdit.TextMate/11.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9yDE7JUGZxWLo5eqhd6FXMHgj4EH2NOQxL030Vja6SBYX5wiLR8Pk67A8DtIabb0tpvEEDPWBBasN70OhjUiwg==", - "path": "avaloniaedit.textmate/11.3.0", - "hashPath": "avaloniaedit.textmate.11.3.0.nupkg.sha512" - }, - "DialogHost.Avalonia/0.9.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-o1acXdUB2yb0zyMS/BXN00K6fwYJIoJXUOXtdmfFnlEVujcMGJIOfnXyKfjruWcaob02K2blJSmwK1bq40c5gQ==", - "path": "dialoghost.avalonia/0.9.3", - "hashPath": "dialoghost.avalonia.0.9.3.nupkg.sha512" - }, - "DynamicData/8.4.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Mn1+fU/jqxgONEJq8KLQPGWEi7g/hUVTbjZyn4QM0sWWDAVOHPO9WjXWORSykwdfg/6S3GM15qsfz+2EvO+QAQ==", - "path": "dynamicdata/8.4.1", - "hashPath": "dynamicdata.8.4.1.nupkg.sha512" - }, - "HarfBuzzSharp/8.3.1.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tLZN66oe/uiRPTZfrCU4i8ScVGwqHNh5MHrXj0yVf4l7Mz0FhTGnQ71RGySROTmdognAs0JtluHkL41pIabWuQ==", - "path": "harfbuzzsharp/8.3.1.1", - "hashPath": "harfbuzzsharp.8.3.1.1.nupkg.sha512" - }, - "HarfBuzzSharp.NativeAssets.Linux/8.3.1.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3EZ1mpIiKWRLL5hUYA82ZHteeDIVaEA/Z0rA/wU6tjx6crcAkJnBPwDXZugBSfo8+J3EznvRJf49uMsqYfKrHg==", - "path": "harfbuzzsharp.nativeassets.linux/8.3.1.1", - "hashPath": "harfbuzzsharp.nativeassets.linux.8.3.1.1.nupkg.sha512" - }, - "HarfBuzzSharp.NativeAssets.macOS/8.3.1.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-jbtCsgftcaFLCA13tVKo5iWdElJScrulLTKJre36O4YQTIlwDtPPqhRZNk+Y0vv4D1gxbscasGRucUDfS44ofQ==", - "path": "harfbuzzsharp.nativeassets.macos/8.3.1.1", - "hashPath": "harfbuzzsharp.nativeassets.macos.8.3.1.1.nupkg.sha512" - }, - "HarfBuzzSharp.NativeAssets.WebAssembly/8.3.1.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-loJweK2u/mH/3C2zBa0ggJlITIszOkK64HLAZB7FUT670dTg965whLFYHDQo69NmC4+d9UN0icLC9VHidXaVCA==", - "path": "harfbuzzsharp.nativeassets.webassembly/8.3.1.1", - "hashPath": "harfbuzzsharp.nativeassets.webassembly.8.3.1.1.nupkg.sha512" - }, - "HarfBuzzSharp.NativeAssets.Win32/8.3.1.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-UsJtQsfAJoFDZrXc4hCUfRPMqccfKZ0iumJ/upcUjz/cmsTgVFGNEL5yaJWmkqsuFYdMWbj/En5/kS4PFl9hBA==", - "path": "harfbuzzsharp.nativeassets.win32/8.3.1.1", - "hashPath": "harfbuzzsharp.nativeassets.win32.8.3.1.1.nupkg.sha512" - }, - "HeroIcons.Avalonia/1.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-wOJIOvexOPubqvxzYqmzNHLup/j3K5n6cEfaeszWy2X8iiVkDM8CiHZU7y/N16mbQvhBHc1zw0QnUFhHN63v4A==", - "path": "heroicons.avalonia/1.0.4", - "hashPath": "heroicons.avalonia.1.0.4.nupkg.sha512" - }, - "MicroCom.Runtime/0.11.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-MEnrZ3UIiH40hjzMDsxrTyi8dtqB5ziv3iBeeU4bXsL/7NLSal9F1lZKpK+tfBRnUoDSdtcW3KufE4yhATOMCA==", - "path": "microcom.runtime/0.11.0", - "hashPath": "microcom.runtime.0.11.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YIMO9T3JL8MeEXgVozKt2v79hquo/EFtnY0vgxmLnUvk1Rei/halI7kOWZL2RBeV9FMGzgM9LZA8CVaNwFMaNA==", - "path": "microsoft.extensions.configuration/9.0.0", - "hashPath": "microsoft.extensions.configuration.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Abstractions/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lqvd7W3FGKUO1+ZoUEMaZ5XDJeWvjpy2/M/ptCGz3tXLD4HWVaSzjufsAsjemasBEg+2SxXVtYVvGt5r2nKDlg==", - "path": "microsoft.extensions.configuration.abstractions/9.0.0", - "hashPath": "microsoft.extensions.configuration.abstractions.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Binder/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-RiScL99DcyngY9zJA2ROrri7Br8tn5N4hP4YNvGdTN/bvg1A3dwvDOxHnNZ3Im7x2SJ5i4LkX1uPiR/MfSFBLQ==", - "path": "microsoft.extensions.configuration.binder/9.0.0", - "hashPath": "microsoft.extensions.configuration.binder.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.CommandLine/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-qD+hdkBtR9Ps7AxfhTJCnoVakkadHgHlD1WRN0QHGHod+SDuca1ao1kF4G2rmpAz2AEKrE2N2vE8CCCZ+ILnNw==", - "path": "microsoft.extensions.configuration.commandline/9.0.0", - "hashPath": "microsoft.extensions.configuration.commandline.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.EnvironmentVariables/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-v5R638eNMxksfXb7MFnkPwLPp+Ym4W/SIGNuoe8qFVVyvygQD5DdLusybmYSJEr9zc1UzWzim/ATKeIOVvOFDg==", - "path": "microsoft.extensions.configuration.environmentvariables/9.0.0", - "hashPath": "microsoft.extensions.configuration.environmentvariables.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.FileExtensions/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-4EK93Jcd2lQG4GY6PAw8jGss0ZzFP0vPc1J85mES5fKNuDTqgFXHba9onBw2s18fs3I4vdo2AWyfD1mPAxWSQQ==", - "path": "microsoft.extensions.configuration.fileextensions/9.0.0", - "hashPath": "microsoft.extensions.configuration.fileextensions.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Json/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-WiTK0LrnsqmedrbzwL7f4ZUo+/wByqy2eKab39I380i2rd8ImfCRMrtkqJVGDmfqlkP/YzhckVOwPc5MPrSNpg==", - "path": "microsoft.extensions.configuration.json/9.0.0", - "hashPath": "microsoft.extensions.configuration.json.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.UserSecrets/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FShWw8OysquwV7wQHYkkz0VWsJSo6ETUu4h7tJRMtnG0uR+tzKOldhcO8xB1pGSOI3Ng6v3N1Q94YO8Rzq1P6A==", - "path": "microsoft.extensions.configuration.usersecrets/9.0.0", - "hashPath": "microsoft.extensions.configuration.usersecrets.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-MCPrg7v3QgNMr0vX4vzRXvkNGgLg8vKWX0nKCWUxu2uPyMsaRgiRc1tHBnbTcfJMhMKj2slE/j2M9oGkd25DNw==", - "path": "microsoft.extensions.dependencyinjection/9.0.0", - "hashPath": "microsoft.extensions.dependencyinjection.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+6f2qv2a3dLwd5w6JanPIPs47CxRbnk+ZocMJUhv9NxP88VlOcJYZs9jY+MYSjxvady08bUZn6qgiNh7DadGgg==", - "path": "microsoft.extensions.dependencyinjection.abstractions/9.0.0", - "hashPath": "microsoft.extensions.dependencyinjection.abstractions.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Diagnostics/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-0CF9ZrNw5RAlRfbZuVIvzzhP8QeWqHiUmMBU/2H7Nmit8/vwP3/SbHeEctth7D4Gz2fBnEbokPc1NU8/j/1ZLw==", - "path": "microsoft.extensions.diagnostics/9.0.0", - "hashPath": "microsoft.extensions.diagnostics.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Diagnostics.Abstractions/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-1K8P7XzuzX8W8pmXcZjcrqS6x5eSSdvhQohmcpgiQNY/HlDAlnrhR9dvlURfFz428A+RTCJpUyB+aKTA6AgVcQ==", - "path": "microsoft.extensions.diagnostics.abstractions/9.0.0", - "hashPath": "microsoft.extensions.diagnostics.abstractions.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.FileProviders.Abstractions/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uK439QzYR0q2emLVtYzwyK3x+T5bTY4yWsd/k/ZUS9LR6Sflp8MIdhGXW8kQCd86dQD4tLqvcbLkku8qHY263Q==", - "path": "microsoft.extensions.fileproviders.abstractions/9.0.0", - "hashPath": "microsoft.extensions.fileproviders.abstractions.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.FileProviders.Physical/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3+ZUSpOSmie+o8NnLIRqCxSh65XL/ExU7JYnFOg58awDRlY3lVpZ9A369jkoZL1rpsq7LDhEfkn2ghhGaY1y5Q==", - "path": "microsoft.extensions.fileproviders.physical/9.0.0", - "hashPath": "microsoft.extensions.fileproviders.physical.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.FileSystemGlobbing/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-jGFKZiXs2HNseK3NK/rfwHNNovER71jSj4BD1a/649ml9+h6oEtYd0GSALZDNW8jZ2Rh+oAeadOa6sagYW1F2A==", - "path": "microsoft.extensions.filesystemglobbing/9.0.0", - "hashPath": "microsoft.extensions.filesystemglobbing.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Hosting/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-wNmQWRCa83HYbpxQ3wH7xBn8oyGjONSj1k8svzrFUFyJMfg/Ja/g0NfI0p85wxlUxBh97A6ypmL8X5vVUA5y2Q==", - "path": "microsoft.extensions.hosting/9.0.0", - "hashPath": "microsoft.extensions.hosting.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Hosting.Abstractions/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-yUKJgu81ExjvqbNWqZKshBbLntZMbMVz/P7Way2SBx7bMqA08Mfdc9O7hWDKAiSp+zPUGT6LKcSCQIPeDK+CCw==", - "path": "microsoft.extensions.hosting.abstractions/9.0.0", - "hashPath": "microsoft.extensions.hosting.abstractions.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-crjWyORoug0kK7RSNJBTeSE6VX8IQgLf3nUpTB9m62bPXp/tzbnOsnbe8TXEG0AASNaKZddnpHKw7fET8E++Pg==", - "path": "microsoft.extensions.logging/9.0.0", - "hashPath": "microsoft.extensions.logging.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Abstractions/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-g0UfujELzlLbHoVG8kPKVBaW470Ewi+jnptGS9KUi6jcb+k2StujtK3m26DFSGGwQ/+bVgZfsWqNzlP6YOejvw==", - "path": "microsoft.extensions.logging.abstractions/9.0.0", - "hashPath": "microsoft.extensions.logging.abstractions.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Configuration/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-H05HiqaNmg6GjH34ocYE9Wm1twm3Oz2aXZko8GTwGBzM7op2brpAA8pJ5yyD1OpS1mXUtModBYOlcZ/wXeWsSg==", - "path": "microsoft.extensions.logging.configuration/9.0.0", - "hashPath": "microsoft.extensions.logging.configuration.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Console/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-yDZ4zsjl7N0K+R/1QTNpXBd79Kaf4qNLHtjk4NaG82UtNg2Z6etJywwv6OarOv3Rp7ocU7uIaRY4CrzHRO/d3w==", - "path": "microsoft.extensions.logging.console/9.0.0", - "hashPath": "microsoft.extensions.logging.console.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Debug/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-4wGlHsrLhYjLw4sFkfRixu2w4DK7dv60OjbvgbLGhUJk0eUPxYHhnszZ/P18nnAkfrPryvtOJ3ZTVev0kpqM6A==", - "path": "microsoft.extensions.logging.debug/9.0.0", - "hashPath": "microsoft.extensions.logging.debug.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.EventLog/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/B8I5bScondnLMNULA3PBu/7Gvmv/P7L83j7gVrmLh6R+HCgHqUNIwVvzCok4ZjIXN2KxrsONHjFYwoBK5EJgQ==", - "path": "microsoft.extensions.logging.eventlog/9.0.0", - "hashPath": "microsoft.extensions.logging.eventlog.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.EventSource/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-zvSjdOAb3HW3aJPM5jf+PR9UoIkoci9id80RXmBgrDEozWI0GDw8tdmpyZgZSwFDvGCwHFodFLNQaeH8879rlA==", - "path": "microsoft.extensions.logging.eventsource/9.0.0", - "hashPath": "microsoft.extensions.logging.eventsource.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Options/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-y2146b3jrPI3Q0lokKXdKLpmXqakYbDIPDV6r3M8SqvSf45WwOTzkyfDpxnZXJsJQEpAsAqjUq5Pu8RCJMjubg==", - "path": "microsoft.extensions.options/9.0.0", - "hashPath": "microsoft.extensions.options.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Options.ConfigurationExtensions/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Ob3FXsXkcSMQmGZi7qP07EQ39kZpSBlTcAZLbJLdI4FIf0Jug8biv2HTavWmnTirchctPlq9bl/26CXtQRguzA==", - "path": "microsoft.extensions.options.configurationextensions/9.0.0", - "hashPath": "microsoft.extensions.options.configurationextensions.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Primitives/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-N3qEBzmLMYiASUlKxxFIISP4AiwuPTHF5uCh+2CWSwwzAJiIYx0kBJsS30cp1nvhSySFAVi30jecD307jV+8Kg==", - "path": "microsoft.extensions.primitives/9.0.0", - "hashPath": "microsoft.extensions.primitives.9.0.0.nupkg.sha512" - }, - "Microsoft.NETCore.Platforms/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", - "path": "microsoft.netcore.platforms/1.1.0", - "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" - }, - "Microsoft.NETCore.Targets/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", - "path": "microsoft.netcore.targets/1.1.0", - "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" - }, - "Onigwrap/1.0.6": { - "type": "package", - "serviceable": true, - "sha512": "sha512-nqmemnwPFmcLPINSEUsbj/jdZ+vhaRMG3E7G/4yGwFEzWusfCgucutMsIKxRXLo0buon35uZeXadnnT6r8fuqQ==", - "path": "onigwrap/1.0.6", - "hashPath": "onigwrap.1.0.6.nupkg.sha512" - }, - "ReactiveUI/20.1.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9hNPknWjijnaSWs6auypoXqUptPZcRpUypF+cf1zD50fgW+SEoQda502N3fVZ2eWPcaiUad+z6GaLwOWmUVHNw==", - "path": "reactiveui/20.1.1", - "hashPath": "reactiveui.20.1.1.nupkg.sha512" - }, - "SkiaSharp/2.88.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3MD5VHjXXieSHCleRLuaTXmL2pD0mB7CcOB1x2kA1I4bhptf4e3R27iM93264ZYuAq6mkUyX5XbcxnZvMJYc1Q==", - "path": "skiasharp/2.88.9", - "hashPath": "skiasharp.2.88.9.nupkg.sha512" - }, - "SkiaSharp.NativeAssets.Linux/2.88.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-cWSaJKVPWAaT/WIn9c8T5uT/l4ETwHxNJTkEOtNKjphNo8AW6TF9O32aRkxqw3l8GUdUo66Bu7EiqtFh/XG0Zg==", - "path": "skiasharp.nativeassets.linux/2.88.9", - "hashPath": "skiasharp.nativeassets.linux.2.88.9.nupkg.sha512" - }, - "SkiaSharp.NativeAssets.macOS/2.88.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Nv5spmKc4505Ep7oUoJ5vp3KweFpeNqxpyGDWyeEPTX2uR6S6syXIm3gj75dM0YJz7NPvcix48mR5laqs8dPuA==", - "path": "skiasharp.nativeassets.macos/2.88.9", - "hashPath": "skiasharp.nativeassets.macos.2.88.9.nupkg.sha512" - }, - "SkiaSharp.NativeAssets.WebAssembly/2.88.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kt06RccBHSnAs2wDYdBSfsjIDbY3EpsOVqnlDgKdgvyuRA8ZFDaHRdWNx1VHjGgYzmnFCGiTJBnXFl5BqGwGnA==", - "path": "skiasharp.nativeassets.webassembly/2.88.9", - "hashPath": "skiasharp.nativeassets.webassembly.2.88.9.nupkg.sha512" - }, - "SkiaSharp.NativeAssets.Win32/2.88.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-wb2kYgU7iy84nQLYZwMeJXixvK++GoIuECjU4ECaUKNuflyRlJKyiRhN1MAHswvlvzuvkrjRWlK0Za6+kYQK7w==", - "path": "skiasharp.nativeassets.win32/2.88.9", - "hashPath": "skiasharp.nativeassets.win32.2.88.9.nupkg.sha512" - }, - "Splat/15.1.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-RHDTdF90FwVbRia2cmuIzkiVoETqnXSB2dDBBi/I35HWXqv4OKGqoMcfcd6obMvO2OmmY5PjU1M62K8LkJafAA==", - "path": "splat/15.1.1", - "hashPath": "splat.15.1.1.nupkg.sha512" - }, - "System.Collections/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", - "path": "system.collections/4.3.0", - "hashPath": "system.collections.4.3.0.nupkg.sha512" - }, - "System.Collections.Immutable/1.6.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+aL946rTSJyo4PqstwsVZ5RBfaxfkIx+nTMfpmaxzorqgifRJwndBZhXPWNWGJpys7cQ1/vCvilYN9ugM05JFA==", - "path": "system.collections.immutable/1.6.0", - "hashPath": "system.collections.immutable.1.6.0.nupkg.sha512" - }, - "System.ComponentModel.Annotations/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==", - "path": "system.componentmodel.annotations/5.0.0", - "hashPath": "system.componentmodel.annotations.5.0.0.nupkg.sha512" - }, - "System.Diagnostics.Debug/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", - "path": "system.diagnostics.debug/4.3.0", - "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.EventLog/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-qd01+AqPhbAG14KtdtIqFk+cxHQFZ/oqRSCoxU1F+Q6Kv0cl726sl7RzU9yLFGd4BUOKdN4XojXF0pQf/R6YeA==", - "path": "system.diagnostics.eventlog/9.0.0", - "hashPath": "system.diagnostics.eventlog.9.0.0.nupkg.sha512" - }, - "System.Globalization/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", - "path": "system.globalization/4.3.0", - "hashPath": "system.globalization.4.3.0.nupkg.sha512" - }, - "System.IO/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", - "path": "system.io/4.3.0", - "hashPath": "system.io.4.3.0.nupkg.sha512" - }, - "System.IO.FileSystem/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", - "path": "system.io.filesystem/4.3.0", - "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", - "path": "system.io.filesystem.primitives/4.3.0", - "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" - }, - "System.IO.Pipelines/8.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FHNOatmUq0sqJOkTx+UF/9YK1f180cnW5FVqnQMvYUN0elp6wFzbtPSiqbo1/ru8ICp43JM1i7kKkk6GsNGHlA==", - "path": "system.io.pipelines/8.0.0", - "hashPath": "system.io.pipelines.8.0.0.nupkg.sha512" - }, - "System.Reactive/6.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rHaWtKDwCi9qJ3ObKo8LHPMuuwv33YbmQi7TcUK1C264V3MFnOr5Im7QgCTdLniztP3GJyeiSg5x8NqYJFqRmg==", - "path": "system.reactive/6.0.1", - "hashPath": "system.reactive.6.0.1.nupkg.sha512" - }, - "System.Reflection/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", - "path": "system.reflection/4.3.0", - "hashPath": "system.reflection.4.3.0.nupkg.sha512" - }, - "System.Reflection.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", - "path": "system.reflection.primitives/4.3.0", - "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" - }, - "System.Resources.ResourceManager/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", - "path": "system.resources.resourcemanager/4.3.0", - "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" - }, - "System.Runtime/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", - "path": "system.runtime/4.3.0", - "hashPath": "system.runtime.4.3.0.nupkg.sha512" - }, - "System.Runtime.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", - "path": "system.runtime.extensions/4.3.0", - "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" - }, - "System.Runtime.Handles/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", - "path": "system.runtime.handles/4.3.0", - "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" - }, - "System.Runtime.InteropServices/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", - "path": "system.runtime.interopservices/4.3.0", - "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" - }, - "System.Text.Encoding/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", - "path": "system.text.encoding/4.3.0", - "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" - }, - "System.Text.Encoding.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", - "path": "system.text.encoding.extensions/4.3.0", - "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512" - }, - "System.Text.Json/8.0.5": { - "type": "package", - "serviceable": true, - "sha512": "sha512-0f1B50Ss7rqxXiaBJyzUu9bWFOO2/zSlifZ/UNMdiIpDYe4cY4LQQicP4nirK1OS31I43rn062UIJ1Q9bpmHpg==", - "path": "system.text.json/8.0.5", - "hashPath": "system.text.json.8.0.5.nupkg.sha512" - }, - "System.Text.RegularExpressions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", - "path": "system.text.regularexpressions/4.3.0", - "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" - }, - "System.Threading.Tasks/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", - "path": "system.threading.tasks/4.3.0", - "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" - }, - "System.Threading.Tasks.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==", - "path": "system.threading.tasks.extensions/4.3.0", - "hashPath": "system.threading.tasks.extensions.4.3.0.nupkg.sha512" - }, - "System.Xml.ReaderWriter/4.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-fVU1Xp9TEOHv1neQDtcJ4hNfYJ1pjfXzKY3VFeiRZK6HTV4Af2Ihyvq1FkPLrL1hzZhXv7NTmowQnL5DgTzIKA==", - "path": "system.xml.readerwriter/4.3.1", - "hashPath": "system.xml.readerwriter.4.3.1.nupkg.sha512" - }, - "TextMateSharp/1.0.65": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vwIPl5efIkYtVp+rewrn81Pjs3Vz0RbKJcjDjuRK/YUKsSMEADm4zVFnIWRrGe8LbM0ATpphwMr3G62PBOTrHA==", - "path": "textmatesharp/1.0.65", - "hashPath": "textmatesharp.1.0.65.nupkg.sha512" - }, - "TextMateSharp.Grammars/1.0.65": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ga+Uz5iyb75nuQY9hmALiWdeMkFZknJKrIvVDCrI3iZ0Ff9+tk0CqRKr0/KVR/Gg7MEY21cCtMYUbkBVczdwBA==", - "path": "textmatesharp.grammars/1.0.65", - "hashPath": "textmatesharp.grammars.1.0.65.nupkg.sha512" - }, - "Tmds.DBus.Protocol/0.21.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ScSMrUrrw8px4kK1Glh0fZv/HQUlg1078bNXNPfRPKQ3WbRzV9HpsydYEOgSoMK5LWICMf2bMwIFH0pGjxjcMA==", - "path": "tmds.dbus.protocol/0.21.2", - "hashPath": "tmds.dbus.protocol.0.21.2.nupkg.sha512" - } - } -} \ No newline at end of file diff --git a/bin/Debug/net9.0/MyAvaloniaApp.dll b/bin/Debug/net9.0/MyAvaloniaApp.dll deleted file mode 100644 index 0c043aa..0000000 Binary files a/bin/Debug/net9.0/MyAvaloniaApp.dll and /dev/null differ diff --git a/bin/Debug/net9.0/MyAvaloniaApp.exe b/bin/Debug/net9.0/MyAvaloniaApp.exe deleted file mode 100644 index 9e63c13..0000000 Binary files a/bin/Debug/net9.0/MyAvaloniaApp.exe and /dev/null differ diff --git a/bin/Debug/net9.0/MyAvaloniaApp.pdb b/bin/Debug/net9.0/MyAvaloniaApp.pdb deleted file mode 100644 index 121cb8f..0000000 Binary files a/bin/Debug/net9.0/MyAvaloniaApp.pdb and /dev/null differ diff --git a/bin/Debug/net9.0/MyAvaloniaApp.runtimeconfig.json b/bin/Debug/net9.0/MyAvaloniaApp.runtimeconfig.json deleted file mode 100644 index 52317ef..0000000 --- a/bin/Debug/net9.0/MyAvaloniaApp.runtimeconfig.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "runtimeOptions": { - "tfm": "net9.0", - "framework": { - "name": "Microsoft.NETCore.App", - "version": "9.0.0" - }, - "configProperties": { - "System.Runtime.InteropServices.BuiltInComInterop.IsSupported": true, - "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false - } - } -} \ No newline at end of file diff --git a/bin/Release/net9.0/linux-x64/Avalonia.Base.dll b/bin/Release/net9.0/linux-x64/Avalonia.Base.dll deleted file mode 100644 index 7b0bb98..0000000 Binary files a/bin/Release/net9.0/linux-x64/Avalonia.Base.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/Avalonia.Controls.dll b/bin/Release/net9.0/linux-x64/Avalonia.Controls.dll deleted file mode 100644 index 31d9d2e..0000000 Binary files a/bin/Release/net9.0/linux-x64/Avalonia.Controls.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/Avalonia.DesignerSupport.dll b/bin/Release/net9.0/linux-x64/Avalonia.DesignerSupport.dll deleted file mode 100644 index 5b1035e..0000000 Binary files a/bin/Release/net9.0/linux-x64/Avalonia.DesignerSupport.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/Avalonia.Desktop.dll b/bin/Release/net9.0/linux-x64/Avalonia.Desktop.dll deleted file mode 100644 index 0450996..0000000 Binary files a/bin/Release/net9.0/linux-x64/Avalonia.Desktop.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/Avalonia.Dialogs.dll b/bin/Release/net9.0/linux-x64/Avalonia.Dialogs.dll deleted file mode 100644 index e7f0feb..0000000 Binary files a/bin/Release/net9.0/linux-x64/Avalonia.Dialogs.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/Avalonia.Fonts.Inter.dll b/bin/Release/net9.0/linux-x64/Avalonia.Fonts.Inter.dll deleted file mode 100644 index 7e017b2..0000000 Binary files a/bin/Release/net9.0/linux-x64/Avalonia.Fonts.Inter.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/Avalonia.FreeDesktop.dll b/bin/Release/net9.0/linux-x64/Avalonia.FreeDesktop.dll deleted file mode 100644 index 2a31039..0000000 Binary files a/bin/Release/net9.0/linux-x64/Avalonia.FreeDesktop.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/Avalonia.Markup.Xaml.dll b/bin/Release/net9.0/linux-x64/Avalonia.Markup.Xaml.dll deleted file mode 100644 index f42aabc..0000000 Binary files a/bin/Release/net9.0/linux-x64/Avalonia.Markup.Xaml.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/Avalonia.Markup.dll b/bin/Release/net9.0/linux-x64/Avalonia.Markup.dll deleted file mode 100644 index 35abbea..0000000 Binary files a/bin/Release/net9.0/linux-x64/Avalonia.Markup.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/Avalonia.Metal.dll b/bin/Release/net9.0/linux-x64/Avalonia.Metal.dll deleted file mode 100644 index 6344e67..0000000 Binary files a/bin/Release/net9.0/linux-x64/Avalonia.Metal.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/Avalonia.MicroCom.dll b/bin/Release/net9.0/linux-x64/Avalonia.MicroCom.dll deleted file mode 100644 index 6651d2b..0000000 Binary files a/bin/Release/net9.0/linux-x64/Avalonia.MicroCom.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/Avalonia.Native.dll b/bin/Release/net9.0/linux-x64/Avalonia.Native.dll deleted file mode 100644 index 7b48670..0000000 Binary files a/bin/Release/net9.0/linux-x64/Avalonia.Native.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/Avalonia.OpenGL.dll b/bin/Release/net9.0/linux-x64/Avalonia.OpenGL.dll deleted file mode 100644 index 499e2c8..0000000 Binary files a/bin/Release/net9.0/linux-x64/Avalonia.OpenGL.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/Avalonia.ReactiveUI.dll b/bin/Release/net9.0/linux-x64/Avalonia.ReactiveUI.dll deleted file mode 100644 index ec1a87f..0000000 Binary files a/bin/Release/net9.0/linux-x64/Avalonia.ReactiveUI.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/Avalonia.Remote.Protocol.dll b/bin/Release/net9.0/linux-x64/Avalonia.Remote.Protocol.dll deleted file mode 100644 index aee582b..0000000 Binary files a/bin/Release/net9.0/linux-x64/Avalonia.Remote.Protocol.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/Avalonia.Skia.dll b/bin/Release/net9.0/linux-x64/Avalonia.Skia.dll deleted file mode 100644 index 47b428f..0000000 Binary files a/bin/Release/net9.0/linux-x64/Avalonia.Skia.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/Avalonia.Themes.Fluent.dll b/bin/Release/net9.0/linux-x64/Avalonia.Themes.Fluent.dll deleted file mode 100644 index 10f15cd..0000000 Binary files a/bin/Release/net9.0/linux-x64/Avalonia.Themes.Fluent.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/Avalonia.Vulkan.dll b/bin/Release/net9.0/linux-x64/Avalonia.Vulkan.dll deleted file mode 100644 index 89fbc75..0000000 Binary files a/bin/Release/net9.0/linux-x64/Avalonia.Vulkan.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/Avalonia.Win32.Automation.dll b/bin/Release/net9.0/linux-x64/Avalonia.Win32.Automation.dll deleted file mode 100644 index e5f8222..0000000 Binary files a/bin/Release/net9.0/linux-x64/Avalonia.Win32.Automation.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/Avalonia.Win32.dll b/bin/Release/net9.0/linux-x64/Avalonia.Win32.dll deleted file mode 100644 index 8aba526..0000000 Binary files a/bin/Release/net9.0/linux-x64/Avalonia.Win32.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/Avalonia.X11.dll b/bin/Release/net9.0/linux-x64/Avalonia.X11.dll deleted file mode 100644 index 8c8dbf1..0000000 Binary files a/bin/Release/net9.0/linux-x64/Avalonia.X11.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/Avalonia.dll b/bin/Release/net9.0/linux-x64/Avalonia.dll deleted file mode 100644 index 3a0ff77..0000000 Binary files a/bin/Release/net9.0/linux-x64/Avalonia.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/DynamicData.dll b/bin/Release/net9.0/linux-x64/DynamicData.dll deleted file mode 100644 index e1a5dfe..0000000 Binary files a/bin/Release/net9.0/linux-x64/DynamicData.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/HarfBuzzSharp.dll b/bin/Release/net9.0/linux-x64/HarfBuzzSharp.dll deleted file mode 100644 index ee75381..0000000 Binary files a/bin/Release/net9.0/linux-x64/HarfBuzzSharp.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/MicroCom.Runtime.dll b/bin/Release/net9.0/linux-x64/MicroCom.Runtime.dll deleted file mode 100644 index f6cf008..0000000 Binary files a/bin/Release/net9.0/linux-x64/MicroCom.Runtime.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/Microsoft.CSharp.dll b/bin/Release/net9.0/linux-x64/Microsoft.CSharp.dll deleted file mode 100644 index 685c50a..0000000 Binary files a/bin/Release/net9.0/linux-x64/Microsoft.CSharp.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/Microsoft.Extensions.Configuration.Abstractions.dll b/bin/Release/net9.0/linux-x64/Microsoft.Extensions.Configuration.Abstractions.dll deleted file mode 100644 index 5e4efae..0000000 Binary files a/bin/Release/net9.0/linux-x64/Microsoft.Extensions.Configuration.Abstractions.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/Microsoft.Extensions.Configuration.Binder.dll b/bin/Release/net9.0/linux-x64/Microsoft.Extensions.Configuration.Binder.dll deleted file mode 100644 index fc00f3e..0000000 Binary files a/bin/Release/net9.0/linux-x64/Microsoft.Extensions.Configuration.Binder.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/Microsoft.Extensions.Configuration.CommandLine.dll b/bin/Release/net9.0/linux-x64/Microsoft.Extensions.Configuration.CommandLine.dll deleted file mode 100644 index c483f4e..0000000 Binary files a/bin/Release/net9.0/linux-x64/Microsoft.Extensions.Configuration.CommandLine.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/Microsoft.Extensions.Configuration.EnvironmentVariables.dll b/bin/Release/net9.0/linux-x64/Microsoft.Extensions.Configuration.EnvironmentVariables.dll deleted file mode 100644 index 32aa212..0000000 Binary files a/bin/Release/net9.0/linux-x64/Microsoft.Extensions.Configuration.EnvironmentVariables.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/Microsoft.Extensions.Configuration.FileExtensions.dll b/bin/Release/net9.0/linux-x64/Microsoft.Extensions.Configuration.FileExtensions.dll deleted file mode 100644 index 21229bc..0000000 Binary files a/bin/Release/net9.0/linux-x64/Microsoft.Extensions.Configuration.FileExtensions.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/Microsoft.Extensions.Configuration.Json.dll b/bin/Release/net9.0/linux-x64/Microsoft.Extensions.Configuration.Json.dll deleted file mode 100644 index d027f62..0000000 Binary files a/bin/Release/net9.0/linux-x64/Microsoft.Extensions.Configuration.Json.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/Microsoft.Extensions.Configuration.UserSecrets.dll b/bin/Release/net9.0/linux-x64/Microsoft.Extensions.Configuration.UserSecrets.dll deleted file mode 100644 index b66deb0..0000000 Binary files a/bin/Release/net9.0/linux-x64/Microsoft.Extensions.Configuration.UserSecrets.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/Microsoft.Extensions.Configuration.dll b/bin/Release/net9.0/linux-x64/Microsoft.Extensions.Configuration.dll deleted file mode 100644 index 03ff10e..0000000 Binary files a/bin/Release/net9.0/linux-x64/Microsoft.Extensions.Configuration.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/bin/Release/net9.0/linux-x64/Microsoft.Extensions.DependencyInjection.Abstractions.dll deleted file mode 100644 index d59ea99..0000000 Binary files a/bin/Release/net9.0/linux-x64/Microsoft.Extensions.DependencyInjection.Abstractions.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/Microsoft.Extensions.DependencyInjection.dll b/bin/Release/net9.0/linux-x64/Microsoft.Extensions.DependencyInjection.dll deleted file mode 100644 index 23279d8..0000000 Binary files a/bin/Release/net9.0/linux-x64/Microsoft.Extensions.DependencyInjection.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/Microsoft.Extensions.Diagnostics.Abstractions.dll b/bin/Release/net9.0/linux-x64/Microsoft.Extensions.Diagnostics.Abstractions.dll deleted file mode 100644 index e68fe5c..0000000 Binary files a/bin/Release/net9.0/linux-x64/Microsoft.Extensions.Diagnostics.Abstractions.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/Microsoft.Extensions.Diagnostics.dll b/bin/Release/net9.0/linux-x64/Microsoft.Extensions.Diagnostics.dll deleted file mode 100644 index 26a66e9..0000000 Binary files a/bin/Release/net9.0/linux-x64/Microsoft.Extensions.Diagnostics.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/Microsoft.Extensions.FileProviders.Abstractions.dll b/bin/Release/net9.0/linux-x64/Microsoft.Extensions.FileProviders.Abstractions.dll deleted file mode 100644 index 3af0d8b..0000000 Binary files a/bin/Release/net9.0/linux-x64/Microsoft.Extensions.FileProviders.Abstractions.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/Microsoft.Extensions.FileProviders.Physical.dll b/bin/Release/net9.0/linux-x64/Microsoft.Extensions.FileProviders.Physical.dll deleted file mode 100644 index f438bce..0000000 Binary files a/bin/Release/net9.0/linux-x64/Microsoft.Extensions.FileProviders.Physical.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/Microsoft.Extensions.FileSystemGlobbing.dll b/bin/Release/net9.0/linux-x64/Microsoft.Extensions.FileSystemGlobbing.dll deleted file mode 100644 index a1fa91f..0000000 Binary files a/bin/Release/net9.0/linux-x64/Microsoft.Extensions.FileSystemGlobbing.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/Microsoft.Extensions.Hosting.Abstractions.dll b/bin/Release/net9.0/linux-x64/Microsoft.Extensions.Hosting.Abstractions.dll deleted file mode 100644 index 588b05b..0000000 Binary files a/bin/Release/net9.0/linux-x64/Microsoft.Extensions.Hosting.Abstractions.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/Microsoft.Extensions.Hosting.dll b/bin/Release/net9.0/linux-x64/Microsoft.Extensions.Hosting.dll deleted file mode 100644 index a752d5c..0000000 Binary files a/bin/Release/net9.0/linux-x64/Microsoft.Extensions.Hosting.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/Microsoft.Extensions.Logging.Abstractions.dll b/bin/Release/net9.0/linux-x64/Microsoft.Extensions.Logging.Abstractions.dll deleted file mode 100644 index d87706b..0000000 Binary files a/bin/Release/net9.0/linux-x64/Microsoft.Extensions.Logging.Abstractions.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/Microsoft.Extensions.Logging.Configuration.dll b/bin/Release/net9.0/linux-x64/Microsoft.Extensions.Logging.Configuration.dll deleted file mode 100644 index 915aec9..0000000 Binary files a/bin/Release/net9.0/linux-x64/Microsoft.Extensions.Logging.Configuration.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/Microsoft.Extensions.Logging.Console.dll b/bin/Release/net9.0/linux-x64/Microsoft.Extensions.Logging.Console.dll deleted file mode 100644 index c1a5de8..0000000 Binary files a/bin/Release/net9.0/linux-x64/Microsoft.Extensions.Logging.Console.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/Microsoft.Extensions.Logging.Debug.dll b/bin/Release/net9.0/linux-x64/Microsoft.Extensions.Logging.Debug.dll deleted file mode 100644 index d8ec3ec..0000000 Binary files a/bin/Release/net9.0/linux-x64/Microsoft.Extensions.Logging.Debug.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/Microsoft.Extensions.Logging.EventLog.dll b/bin/Release/net9.0/linux-x64/Microsoft.Extensions.Logging.EventLog.dll deleted file mode 100644 index 917c74c..0000000 Binary files a/bin/Release/net9.0/linux-x64/Microsoft.Extensions.Logging.EventLog.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/Microsoft.Extensions.Logging.EventSource.dll b/bin/Release/net9.0/linux-x64/Microsoft.Extensions.Logging.EventSource.dll deleted file mode 100644 index b838bac..0000000 Binary files a/bin/Release/net9.0/linux-x64/Microsoft.Extensions.Logging.EventSource.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/Microsoft.Extensions.Logging.dll b/bin/Release/net9.0/linux-x64/Microsoft.Extensions.Logging.dll deleted file mode 100644 index 3b9335f..0000000 Binary files a/bin/Release/net9.0/linux-x64/Microsoft.Extensions.Logging.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/Microsoft.Extensions.Options.ConfigurationExtensions.dll b/bin/Release/net9.0/linux-x64/Microsoft.Extensions.Options.ConfigurationExtensions.dll deleted file mode 100644 index 0a4bc35..0000000 Binary files a/bin/Release/net9.0/linux-x64/Microsoft.Extensions.Options.ConfigurationExtensions.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/Microsoft.Extensions.Options.dll b/bin/Release/net9.0/linux-x64/Microsoft.Extensions.Options.dll deleted file mode 100644 index 85fc38d..0000000 Binary files a/bin/Release/net9.0/linux-x64/Microsoft.Extensions.Options.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/Microsoft.Extensions.Primitives.dll b/bin/Release/net9.0/linux-x64/Microsoft.Extensions.Primitives.dll deleted file mode 100644 index b4f14dc..0000000 Binary files a/bin/Release/net9.0/linux-x64/Microsoft.Extensions.Primitives.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/Microsoft.VisualBasic.Core.dll b/bin/Release/net9.0/linux-x64/Microsoft.VisualBasic.Core.dll deleted file mode 100644 index 4a38549..0000000 Binary files a/bin/Release/net9.0/linux-x64/Microsoft.VisualBasic.Core.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/Microsoft.VisualBasic.dll b/bin/Release/net9.0/linux-x64/Microsoft.VisualBasic.dll deleted file mode 100644 index f45bba6..0000000 Binary files a/bin/Release/net9.0/linux-x64/Microsoft.VisualBasic.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/Microsoft.Win32.Primitives.dll b/bin/Release/net9.0/linux-x64/Microsoft.Win32.Primitives.dll deleted file mode 100644 index ef3174f..0000000 Binary files a/bin/Release/net9.0/linux-x64/Microsoft.Win32.Primitives.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/Microsoft.Win32.Registry.dll b/bin/Release/net9.0/linux-x64/Microsoft.Win32.Registry.dll deleted file mode 100644 index 1f21cb9..0000000 Binary files a/bin/Release/net9.0/linux-x64/Microsoft.Win32.Registry.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/MyAvaloniaApp b/bin/Release/net9.0/linux-x64/MyAvaloniaApp deleted file mode 100644 index 93d8ad8..0000000 Binary files a/bin/Release/net9.0/linux-x64/MyAvaloniaApp and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/MyAvaloniaApp.deps.json b/bin/Release/net9.0/linux-x64/MyAvaloniaApp.deps.json deleted file mode 100644 index 262735b..0000000 --- a/bin/Release/net9.0/linux-x64/MyAvaloniaApp.deps.json +++ /dev/null @@ -1,1940 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v9.0/linux-x64", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v9.0": {}, - ".NETCoreApp,Version=v9.0/linux-x64": { - "MyAvaloniaApp/1.0.0": { - "dependencies": { - "Avalonia": "11.3.7", - "Avalonia.Desktop": "11.3.7", - "Avalonia.Diagnostics": "11.3.6", - "Avalonia.Fonts.Inter": "11.3.6", - "Avalonia.ReactiveUI": "11.3.7", - "Avalonia.Themes.Fluent": "11.3.6", - "HeroIcons.Avalonia": "1.0.4", - "Microsoft.Extensions.Configuration": "9.0.0", - "Microsoft.Extensions.Configuration.CommandLine": "9.0.0", - "Microsoft.Extensions.Configuration.EnvironmentVariables": "9.0.0", - "Microsoft.Extensions.Configuration.Json": "9.0.0", - "Microsoft.Extensions.DependencyInjection": "9.0.0", - "Microsoft.Extensions.Hosting": "9.0.0", - "Microsoft.Extensions.Logging": "9.0.0", - "Microsoft.Extensions.Logging.Console": "9.0.0", - "Microsoft.Extensions.Logging.Debug": "9.0.0", - "runtimepack.Microsoft.NETCore.App.Runtime.linux-x64": "9.0.7" - }, - "runtime": { - "MyAvaloniaApp.dll": {} - } - }, - "runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/9.0.7": { - "runtime": { - "Microsoft.CSharp.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "Microsoft.VisualBasic.Core.dll": { - "assemblyVersion": "14.0.0.0", - "fileVersion": "14.0.725.31616" - }, - "Microsoft.VisualBasic.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "Microsoft.Win32.Primitives.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "Microsoft.Win32.Registry.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.AppContext.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Buffers.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Collections.Concurrent.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Collections.Immutable.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Collections.NonGeneric.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Collections.Specialized.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Collections.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.ComponentModel.Annotations.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.ComponentModel.DataAnnotations.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.ComponentModel.EventBasedAsync.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.ComponentModel.Primitives.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.ComponentModel.TypeConverter.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.ComponentModel.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Configuration.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Console.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Core.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Data.Common.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Data.DataSetExtensions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Data.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Diagnostics.Contracts.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Diagnostics.Debug.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Diagnostics.DiagnosticSource.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Diagnostics.FileVersionInfo.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Diagnostics.Process.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Diagnostics.StackTrace.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Diagnostics.TextWriterTraceListener.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Diagnostics.Tools.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Diagnostics.TraceSource.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Diagnostics.Tracing.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Drawing.Primitives.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Drawing.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Dynamic.Runtime.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Formats.Asn1.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Formats.Tar.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Globalization.Calendars.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Globalization.Extensions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Globalization.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.IO.Compression.Brotli.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.IO.Compression.FileSystem.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.IO.Compression.ZipFile.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.IO.Compression.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.IO.FileSystem.AccessControl.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.IO.FileSystem.DriveInfo.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.IO.FileSystem.Primitives.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.IO.FileSystem.Watcher.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.IO.FileSystem.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.IO.IsolatedStorage.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.IO.MemoryMappedFiles.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.IO.Pipelines.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.IO.Pipes.AccessControl.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.IO.Pipes.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.IO.UnmanagedMemoryStream.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.IO.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Linq.Expressions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Linq.Parallel.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Linq.Queryable.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Linq.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Memory.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Net.Http.Json.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Net.Http.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Net.HttpListener.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Net.Mail.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Net.NameResolution.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Net.NetworkInformation.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Net.Ping.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Net.Primitives.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Net.Quic.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Net.Requests.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Net.Security.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Net.ServicePoint.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Net.Sockets.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Net.WebClient.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Net.WebHeaderCollection.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Net.WebProxy.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Net.WebSockets.Client.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Net.WebSockets.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Net.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Numerics.Vectors.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Numerics.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.ObjectModel.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Private.CoreLib.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Private.DataContractSerialization.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Private.Uri.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Private.Xml.Linq.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Private.Xml.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Reflection.DispatchProxy.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Reflection.Emit.ILGeneration.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Reflection.Emit.Lightweight.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Reflection.Emit.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Reflection.Extensions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Reflection.Metadata.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Reflection.Primitives.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Reflection.TypeExtensions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Reflection.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Resources.Reader.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Resources.ResourceManager.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Resources.Writer.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Runtime.CompilerServices.Unsafe.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Runtime.CompilerServices.VisualC.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Runtime.Extensions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Runtime.Handles.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Runtime.InteropServices.JavaScript.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Runtime.InteropServices.RuntimeInformation.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Runtime.InteropServices.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Runtime.Intrinsics.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Runtime.Loader.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Runtime.Numerics.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Runtime.Serialization.Formatters.dll": { - "assemblyVersion": "8.1.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Runtime.Serialization.Json.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Runtime.Serialization.Primitives.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Runtime.Serialization.Xml.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Runtime.Serialization.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Runtime.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Security.AccessControl.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Security.Claims.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Security.Cryptography.Algorithms.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Security.Cryptography.Cng.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Security.Cryptography.Csp.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Security.Cryptography.Encoding.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Security.Cryptography.OpenSsl.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Security.Cryptography.Primitives.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Security.Cryptography.X509Certificates.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Security.Cryptography.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Security.Principal.Windows.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Security.Principal.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Security.SecureString.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Security.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.ServiceModel.Web.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.ServiceProcess.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Text.Encoding.CodePages.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Text.Encoding.Extensions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Text.Encoding.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Text.Encodings.Web.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Text.Json.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Text.RegularExpressions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Threading.Channels.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Threading.Overlapped.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Threading.Tasks.Dataflow.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Threading.Tasks.Extensions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Threading.Tasks.Parallel.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Threading.Tasks.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Threading.Thread.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Threading.ThreadPool.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Threading.Timer.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Threading.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Transactions.Local.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Transactions.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.ValueTuple.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Web.HttpUtility.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Web.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Windows.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Xml.Linq.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Xml.ReaderWriter.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Xml.Serialization.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Xml.XDocument.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Xml.XPath.XDocument.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Xml.XPath.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Xml.XmlDocument.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Xml.XmlSerializer.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Xml.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "WindowsBase.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "mscorlib.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "netstandard.dll": { - "assemblyVersion": "2.1.0.0", - "fileVersion": "9.0.725.31616" - } - }, - "native": { - "createdump": { - "fileVersion": "0.0.0.0" - }, - "libSystem.Globalization.Native.so": { - "fileVersion": "0.0.0.0" - }, - "libSystem.IO.Compression.Native.so": { - "fileVersion": "0.0.0.0" - }, - "libSystem.Native.so": { - "fileVersion": "0.0.0.0" - }, - "libSystem.Net.Security.Native.so": { - "fileVersion": "0.0.0.0" - }, - "libSystem.Security.Cryptography.Native.OpenSsl.so": { - "fileVersion": "0.0.0.0" - }, - "libclrgc.so": { - "fileVersion": "0.0.0.0" - }, - "libclrgcexp.so": { - "fileVersion": "0.0.0.0" - }, - "libclrjit.so": { - "fileVersion": "0.0.0.0" - }, - "libcoreclr.so": { - "fileVersion": "0.0.0.0" - }, - "libcoreclrtraceptprovider.so": { - "fileVersion": "0.0.0.0" - }, - "libhostfxr.so": { - "fileVersion": "0.0.0.0" - }, - "libhostpolicy.so": { - "fileVersion": "0.0.0.0" - }, - "libmscordaccore.so": { - "fileVersion": "0.0.0.0" - }, - "libmscordbi.so": { - "fileVersion": "0.0.0.0" - } - } - }, - "Avalonia/11.3.7": { - "dependencies": { - "Avalonia.BuildServices": "11.3.1", - "Avalonia.Remote.Protocol": "11.3.7", - "MicroCom.Runtime": "0.11.0" - }, - "runtime": { - "lib/net8.0/Avalonia.Base.dll": { - "assemblyVersion": "11.3.7.0", - "fileVersion": "11.3.7.0" - }, - "lib/net8.0/Avalonia.Controls.dll": { - "assemblyVersion": "11.3.7.0", - "fileVersion": "11.3.7.0" - }, - "lib/net8.0/Avalonia.DesignerSupport.dll": { - "assemblyVersion": "0.7.0.0", - "fileVersion": "0.7.0.0" - }, - "lib/net8.0/Avalonia.Dialogs.dll": { - "assemblyVersion": "11.3.7.0", - "fileVersion": "11.3.7.0" - }, - "lib/net8.0/Avalonia.Markup.Xaml.dll": { - "assemblyVersion": "11.3.7.0", - "fileVersion": "11.3.7.0" - }, - "lib/net8.0/Avalonia.Markup.dll": { - "assemblyVersion": "11.3.7.0", - "fileVersion": "11.3.7.0" - }, - "lib/net8.0/Avalonia.Metal.dll": { - "assemblyVersion": "11.3.7.0", - "fileVersion": "11.3.7.0" - }, - "lib/net8.0/Avalonia.MicroCom.dll": { - "assemblyVersion": "11.3.7.0", - "fileVersion": "11.3.7.0" - }, - "lib/net8.0/Avalonia.OpenGL.dll": { - "assemblyVersion": "11.3.7.0", - "fileVersion": "11.3.7.0" - }, - "lib/net8.0/Avalonia.Vulkan.dll": { - "assemblyVersion": "11.3.7.0", - "fileVersion": "11.3.7.0" - }, - "lib/net8.0/Avalonia.dll": { - "assemblyVersion": "11.3.7.0", - "fileVersion": "11.3.7.0" - } - } - }, - "Avalonia.Angle.Windows.Natives/2.1.25547.20250602": {}, - "Avalonia.BuildServices/11.3.1": {}, - "Avalonia.Controls.ColorPicker/11.3.6": { - "dependencies": { - "Avalonia": "11.3.7", - "Avalonia.Remote.Protocol": "11.3.7" - } - }, - "Avalonia.Desktop/11.3.7": { - "dependencies": { - "Avalonia": "11.3.7", - "Avalonia.Native": "11.3.7", - "Avalonia.Skia": "11.3.7", - "Avalonia.Win32": "11.3.7", - "Avalonia.X11": "11.3.7" - }, - "runtime": { - "lib/net8.0/Avalonia.Desktop.dll": { - "assemblyVersion": "11.3.7.0", - "fileVersion": "11.3.7.0" - } - } - }, - "Avalonia.Diagnostics/11.3.6": { - "dependencies": { - "Avalonia": "11.3.7", - "Avalonia.Controls.ColorPicker": "11.3.6", - "Avalonia.Themes.Simple": "11.3.6" - } - }, - "Avalonia.Fonts.Inter/11.3.6": { - "dependencies": { - "Avalonia": "11.3.7" - }, - "runtime": { - "lib/net8.0/Avalonia.Fonts.Inter.dll": { - "assemblyVersion": "11.3.6.0", - "fileVersion": "11.3.6.0" - } - } - }, - "Avalonia.FreeDesktop/11.3.7": { - "dependencies": { - "Avalonia": "11.3.7", - "Tmds.DBus.Protocol": "0.21.2" - }, - "runtime": { - "lib/net8.0/Avalonia.FreeDesktop.dll": { - "assemblyVersion": "11.3.7.0", - "fileVersion": "11.3.7.0" - } - } - }, - "Avalonia.Native/11.3.7": { - "dependencies": { - "Avalonia": "11.3.7" - }, - "runtime": { - "lib/net8.0/Avalonia.Native.dll": { - "assemblyVersion": "11.3.7.0", - "fileVersion": "11.3.7.0" - } - } - }, - "Avalonia.ReactiveUI/11.3.7": { - "dependencies": { - "Avalonia": "11.3.7", - "ReactiveUI": "20.1.1", - "System.Reactive": "6.0.1" - }, - "runtime": { - "lib/net8.0/Avalonia.ReactiveUI.dll": { - "assemblyVersion": "11.3.7.0", - "fileVersion": "11.3.7.0" - } - } - }, - "Avalonia.Remote.Protocol/11.3.7": { - "runtime": { - "lib/net8.0/Avalonia.Remote.Protocol.dll": { - "assemblyVersion": "11.3.7.0", - "fileVersion": "11.3.7.0" - } - } - }, - "Avalonia.Skia/11.3.7": { - "dependencies": { - "Avalonia": "11.3.7", - "HarfBuzzSharp": "8.3.1.1", - "HarfBuzzSharp.NativeAssets.Linux": "8.3.1.1", - "HarfBuzzSharp.NativeAssets.WebAssembly": "8.3.1.1", - "SkiaSharp": "2.88.9", - "SkiaSharp.NativeAssets.Linux": "2.88.9", - "SkiaSharp.NativeAssets.WebAssembly": "2.88.9" - }, - "runtime": { - "lib/net8.0/Avalonia.Skia.dll": { - "assemblyVersion": "11.3.7.0", - "fileVersion": "11.3.7.0" - } - } - }, - "Avalonia.Themes.Fluent/11.3.6": { - "dependencies": { - "Avalonia": "11.3.7" - }, - "runtime": { - "lib/net8.0/Avalonia.Themes.Fluent.dll": { - "assemblyVersion": "11.3.6.0", - "fileVersion": "11.3.6.0" - } - } - }, - "Avalonia.Themes.Simple/11.3.6": { - "dependencies": { - "Avalonia": "11.3.7" - } - }, - "Avalonia.Win32/11.3.7": { - "dependencies": { - "Avalonia": "11.3.7", - "Avalonia.Angle.Windows.Natives": "2.1.25547.20250602" - }, - "runtime": { - "lib/net8.0/Avalonia.Win32.Automation.dll": { - "assemblyVersion": "11.3.7.0", - "fileVersion": "11.3.7.0" - }, - "lib/net8.0/Avalonia.Win32.dll": { - "assemblyVersion": "11.3.7.0", - "fileVersion": "11.3.7.0" - } - } - }, - "Avalonia.X11/11.3.7": { - "dependencies": { - "Avalonia": "11.3.7", - "Avalonia.FreeDesktop": "11.3.7", - "Avalonia.Skia": "11.3.7" - }, - "runtime": { - "lib/net8.0/Avalonia.X11.dll": { - "assemblyVersion": "11.3.7.0", - "fileVersion": "11.3.7.0" - } - } - }, - "DynamicData/8.4.1": { - "dependencies": { - "System.Reactive": "6.0.1" - }, - "runtime": { - "lib/net8.0/DynamicData.dll": { - "assemblyVersion": "8.4.0.0", - "fileVersion": "8.4.1.20756" - } - } - }, - "HarfBuzzSharp/8.3.1.1": { - "dependencies": { - "HarfBuzzSharp.NativeAssets.Win32": "8.3.1.1", - "HarfBuzzSharp.NativeAssets.macOS": "8.3.1.1" - }, - "runtime": { - "lib/net8.0/HarfBuzzSharp.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "8.3.1.1" - } - } - }, - "HarfBuzzSharp.NativeAssets.Linux/8.3.1.1": { - "native": { - "runtimes/linux-x64/native/libHarfBuzzSharp.so": { - "fileVersion": "0.0.0.0" - } - } - }, - "HarfBuzzSharp.NativeAssets.macOS/8.3.1.1": {}, - "HarfBuzzSharp.NativeAssets.WebAssembly/8.3.1.1": {}, - "HarfBuzzSharp.NativeAssets.Win32/8.3.1.1": {}, - "HeroIcons.Avalonia/1.0.4": { - "dependencies": { - "Avalonia": "11.3.7" - }, - "runtime": { - "lib/netstandard2.0/HeroIconsAvalonia.dll": { - "assemblyVersion": "1.0.4.0", - "fileVersion": "1.0.4.0" - } - } - }, - "MicroCom.Runtime/0.11.0": { - "runtime": { - "lib/net5.0/MicroCom.Runtime.dll": { - "assemblyVersion": "0.11.0.0", - "fileVersion": "0.11.0.0" - } - } - }, - "Microsoft.Extensions.Configuration/9.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", - "Microsoft.Extensions.Primitives": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Configuration.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Configuration.Abstractions/9.0.0": { - "dependencies": { - "Microsoft.Extensions.Primitives": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Configuration.Binder/9.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Configuration.Binder.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Configuration.CommandLine/9.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration": "9.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Configuration.CommandLine.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Configuration.EnvironmentVariables/9.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration": "9.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Configuration.FileExtensions/9.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration": "9.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", - "Microsoft.Extensions.FileProviders.Physical": "9.0.0", - "Microsoft.Extensions.Primitives": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Configuration.Json/9.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration": "9.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", - "Microsoft.Extensions.Configuration.FileExtensions": "9.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Configuration.Json.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Configuration.UserSecrets/9.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", - "Microsoft.Extensions.Configuration.Json": "9.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", - "Microsoft.Extensions.FileProviders.Physical": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Configuration.UserSecrets.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.DependencyInjection/9.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": { - "runtime": { - "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Diagnostics/9.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration": "9.0.0", - "Microsoft.Extensions.Diagnostics.Abstractions": "9.0.0", - "Microsoft.Extensions.Options.ConfigurationExtensions": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Diagnostics.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Diagnostics.Abstractions/9.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", - "Microsoft.Extensions.Options": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.FileProviders.Abstractions/9.0.0": { - "dependencies": { - "Microsoft.Extensions.Primitives": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.FileProviders.Physical/9.0.0": { - "dependencies": { - "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", - "Microsoft.Extensions.FileSystemGlobbing": "9.0.0", - "Microsoft.Extensions.Primitives": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.FileProviders.Physical.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.FileSystemGlobbing/9.0.0": { - "runtime": { - "lib/net9.0/Microsoft.Extensions.FileSystemGlobbing.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Hosting/9.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration": "9.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", - "Microsoft.Extensions.Configuration.Binder": "9.0.0", - "Microsoft.Extensions.Configuration.CommandLine": "9.0.0", - "Microsoft.Extensions.Configuration.EnvironmentVariables": "9.0.0", - "Microsoft.Extensions.Configuration.FileExtensions": "9.0.0", - "Microsoft.Extensions.Configuration.Json": "9.0.0", - "Microsoft.Extensions.Configuration.UserSecrets": "9.0.0", - "Microsoft.Extensions.DependencyInjection": "9.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", - "Microsoft.Extensions.Diagnostics": "9.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", - "Microsoft.Extensions.FileProviders.Physical": "9.0.0", - "Microsoft.Extensions.Hosting.Abstractions": "9.0.0", - "Microsoft.Extensions.Logging": "9.0.0", - "Microsoft.Extensions.Logging.Abstractions": "9.0.0", - "Microsoft.Extensions.Logging.Configuration": "9.0.0", - "Microsoft.Extensions.Logging.Console": "9.0.0", - "Microsoft.Extensions.Logging.Debug": "9.0.0", - "Microsoft.Extensions.Logging.EventLog": "9.0.0", - "Microsoft.Extensions.Logging.EventSource": "9.0.0", - "Microsoft.Extensions.Options": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Hosting.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Hosting.Abstractions/9.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", - "Microsoft.Extensions.Diagnostics.Abstractions": "9.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", - "Microsoft.Extensions.Logging.Abstractions": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Hosting.Abstractions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Logging/9.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "9.0.0", - "Microsoft.Extensions.Logging.Abstractions": "9.0.0", - "Microsoft.Extensions.Options": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Logging.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Logging.Abstractions/9.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Logging.Configuration/9.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration": "9.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", - "Microsoft.Extensions.Configuration.Binder": "9.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", - "Microsoft.Extensions.Logging": "9.0.0", - "Microsoft.Extensions.Logging.Abstractions": "9.0.0", - "Microsoft.Extensions.Options": "9.0.0", - "Microsoft.Extensions.Options.ConfigurationExtensions": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Logging.Configuration.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Logging.Console/9.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", - "Microsoft.Extensions.Logging": "9.0.0", - "Microsoft.Extensions.Logging.Abstractions": "9.0.0", - "Microsoft.Extensions.Logging.Configuration": "9.0.0", - "Microsoft.Extensions.Options": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Logging.Console.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Logging.Debug/9.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", - "Microsoft.Extensions.Logging": "9.0.0", - "Microsoft.Extensions.Logging.Abstractions": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Logging.Debug.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Logging.EventLog/9.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", - "Microsoft.Extensions.Logging": "9.0.0", - "Microsoft.Extensions.Logging.Abstractions": "9.0.0", - "Microsoft.Extensions.Options": "9.0.0", - "System.Diagnostics.EventLog": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Logging.EventLog.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Logging.EventSource/9.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", - "Microsoft.Extensions.Logging": "9.0.0", - "Microsoft.Extensions.Logging.Abstractions": "9.0.0", - "Microsoft.Extensions.Options": "9.0.0", - "Microsoft.Extensions.Primitives": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Logging.EventSource.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Options/9.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", - "Microsoft.Extensions.Primitives": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Options.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Options.ConfigurationExtensions/9.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", - "Microsoft.Extensions.Configuration.Binder": "9.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", - "Microsoft.Extensions.Options": "9.0.0", - "Microsoft.Extensions.Primitives": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Primitives/9.0.0": { - "runtime": { - "lib/net9.0/Microsoft.Extensions.Primitives.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "ReactiveUI/20.1.1": { - "dependencies": { - "DynamicData": "8.4.1", - "Splat": "15.1.1", - "System.ComponentModel.Annotations": "5.0.0" - }, - "runtime": { - "lib/net8.0/ReactiveUI.dll": { - "assemblyVersion": "20.1.0.0", - "fileVersion": "20.1.1.46356" - } - } - }, - "SkiaSharp/2.88.9": { - "dependencies": { - "SkiaSharp.NativeAssets.Win32": "2.88.9", - "SkiaSharp.NativeAssets.macOS": "2.88.9" - }, - "runtime": { - "lib/net6.0/SkiaSharp.dll": { - "assemblyVersion": "2.88.0.0", - "fileVersion": "2.88.9.0" - } - } - }, - "SkiaSharp.NativeAssets.Linux/2.88.9": { - "dependencies": { - "SkiaSharp": "2.88.9" - }, - "native": { - "runtimes/linux-x64/native/libSkiaSharp.so": { - "fileVersion": "0.0.0.0" - } - } - }, - "SkiaSharp.NativeAssets.macOS/2.88.9": {}, - "SkiaSharp.NativeAssets.WebAssembly/2.88.9": {}, - "SkiaSharp.NativeAssets.Win32/2.88.9": {}, - "Splat/15.1.1": { - "runtime": { - "lib/net8.0/Splat.dll": { - "assemblyVersion": "15.1.0.0", - "fileVersion": "15.1.1.17670" - } - } - }, - "System.ComponentModel.Annotations/5.0.0": {}, - "System.Diagnostics.EventLog/9.0.0": { - "runtime": { - "lib/net9.0/System.Diagnostics.EventLog.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "System.IO.Pipelines/8.0.0": {}, - "System.Reactive/6.0.1": { - "runtime": { - "lib/net6.0/System.Reactive.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1.7420" - } - } - }, - "Tmds.DBus.Protocol/0.21.2": { - "dependencies": { - "System.IO.Pipelines": "8.0.0" - }, - "runtime": { - "lib/net8.0/Tmds.DBus.Protocol.dll": { - "assemblyVersion": "0.21.2.0", - "fileVersion": "0.21.2.0" - } - } - } - } - }, - "libraries": { - "MyAvaloniaApp/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/9.0.7": { - "type": "runtimepack", - "serviceable": false, - "sha512": "" - }, - "Avalonia/11.3.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-QlVvaYTSTqzoUflmAEMuPzi3vYdybEIXmFQgLZxdTbzTeyhlwKZ1WqtLwHVe1Fbt8oGSCqYYKsU8SViZsdXR2Q==", - "path": "avalonia/11.3.7", - "hashPath": "avalonia.11.3.7.nupkg.sha512" - }, - "Avalonia.Angle.Windows.Natives/2.1.25547.20250602": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZL0VLc4s9rvNNFt19Pxm5UNAkmKNylugAwJPX9ulXZ6JWs/l6XZihPWWTyezaoNOVyEPU8YbURtW7XMAtqXH5A==", - "path": "avalonia.angle.windows.natives/2.1.25547.20250602", - "hashPath": "avalonia.angle.windows.natives.2.1.25547.20250602.nupkg.sha512" - }, - "Avalonia.BuildServices/11.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-k/WwXbqwaCtmE0a90YXB9plT50ok6OgLBIr+DUYK16akJN82iK69kgkL1vGDd8XBvf77JM3O27znBuy7AEoFgg==", - "path": "avalonia.buildservices/11.3.1", - "hashPath": "avalonia.buildservices.11.3.1.nupkg.sha512" - }, - "Avalonia.Controls.ColorPicker/11.3.6": { - "type": "package", - "serviceable": true, - "sha512": "sha512-zgJFM7P7hOS9qcuSUqL2tjBFIsi03qiwAztYjtjtKjfBvLBOrVcmL5qHwjfjeLRLtjHprjMraAHtu3O2vi+51g==", - "path": "avalonia.controls.colorpicker/11.3.6", - "hashPath": "avalonia.controls.colorpicker.11.3.6.nupkg.sha512" - }, - "Avalonia.Desktop/11.3.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-yWYj8M4tpg6YJrGwPIrXPuVUocJsCmT81M+QtVZkEp4PZOUkm21tviaI4BGrY8eQYHuRRy7k/vcVxwHqnmQwuA==", - "path": "avalonia.desktop/11.3.7", - "hashPath": "avalonia.desktop.11.3.7.nupkg.sha512" - }, - "Avalonia.Diagnostics/11.3.6": { - "type": "package", - "serviceable": true, - "sha512": "sha512-iOGrfU/0TudsfHARpsreVt5V1oaer838IghYdgZjlOvGKmh5J1uc5GOSBmBodUpuPDE78wmdVrJZLC57qsndzg==", - "path": "avalonia.diagnostics/11.3.6", - "hashPath": "avalonia.diagnostics.11.3.6.nupkg.sha512" - }, - "Avalonia.Fonts.Inter/11.3.6": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ASuCuosS8elNsRxNpdZE/UrmMSh1wtwoqRDEgpdcbVuMRUH/8ElCur5PdyWhJSwIit/YXaS+xb2xQAGOnvT45w==", - "path": "avalonia.fonts.inter/11.3.6", - "hashPath": "avalonia.fonts.inter.11.3.6.nupkg.sha512" - }, - "Avalonia.FreeDesktop/11.3.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-4K36zaeYiZT/6S5if5fXGDAdJL4u4zuO0k33VrLpdflkVCjgPrd1WhK3qxJrgF9YNRwpkvbxnTtZzSP2X6AfKg==", - "path": "avalonia.freedesktop/11.3.7", - "hashPath": "avalonia.freedesktop.11.3.7.nupkg.sha512" - }, - "Avalonia.Native/11.3.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KONYDXAlqGpMwaVrRQTp4MnbUbiG34nEYMUl3iYkgl9qP54rR/iJgDh8Xo0UfEC9Tjc/N3kV4gmhcSrOT7NCbA==", - "path": "avalonia.native/11.3.7", - "hashPath": "avalonia.native.11.3.7.nupkg.sha512" - }, - "Avalonia.ReactiveUI/11.3.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YtNQVvFVxWMP2ZKxbYWH6PIqPh/0PushbyMBWu6K/mNQaZqMRIavdZCUy8+t6FiX1IIaVPPmM6AqniWjIBo0VA==", - "path": "avalonia.reactiveui/11.3.7", - "hashPath": "avalonia.reactiveui.11.3.7.nupkg.sha512" - }, - "Avalonia.Remote.Protocol/11.3.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xI/QoELcb/U4qSm1KDXRRaA1qy+QgyHlgTS6EN7crV/6Ldzdv990rk6ClFa2RajHhvEm2i6S8kVx2paWZIOHHw==", - "path": "avalonia.remote.protocol/11.3.7", - "hashPath": "avalonia.remote.protocol.11.3.7.nupkg.sha512" - }, - "Avalonia.Skia/11.3.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-nDTop5duFQBdsR3YzLs/w0rhOdOB6szZQLD2vMCe8FDkKQM4j35sXMKVUcTtvSts3x8yo5DEarXfWU1viY2gng==", - "path": "avalonia.skia/11.3.7", - "hashPath": "avalonia.skia.11.3.7.nupkg.sha512" - }, - "Avalonia.Themes.Fluent/11.3.6": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YQ3x66qgMqDxbQoLTqYKGA7yXnxi8fzDL9+CITPrXrVZimlemWmjYqE0NWgd2c78gpp7dNEV4eYzwbbr8bH+9A==", - "path": "avalonia.themes.fluent/11.3.6", - "hashPath": "avalonia.themes.fluent.11.3.6.nupkg.sha512" - }, - "Avalonia.Themes.Simple/11.3.6": { - "type": "package", - "serviceable": true, - "sha512": "sha512-MuwYjUI9qMdu7TYyJbBntWlZRJWi6QmAYhMEBEdDgiEO0yUpTiKNLpYSn+MS8Xh9Jm9N4krclBigW7FYJkqLOA==", - "path": "avalonia.themes.simple/11.3.6", - "hashPath": "avalonia.themes.simple.11.3.6.nupkg.sha512" - }, - "Avalonia.Win32/11.3.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-e6EdWKnGvr7WSg4Q3zjej0DQo5FjzwuB+5kqotYVrf+RG/EvP/49P9S257Cjz9A5Br0TCNLny3VBbqPlt4i4Ag==", - "path": "avalonia.win32/11.3.7", - "hashPath": "avalonia.win32.11.3.7.nupkg.sha512" - }, - "Avalonia.X11/11.3.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-1/C3oM/qIRDGnBViXDpCvwsQPq74+QrwXGCzGb3meF0u+7nTZ/obh+fxMGgcq/0QHcq0t7taxsUr1lhVyBtEYw==", - "path": "avalonia.x11/11.3.7", - "hashPath": "avalonia.x11.11.3.7.nupkg.sha512" - }, - "DynamicData/8.4.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Mn1+fU/jqxgONEJq8KLQPGWEi7g/hUVTbjZyn4QM0sWWDAVOHPO9WjXWORSykwdfg/6S3GM15qsfz+2EvO+QAQ==", - "path": "dynamicdata/8.4.1", - "hashPath": "dynamicdata.8.4.1.nupkg.sha512" - }, - "HarfBuzzSharp/8.3.1.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tLZN66oe/uiRPTZfrCU4i8ScVGwqHNh5MHrXj0yVf4l7Mz0FhTGnQ71RGySROTmdognAs0JtluHkL41pIabWuQ==", - "path": "harfbuzzsharp/8.3.1.1", - "hashPath": "harfbuzzsharp.8.3.1.1.nupkg.sha512" - }, - "HarfBuzzSharp.NativeAssets.Linux/8.3.1.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3EZ1mpIiKWRLL5hUYA82ZHteeDIVaEA/Z0rA/wU6tjx6crcAkJnBPwDXZugBSfo8+J3EznvRJf49uMsqYfKrHg==", - "path": "harfbuzzsharp.nativeassets.linux/8.3.1.1", - "hashPath": "harfbuzzsharp.nativeassets.linux.8.3.1.1.nupkg.sha512" - }, - "HarfBuzzSharp.NativeAssets.macOS/8.3.1.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-jbtCsgftcaFLCA13tVKo5iWdElJScrulLTKJre36O4YQTIlwDtPPqhRZNk+Y0vv4D1gxbscasGRucUDfS44ofQ==", - "path": "harfbuzzsharp.nativeassets.macos/8.3.1.1", - "hashPath": "harfbuzzsharp.nativeassets.macos.8.3.1.1.nupkg.sha512" - }, - "HarfBuzzSharp.NativeAssets.WebAssembly/8.3.1.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-loJweK2u/mH/3C2zBa0ggJlITIszOkK64HLAZB7FUT670dTg965whLFYHDQo69NmC4+d9UN0icLC9VHidXaVCA==", - "path": "harfbuzzsharp.nativeassets.webassembly/8.3.1.1", - "hashPath": "harfbuzzsharp.nativeassets.webassembly.8.3.1.1.nupkg.sha512" - }, - "HarfBuzzSharp.NativeAssets.Win32/8.3.1.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-UsJtQsfAJoFDZrXc4hCUfRPMqccfKZ0iumJ/upcUjz/cmsTgVFGNEL5yaJWmkqsuFYdMWbj/En5/kS4PFl9hBA==", - "path": "harfbuzzsharp.nativeassets.win32/8.3.1.1", - "hashPath": "harfbuzzsharp.nativeassets.win32.8.3.1.1.nupkg.sha512" - }, - "HeroIcons.Avalonia/1.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-wOJIOvexOPubqvxzYqmzNHLup/j3K5n6cEfaeszWy2X8iiVkDM8CiHZU7y/N16mbQvhBHc1zw0QnUFhHN63v4A==", - "path": "heroicons.avalonia/1.0.4", - "hashPath": "heroicons.avalonia.1.0.4.nupkg.sha512" - }, - "MicroCom.Runtime/0.11.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-MEnrZ3UIiH40hjzMDsxrTyi8dtqB5ziv3iBeeU4bXsL/7NLSal9F1lZKpK+tfBRnUoDSdtcW3KufE4yhATOMCA==", - "path": "microcom.runtime/0.11.0", - "hashPath": "microcom.runtime.0.11.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YIMO9T3JL8MeEXgVozKt2v79hquo/EFtnY0vgxmLnUvk1Rei/halI7kOWZL2RBeV9FMGzgM9LZA8CVaNwFMaNA==", - "path": "microsoft.extensions.configuration/9.0.0", - "hashPath": "microsoft.extensions.configuration.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Abstractions/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lqvd7W3FGKUO1+ZoUEMaZ5XDJeWvjpy2/M/ptCGz3tXLD4HWVaSzjufsAsjemasBEg+2SxXVtYVvGt5r2nKDlg==", - "path": "microsoft.extensions.configuration.abstractions/9.0.0", - "hashPath": "microsoft.extensions.configuration.abstractions.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Binder/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-RiScL99DcyngY9zJA2ROrri7Br8tn5N4hP4YNvGdTN/bvg1A3dwvDOxHnNZ3Im7x2SJ5i4LkX1uPiR/MfSFBLQ==", - "path": "microsoft.extensions.configuration.binder/9.0.0", - "hashPath": "microsoft.extensions.configuration.binder.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.CommandLine/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-qD+hdkBtR9Ps7AxfhTJCnoVakkadHgHlD1WRN0QHGHod+SDuca1ao1kF4G2rmpAz2AEKrE2N2vE8CCCZ+ILnNw==", - "path": "microsoft.extensions.configuration.commandline/9.0.0", - "hashPath": "microsoft.extensions.configuration.commandline.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.EnvironmentVariables/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-v5R638eNMxksfXb7MFnkPwLPp+Ym4W/SIGNuoe8qFVVyvygQD5DdLusybmYSJEr9zc1UzWzim/ATKeIOVvOFDg==", - "path": "microsoft.extensions.configuration.environmentvariables/9.0.0", - "hashPath": "microsoft.extensions.configuration.environmentvariables.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.FileExtensions/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-4EK93Jcd2lQG4GY6PAw8jGss0ZzFP0vPc1J85mES5fKNuDTqgFXHba9onBw2s18fs3I4vdo2AWyfD1mPAxWSQQ==", - "path": "microsoft.extensions.configuration.fileextensions/9.0.0", - "hashPath": "microsoft.extensions.configuration.fileextensions.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Json/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-WiTK0LrnsqmedrbzwL7f4ZUo+/wByqy2eKab39I380i2rd8ImfCRMrtkqJVGDmfqlkP/YzhckVOwPc5MPrSNpg==", - "path": "microsoft.extensions.configuration.json/9.0.0", - "hashPath": "microsoft.extensions.configuration.json.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.UserSecrets/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FShWw8OysquwV7wQHYkkz0VWsJSo6ETUu4h7tJRMtnG0uR+tzKOldhcO8xB1pGSOI3Ng6v3N1Q94YO8Rzq1P6A==", - "path": "microsoft.extensions.configuration.usersecrets/9.0.0", - "hashPath": "microsoft.extensions.configuration.usersecrets.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-MCPrg7v3QgNMr0vX4vzRXvkNGgLg8vKWX0nKCWUxu2uPyMsaRgiRc1tHBnbTcfJMhMKj2slE/j2M9oGkd25DNw==", - "path": "microsoft.extensions.dependencyinjection/9.0.0", - "hashPath": "microsoft.extensions.dependencyinjection.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+6f2qv2a3dLwd5w6JanPIPs47CxRbnk+ZocMJUhv9NxP88VlOcJYZs9jY+MYSjxvady08bUZn6qgiNh7DadGgg==", - "path": "microsoft.extensions.dependencyinjection.abstractions/9.0.0", - "hashPath": "microsoft.extensions.dependencyinjection.abstractions.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Diagnostics/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-0CF9ZrNw5RAlRfbZuVIvzzhP8QeWqHiUmMBU/2H7Nmit8/vwP3/SbHeEctth7D4Gz2fBnEbokPc1NU8/j/1ZLw==", - "path": "microsoft.extensions.diagnostics/9.0.0", - "hashPath": "microsoft.extensions.diagnostics.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Diagnostics.Abstractions/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-1K8P7XzuzX8W8pmXcZjcrqS6x5eSSdvhQohmcpgiQNY/HlDAlnrhR9dvlURfFz428A+RTCJpUyB+aKTA6AgVcQ==", - "path": "microsoft.extensions.diagnostics.abstractions/9.0.0", - "hashPath": "microsoft.extensions.diagnostics.abstractions.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.FileProviders.Abstractions/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uK439QzYR0q2emLVtYzwyK3x+T5bTY4yWsd/k/ZUS9LR6Sflp8MIdhGXW8kQCd86dQD4tLqvcbLkku8qHY263Q==", - "path": "microsoft.extensions.fileproviders.abstractions/9.0.0", - "hashPath": "microsoft.extensions.fileproviders.abstractions.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.FileProviders.Physical/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3+ZUSpOSmie+o8NnLIRqCxSh65XL/ExU7JYnFOg58awDRlY3lVpZ9A369jkoZL1rpsq7LDhEfkn2ghhGaY1y5Q==", - "path": "microsoft.extensions.fileproviders.physical/9.0.0", - "hashPath": "microsoft.extensions.fileproviders.physical.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.FileSystemGlobbing/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-jGFKZiXs2HNseK3NK/rfwHNNovER71jSj4BD1a/649ml9+h6oEtYd0GSALZDNW8jZ2Rh+oAeadOa6sagYW1F2A==", - "path": "microsoft.extensions.filesystemglobbing/9.0.0", - "hashPath": "microsoft.extensions.filesystemglobbing.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Hosting/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-wNmQWRCa83HYbpxQ3wH7xBn8oyGjONSj1k8svzrFUFyJMfg/Ja/g0NfI0p85wxlUxBh97A6ypmL8X5vVUA5y2Q==", - "path": "microsoft.extensions.hosting/9.0.0", - "hashPath": "microsoft.extensions.hosting.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Hosting.Abstractions/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-yUKJgu81ExjvqbNWqZKshBbLntZMbMVz/P7Way2SBx7bMqA08Mfdc9O7hWDKAiSp+zPUGT6LKcSCQIPeDK+CCw==", - "path": "microsoft.extensions.hosting.abstractions/9.0.0", - "hashPath": "microsoft.extensions.hosting.abstractions.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-crjWyORoug0kK7RSNJBTeSE6VX8IQgLf3nUpTB9m62bPXp/tzbnOsnbe8TXEG0AASNaKZddnpHKw7fET8E++Pg==", - "path": "microsoft.extensions.logging/9.0.0", - "hashPath": "microsoft.extensions.logging.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Abstractions/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-g0UfujELzlLbHoVG8kPKVBaW470Ewi+jnptGS9KUi6jcb+k2StujtK3m26DFSGGwQ/+bVgZfsWqNzlP6YOejvw==", - "path": "microsoft.extensions.logging.abstractions/9.0.0", - "hashPath": "microsoft.extensions.logging.abstractions.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Configuration/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-H05HiqaNmg6GjH34ocYE9Wm1twm3Oz2aXZko8GTwGBzM7op2brpAA8pJ5yyD1OpS1mXUtModBYOlcZ/wXeWsSg==", - "path": "microsoft.extensions.logging.configuration/9.0.0", - "hashPath": "microsoft.extensions.logging.configuration.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Console/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-yDZ4zsjl7N0K+R/1QTNpXBd79Kaf4qNLHtjk4NaG82UtNg2Z6etJywwv6OarOv3Rp7ocU7uIaRY4CrzHRO/d3w==", - "path": "microsoft.extensions.logging.console/9.0.0", - "hashPath": "microsoft.extensions.logging.console.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Debug/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-4wGlHsrLhYjLw4sFkfRixu2w4DK7dv60OjbvgbLGhUJk0eUPxYHhnszZ/P18nnAkfrPryvtOJ3ZTVev0kpqM6A==", - "path": "microsoft.extensions.logging.debug/9.0.0", - "hashPath": "microsoft.extensions.logging.debug.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.EventLog/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/B8I5bScondnLMNULA3PBu/7Gvmv/P7L83j7gVrmLh6R+HCgHqUNIwVvzCok4ZjIXN2KxrsONHjFYwoBK5EJgQ==", - "path": "microsoft.extensions.logging.eventlog/9.0.0", - "hashPath": "microsoft.extensions.logging.eventlog.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.EventSource/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-zvSjdOAb3HW3aJPM5jf+PR9UoIkoci9id80RXmBgrDEozWI0GDw8tdmpyZgZSwFDvGCwHFodFLNQaeH8879rlA==", - "path": "microsoft.extensions.logging.eventsource/9.0.0", - "hashPath": "microsoft.extensions.logging.eventsource.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Options/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-y2146b3jrPI3Q0lokKXdKLpmXqakYbDIPDV6r3M8SqvSf45WwOTzkyfDpxnZXJsJQEpAsAqjUq5Pu8RCJMjubg==", - "path": "microsoft.extensions.options/9.0.0", - "hashPath": "microsoft.extensions.options.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Options.ConfigurationExtensions/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Ob3FXsXkcSMQmGZi7qP07EQ39kZpSBlTcAZLbJLdI4FIf0Jug8biv2HTavWmnTirchctPlq9bl/26CXtQRguzA==", - "path": "microsoft.extensions.options.configurationextensions/9.0.0", - "hashPath": "microsoft.extensions.options.configurationextensions.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Primitives/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-N3qEBzmLMYiASUlKxxFIISP4AiwuPTHF5uCh+2CWSwwzAJiIYx0kBJsS30cp1nvhSySFAVi30jecD307jV+8Kg==", - "path": "microsoft.extensions.primitives/9.0.0", - "hashPath": "microsoft.extensions.primitives.9.0.0.nupkg.sha512" - }, - "ReactiveUI/20.1.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9hNPknWjijnaSWs6auypoXqUptPZcRpUypF+cf1zD50fgW+SEoQda502N3fVZ2eWPcaiUad+z6GaLwOWmUVHNw==", - "path": "reactiveui/20.1.1", - "hashPath": "reactiveui.20.1.1.nupkg.sha512" - }, - "SkiaSharp/2.88.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3MD5VHjXXieSHCleRLuaTXmL2pD0mB7CcOB1x2kA1I4bhptf4e3R27iM93264ZYuAq6mkUyX5XbcxnZvMJYc1Q==", - "path": "skiasharp/2.88.9", - "hashPath": "skiasharp.2.88.9.nupkg.sha512" - }, - "SkiaSharp.NativeAssets.Linux/2.88.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-cWSaJKVPWAaT/WIn9c8T5uT/l4ETwHxNJTkEOtNKjphNo8AW6TF9O32aRkxqw3l8GUdUo66Bu7EiqtFh/XG0Zg==", - "path": "skiasharp.nativeassets.linux/2.88.9", - "hashPath": "skiasharp.nativeassets.linux.2.88.9.nupkg.sha512" - }, - "SkiaSharp.NativeAssets.macOS/2.88.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Nv5spmKc4505Ep7oUoJ5vp3KweFpeNqxpyGDWyeEPTX2uR6S6syXIm3gj75dM0YJz7NPvcix48mR5laqs8dPuA==", - "path": "skiasharp.nativeassets.macos/2.88.9", - "hashPath": "skiasharp.nativeassets.macos.2.88.9.nupkg.sha512" - }, - "SkiaSharp.NativeAssets.WebAssembly/2.88.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kt06RccBHSnAs2wDYdBSfsjIDbY3EpsOVqnlDgKdgvyuRA8ZFDaHRdWNx1VHjGgYzmnFCGiTJBnXFl5BqGwGnA==", - "path": "skiasharp.nativeassets.webassembly/2.88.9", - "hashPath": "skiasharp.nativeassets.webassembly.2.88.9.nupkg.sha512" - }, - "SkiaSharp.NativeAssets.Win32/2.88.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-wb2kYgU7iy84nQLYZwMeJXixvK++GoIuECjU4ECaUKNuflyRlJKyiRhN1MAHswvlvzuvkrjRWlK0Za6+kYQK7w==", - "path": "skiasharp.nativeassets.win32/2.88.9", - "hashPath": "skiasharp.nativeassets.win32.2.88.9.nupkg.sha512" - }, - "Splat/15.1.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-RHDTdF90FwVbRia2cmuIzkiVoETqnXSB2dDBBi/I35HWXqv4OKGqoMcfcd6obMvO2OmmY5PjU1M62K8LkJafAA==", - "path": "splat/15.1.1", - "hashPath": "splat.15.1.1.nupkg.sha512" - }, - "System.ComponentModel.Annotations/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==", - "path": "system.componentmodel.annotations/5.0.0", - "hashPath": "system.componentmodel.annotations.5.0.0.nupkg.sha512" - }, - "System.Diagnostics.EventLog/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-qd01+AqPhbAG14KtdtIqFk+cxHQFZ/oqRSCoxU1F+Q6Kv0cl726sl7RzU9yLFGd4BUOKdN4XojXF0pQf/R6YeA==", - "path": "system.diagnostics.eventlog/9.0.0", - "hashPath": "system.diagnostics.eventlog.9.0.0.nupkg.sha512" - }, - "System.IO.Pipelines/8.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FHNOatmUq0sqJOkTx+UF/9YK1f180cnW5FVqnQMvYUN0elp6wFzbtPSiqbo1/ru8ICp43JM1i7kKkk6GsNGHlA==", - "path": "system.io.pipelines/8.0.0", - "hashPath": "system.io.pipelines.8.0.0.nupkg.sha512" - }, - "System.Reactive/6.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rHaWtKDwCi9qJ3ObKo8LHPMuuwv33YbmQi7TcUK1C264V3MFnOr5Im7QgCTdLniztP3GJyeiSg5x8NqYJFqRmg==", - "path": "system.reactive/6.0.1", - "hashPath": "system.reactive.6.0.1.nupkg.sha512" - }, - "Tmds.DBus.Protocol/0.21.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ScSMrUrrw8px4kK1Glh0fZv/HQUlg1078bNXNPfRPKQ3WbRzV9HpsydYEOgSoMK5LWICMf2bMwIFH0pGjxjcMA==", - "path": "tmds.dbus.protocol/0.21.2", - "hashPath": "tmds.dbus.protocol.0.21.2.nupkg.sha512" - } - }, - "runtimes": { - "android-x64": [ - "android", - "linux-bionic-x64", - "linux-bionic", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "linux-bionic-x64": [ - "linux-bionic", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "linux-musl-x64": [ - "linux-musl", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "linux-x64": [ - "linux", - "unix-x64", - "unix", - "any", - "base" - ] - } -} \ No newline at end of file diff --git a/bin/Release/net9.0/linux-x64/MyAvaloniaApp.dll b/bin/Release/net9.0/linux-x64/MyAvaloniaApp.dll deleted file mode 100644 index 8e0ef90..0000000 Binary files a/bin/Release/net9.0/linux-x64/MyAvaloniaApp.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/MyAvaloniaApp.pdb b/bin/Release/net9.0/linux-x64/MyAvaloniaApp.pdb deleted file mode 100644 index cec9349..0000000 Binary files a/bin/Release/net9.0/linux-x64/MyAvaloniaApp.pdb and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/MyAvaloniaApp.runtimeconfig.json b/bin/Release/net9.0/linux-x64/MyAvaloniaApp.runtimeconfig.json deleted file mode 100644 index 6979b9a..0000000 --- a/bin/Release/net9.0/linux-x64/MyAvaloniaApp.runtimeconfig.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "runtimeOptions": { - "tfm": "net9.0", - "includedFrameworks": [ - { - "name": "Microsoft.NETCore.App", - "version": "9.0.7" - } - ], - "configProperties": { - "System.Reflection.Metadata.MetadataUpdater.IsSupported": false, - "System.Runtime.InteropServices.BuiltInComInterop.IsSupported": false, - "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false - } - } -} \ No newline at end of file diff --git a/bin/Release/net9.0/linux-x64/ReactiveUI.dll b/bin/Release/net9.0/linux-x64/ReactiveUI.dll deleted file mode 100644 index ec02680..0000000 Binary files a/bin/Release/net9.0/linux-x64/ReactiveUI.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/SkiaSharp.dll b/bin/Release/net9.0/linux-x64/SkiaSharp.dll deleted file mode 100644 index 5d7e9cd..0000000 Binary files a/bin/Release/net9.0/linux-x64/SkiaSharp.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/Splat.dll b/bin/Release/net9.0/linux-x64/Splat.dll deleted file mode 100644 index 63eb27e..0000000 Binary files a/bin/Release/net9.0/linux-x64/Splat.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.AppContext.dll b/bin/Release/net9.0/linux-x64/System.AppContext.dll deleted file mode 100644 index 972a615..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.AppContext.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Buffers.dll b/bin/Release/net9.0/linux-x64/System.Buffers.dll deleted file mode 100644 index ca257f4..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Buffers.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Collections.Concurrent.dll b/bin/Release/net9.0/linux-x64/System.Collections.Concurrent.dll deleted file mode 100644 index 38a6266..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Collections.Concurrent.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Collections.Immutable.dll b/bin/Release/net9.0/linux-x64/System.Collections.Immutable.dll deleted file mode 100644 index 761d142..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Collections.Immutable.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Collections.NonGeneric.dll b/bin/Release/net9.0/linux-x64/System.Collections.NonGeneric.dll deleted file mode 100644 index 0d2421f..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Collections.NonGeneric.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Collections.Specialized.dll b/bin/Release/net9.0/linux-x64/System.Collections.Specialized.dll deleted file mode 100644 index efdf322..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Collections.Specialized.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Collections.dll b/bin/Release/net9.0/linux-x64/System.Collections.dll deleted file mode 100644 index 4fce731..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Collections.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.ComponentModel.Annotations.dll b/bin/Release/net9.0/linux-x64/System.ComponentModel.Annotations.dll deleted file mode 100644 index 4aacc9b..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.ComponentModel.Annotations.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.ComponentModel.DataAnnotations.dll b/bin/Release/net9.0/linux-x64/System.ComponentModel.DataAnnotations.dll deleted file mode 100644 index 803f7e8..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.ComponentModel.DataAnnotations.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.ComponentModel.EventBasedAsync.dll b/bin/Release/net9.0/linux-x64/System.ComponentModel.EventBasedAsync.dll deleted file mode 100644 index 24f9e9e..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.ComponentModel.EventBasedAsync.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.ComponentModel.Primitives.dll b/bin/Release/net9.0/linux-x64/System.ComponentModel.Primitives.dll deleted file mode 100644 index 96a6d71..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.ComponentModel.Primitives.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.ComponentModel.TypeConverter.dll b/bin/Release/net9.0/linux-x64/System.ComponentModel.TypeConverter.dll deleted file mode 100644 index d766fd4..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.ComponentModel.TypeConverter.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.ComponentModel.dll b/bin/Release/net9.0/linux-x64/System.ComponentModel.dll deleted file mode 100644 index 543362e..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.ComponentModel.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Configuration.dll b/bin/Release/net9.0/linux-x64/System.Configuration.dll deleted file mode 100644 index 596d492..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Configuration.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Console.dll b/bin/Release/net9.0/linux-x64/System.Console.dll deleted file mode 100644 index 7153a57..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Console.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Core.dll b/bin/Release/net9.0/linux-x64/System.Core.dll deleted file mode 100644 index dba15ec..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Core.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Data.Common.dll b/bin/Release/net9.0/linux-x64/System.Data.Common.dll deleted file mode 100644 index d16d9a4..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Data.Common.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Data.DataSetExtensions.dll b/bin/Release/net9.0/linux-x64/System.Data.DataSetExtensions.dll deleted file mode 100644 index fcf0be2..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Data.DataSetExtensions.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Data.dll b/bin/Release/net9.0/linux-x64/System.Data.dll deleted file mode 100644 index abe8cb5..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Data.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Diagnostics.Contracts.dll b/bin/Release/net9.0/linux-x64/System.Diagnostics.Contracts.dll deleted file mode 100644 index 04f297b..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Diagnostics.Contracts.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Diagnostics.Debug.dll b/bin/Release/net9.0/linux-x64/System.Diagnostics.Debug.dll deleted file mode 100644 index 42d1466..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Diagnostics.Debug.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Diagnostics.DiagnosticSource.dll b/bin/Release/net9.0/linux-x64/System.Diagnostics.DiagnosticSource.dll deleted file mode 100644 index 954eb15..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Diagnostics.DiagnosticSource.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Diagnostics.EventLog.dll b/bin/Release/net9.0/linux-x64/System.Diagnostics.EventLog.dll deleted file mode 100644 index b1029de..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Diagnostics.EventLog.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Diagnostics.FileVersionInfo.dll b/bin/Release/net9.0/linux-x64/System.Diagnostics.FileVersionInfo.dll deleted file mode 100644 index 190a20b..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Diagnostics.FileVersionInfo.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Diagnostics.Process.dll b/bin/Release/net9.0/linux-x64/System.Diagnostics.Process.dll deleted file mode 100644 index fd5521b..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Diagnostics.Process.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Diagnostics.StackTrace.dll b/bin/Release/net9.0/linux-x64/System.Diagnostics.StackTrace.dll deleted file mode 100644 index ddec25a..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Diagnostics.StackTrace.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Diagnostics.TextWriterTraceListener.dll b/bin/Release/net9.0/linux-x64/System.Diagnostics.TextWriterTraceListener.dll deleted file mode 100644 index aa971a0..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Diagnostics.TextWriterTraceListener.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Diagnostics.Tools.dll b/bin/Release/net9.0/linux-x64/System.Diagnostics.Tools.dll deleted file mode 100644 index 57bb80c..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Diagnostics.Tools.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Diagnostics.TraceSource.dll b/bin/Release/net9.0/linux-x64/System.Diagnostics.TraceSource.dll deleted file mode 100644 index 7feb7d0..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Diagnostics.TraceSource.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Diagnostics.Tracing.dll b/bin/Release/net9.0/linux-x64/System.Diagnostics.Tracing.dll deleted file mode 100644 index 1dc27cc..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Diagnostics.Tracing.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Drawing.Primitives.dll b/bin/Release/net9.0/linux-x64/System.Drawing.Primitives.dll deleted file mode 100644 index 06a7b46..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Drawing.Primitives.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Drawing.dll b/bin/Release/net9.0/linux-x64/System.Drawing.dll deleted file mode 100644 index 3bdb43f..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Drawing.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Dynamic.Runtime.dll b/bin/Release/net9.0/linux-x64/System.Dynamic.Runtime.dll deleted file mode 100644 index 65403d2..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Dynamic.Runtime.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Formats.Asn1.dll b/bin/Release/net9.0/linux-x64/System.Formats.Asn1.dll deleted file mode 100644 index cb642c6..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Formats.Asn1.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Formats.Tar.dll b/bin/Release/net9.0/linux-x64/System.Formats.Tar.dll deleted file mode 100644 index a449112..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Formats.Tar.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Globalization.Calendars.dll b/bin/Release/net9.0/linux-x64/System.Globalization.Calendars.dll deleted file mode 100644 index f031583..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Globalization.Calendars.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Globalization.Extensions.dll b/bin/Release/net9.0/linux-x64/System.Globalization.Extensions.dll deleted file mode 100644 index c357793..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Globalization.Extensions.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Globalization.dll b/bin/Release/net9.0/linux-x64/System.Globalization.dll deleted file mode 100644 index 07d5987..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Globalization.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.IO.Compression.Brotli.dll b/bin/Release/net9.0/linux-x64/System.IO.Compression.Brotli.dll deleted file mode 100644 index 12d4ca1..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.IO.Compression.Brotli.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.IO.Compression.FileSystem.dll b/bin/Release/net9.0/linux-x64/System.IO.Compression.FileSystem.dll deleted file mode 100644 index e8f2a7b..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.IO.Compression.FileSystem.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.IO.Compression.ZipFile.dll b/bin/Release/net9.0/linux-x64/System.IO.Compression.ZipFile.dll deleted file mode 100644 index 4f15a41..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.IO.Compression.ZipFile.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.IO.Compression.dll b/bin/Release/net9.0/linux-x64/System.IO.Compression.dll deleted file mode 100644 index 8cbbff5..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.IO.Compression.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.IO.FileSystem.AccessControl.dll b/bin/Release/net9.0/linux-x64/System.IO.FileSystem.AccessControl.dll deleted file mode 100644 index 08a0c62..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.IO.FileSystem.AccessControl.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.IO.FileSystem.DriveInfo.dll b/bin/Release/net9.0/linux-x64/System.IO.FileSystem.DriveInfo.dll deleted file mode 100644 index 3e9991e..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.IO.FileSystem.DriveInfo.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.IO.FileSystem.Primitives.dll b/bin/Release/net9.0/linux-x64/System.IO.FileSystem.Primitives.dll deleted file mode 100644 index 5cd0541..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.IO.FileSystem.Primitives.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.IO.FileSystem.Watcher.dll b/bin/Release/net9.0/linux-x64/System.IO.FileSystem.Watcher.dll deleted file mode 100644 index eaa2e45..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.IO.FileSystem.Watcher.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.IO.FileSystem.dll b/bin/Release/net9.0/linux-x64/System.IO.FileSystem.dll deleted file mode 100644 index 7ef8d40..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.IO.FileSystem.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.IO.IsolatedStorage.dll b/bin/Release/net9.0/linux-x64/System.IO.IsolatedStorage.dll deleted file mode 100644 index 7e9e7af..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.IO.IsolatedStorage.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.IO.MemoryMappedFiles.dll b/bin/Release/net9.0/linux-x64/System.IO.MemoryMappedFiles.dll deleted file mode 100644 index 485fda4..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.IO.MemoryMappedFiles.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.IO.Pipelines.dll b/bin/Release/net9.0/linux-x64/System.IO.Pipelines.dll deleted file mode 100644 index fd90c8c..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.IO.Pipelines.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.IO.Pipes.AccessControl.dll b/bin/Release/net9.0/linux-x64/System.IO.Pipes.AccessControl.dll deleted file mode 100644 index f237d65..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.IO.Pipes.AccessControl.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.IO.Pipes.dll b/bin/Release/net9.0/linux-x64/System.IO.Pipes.dll deleted file mode 100644 index 1784161..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.IO.Pipes.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.IO.UnmanagedMemoryStream.dll b/bin/Release/net9.0/linux-x64/System.IO.UnmanagedMemoryStream.dll deleted file mode 100644 index 3e94048..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.IO.UnmanagedMemoryStream.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.IO.dll b/bin/Release/net9.0/linux-x64/System.IO.dll deleted file mode 100644 index 376fb9b..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.IO.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Linq.Expressions.dll b/bin/Release/net9.0/linux-x64/System.Linq.Expressions.dll deleted file mode 100644 index 08b268c..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Linq.Expressions.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Linq.Parallel.dll b/bin/Release/net9.0/linux-x64/System.Linq.Parallel.dll deleted file mode 100644 index cfb3ef3..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Linq.Parallel.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Linq.Queryable.dll b/bin/Release/net9.0/linux-x64/System.Linq.Queryable.dll deleted file mode 100644 index 620ab5a..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Linq.Queryable.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Linq.dll b/bin/Release/net9.0/linux-x64/System.Linq.dll deleted file mode 100644 index d1ebd17..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Linq.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Memory.dll b/bin/Release/net9.0/linux-x64/System.Memory.dll deleted file mode 100644 index a652a66..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Memory.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Net.Http.Json.dll b/bin/Release/net9.0/linux-x64/System.Net.Http.Json.dll deleted file mode 100644 index d616d89..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Net.Http.Json.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Net.Http.dll b/bin/Release/net9.0/linux-x64/System.Net.Http.dll deleted file mode 100644 index 1bb6230..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Net.Http.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Net.HttpListener.dll b/bin/Release/net9.0/linux-x64/System.Net.HttpListener.dll deleted file mode 100644 index 88f9ba9..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Net.HttpListener.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Net.Mail.dll b/bin/Release/net9.0/linux-x64/System.Net.Mail.dll deleted file mode 100644 index 61b3737..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Net.Mail.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Net.NameResolution.dll b/bin/Release/net9.0/linux-x64/System.Net.NameResolution.dll deleted file mode 100644 index 0de3632..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Net.NameResolution.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Net.NetworkInformation.dll b/bin/Release/net9.0/linux-x64/System.Net.NetworkInformation.dll deleted file mode 100644 index 0c8a787..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Net.NetworkInformation.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Net.Ping.dll b/bin/Release/net9.0/linux-x64/System.Net.Ping.dll deleted file mode 100644 index 662a951..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Net.Ping.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Net.Primitives.dll b/bin/Release/net9.0/linux-x64/System.Net.Primitives.dll deleted file mode 100644 index caa89cf..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Net.Primitives.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Net.Quic.dll b/bin/Release/net9.0/linux-x64/System.Net.Quic.dll deleted file mode 100644 index d7f2d73..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Net.Quic.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Net.Requests.dll b/bin/Release/net9.0/linux-x64/System.Net.Requests.dll deleted file mode 100644 index 7994ca9..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Net.Requests.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Net.Security.dll b/bin/Release/net9.0/linux-x64/System.Net.Security.dll deleted file mode 100644 index c30952d..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Net.Security.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Net.ServicePoint.dll b/bin/Release/net9.0/linux-x64/System.Net.ServicePoint.dll deleted file mode 100644 index 940db5a..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Net.ServicePoint.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Net.Sockets.dll b/bin/Release/net9.0/linux-x64/System.Net.Sockets.dll deleted file mode 100644 index d9a91f5..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Net.Sockets.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Net.WebClient.dll b/bin/Release/net9.0/linux-x64/System.Net.WebClient.dll deleted file mode 100644 index 0484c90..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Net.WebClient.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Net.WebHeaderCollection.dll b/bin/Release/net9.0/linux-x64/System.Net.WebHeaderCollection.dll deleted file mode 100644 index 05d335f..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Net.WebHeaderCollection.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Net.WebProxy.dll b/bin/Release/net9.0/linux-x64/System.Net.WebProxy.dll deleted file mode 100644 index 995e512..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Net.WebProxy.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Net.WebSockets.Client.dll b/bin/Release/net9.0/linux-x64/System.Net.WebSockets.Client.dll deleted file mode 100644 index cc6ec5a..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Net.WebSockets.Client.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Net.WebSockets.dll b/bin/Release/net9.0/linux-x64/System.Net.WebSockets.dll deleted file mode 100644 index 08265d7..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Net.WebSockets.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Net.dll b/bin/Release/net9.0/linux-x64/System.Net.dll deleted file mode 100644 index c1934c0..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Net.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Numerics.Vectors.dll b/bin/Release/net9.0/linux-x64/System.Numerics.Vectors.dll deleted file mode 100644 index 49cdfa6..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Numerics.Vectors.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Numerics.dll b/bin/Release/net9.0/linux-x64/System.Numerics.dll deleted file mode 100644 index e5a2008..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Numerics.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.ObjectModel.dll b/bin/Release/net9.0/linux-x64/System.ObjectModel.dll deleted file mode 100644 index ef8236d..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.ObjectModel.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Private.CoreLib.dll b/bin/Release/net9.0/linux-x64/System.Private.CoreLib.dll deleted file mode 100644 index 3e9384a..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Private.CoreLib.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Private.DataContractSerialization.dll b/bin/Release/net9.0/linux-x64/System.Private.DataContractSerialization.dll deleted file mode 100644 index afa8085..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Private.DataContractSerialization.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Private.Uri.dll b/bin/Release/net9.0/linux-x64/System.Private.Uri.dll deleted file mode 100644 index 15a979d..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Private.Uri.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Private.Xml.Linq.dll b/bin/Release/net9.0/linux-x64/System.Private.Xml.Linq.dll deleted file mode 100644 index 9e4f900..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Private.Xml.Linq.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Private.Xml.dll b/bin/Release/net9.0/linux-x64/System.Private.Xml.dll deleted file mode 100644 index da7301f..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Private.Xml.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Reactive.dll b/bin/Release/net9.0/linux-x64/System.Reactive.dll deleted file mode 100644 index d6d2efa..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Reactive.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Reflection.DispatchProxy.dll b/bin/Release/net9.0/linux-x64/System.Reflection.DispatchProxy.dll deleted file mode 100644 index c3d73a4..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Reflection.DispatchProxy.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Reflection.Emit.ILGeneration.dll b/bin/Release/net9.0/linux-x64/System.Reflection.Emit.ILGeneration.dll deleted file mode 100644 index 3febd09..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Reflection.Emit.ILGeneration.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Reflection.Emit.Lightweight.dll b/bin/Release/net9.0/linux-x64/System.Reflection.Emit.Lightweight.dll deleted file mode 100644 index 05481b3..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Reflection.Emit.Lightweight.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Reflection.Emit.dll b/bin/Release/net9.0/linux-x64/System.Reflection.Emit.dll deleted file mode 100644 index a23ebcf..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Reflection.Emit.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Reflection.Extensions.dll b/bin/Release/net9.0/linux-x64/System.Reflection.Extensions.dll deleted file mode 100644 index a36c304..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Reflection.Extensions.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Reflection.Metadata.dll b/bin/Release/net9.0/linux-x64/System.Reflection.Metadata.dll deleted file mode 100644 index 6700e91..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Reflection.Metadata.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Reflection.Primitives.dll b/bin/Release/net9.0/linux-x64/System.Reflection.Primitives.dll deleted file mode 100644 index 170a2a9..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Reflection.Primitives.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Reflection.TypeExtensions.dll b/bin/Release/net9.0/linux-x64/System.Reflection.TypeExtensions.dll deleted file mode 100644 index 8e05969..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Reflection.TypeExtensions.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Reflection.dll b/bin/Release/net9.0/linux-x64/System.Reflection.dll deleted file mode 100644 index 34fd3da..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Reflection.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Resources.Reader.dll b/bin/Release/net9.0/linux-x64/System.Resources.Reader.dll deleted file mode 100644 index dbb3b24..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Resources.Reader.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Resources.ResourceManager.dll b/bin/Release/net9.0/linux-x64/System.Resources.ResourceManager.dll deleted file mode 100644 index b9c3fcd..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Resources.ResourceManager.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Resources.Writer.dll b/bin/Release/net9.0/linux-x64/System.Resources.Writer.dll deleted file mode 100644 index 860d501..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Resources.Writer.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Runtime.CompilerServices.Unsafe.dll b/bin/Release/net9.0/linux-x64/System.Runtime.CompilerServices.Unsafe.dll deleted file mode 100644 index 0c393a4..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Runtime.CompilerServices.Unsafe.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Runtime.CompilerServices.VisualC.dll b/bin/Release/net9.0/linux-x64/System.Runtime.CompilerServices.VisualC.dll deleted file mode 100644 index 5cdab59..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Runtime.CompilerServices.VisualC.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Runtime.Extensions.dll b/bin/Release/net9.0/linux-x64/System.Runtime.Extensions.dll deleted file mode 100644 index d3c160f..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Runtime.Extensions.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Runtime.Handles.dll b/bin/Release/net9.0/linux-x64/System.Runtime.Handles.dll deleted file mode 100644 index e27f216..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Runtime.Handles.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Runtime.InteropServices.JavaScript.dll b/bin/Release/net9.0/linux-x64/System.Runtime.InteropServices.JavaScript.dll deleted file mode 100644 index ce46a8e..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Runtime.InteropServices.JavaScript.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Runtime.InteropServices.RuntimeInformation.dll b/bin/Release/net9.0/linux-x64/System.Runtime.InteropServices.RuntimeInformation.dll deleted file mode 100644 index 59022d5..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Runtime.InteropServices.RuntimeInformation.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Runtime.InteropServices.dll b/bin/Release/net9.0/linux-x64/System.Runtime.InteropServices.dll deleted file mode 100644 index 750d99b..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Runtime.InteropServices.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Runtime.Intrinsics.dll b/bin/Release/net9.0/linux-x64/System.Runtime.Intrinsics.dll deleted file mode 100644 index f52805b..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Runtime.Intrinsics.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Runtime.Loader.dll b/bin/Release/net9.0/linux-x64/System.Runtime.Loader.dll deleted file mode 100644 index 24009fb..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Runtime.Loader.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Runtime.Numerics.dll b/bin/Release/net9.0/linux-x64/System.Runtime.Numerics.dll deleted file mode 100644 index 2cae663..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Runtime.Numerics.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Runtime.Serialization.Formatters.dll b/bin/Release/net9.0/linux-x64/System.Runtime.Serialization.Formatters.dll deleted file mode 100644 index c64b33b..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Runtime.Serialization.Formatters.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Runtime.Serialization.Json.dll b/bin/Release/net9.0/linux-x64/System.Runtime.Serialization.Json.dll deleted file mode 100644 index 44be2cc..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Runtime.Serialization.Json.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Runtime.Serialization.Primitives.dll b/bin/Release/net9.0/linux-x64/System.Runtime.Serialization.Primitives.dll deleted file mode 100644 index 889a3c6..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Runtime.Serialization.Primitives.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Runtime.Serialization.Xml.dll b/bin/Release/net9.0/linux-x64/System.Runtime.Serialization.Xml.dll deleted file mode 100644 index 542d24f..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Runtime.Serialization.Xml.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Runtime.Serialization.dll b/bin/Release/net9.0/linux-x64/System.Runtime.Serialization.dll deleted file mode 100644 index 89edccd..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Runtime.Serialization.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Runtime.dll b/bin/Release/net9.0/linux-x64/System.Runtime.dll deleted file mode 100644 index 308996a..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Runtime.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Security.AccessControl.dll b/bin/Release/net9.0/linux-x64/System.Security.AccessControl.dll deleted file mode 100644 index e4a6dee..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Security.AccessControl.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Security.Claims.dll b/bin/Release/net9.0/linux-x64/System.Security.Claims.dll deleted file mode 100644 index c3c7db1..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Security.Claims.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Security.Cryptography.Algorithms.dll b/bin/Release/net9.0/linux-x64/System.Security.Cryptography.Algorithms.dll deleted file mode 100644 index 6a1f5a4..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Security.Cryptography.Algorithms.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Security.Cryptography.Cng.dll b/bin/Release/net9.0/linux-x64/System.Security.Cryptography.Cng.dll deleted file mode 100644 index 0f81420..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Security.Cryptography.Cng.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Security.Cryptography.Csp.dll b/bin/Release/net9.0/linux-x64/System.Security.Cryptography.Csp.dll deleted file mode 100644 index 42df1bf..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Security.Cryptography.Csp.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Security.Cryptography.Encoding.dll b/bin/Release/net9.0/linux-x64/System.Security.Cryptography.Encoding.dll deleted file mode 100644 index 162a100..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Security.Cryptography.Encoding.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Security.Cryptography.OpenSsl.dll b/bin/Release/net9.0/linux-x64/System.Security.Cryptography.OpenSsl.dll deleted file mode 100644 index 4c794ab..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Security.Cryptography.OpenSsl.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Security.Cryptography.Primitives.dll b/bin/Release/net9.0/linux-x64/System.Security.Cryptography.Primitives.dll deleted file mode 100644 index 8402922..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Security.Cryptography.Primitives.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Security.Cryptography.X509Certificates.dll b/bin/Release/net9.0/linux-x64/System.Security.Cryptography.X509Certificates.dll deleted file mode 100644 index 291a351..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Security.Cryptography.X509Certificates.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Security.Cryptography.dll b/bin/Release/net9.0/linux-x64/System.Security.Cryptography.dll deleted file mode 100644 index 56b88ce..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Security.Cryptography.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Security.Principal.Windows.dll b/bin/Release/net9.0/linux-x64/System.Security.Principal.Windows.dll deleted file mode 100644 index 97f3ba5..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Security.Principal.Windows.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Security.Principal.dll b/bin/Release/net9.0/linux-x64/System.Security.Principal.dll deleted file mode 100644 index 94795cd..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Security.Principal.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Security.SecureString.dll b/bin/Release/net9.0/linux-x64/System.Security.SecureString.dll deleted file mode 100644 index 44662f1..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Security.SecureString.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Security.dll b/bin/Release/net9.0/linux-x64/System.Security.dll deleted file mode 100644 index a76e3e2..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Security.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.ServiceModel.Web.dll b/bin/Release/net9.0/linux-x64/System.ServiceModel.Web.dll deleted file mode 100644 index 49d8ab1..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.ServiceModel.Web.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.ServiceProcess.dll b/bin/Release/net9.0/linux-x64/System.ServiceProcess.dll deleted file mode 100644 index e27ca12..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.ServiceProcess.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Text.Encoding.CodePages.dll b/bin/Release/net9.0/linux-x64/System.Text.Encoding.CodePages.dll deleted file mode 100644 index 7fda0bc..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Text.Encoding.CodePages.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Text.Encoding.Extensions.dll b/bin/Release/net9.0/linux-x64/System.Text.Encoding.Extensions.dll deleted file mode 100644 index 7bb9db6..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Text.Encoding.Extensions.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Text.Encoding.dll b/bin/Release/net9.0/linux-x64/System.Text.Encoding.dll deleted file mode 100644 index 975ffa9..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Text.Encoding.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Text.Encodings.Web.dll b/bin/Release/net9.0/linux-x64/System.Text.Encodings.Web.dll deleted file mode 100644 index d4da764..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Text.Encodings.Web.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Text.Json.dll b/bin/Release/net9.0/linux-x64/System.Text.Json.dll deleted file mode 100644 index 8c67f3d..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Text.Json.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Text.RegularExpressions.dll b/bin/Release/net9.0/linux-x64/System.Text.RegularExpressions.dll deleted file mode 100644 index e4aff93..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Text.RegularExpressions.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Threading.Channels.dll b/bin/Release/net9.0/linux-x64/System.Threading.Channels.dll deleted file mode 100644 index 68f6898..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Threading.Channels.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Threading.Overlapped.dll b/bin/Release/net9.0/linux-x64/System.Threading.Overlapped.dll deleted file mode 100644 index 79b389f..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Threading.Overlapped.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Threading.Tasks.Dataflow.dll b/bin/Release/net9.0/linux-x64/System.Threading.Tasks.Dataflow.dll deleted file mode 100644 index 3a77d72..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Threading.Tasks.Dataflow.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Threading.Tasks.Extensions.dll b/bin/Release/net9.0/linux-x64/System.Threading.Tasks.Extensions.dll deleted file mode 100644 index c600a29..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Threading.Tasks.Extensions.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Threading.Tasks.Parallel.dll b/bin/Release/net9.0/linux-x64/System.Threading.Tasks.Parallel.dll deleted file mode 100644 index e62d522..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Threading.Tasks.Parallel.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Threading.Tasks.dll b/bin/Release/net9.0/linux-x64/System.Threading.Tasks.dll deleted file mode 100644 index c7b2cfe..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Threading.Tasks.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Threading.Thread.dll b/bin/Release/net9.0/linux-x64/System.Threading.Thread.dll deleted file mode 100644 index ac554be..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Threading.Thread.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Threading.ThreadPool.dll b/bin/Release/net9.0/linux-x64/System.Threading.ThreadPool.dll deleted file mode 100644 index b2ac4a5..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Threading.ThreadPool.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Threading.Timer.dll b/bin/Release/net9.0/linux-x64/System.Threading.Timer.dll deleted file mode 100644 index e8afdbe..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Threading.Timer.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Threading.dll b/bin/Release/net9.0/linux-x64/System.Threading.dll deleted file mode 100644 index 6743bde..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Threading.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Transactions.Local.dll b/bin/Release/net9.0/linux-x64/System.Transactions.Local.dll deleted file mode 100644 index e98cfbd..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Transactions.Local.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Transactions.dll b/bin/Release/net9.0/linux-x64/System.Transactions.dll deleted file mode 100644 index 621e62c..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Transactions.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.ValueTuple.dll b/bin/Release/net9.0/linux-x64/System.ValueTuple.dll deleted file mode 100644 index 4359f51..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.ValueTuple.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Web.HttpUtility.dll b/bin/Release/net9.0/linux-x64/System.Web.HttpUtility.dll deleted file mode 100644 index 9b408c7..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Web.HttpUtility.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Web.dll b/bin/Release/net9.0/linux-x64/System.Web.dll deleted file mode 100644 index 8bfe6b2..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Web.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Windows.dll b/bin/Release/net9.0/linux-x64/System.Windows.dll deleted file mode 100644 index 3a690e8..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Windows.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Xml.Linq.dll b/bin/Release/net9.0/linux-x64/System.Xml.Linq.dll deleted file mode 100644 index f1aba4c..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Xml.Linq.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Xml.ReaderWriter.dll b/bin/Release/net9.0/linux-x64/System.Xml.ReaderWriter.dll deleted file mode 100644 index 4ff1c5c..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Xml.ReaderWriter.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Xml.Serialization.dll b/bin/Release/net9.0/linux-x64/System.Xml.Serialization.dll deleted file mode 100644 index dccedf6..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Xml.Serialization.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Xml.XDocument.dll b/bin/Release/net9.0/linux-x64/System.Xml.XDocument.dll deleted file mode 100644 index a6260c8..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Xml.XDocument.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Xml.XPath.XDocument.dll b/bin/Release/net9.0/linux-x64/System.Xml.XPath.XDocument.dll deleted file mode 100644 index 7e9d117..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Xml.XPath.XDocument.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Xml.XPath.dll b/bin/Release/net9.0/linux-x64/System.Xml.XPath.dll deleted file mode 100644 index d216cc4..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Xml.XPath.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Xml.XmlDocument.dll b/bin/Release/net9.0/linux-x64/System.Xml.XmlDocument.dll deleted file mode 100644 index 0389100..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Xml.XmlDocument.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Xml.XmlSerializer.dll b/bin/Release/net9.0/linux-x64/System.Xml.XmlSerializer.dll deleted file mode 100644 index a38b9e3..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Xml.XmlSerializer.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.Xml.dll b/bin/Release/net9.0/linux-x64/System.Xml.dll deleted file mode 100644 index 9c00793..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.Xml.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/System.dll b/bin/Release/net9.0/linux-x64/System.dll deleted file mode 100644 index 2ecb30d..0000000 Binary files a/bin/Release/net9.0/linux-x64/System.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/Tmds.DBus.Protocol.dll b/bin/Release/net9.0/linux-x64/Tmds.DBus.Protocol.dll deleted file mode 100644 index b66137d..0000000 Binary files a/bin/Release/net9.0/linux-x64/Tmds.DBus.Protocol.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/WindowsBase.dll b/bin/Release/net9.0/linux-x64/WindowsBase.dll deleted file mode 100644 index d2fe33e..0000000 Binary files a/bin/Release/net9.0/linux-x64/WindowsBase.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/appsettings.json b/bin/Release/net9.0/linux-x64/appsettings.json deleted file mode 100644 index 8895b6f..0000000 --- a/bin/Release/net9.0/linux-x64/appsettings.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "Logging": { - "LogLevel": { - "Default": "Information", - "Microsoft": "Warning", - "Microsoft.Hosting.Lifetime": "Information", - "MyAvaloniaApp": "Debug" - }, - "Console": { - "IncludeScopes": true, - "TimestampFormat": "yyyy-MM-dd HH:mm:ss " - } - }, - "AppSettings": { - "ApplicationName": "My Avalonia App", - "Version": "1.0.0", - "Environment": "Development", - "Features": { - "EnableLogging": true, - "EnableMetrics": false, - "EnableTelemetry": false - } - }, - "ConnectionStrings": { - "DefaultConnection": "Data Source=app.db" - } -} diff --git a/bin/Release/net9.0/linux-x64/createdump b/bin/Release/net9.0/linux-x64/createdump deleted file mode 100644 index f60e848..0000000 Binary files a/bin/Release/net9.0/linux-x64/createdump and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/libHarfBuzzSharp.so b/bin/Release/net9.0/linux-x64/libHarfBuzzSharp.so deleted file mode 100644 index 2d442dc..0000000 Binary files a/bin/Release/net9.0/linux-x64/libHarfBuzzSharp.so and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/libSkiaSharp.so b/bin/Release/net9.0/linux-x64/libSkiaSharp.so deleted file mode 100644 index af626a4..0000000 Binary files a/bin/Release/net9.0/linux-x64/libSkiaSharp.so and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/libSystem.Globalization.Native.so b/bin/Release/net9.0/linux-x64/libSystem.Globalization.Native.so deleted file mode 100644 index 92d1140..0000000 Binary files a/bin/Release/net9.0/linux-x64/libSystem.Globalization.Native.so and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/libSystem.IO.Compression.Native.so b/bin/Release/net9.0/linux-x64/libSystem.IO.Compression.Native.so deleted file mode 100644 index 1beb566..0000000 Binary files a/bin/Release/net9.0/linux-x64/libSystem.IO.Compression.Native.so and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/libSystem.Native.so b/bin/Release/net9.0/linux-x64/libSystem.Native.so deleted file mode 100644 index 575b477..0000000 Binary files a/bin/Release/net9.0/linux-x64/libSystem.Native.so and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/libSystem.Net.Security.Native.so b/bin/Release/net9.0/linux-x64/libSystem.Net.Security.Native.so deleted file mode 100644 index 3448add..0000000 Binary files a/bin/Release/net9.0/linux-x64/libSystem.Net.Security.Native.so and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/libSystem.Security.Cryptography.Native.OpenSsl.so b/bin/Release/net9.0/linux-x64/libSystem.Security.Cryptography.Native.OpenSsl.so deleted file mode 100644 index e9b262a..0000000 Binary files a/bin/Release/net9.0/linux-x64/libSystem.Security.Cryptography.Native.OpenSsl.so and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/libclrgc.so b/bin/Release/net9.0/linux-x64/libclrgc.so deleted file mode 100644 index a892e99..0000000 Binary files a/bin/Release/net9.0/linux-x64/libclrgc.so and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/libclrgcexp.so b/bin/Release/net9.0/linux-x64/libclrgcexp.so deleted file mode 100644 index 24b87a9..0000000 Binary files a/bin/Release/net9.0/linux-x64/libclrgcexp.so and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/libclrjit.so b/bin/Release/net9.0/linux-x64/libclrjit.so deleted file mode 100644 index 34ed811..0000000 Binary files a/bin/Release/net9.0/linux-x64/libclrjit.so and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/libcoreclr.so b/bin/Release/net9.0/linux-x64/libcoreclr.so deleted file mode 100644 index 4ba5177..0000000 Binary files a/bin/Release/net9.0/linux-x64/libcoreclr.so and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/libcoreclrtraceptprovider.so b/bin/Release/net9.0/linux-x64/libcoreclrtraceptprovider.so deleted file mode 100644 index 07a2ea5..0000000 Binary files a/bin/Release/net9.0/linux-x64/libcoreclrtraceptprovider.so and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/libhostfxr.so b/bin/Release/net9.0/linux-x64/libhostfxr.so deleted file mode 100644 index d884fbe..0000000 Binary files a/bin/Release/net9.0/linux-x64/libhostfxr.so and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/libhostpolicy.so b/bin/Release/net9.0/linux-x64/libhostpolicy.so deleted file mode 100644 index bc1ebe6..0000000 Binary files a/bin/Release/net9.0/linux-x64/libhostpolicy.so and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/libmscordaccore.so b/bin/Release/net9.0/linux-x64/libmscordaccore.so deleted file mode 100644 index b94befe..0000000 Binary files a/bin/Release/net9.0/linux-x64/libmscordaccore.so and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/libmscordbi.so b/bin/Release/net9.0/linux-x64/libmscordbi.so deleted file mode 100644 index 4eebd3c..0000000 Binary files a/bin/Release/net9.0/linux-x64/libmscordbi.so and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/mscorlib.dll b/bin/Release/net9.0/linux-x64/mscorlib.dll deleted file mode 100644 index 2c893e0..0000000 Binary files a/bin/Release/net9.0/linux-x64/mscorlib.dll and /dev/null differ diff --git a/bin/Release/net9.0/linux-x64/netstandard.dll b/bin/Release/net9.0/linux-x64/netstandard.dll deleted file mode 100644 index c8dfe0a..0000000 Binary files a/bin/Release/net9.0/linux-x64/netstandard.dll and /dev/null differ diff --git a/modify.md b/modify.md index 9548a22..622749c 100644 --- a/modify.md +++ b/modify.md @@ -2,6 +2,114 @@ ## 2025年修改记录 +### 第一步:项目重命名 - MyAvaloniaApp → AuroraDesk +- **日期**: 2025年1月 +- **修改内容**: 完成项目重命名,包括文件重命名、命名空间更新和应用名称更新 +- **修改文件**: + - 项目文件: + - `MyAvaloniaApp.csproj` → `AuroraDesk.csproj` (重命名) + - `MyAvaloniaApp.sln` → `AuroraDesk.sln` (重命名) + - 命名空间更新(所有 C# 文件): + - `Program.cs` - namespace MyAvaloniaApp → AuroraDesk + - `App.axaml.cs` - namespace MyAvaloniaApp → AuroraDesk,更新所有 using 语句 + - `MainWindow.axaml.cs` - namespace MyAvaloniaApp → AuroraDesk,更新 using 语句 + - `Configuration\AppSettings.cs` - namespace MyAvaloniaApp.Configuration → AuroraDesk.Configuration + - `Extensions\ServiceCollectionExtensions.cs` - namespace 和 using 语句更新 + - `Services\*.cs` (所有服务文件) - namespace MyAvaloniaApp.Services → AuroraDesk.Services + - `Converters\*.cs` - namespace MyAvaloniaApp.Converters → AuroraDesk.Converters + - `Attached\*.cs` - namespace MyAvaloniaApp.Attached → AuroraDesk.Attached + - `ViewModels\*.cs` - namespace MyAvaloniaApp.ViewModels.* → AuroraDesk.ViewModels.* + - `ViewModels\Base\*.cs` - namespace MyAvaloniaApp.ViewModels.Base → AuroraDesk.ViewModels.Base + - `ViewModels\Pages\*.cs` - namespace MyAvaloniaApp.ViewModels.Pages → AuroraDesk.ViewModels.Pages + - `Views\*.cs` - namespace MyAvaloniaApp.Views.* → AuroraDesk.Views.* + - `Views\Pages\*.cs` - namespace MyAvaloniaApp.Views.Pages → AuroraDesk.Views.Pages + - 应用名称更新: + - `ViewModels\MainWindowViewModel.cs` - 标题从 "My Avalonia App" 更新为 "AuroraDesk" + - `Configuration\AppSettings.cs` - ApplicationName 从 "My Avalonia App" 更新为 "AuroraDesk" + - 示例代码字符串: + - `ViewModels\Pages\EditorPageViewModel.cs` - 示例代码中的命名空间字符串更新 +- **修改方式**: + - ✅ 使用 PowerShell 命令重命名项目文件(Windows 10 环境) + - ✅ 逐个文件修改命名空间,避免批量替换导致乱码问题 + - ✅ 逐个文件更新 using 语句 + - ✅ 更新项目文件中的 RootNamespace 和 AssemblyName + - ✅ 更新解决方案文件中的项目引用 +- **技术细节**: + - **项目文件重命名**: + - 使用 PowerShell `Rename-Item` 命令重命名 `.csproj` 和 `.sln` 文件 + - 在 `.csproj` 文件中添加 `AuroraDesk` 和 `AuroraDesk` + - 在 `.sln` 文件中更新项目名称和项目文件路径 + - **命名空间更新统计**: + - 命名空间声明更新:约 39 个文件 + - using 语句更新:约 26 个文件 + - 总计修改文件:约 40+ 个 C# 源文件 + - **命名空间映射**: + - `MyAvaloniaApp` → `AuroraDesk` + - `MyAvaloniaApp.Configuration` → `AuroraDesk.Configuration` + - `MyAvaloniaApp.Extensions` → `AuroraDesk.Extensions` + - `MyAvaloniaApp.Services` → `AuroraDesk.Services` + - `MyAvaloniaApp.Converters` → `AuroraDesk.Converters` + - `MyAvaloniaApp.Attached` → `AuroraDesk.Attached` + - `MyAvaloniaApp.ViewModels` → `AuroraDesk.ViewModels` + - `MyAvaloniaApp.ViewModels.Base` → `AuroraDesk.ViewModels.Base` + - `MyAvaloniaApp.ViewModels.Pages` → `AuroraDesk.ViewModels.Pages` + - `MyAvaloniaApp.Views` → `AuroraDesk.Views` + - `MyAvaloniaApp.Views.Pages` → `AuroraDesk.Views.Pages` +- **注意事项**: + - ✅ 严格遵守 Windows 10 环境要求,使用 PowerShell 而非 Linux 命令 + - ✅ 不使用批量替换,逐个文件修改以避免编码问题 + - ✅ 每次修改后验证文件内容正确性 + - ✅ 同时更新了应用显示名称,保持一致性 +- **后续步骤**: + - 编译项目验证所有命名空间更新是否正确 + - 运行应用程序验证功能是否正常 + - 继续执行重构计划的后续步骤(架构重构等) + +### 创建 AuroraDesk 重构计划文档 +- **日期**: 2025年1月 +- **修改内容**: 创建详细的项目重构计划文档 +- **修改文件**: + - `AuroraDesk重构计划.md` - 新建重构计划文档 +- **问题描述**: + - 项目需要从 MyAvaloniaApp 重命名为 AuroraDesk + - 当前项目结构不符合整洁架构原则 + - ViewModels 耦合性强,MainWindowViewModel 直接创建所有 PageViewModel 实例 + - 需要遵循整洁架构进行分层重构 + - 命名空间需要统一为 Aurora 前缀 + - Windows 10 环境,需要避免 Linux 语法导致乱码问题 +- **解决方案**: + - 创建了完整的重构计划文档 `AuroraDesk重构计划.md` + - 规划了整洁架构分层结构:Core、Application、Infrastructure、Presentation + - 设计了 ViewModel 解耦方案:使用工厂模式和服务模式 + - 制定了详细的执行步骤,分阶段进行重构 + - 强调不要批量替换,逐个文件修改命名空间 + - 提供了代码示例和检查清单 +- **技术细节**: + - 架构分层: + - **Core**: 领域实体和接口 + - **Application**: 应用服务接口和 DTOs + - **Infrastructure**: 服务实现和配置 + - **Presentation**: ViewModels、Views 和 UI 相关 + - 解耦策略: + - 引入 `IPageViewModelFactory` 接口和实现 + - 引入 `INavigationService` 接口和实现 + - 将导航配置数据外置 + - MainWindowViewModel 不再直接创建 PageViewModel + - 命名空间规划:所有命名空间以 `AuroraDesk` 开头 +- **执行计划**: + - 阶段一:准备工作(分析依赖关系) + - 阶段二:架构重构(创建分层结构) + - 阶段三:项目重命名(逐个文件修改) + - 阶段四:解耦 ViewModels(重点优化) + - 阶段五:注册依赖注入 + - 阶段六:测试和验证 +- **注意事项**: + - ❌ 禁止批量替换命名空间 + - ✅ 逐个文件修改并编译测试 + - ✅ 使用 Windows 路径和 PowerShell 脚本 + - ✅ 每个阶段完成后提交代码 +- **状态**: 计划阶段,等待开始执行 + ### 实现自定义 ViewLocator 修复路由视图解析 - **日期**: 2025年1月10日 - **修改内容**: 创建自定义 ViewLocator 实现正确的 ViewModel 到 View 映射 diff --git a/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs deleted file mode 100644 index 2217181..0000000 --- a/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] diff --git a/obj/Debug/net8.0/Avalonia/Resources.Inputs.cache b/obj/Debug/net8.0/Avalonia/Resources.Inputs.cache deleted file mode 100644 index 72024fd..0000000 --- a/obj/Debug/net8.0/Avalonia/Resources.Inputs.cache +++ /dev/null @@ -1 +0,0 @@ -ca5e963a936b3ac33dee9fa99e982468c93c6b7f77cf15514101cc61ea08d73e diff --git a/obj/Debug/net8.0/Avalonia/references b/obj/Debug/net8.0/Avalonia/references deleted file mode 100644 index b805af3..0000000 --- a/obj/Debug/net8.0/Avalonia/references +++ /dev/null @@ -1,225 +0,0 @@ -C:\Users\changeself\.nuget\packages\avalonia\11.3.7\ref\net8.0\Avalonia.Base.dll -C:\Users\changeself\.nuget\packages\avalonia.controls.colorpicker\11.3.6\lib\net8.0\Avalonia.Controls.ColorPicker.dll -C:\Users\changeself\.nuget\packages\avalonia\11.3.7\ref\net8.0\Avalonia.Controls.dll -C:\Users\changeself\.nuget\packages\avalonia\11.3.7\ref\net8.0\Avalonia.DesignerSupport.dll -C:\Users\changeself\.nuget\packages\avalonia.desktop\11.3.7\lib\net8.0\Avalonia.Desktop.dll -C:\Users\changeself\.nuget\packages\avalonia.diagnostics\11.3.6\lib\net8.0\Avalonia.Diagnostics.dll -C:\Users\changeself\.nuget\packages\avalonia\11.3.7\ref\net8.0\Avalonia.Dialogs.dll -C:\Users\changeself\.nuget\packages\avalonia\11.3.7\ref\net8.0\Avalonia.dll -C:\Users\changeself\.nuget\packages\avalonia.fonts.inter\11.3.6\lib\net8.0\Avalonia.Fonts.Inter.dll -C:\Users\changeself\.nuget\packages\avalonia.freedesktop\11.3.7\lib\net8.0\Avalonia.FreeDesktop.dll -C:\Users\changeself\.nuget\packages\avalonia\11.3.7\ref\net8.0\Avalonia.Markup.dll -C:\Users\changeself\.nuget\packages\avalonia\11.3.7\ref\net8.0\Avalonia.Markup.Xaml.dll -C:\Users\changeself\.nuget\packages\avalonia\11.3.7\ref\net8.0\Avalonia.Metal.dll -C:\Users\changeself\.nuget\packages\avalonia\11.3.7\ref\net8.0\Avalonia.MicroCom.dll -C:\Users\changeself\.nuget\packages\avalonia.native\11.3.7\lib\net8.0\Avalonia.Native.dll -C:\Users\changeself\.nuget\packages\avalonia\11.3.7\ref\net8.0\Avalonia.OpenGL.dll -C:\Users\changeself\.nuget\packages\avalonia.reactiveui\11.3.7\lib\net8.0\Avalonia.ReactiveUI.dll -C:\Users\changeself\.nuget\packages\avalonia.remote.protocol\11.3.7\lib\net8.0\Avalonia.Remote.Protocol.dll -C:\Users\changeself\.nuget\packages\avalonia.skia\11.3.7\lib\net8.0\Avalonia.Skia.dll -C:\Users\changeself\.nuget\packages\avalonia.themes.fluent\11.3.6\lib\net8.0\Avalonia.Themes.Fluent.dll -C:\Users\changeself\.nuget\packages\avalonia.themes.simple\11.3.6\lib\net8.0\Avalonia.Themes.Simple.dll -C:\Users\changeself\.nuget\packages\avalonia\11.3.7\ref\net8.0\Avalonia.Vulkan.dll -C:\Users\changeself\.nuget\packages\avalonia.win32\11.3.7\lib\net8.0\Avalonia.Win32.Automation.dll -C:\Users\changeself\.nuget\packages\avalonia.win32\11.3.7\lib\net8.0\Avalonia.Win32.dll -C:\Users\changeself\.nuget\packages\avalonia.x11\11.3.7\lib\net8.0\Avalonia.X11.dll -C:\Users\changeself\.nuget\packages\dynamicdata\8.4.1\lib\net8.0\DynamicData.dll -C:\Users\changeself\.nuget\packages\harfbuzzsharp\8.3.1.1\lib\net8.0\HarfBuzzSharp.dll -C:\Users\changeself\.nuget\packages\microcom.runtime\0.11.0\lib\net5.0\MicroCom.Runtime.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\Microsoft.CSharp.dll -C:\Users\changeself\.nuget\packages\microsoft.extensions.configuration.abstractions\9.0.0\lib\net8.0\Microsoft.Extensions.Configuration.Abstractions.dll -C:\Users\changeself\.nuget\packages\microsoft.extensions.configuration.binder\9.0.0\lib\net8.0\Microsoft.Extensions.Configuration.Binder.dll -C:\Users\changeself\.nuget\packages\microsoft.extensions.configuration.commandline\9.0.0\lib\net8.0\Microsoft.Extensions.Configuration.CommandLine.dll -C:\Users\changeself\.nuget\packages\microsoft.extensions.configuration\9.0.0\lib\net8.0\Microsoft.Extensions.Configuration.dll -C:\Users\changeself\.nuget\packages\microsoft.extensions.configuration.environmentvariables\9.0.0\lib\net8.0\Microsoft.Extensions.Configuration.EnvironmentVariables.dll -C:\Users\changeself\.nuget\packages\microsoft.extensions.configuration.fileextensions\9.0.0\lib\net8.0\Microsoft.Extensions.Configuration.FileExtensions.dll -C:\Users\changeself\.nuget\packages\microsoft.extensions.configuration.json\9.0.0\lib\net8.0\Microsoft.Extensions.Configuration.Json.dll -C:\Users\changeself\.nuget\packages\microsoft.extensions.configuration.usersecrets\9.0.0\lib\net8.0\Microsoft.Extensions.Configuration.UserSecrets.dll -C:\Users\changeself\.nuget\packages\microsoft.extensions.dependencyinjection.abstractions\9.0.0\lib\net8.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll -C:\Users\changeself\.nuget\packages\microsoft.extensions.dependencyinjection\9.0.0\lib\net8.0\Microsoft.Extensions.DependencyInjection.dll -C:\Users\changeself\.nuget\packages\microsoft.extensions.diagnostics.abstractions\9.0.0\lib\net8.0\Microsoft.Extensions.Diagnostics.Abstractions.dll -C:\Users\changeself\.nuget\packages\microsoft.extensions.diagnostics\9.0.0\lib\net8.0\Microsoft.Extensions.Diagnostics.dll -C:\Users\changeself\.nuget\packages\microsoft.extensions.fileproviders.abstractions\9.0.0\lib\net8.0\Microsoft.Extensions.FileProviders.Abstractions.dll -C:\Users\changeself\.nuget\packages\microsoft.extensions.fileproviders.physical\9.0.0\lib\net8.0\Microsoft.Extensions.FileProviders.Physical.dll -C:\Users\changeself\.nuget\packages\microsoft.extensions.filesystemglobbing\9.0.0\lib\net8.0\Microsoft.Extensions.FileSystemGlobbing.dll -C:\Users\changeself\.nuget\packages\microsoft.extensions.hosting.abstractions\9.0.0\lib\net8.0\Microsoft.Extensions.Hosting.Abstractions.dll -C:\Users\changeself\.nuget\packages\microsoft.extensions.hosting\9.0.0\lib\net8.0\Microsoft.Extensions.Hosting.dll -C:\Users\changeself\.nuget\packages\microsoft.extensions.logging.abstractions\9.0.0\lib\net8.0\Microsoft.Extensions.Logging.Abstractions.dll -C:\Users\changeself\.nuget\packages\microsoft.extensions.logging.configuration\9.0.0\lib\net8.0\Microsoft.Extensions.Logging.Configuration.dll -C:\Users\changeself\.nuget\packages\microsoft.extensions.logging.console\9.0.0\lib\net8.0\Microsoft.Extensions.Logging.Console.dll -C:\Users\changeself\.nuget\packages\microsoft.extensions.logging.debug\9.0.0\lib\net8.0\Microsoft.Extensions.Logging.Debug.dll -C:\Users\changeself\.nuget\packages\microsoft.extensions.logging\9.0.0\lib\net8.0\Microsoft.Extensions.Logging.dll -C:\Users\changeself\.nuget\packages\microsoft.extensions.logging.eventlog\9.0.0\lib\net8.0\Microsoft.Extensions.Logging.EventLog.dll -C:\Users\changeself\.nuget\packages\microsoft.extensions.logging.eventsource\9.0.0\lib\net8.0\Microsoft.Extensions.Logging.EventSource.dll -C:\Users\changeself\.nuget\packages\microsoft.extensions.options.configurationextensions\9.0.0\lib\net8.0\Microsoft.Extensions.Options.ConfigurationExtensions.dll -C:\Users\changeself\.nuget\packages\microsoft.extensions.options\9.0.0\lib\net8.0\Microsoft.Extensions.Options.dll -C:\Users\changeself\.nuget\packages\microsoft.extensions.primitives\9.0.0\lib\net8.0\Microsoft.Extensions.Primitives.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\Microsoft.VisualBasic.Core.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\Microsoft.VisualBasic.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\Microsoft.Win32.Primitives.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\Microsoft.Win32.Registry.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\mscorlib.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\netstandard.dll -C:\Users\changeself\.nuget\packages\reactiveui\20.1.1\lib\net8.0\ReactiveUI.dll -C:\Users\changeself\.nuget\packages\skiasharp\2.88.9\lib\net6.0\SkiaSharp.dll -C:\Users\changeself\.nuget\packages\splat\15.1.1\lib\net8.0\Splat.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.AppContext.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Buffers.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Collections.Concurrent.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Collections.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Collections.Immutable.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Collections.NonGeneric.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Collections.Specialized.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.ComponentModel.Annotations.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.ComponentModel.DataAnnotations.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.ComponentModel.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.ComponentModel.EventBasedAsync.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.ComponentModel.Primitives.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.ComponentModel.TypeConverter.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Configuration.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Console.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Core.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Data.Common.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Data.DataSetExtensions.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Data.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Diagnostics.Contracts.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Diagnostics.Debug.dll -C:\Users\changeself\.nuget\packages\system.diagnostics.diagnosticsource\9.0.0\lib\net8.0\System.Diagnostics.DiagnosticSource.dll -C:\Users\changeself\.nuget\packages\system.diagnostics.eventlog\9.0.0\lib\net8.0\System.Diagnostics.EventLog.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Diagnostics.FileVersionInfo.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Diagnostics.Process.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Diagnostics.StackTrace.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Diagnostics.TextWriterTraceListener.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Diagnostics.Tools.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Diagnostics.TraceSource.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Diagnostics.Tracing.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Drawing.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Drawing.Primitives.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Dynamic.Runtime.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Formats.Asn1.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Formats.Tar.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Globalization.Calendars.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Globalization.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Globalization.Extensions.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.IO.Compression.Brotli.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.IO.Compression.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.IO.Compression.FileSystem.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.IO.Compression.ZipFile.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.IO.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.IO.FileSystem.AccessControl.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.IO.FileSystem.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.IO.FileSystem.DriveInfo.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.IO.FileSystem.Primitives.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.IO.FileSystem.Watcher.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.IO.IsolatedStorage.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.IO.MemoryMappedFiles.dll -C:\Users\changeself\.nuget\packages\system.io.pipelines\9.0.0\lib\net8.0\System.IO.Pipelines.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.IO.Pipes.AccessControl.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.IO.Pipes.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.IO.UnmanagedMemoryStream.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Linq.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Linq.Expressions.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Linq.Parallel.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Linq.Queryable.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Memory.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Net.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Net.Http.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Net.Http.Json.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Net.HttpListener.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Net.Mail.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Net.NameResolution.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Net.NetworkInformation.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Net.Ping.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Net.Primitives.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Net.Quic.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Net.Requests.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Net.Security.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Net.ServicePoint.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Net.Sockets.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Net.WebClient.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Net.WebHeaderCollection.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Net.WebProxy.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Net.WebSockets.Client.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Net.WebSockets.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Numerics.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Numerics.Vectors.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.ObjectModel.dll -C:\Users\changeself\.nuget\packages\system.reactive\6.0.1\lib\net6.0\System.Reactive.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Reflection.DispatchProxy.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Reflection.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Reflection.Emit.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Reflection.Emit.ILGeneration.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Reflection.Emit.Lightweight.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Reflection.Extensions.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Reflection.Metadata.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Reflection.Primitives.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Reflection.TypeExtensions.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Resources.Reader.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Resources.ResourceManager.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Resources.Writer.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Runtime.CompilerServices.Unsafe.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Runtime.CompilerServices.VisualC.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Runtime.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Runtime.Extensions.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Runtime.Handles.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Runtime.InteropServices.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Runtime.InteropServices.JavaScript.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Runtime.InteropServices.RuntimeInformation.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Runtime.Intrinsics.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Runtime.Loader.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Runtime.Numerics.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Runtime.Serialization.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Runtime.Serialization.Formatters.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Runtime.Serialization.Json.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Runtime.Serialization.Primitives.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Runtime.Serialization.Xml.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Security.AccessControl.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Security.Claims.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Security.Cryptography.Algorithms.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Security.Cryptography.Cng.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Security.Cryptography.Csp.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Security.Cryptography.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Security.Cryptography.Encoding.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Security.Cryptography.OpenSsl.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Security.Cryptography.Primitives.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Security.Cryptography.X509Certificates.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Security.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Security.Principal.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Security.Principal.Windows.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Security.SecureString.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.ServiceModel.Web.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.ServiceProcess.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Text.Encoding.CodePages.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Text.Encoding.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Text.Encoding.Extensions.dll -C:\Users\changeself\.nuget\packages\system.text.encodings.web\9.0.0\lib\net8.0\System.Text.Encodings.Web.dll -C:\Users\changeself\.nuget\packages\system.text.json\9.0.0\lib\net8.0\System.Text.Json.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Text.RegularExpressions.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Threading.Channels.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Threading.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Threading.Overlapped.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Threading.Tasks.Dataflow.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Threading.Tasks.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Threading.Tasks.Extensions.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Threading.Tasks.Parallel.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Threading.Thread.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Threading.ThreadPool.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Threading.Timer.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Transactions.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Transactions.Local.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.ValueTuple.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Web.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Web.HttpUtility.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Windows.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Xml.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Xml.Linq.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Xml.ReaderWriter.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Xml.Serialization.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Xml.XDocument.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Xml.XmlDocument.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Xml.XmlSerializer.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Xml.XPath.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\System.Xml.XPath.XDocument.dll -C:\Users\changeself\.nuget\packages\tmds.dbus.protocol\0.21.2\lib\net8.0\Tmds.DBus.Protocol.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.18\ref\net8.0\WindowsBase.dll diff --git a/obj/Debug/net8.0/Avalonia/resources b/obj/Debug/net8.0/Avalonia/resources deleted file mode 100644 index f07af02..0000000 Binary files a/obj/Debug/net8.0/Avalonia/resources and /dev/null differ diff --git a/obj/Debug/net8.0/MyAvalon.9DF80BA1.Up2Date b/obj/Debug/net8.0/MyAvalon.9DF80BA1.Up2Date deleted file mode 100644 index e69de29..0000000 diff --git a/obj/Debug/net8.0/MyAvaloniaApp.AssemblyInfo.cs b/obj/Debug/net8.0/MyAvaloniaApp.AssemblyInfo.cs deleted file mode 100644 index 1b02b60..0000000 --- a/obj/Debug/net8.0/MyAvaloniaApp.AssemblyInfo.cs +++ /dev/null @@ -1,23 +0,0 @@ -//------------------------------------------------------------------------------ -// -// 此代码由工具生成。 -// 运行时版本:4.0.30319.42000 -// -// 对此文件的更改可能会导致不正确的行为,并且如果 -// 重新生成代码,这些更改将会丢失。 -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("MyAvaloniaApp")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] -[assembly: System.Reflection.AssemblyProductAttribute("MyAvaloniaApp")] -[assembly: System.Reflection.AssemblyTitleAttribute("MyAvaloniaApp")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] - -// 由 MSBuild WriteCodeFragment 类生成。 - diff --git a/obj/Debug/net8.0/MyAvaloniaApp.AssemblyInfoInputs.cache b/obj/Debug/net8.0/MyAvaloniaApp.AssemblyInfoInputs.cache deleted file mode 100644 index 45a5e8b..0000000 --- a/obj/Debug/net8.0/MyAvaloniaApp.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -bf952ee0722a6225039d842c594a8ebe310a83a2db3935d66a759729adc67724 diff --git a/obj/Debug/net8.0/MyAvaloniaApp.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net8.0/MyAvaloniaApp.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 8bcd54e..0000000 --- a/obj/Debug/net8.0/MyAvaloniaApp.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,28 +0,0 @@ -is_global = true -build_property.AvaloniaNameGeneratorIsEnabled = true -build_property.AvaloniaNameGeneratorBehavior = InitializeComponent -build_property.AvaloniaNameGeneratorDefaultFieldModifier = internal -build_property.AvaloniaNameGeneratorFilterByPath = * -build_property.AvaloniaNameGeneratorFilterByNamespace = * -build_property.AvaloniaNameGeneratorViewFileNamingStrategy = NamespaceAndClassName -build_property.AvaloniaNameGeneratorAttachDevTools = true -build_property.TargetFramework = net8.0 -build_property.TargetPlatformMinVersion = -build_property.UsingMicrosoftNETSdkWeb = -build_property.ProjectTypeGuids = -build_property.InvariantGlobalization = -build_property.PlatformNeutralAssembly = -build_property.EnforceExtendedAnalyzerRules = -build_property._SupportedPlatformList = Linux,macOS,Windows -build_property.RootNamespace = MyAvaloniaApp -build_property.ProjectDir = d:\Log\MyAvaloniaApp\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = -build_property.EffectiveAnalysisLevelStyle = 8.0 -build_property.EnableCodeStyleSeverity = - -[d:/Log/MyAvaloniaApp/App.axaml] -build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml - -[d:/Log/MyAvaloniaApp/MainWindow.axaml] -build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml diff --git a/obj/Debug/net8.0/MyAvaloniaApp.assets.cache b/obj/Debug/net8.0/MyAvaloniaApp.assets.cache deleted file mode 100644 index 1ea042c..0000000 Binary files a/obj/Debug/net8.0/MyAvaloniaApp.assets.cache and /dev/null differ diff --git a/obj/Debug/net8.0/MyAvaloniaApp.csproj.AssemblyReference.cache b/obj/Debug/net8.0/MyAvaloniaApp.csproj.AssemblyReference.cache deleted file mode 100644 index bf481cf..0000000 Binary files a/obj/Debug/net8.0/MyAvaloniaApp.csproj.AssemblyReference.cache and /dev/null differ diff --git a/obj/Debug/net8.0/MyAvaloniaApp.csproj.CoreCompileInputs.cache b/obj/Debug/net8.0/MyAvaloniaApp.csproj.CoreCompileInputs.cache deleted file mode 100644 index 8b6a485..0000000 --- a/obj/Debug/net8.0/MyAvaloniaApp.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -96b0abb05769f94f89bc2802427d0197e21fba96ab84ab1e6286b15428c43a03 diff --git a/obj/Debug/net8.0/MyAvaloniaApp.csproj.FileListAbsolute.txt b/obj/Debug/net8.0/MyAvaloniaApp.csproj.FileListAbsolute.txt deleted file mode 100644 index 2723ed7..0000000 --- a/obj/Debug/net8.0/MyAvaloniaApp.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,114 +0,0 @@ -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\MyAvaloniaApp.exe -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\appsettings.json -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\MyAvaloniaApp.deps.json -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\MyAvaloniaApp.runtimeconfig.json -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\MyAvaloniaApp.dll -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\MyAvaloniaApp.pdb -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\Avalonia.Base.dll -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\Avalonia.Controls.dll -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\Avalonia.DesignerSupport.dll -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\Avalonia.Dialogs.dll -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\Avalonia.Markup.Xaml.dll -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\Avalonia.Markup.dll -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\Avalonia.Metal.dll -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\Avalonia.MicroCom.dll -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\Avalonia.OpenGL.dll -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\Avalonia.Vulkan.dll -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\Avalonia.dll -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\Avalonia.Controls.ColorPicker.dll -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\Avalonia.Desktop.dll -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\Avalonia.Diagnostics.dll -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\Avalonia.Fonts.Inter.dll -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\Avalonia.FreeDesktop.dll -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\Avalonia.Native.dll -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\Avalonia.ReactiveUI.dll -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\Avalonia.Remote.Protocol.dll -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\Avalonia.Skia.dll -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\Avalonia.Themes.Fluent.dll -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\Avalonia.Themes.Simple.dll -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\Avalonia.Win32.Automation.dll -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\Avalonia.Win32.dll -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\Avalonia.X11.dll -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\DynamicData.dll -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\HarfBuzzSharp.dll -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\MicroCom.Runtime.dll -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\Microsoft.Extensions.Configuration.dll -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\Microsoft.Extensions.Configuration.Abstractions.dll -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\Microsoft.Extensions.Configuration.Binder.dll -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\Microsoft.Extensions.Configuration.CommandLine.dll -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\Microsoft.Extensions.Configuration.EnvironmentVariables.dll -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\Microsoft.Extensions.Configuration.FileExtensions.dll -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\Microsoft.Extensions.Configuration.Json.dll -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\Microsoft.Extensions.Configuration.UserSecrets.dll -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\Microsoft.Extensions.DependencyInjection.dll -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\Microsoft.Extensions.Diagnostics.dll -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\Microsoft.Extensions.Diagnostics.Abstractions.dll -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\Microsoft.Extensions.FileProviders.Abstractions.dll -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\Microsoft.Extensions.FileProviders.Physical.dll -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\Microsoft.Extensions.FileSystemGlobbing.dll -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\Microsoft.Extensions.Hosting.dll -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\Microsoft.Extensions.Hosting.Abstractions.dll -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\Microsoft.Extensions.Logging.dll -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\Microsoft.Extensions.Logging.Abstractions.dll -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\Microsoft.Extensions.Logging.Configuration.dll -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\Microsoft.Extensions.Logging.Console.dll -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\Microsoft.Extensions.Logging.Debug.dll -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\Microsoft.Extensions.Logging.EventLog.dll -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\Microsoft.Extensions.Logging.EventSource.dll -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\Microsoft.Extensions.Options.dll -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\Microsoft.Extensions.Options.ConfigurationExtensions.dll -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\Microsoft.Extensions.Primitives.dll -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\ReactiveUI.dll -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\SkiaSharp.dll -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\Splat.dll -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\System.Diagnostics.DiagnosticSource.dll -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\System.Diagnostics.EventLog.dll -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\System.IO.Pipelines.dll -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\System.Reactive.dll -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\System.Text.Encodings.Web.dll -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\System.Text.Json.dll -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\Tmds.DBus.Protocol.dll -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\runtimes\win-arm64\native\av_libglesv2.dll -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\runtimes\win-x64\native\av_libglesv2.dll -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\runtimes\win-x86\native\av_libglesv2.dll -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\runtimes\osx\native\libAvaloniaNative.dylib -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\runtimes\linux-arm\native\libHarfBuzzSharp.so -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\runtimes\linux-arm64\native\libHarfBuzzSharp.so -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\runtimes\linux-loongarch64\native\libHarfBuzzSharp.so -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\runtimes\linux-musl-arm\native\libHarfBuzzSharp.so -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\runtimes\linux-musl-arm64\native\libHarfBuzzSharp.so -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\runtimes\linux-musl-loongarch64\native\libHarfBuzzSharp.so -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\runtimes\linux-musl-riscv64\native\libHarfBuzzSharp.so -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\runtimes\linux-musl-x64\native\libHarfBuzzSharp.so -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\runtimes\linux-riscv64\native\libHarfBuzzSharp.so -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\runtimes\linux-x64\native\libHarfBuzzSharp.so -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\runtimes\linux-x86\native\libHarfBuzzSharp.so -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\runtimes\osx\native\libHarfBuzzSharp.dylib -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\runtimes\win-arm64\native\libHarfBuzzSharp.dll -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\runtimes\win-x64\native\libHarfBuzzSharp.dll -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\runtimes\win-x86\native\libHarfBuzzSharp.dll -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\runtimes\linux-arm\native\libSkiaSharp.so -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\runtimes\linux-arm64\native\libSkiaSharp.so -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\runtimes\linux-musl-x64\native\libSkiaSharp.so -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\runtimes\linux-x64\native\libSkiaSharp.so -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\runtimes\osx\native\libSkiaSharp.dylib -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\runtimes\win-arm64\native\libSkiaSharp.dll -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\runtimes\win-x64\native\libSkiaSharp.dll -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\runtimes\win-x86\native\libSkiaSharp.dll -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\runtimes\win\lib\net8.0\System.Diagnostics.EventLog.Messages.dll -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\runtimes\win\lib\net8.0\System.Diagnostics.EventLog.dll -D:\Log\MyAvaloniaApp\bin\Debug\net8.0\runtimes\browser\lib\net8.0\System.Text.Encodings.Web.dll -D:\Log\MyAvaloniaApp\obj\Debug\net8.0\MyAvaloniaApp.csproj.AssemblyReference.cache -D:\Log\MyAvaloniaApp\obj\Debug\net8.0\Avalonia\Resources.Inputs.cache -D:\Log\MyAvaloniaApp\obj\Debug\net8.0\Avalonia\resources -D:\Log\MyAvaloniaApp\obj\Debug\net8.0\MyAvaloniaApp.GeneratedMSBuildEditorConfig.editorconfig -D:\Log\MyAvaloniaApp\obj\Debug\net8.0\MyAvaloniaApp.AssemblyInfoInputs.cache -D:\Log\MyAvaloniaApp\obj\Debug\net8.0\MyAvaloniaApp.AssemblyInfo.cs -D:\Log\MyAvaloniaApp\obj\Debug\net8.0\MyAvaloniaApp.csproj.CoreCompileInputs.cache -D:\Log\MyAvaloniaApp\obj\Debug\net8.0\MyAvalon.9DF80BA1.Up2Date -D:\Log\MyAvaloniaApp\obj\Debug\net8.0\MyAvaloniaApp.dll -D:\Log\MyAvaloniaApp\obj\Debug\net8.0\refint\MyAvaloniaApp.dll -D:\Log\MyAvaloniaApp\obj\Debug\net8.0\MyAvaloniaApp.pdb -D:\Log\MyAvaloniaApp\obj\Debug\net8.0\MyAvaloniaApp.genruntimeconfig.cache -D:\Log\MyAvaloniaApp\obj\Debug\net8.0\ref\MyAvaloniaApp.dll diff --git a/obj/Debug/net8.0/MyAvaloniaApp.dll b/obj/Debug/net8.0/MyAvaloniaApp.dll deleted file mode 100644 index 43fb803..0000000 Binary files a/obj/Debug/net8.0/MyAvaloniaApp.dll and /dev/null differ diff --git a/obj/Debug/net8.0/MyAvaloniaApp.genruntimeconfig.cache b/obj/Debug/net8.0/MyAvaloniaApp.genruntimeconfig.cache deleted file mode 100644 index df0728f..0000000 --- a/obj/Debug/net8.0/MyAvaloniaApp.genruntimeconfig.cache +++ /dev/null @@ -1 +0,0 @@ -1d83d18e6aab67dc6a7499ee8832fc6728d41bd120c9837d0212b3f0dbbcf5f9 diff --git a/obj/Debug/net8.0/MyAvaloniaApp.pdb b/obj/Debug/net8.0/MyAvaloniaApp.pdb deleted file mode 100644 index 30eaade..0000000 Binary files a/obj/Debug/net8.0/MyAvaloniaApp.pdb and /dev/null differ diff --git a/obj/Debug/net8.0/apphost.exe b/obj/Debug/net8.0/apphost.exe deleted file mode 100644 index 901b3eb..0000000 Binary files a/obj/Debug/net8.0/apphost.exe and /dev/null differ diff --git a/obj/Debug/net8.0/ref/MyAvaloniaApp.dll b/obj/Debug/net8.0/ref/MyAvaloniaApp.dll deleted file mode 100644 index e56c180..0000000 Binary files a/obj/Debug/net8.0/ref/MyAvaloniaApp.dll and /dev/null differ diff --git a/obj/Debug/net8.0/refint/MyAvaloniaApp.dll b/obj/Debug/net8.0/refint/MyAvaloniaApp.dll deleted file mode 100644 index e56c180..0000000 Binary files a/obj/Debug/net8.0/refint/MyAvaloniaApp.dll and /dev/null differ diff --git a/obj/Debug/net9.0/Avalonia/Resources.Inputs.cache b/obj/Debug/net9.0/Avalonia/Resources.Inputs.cache index 8451a03..a0ad351 100644 --- a/obj/Debug/net9.0/Avalonia/Resources.Inputs.cache +++ b/obj/Debug/net9.0/Avalonia/Resources.Inputs.cache @@ -1 +1 @@ -13ddcbc13e64d6798e8fba3e7da8f73f1d8b4a67a0cb18cbd7472bbf3213f169 +5e7ab22325f04143ef69ed8e7c653305d243154dcd16daf862f60de41f68d984 diff --git a/obj/Debug/net9.0/Avalonia/resources b/obj/Debug/net9.0/Avalonia/resources index 2a3cb61..e086190 100644 Binary files a/obj/Debug/net9.0/Avalonia/resources and b/obj/Debug/net9.0/Avalonia/resources differ diff --git a/obj/Debug/net9.0/MyAvalon.9DF80BA1.Up2Date b/obj/Debug/net9.0/MyAvalon.9DF80BA1.Up2Date deleted file mode 100644 index e69de29..0000000 diff --git a/obj/Debug/net9.0/MyAvaloniaApp.AssemblyInfo.cs b/obj/Debug/net9.0/MyAvaloniaApp.AssemblyInfo.cs deleted file mode 100644 index 1987382..0000000 --- a/obj/Debug/net9.0/MyAvaloniaApp.AssemblyInfo.cs +++ /dev/null @@ -1,23 +0,0 @@ -//------------------------------------------------------------------------------ -// -// 此代码由工具生成。 -// 运行时版本:4.0.30319.42000 -// -// 对此文件的更改可能会导致不正确的行为,并且如果 -// 重新生成代码,这些更改将会丢失。 -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("MyAvaloniaApp")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+aeacc3a660112d5c6c541a58e2f06d464581f1c8")] -[assembly: System.Reflection.AssemblyProductAttribute("MyAvaloniaApp")] -[assembly: System.Reflection.AssemblyTitleAttribute("MyAvaloniaApp")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] - -// 由 MSBuild WriteCodeFragment 类生成。 - diff --git a/obj/Debug/net9.0/MyAvaloniaApp.AssemblyInfoInputs.cache b/obj/Debug/net9.0/MyAvaloniaApp.AssemblyInfoInputs.cache deleted file mode 100644 index 561358e..0000000 --- a/obj/Debug/net9.0/MyAvaloniaApp.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -cba6bb1cb740b2d65aa41e6919071368d8ab1b11f6845c7d3ba0127817464546 diff --git a/obj/Debug/net9.0/MyAvaloniaApp.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net9.0/MyAvaloniaApp.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index c681ed2..0000000 --- a/obj/Debug/net9.0/MyAvaloniaApp.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,61 +0,0 @@ -is_global = true -build_property.AvaloniaNameGeneratorIsEnabled = true -build_property.AvaloniaNameGeneratorBehavior = InitializeComponent -build_property.AvaloniaNameGeneratorDefaultFieldModifier = internal -build_property.AvaloniaNameGeneratorFilterByPath = * -build_property.AvaloniaNameGeneratorFilterByNamespace = * -build_property.AvaloniaNameGeneratorViewFileNamingStrategy = NamespaceAndClassName -build_property.AvaloniaNameGeneratorAttachDevTools = true -build_property.TargetFramework = net9.0 -build_property.TargetPlatformMinVersion = -build_property.UsingMicrosoftNETSdkWeb = -build_property.ProjectTypeGuids = -build_property.InvariantGlobalization = -build_property.PlatformNeutralAssembly = -build_property.EnforceExtendedAnalyzerRules = -build_property._SupportedPlatformList = Linux,macOS,Windows -build_property.RootNamespace = MyAvaloniaApp -build_property.ProjectDir = D:\Log\MyAvaloniaApp\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = -build_property.EffectiveAnalysisLevelStyle = 9.0 -build_property.EnableCodeStyleSeverity = - -[D:/Log/MyAvaloniaApp/App.axaml] -build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml - -[D:/Log/MyAvaloniaApp/MainWindow.axaml] -build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml - -[D:/Log/MyAvaloniaApp/Resources/Colors.axaml] -build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml - -[D:/Log/MyAvaloniaApp/Resources/Strings.en.axaml] -build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml - -[D:/Log/MyAvaloniaApp/Resources/Strings.zh-CN.axaml] -build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml - -[D:/Log/MyAvaloniaApp/Views/Pages/DashboardPageView.axaml] -build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml - -[D:/Log/MyAvaloniaApp/Views/Pages/DialogHostPageView.axaml] -build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml - -[D:/Log/MyAvaloniaApp/Views/Pages/EditorPageView.axaml] -build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml - -[D:/Log/MyAvaloniaApp/Views/Pages/HelpPageView.axaml] -build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml - -[D:/Log/MyAvaloniaApp/Views/Pages/IconsPageView.axaml] -build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml - -[D:/Log/MyAvaloniaApp/Views/Pages/ReportsPageView.axaml] -build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml - -[D:/Log/MyAvaloniaApp/Views/Pages/SettingsPageView.axaml] -build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml - -[D:/Log/MyAvaloniaApp/Views/Pages/UsersPageView.axaml] -build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml diff --git a/obj/Debug/net9.0/MyAvaloniaApp.assets.cache b/obj/Debug/net9.0/MyAvaloniaApp.assets.cache deleted file mode 100644 index d71e11f..0000000 Binary files a/obj/Debug/net9.0/MyAvaloniaApp.assets.cache and /dev/null differ diff --git a/obj/Debug/net9.0/MyAvaloniaApp.csproj.AssemblyReference.cache b/obj/Debug/net9.0/MyAvaloniaApp.csproj.AssemblyReference.cache deleted file mode 100644 index 341ab79..0000000 Binary files a/obj/Debug/net9.0/MyAvaloniaApp.csproj.AssemblyReference.cache and /dev/null differ diff --git a/obj/Debug/net9.0/MyAvaloniaApp.csproj.BuildWithSkipAnalyzers b/obj/Debug/net9.0/MyAvaloniaApp.csproj.BuildWithSkipAnalyzers deleted file mode 100644 index e69de29..0000000 diff --git a/obj/Debug/net9.0/MyAvaloniaApp.csproj.CoreCompileInputs.cache b/obj/Debug/net9.0/MyAvaloniaApp.csproj.CoreCompileInputs.cache deleted file mode 100644 index ebce3ad..0000000 --- a/obj/Debug/net9.0/MyAvaloniaApp.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -4f19c6d987d7d083abf5effe7ae4b7a817f080aaf88ae19b49d56bb536cf1927 diff --git a/obj/Debug/net9.0/MyAvaloniaApp.csproj.FileListAbsolute.txt b/obj/Debug/net9.0/MyAvaloniaApp.csproj.FileListAbsolute.txt deleted file mode 100644 index 0992762..0000000 --- a/obj/Debug/net9.0/MyAvaloniaApp.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,124 +0,0 @@ -D:\Log\MyAvaloniaApp\obj\Debug\net9.0\MyAvaloniaApp.csproj.AssemblyReference.cache -D:\Log\MyAvaloniaApp\obj\Debug\net9.0\Avalonia\Resources.Inputs.cache -D:\Log\MyAvaloniaApp\obj\Debug\net9.0\Avalonia\resources -D:\Log\MyAvaloniaApp\obj\Debug\net9.0\MyAvaloniaApp.GeneratedMSBuildEditorConfig.editorconfig -D:\Log\MyAvaloniaApp\obj\Debug\net9.0\MyAvaloniaApp.AssemblyInfoInputs.cache -D:\Log\MyAvaloniaApp\obj\Debug\net9.0\MyAvaloniaApp.AssemblyInfo.cs -D:\Log\MyAvaloniaApp\obj\Debug\net9.0\MyAvaloniaApp.csproj.CoreCompileInputs.cache -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\MyAvaloniaApp.exe -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\appsettings.json -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\MyAvaloniaApp.deps.json -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\MyAvaloniaApp.runtimeconfig.json -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\MyAvaloniaApp.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\MyAvaloniaApp.pdb -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\Avalonia.Base.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\Avalonia.Controls.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\Avalonia.DesignerSupport.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\Avalonia.Dialogs.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\Avalonia.Markup.Xaml.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\Avalonia.Markup.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\Avalonia.Metal.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\Avalonia.MicroCom.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\Avalonia.OpenGL.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\Avalonia.Vulkan.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\Avalonia.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\AvaloniaEdit.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\Avalonia.Controls.ColorPicker.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\Avalonia.Desktop.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\Avalonia.Diagnostics.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\Avalonia.Fonts.Inter.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\Avalonia.FreeDesktop.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\Avalonia.Native.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\Avalonia.ReactiveUI.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\Avalonia.Remote.Protocol.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\Avalonia.Skia.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\Avalonia.Themes.Fluent.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\Avalonia.Themes.Simple.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\Avalonia.Win32.Automation.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\Avalonia.Win32.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\Avalonia.X11.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\AvaloniaEdit.TextMate.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\DialogHost.Avalonia.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\DynamicData.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\HarfBuzzSharp.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\HeroIconsAvalonia.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\MicroCom.Runtime.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\Microsoft.Extensions.Configuration.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\Microsoft.Extensions.Configuration.Abstractions.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\Microsoft.Extensions.Configuration.Binder.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\Microsoft.Extensions.Configuration.CommandLine.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\Microsoft.Extensions.Configuration.EnvironmentVariables.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\Microsoft.Extensions.Configuration.FileExtensions.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\Microsoft.Extensions.Configuration.Json.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\Microsoft.Extensions.Configuration.UserSecrets.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\Microsoft.Extensions.DependencyInjection.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\Microsoft.Extensions.Diagnostics.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\Microsoft.Extensions.Diagnostics.Abstractions.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\Microsoft.Extensions.FileProviders.Abstractions.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\Microsoft.Extensions.FileProviders.Physical.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\Microsoft.Extensions.FileSystemGlobbing.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\Microsoft.Extensions.Hosting.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\Microsoft.Extensions.Hosting.Abstractions.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\Microsoft.Extensions.Logging.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\Microsoft.Extensions.Logging.Abstractions.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\Microsoft.Extensions.Logging.Configuration.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\Microsoft.Extensions.Logging.Console.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\Microsoft.Extensions.Logging.Debug.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\Microsoft.Extensions.Logging.EventLog.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\Microsoft.Extensions.Logging.EventSource.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\Microsoft.Extensions.Options.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\Microsoft.Extensions.Options.ConfigurationExtensions.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\Microsoft.Extensions.Primitives.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\Onigwrap.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\ReactiveUI.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\SkiaSharp.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\Splat.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\System.Diagnostics.EventLog.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\System.Reactive.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\TextMateSharp.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\TextMateSharp.Grammars.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\Tmds.DBus.Protocol.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\runtimes\win-arm64\native\av_libglesv2.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\runtimes\win-x64\native\av_libglesv2.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\runtimes\win-x86\native\av_libglesv2.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\runtimes\osx\native\libAvaloniaNative.dylib -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\runtimes\linux-arm\native\libHarfBuzzSharp.so -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\runtimes\linux-arm64\native\libHarfBuzzSharp.so -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\runtimes\linux-loongarch64\native\libHarfBuzzSharp.so -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\runtimes\linux-musl-arm\native\libHarfBuzzSharp.so -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\runtimes\linux-musl-arm64\native\libHarfBuzzSharp.so -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\runtimes\linux-musl-loongarch64\native\libHarfBuzzSharp.so -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\runtimes\linux-musl-riscv64\native\libHarfBuzzSharp.so -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\runtimes\linux-musl-x64\native\libHarfBuzzSharp.so -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\runtimes\linux-riscv64\native\libHarfBuzzSharp.so -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\runtimes\linux-x64\native\libHarfBuzzSharp.so -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\runtimes\linux-x86\native\libHarfBuzzSharp.so -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\runtimes\osx\native\libHarfBuzzSharp.dylib -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\runtimes\win-arm64\native\libHarfBuzzSharp.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\runtimes\win-x64\native\libHarfBuzzSharp.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\runtimes\win-x86\native\libHarfBuzzSharp.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\runtimes\linux-arm64\native\libonigwrap.so -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\runtimes\linux-musl-arm64\native\libonigwrap.so -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\runtimes\linux-musl-x64\native\libonigwrap.so -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\runtimes\linux-x64\native\libonigwrap.so -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\runtimes\osx\native\libonigwrap.dylib -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\runtimes\win-arm64\native\libonigwrap.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\runtimes\win-x64\native\libonigwrap.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\runtimes\win-x86\native\libonigwrap.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\runtimes\linux-arm\native\libSkiaSharp.so -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\runtimes\linux-arm64\native\libSkiaSharp.so -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\runtimes\linux-musl-x64\native\libSkiaSharp.so -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\runtimes\linux-x64\native\libSkiaSharp.so -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\runtimes\osx\native\libSkiaSharp.dylib -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\runtimes\win-arm64\native\libSkiaSharp.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\runtimes\win-x64\native\libSkiaSharp.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\runtimes\win-x86\native\libSkiaSharp.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\runtimes\win\lib\net9.0\System.Diagnostics.EventLog.Messages.dll -D:\Log\MyAvaloniaApp\bin\Debug\net9.0\runtimes\win\lib\net9.0\System.Diagnostics.EventLog.dll -D:\Log\MyAvaloniaApp\obj\Debug\net9.0\MyAvalon.9DF80BA1.Up2Date -D:\Log\MyAvaloniaApp\obj\Debug\net9.0\MyAvaloniaApp.dll -D:\Log\MyAvaloniaApp\obj\Debug\net9.0\refint\MyAvaloniaApp.dll -D:\Log\MyAvaloniaApp\obj\Debug\net9.0\MyAvaloniaApp.pdb -D:\Log\MyAvaloniaApp\obj\Debug\net9.0\MyAvaloniaApp.genruntimeconfig.cache -D:\Log\MyAvaloniaApp\obj\Debug\net9.0\ref\MyAvaloniaApp.dll diff --git a/obj/Debug/net9.0/MyAvaloniaApp.dll b/obj/Debug/net9.0/MyAvaloniaApp.dll deleted file mode 100644 index 0c043aa..0000000 Binary files a/obj/Debug/net9.0/MyAvaloniaApp.dll and /dev/null differ diff --git a/obj/Debug/net9.0/MyAvaloniaApp.genruntimeconfig.cache b/obj/Debug/net9.0/MyAvaloniaApp.genruntimeconfig.cache deleted file mode 100644 index b2d3a63..0000000 --- a/obj/Debug/net9.0/MyAvaloniaApp.genruntimeconfig.cache +++ /dev/null @@ -1 +0,0 @@ -fa2d8992166b45184c280787fbf8f5bfa89d03f1bf12ca8e3f74720ae1a01509 diff --git a/obj/Debug/net9.0/MyAvaloniaApp.pdb b/obj/Debug/net9.0/MyAvaloniaApp.pdb deleted file mode 100644 index 121cb8f..0000000 Binary files a/obj/Debug/net9.0/MyAvaloniaApp.pdb and /dev/null differ diff --git a/obj/Debug/net9.0/apphost.exe b/obj/Debug/net9.0/apphost.exe index 9e63c13..b89a22f 100644 Binary files a/obj/Debug/net9.0/apphost.exe and b/obj/Debug/net9.0/apphost.exe differ diff --git a/obj/Debug/net9.0/linux-x64/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs b/obj/Debug/net9.0/linux-x64/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs deleted file mode 100644 index feda5e9..0000000 --- a/obj/Debug/net9.0/linux-x64/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v9.0", FrameworkDisplayName = ".NET 9.0")] diff --git a/obj/Debug/net9.0/linux-x64/Avalonia/Resources.Inputs.cache b/obj/Debug/net9.0/linux-x64/Avalonia/Resources.Inputs.cache deleted file mode 100644 index 944154e..0000000 --- a/obj/Debug/net9.0/linux-x64/Avalonia/Resources.Inputs.cache +++ /dev/null @@ -1 +0,0 @@ -05d0a5968394380804419b233625fda6f30875130f86ca66a46484476f36a8d5 diff --git a/obj/Debug/net9.0/linux-x64/Avalonia/resources b/obj/Debug/net9.0/linux-x64/Avalonia/resources deleted file mode 100644 index ef1bcbf..0000000 Binary files a/obj/Debug/net9.0/linux-x64/Avalonia/resources and /dev/null differ diff --git a/obj/Debug/net9.0/linux-x64/MyAvaloniaApp.AssemblyInfo.cs b/obj/Debug/net9.0/linux-x64/MyAvaloniaApp.AssemblyInfo.cs deleted file mode 100644 index 1b02b60..0000000 --- a/obj/Debug/net9.0/linux-x64/MyAvaloniaApp.AssemblyInfo.cs +++ /dev/null @@ -1,23 +0,0 @@ -//------------------------------------------------------------------------------ -// -// 此代码由工具生成。 -// 运行时版本:4.0.30319.42000 -// -// 对此文件的更改可能会导致不正确的行为,并且如果 -// 重新生成代码,这些更改将会丢失。 -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("MyAvaloniaApp")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] -[assembly: System.Reflection.AssemblyProductAttribute("MyAvaloniaApp")] -[assembly: System.Reflection.AssemblyTitleAttribute("MyAvaloniaApp")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] - -// 由 MSBuild WriteCodeFragment 类生成。 - diff --git a/obj/Debug/net9.0/linux-x64/MyAvaloniaApp.AssemblyInfoInputs.cache b/obj/Debug/net9.0/linux-x64/MyAvaloniaApp.AssemblyInfoInputs.cache deleted file mode 100644 index 45a5e8b..0000000 --- a/obj/Debug/net9.0/linux-x64/MyAvaloniaApp.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -bf952ee0722a6225039d842c594a8ebe310a83a2db3935d66a759729adc67724 diff --git a/obj/Debug/net9.0/linux-x64/MyAvaloniaApp.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net9.0/linux-x64/MyAvaloniaApp.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index ba4101c..0000000 --- a/obj/Debug/net9.0/linux-x64/MyAvaloniaApp.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,32 +0,0 @@ -is_global = true -build_property.EnableAotAnalyzer = -build_property.EnableSingleFileAnalyzer = true -build_property.EnableTrimAnalyzer = -build_property.IncludeAllContentForSelfExtract = -build_property.AvaloniaNameGeneratorIsEnabled = true -build_property.AvaloniaNameGeneratorBehavior = InitializeComponent -build_property.AvaloniaNameGeneratorDefaultFieldModifier = internal -build_property.AvaloniaNameGeneratorFilterByPath = * -build_property.AvaloniaNameGeneratorFilterByNamespace = * -build_property.AvaloniaNameGeneratorViewFileNamingStrategy = NamespaceAndClassName -build_property.AvaloniaNameGeneratorAttachDevTools = true -build_property.TargetFramework = net9.0 -build_property.TargetPlatformMinVersion = -build_property.UsingMicrosoftNETSdkWeb = -build_property.ProjectTypeGuids = -build_property.InvariantGlobalization = -build_property.PlatformNeutralAssembly = -build_property.EnforceExtendedAnalyzerRules = -build_property._SupportedPlatformList = Linux,macOS,Windows -build_property.RootNamespace = MyAvaloniaApp -build_property.ProjectDir = D:\Log\MyAvaloniaApp\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = -build_property.EffectiveAnalysisLevelStyle = 9.0 -build_property.EnableCodeStyleSeverity = - -[D:/Log/MyAvaloniaApp/App.axaml] -build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml - -[D:/Log/MyAvaloniaApp/MainWindow.axaml] -build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml diff --git a/obj/Debug/net9.0/linux-x64/MyAvaloniaApp.assets.cache b/obj/Debug/net9.0/linux-x64/MyAvaloniaApp.assets.cache deleted file mode 100644 index fc1ce0b..0000000 Binary files a/obj/Debug/net9.0/linux-x64/MyAvaloniaApp.assets.cache and /dev/null differ diff --git a/obj/Debug/net9.0/linux-x64/MyAvaloniaApp.csproj.AssemblyReference.cache b/obj/Debug/net9.0/linux-x64/MyAvaloniaApp.csproj.AssemblyReference.cache deleted file mode 100644 index 28240e9..0000000 Binary files a/obj/Debug/net9.0/linux-x64/MyAvaloniaApp.csproj.AssemblyReference.cache and /dev/null differ diff --git a/obj/Debug/net9.0/ref/MyAvaloniaApp.dll b/obj/Debug/net9.0/ref/MyAvaloniaApp.dll deleted file mode 100644 index f0a8b9a..0000000 Binary files a/obj/Debug/net9.0/ref/MyAvaloniaApp.dll and /dev/null differ diff --git a/obj/Debug/net9.0/refint/MyAvaloniaApp.dll b/obj/Debug/net9.0/refint/MyAvaloniaApp.dll deleted file mode 100644 index f0a8b9a..0000000 Binary files a/obj/Debug/net9.0/refint/MyAvaloniaApp.dll and /dev/null differ diff --git a/obj/MyAvaloniaApp.csproj.nuget.dgspec.json b/obj/MyAvaloniaApp.csproj.nuget.dgspec.json deleted file mode 100644 index d3cd72d..0000000 --- a/obj/MyAvaloniaApp.csproj.nuget.dgspec.json +++ /dev/null @@ -1,152 +0,0 @@ -{ - "format": 1, - "restore": { - "D:\\Log\\MyAvaloniaApp\\MyAvaloniaApp.csproj": {} - }, - "projects": { - "D:\\Log\\MyAvaloniaApp\\MyAvaloniaApp.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\Log\\MyAvaloniaApp\\MyAvaloniaApp.csproj", - "projectName": "MyAvaloniaApp", - "projectPath": "D:\\Log\\MyAvaloniaApp\\MyAvaloniaApp.csproj", - "packagesPath": "C:\\Users\\changeself\\.nuget\\packages\\", - "outputPath": "D:\\Log\\MyAvaloniaApp\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\changeself\\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" - ], - "sources": { - "D:\\NuGetPackages": {}, - "https://api.nuget.org/v3/index.json": {}, - "https://www.nuget.org/api/v2": {} - }, - "frameworks": { - "net9.0": { - "targetAlias": "net9.0", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "direct" - }, - "SdkAnalysisLevel": "9.0.100" - }, - "frameworks": { - "net9.0": { - "targetAlias": "net9.0", - "dependencies": { - "Avalonia": { - "target": "Package", - "version": "[11.3.7, )" - }, - "Avalonia.Desktop": { - "target": "Package", - "version": "[11.3.7, )" - }, - "Avalonia.Diagnostics": { - "target": "Package", - "version": "[11.3.6, )" - }, - "Avalonia.Fonts.Inter": { - "target": "Package", - "version": "[11.3.6, )" - }, - "Avalonia.ReactiveUI": { - "target": "Package", - "version": "[11.3.7, )" - }, - "Avalonia.Themes.Fluent": { - "target": "Package", - "version": "[11.3.6, )" - }, - "AvaloniaEdit": { - "target": "Package", - "version": "[0.10.12, )" - }, - "AvaloniaEdit.TextMate": { - "target": "Package", - "version": "[11.3.0, )" - }, - "DialogHost.Avalonia": { - "target": "Package", - "version": "[0.9.3, )" - }, - "HeroIcons.Avalonia": { - "target": "Package", - "version": "[1.0.4, )" - }, - "Microsoft.Extensions.Configuration": { - "target": "Package", - "version": "[9.0.0, )" - }, - "Microsoft.Extensions.Configuration.CommandLine": { - "target": "Package", - "version": "[9.0.0, )" - }, - "Microsoft.Extensions.Configuration.EnvironmentVariables": { - "target": "Package", - "version": "[9.0.0, )" - }, - "Microsoft.Extensions.Configuration.Json": { - "target": "Package", - "version": "[9.0.0, )" - }, - "Microsoft.Extensions.DependencyInjection": { - "target": "Package", - "version": "[9.0.0, )" - }, - "Microsoft.Extensions.Hosting": { - "target": "Package", - "version": "[9.0.0, )" - }, - "Microsoft.Extensions.Logging": { - "target": "Package", - "version": "[9.0.0, )" - }, - "Microsoft.Extensions.Logging.Console": { - "target": "Package", - "version": "[9.0.0, )" - }, - "Microsoft.Extensions.Logging.Debug": { - "target": "Package", - "version": "[9.0.0, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.108/PortableRuntimeIdentifierGraph.json" - } - } - } - } -} \ No newline at end of file diff --git a/obj/MyAvaloniaApp.csproj.nuget.g.props b/obj/MyAvaloniaApp.csproj.nuget.g.props deleted file mode 100644 index 506c13a..0000000 --- a/obj/MyAvaloniaApp.csproj.nuget.g.props +++ /dev/null @@ -1,27 +0,0 @@ - - - - True - NuGet - $(MSBuildThisFileDirectory)project.assets.json - $(UserProfile)\.nuget\packages\ - C:\Users\changeself\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages - PackageReference - 6.12.3 - - - - - - - - - - - - - - C:\Users\changeself\.nuget\packages\avalonia.buildservices\11.3.1 - C:\Users\changeself\.nuget\packages\avalonia\11.3.7 - - \ No newline at end of file diff --git a/obj/MyAvaloniaApp.csproj.nuget.g.targets b/obj/MyAvaloniaApp.csproj.nuget.g.targets deleted file mode 100644 index 85b6e5e..0000000 --- a/obj/MyAvaloniaApp.csproj.nuget.g.targets +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/obj/Release/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs b/obj/Release/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs deleted file mode 100644 index feda5e9..0000000 --- a/obj/Release/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v9.0", FrameworkDisplayName = ".NET 9.0")] diff --git a/obj/Release/net9.0/Avalonia/Resources.Inputs.cache b/obj/Release/net9.0/Avalonia/Resources.Inputs.cache deleted file mode 100644 index 5ba7776..0000000 --- a/obj/Release/net9.0/Avalonia/Resources.Inputs.cache +++ /dev/null @@ -1 +0,0 @@ -565664ee8d2e0eef575fae90c378130acfddf78d1f4c6886333b565cd40d783e diff --git a/obj/Release/net9.0/Avalonia/resources b/obj/Release/net9.0/Avalonia/resources deleted file mode 100644 index aabe78e..0000000 Binary files a/obj/Release/net9.0/Avalonia/resources and /dev/null differ diff --git a/obj/Release/net9.0/MyAvaloniaApp.AssemblyInfo.cs b/obj/Release/net9.0/MyAvaloniaApp.AssemblyInfo.cs deleted file mode 100644 index fa33e18..0000000 --- a/obj/Release/net9.0/MyAvaloniaApp.AssemblyInfo.cs +++ /dev/null @@ -1,22 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("MyAvaloniaApp")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+0a6f31e4e28b92a7372c2f56ab37d30163b0e026")] -[assembly: System.Reflection.AssemblyProductAttribute("MyAvaloniaApp")] -[assembly: System.Reflection.AssemblyTitleAttribute("MyAvaloniaApp")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/obj/Release/net9.0/MyAvaloniaApp.AssemblyInfoInputs.cache b/obj/Release/net9.0/MyAvaloniaApp.AssemblyInfoInputs.cache deleted file mode 100644 index ecee00a..0000000 --- a/obj/Release/net9.0/MyAvaloniaApp.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -8df7f0f8ce54bd535a9dcb9951bcb413cbed307269589f8803381a647c43aa9d diff --git a/obj/Release/net9.0/MyAvaloniaApp.GeneratedMSBuildEditorConfig.editorconfig b/obj/Release/net9.0/MyAvaloniaApp.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index c681ed2..0000000 --- a/obj/Release/net9.0/MyAvaloniaApp.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,61 +0,0 @@ -is_global = true -build_property.AvaloniaNameGeneratorIsEnabled = true -build_property.AvaloniaNameGeneratorBehavior = InitializeComponent -build_property.AvaloniaNameGeneratorDefaultFieldModifier = internal -build_property.AvaloniaNameGeneratorFilterByPath = * -build_property.AvaloniaNameGeneratorFilterByNamespace = * -build_property.AvaloniaNameGeneratorViewFileNamingStrategy = NamespaceAndClassName -build_property.AvaloniaNameGeneratorAttachDevTools = true -build_property.TargetFramework = net9.0 -build_property.TargetPlatformMinVersion = -build_property.UsingMicrosoftNETSdkWeb = -build_property.ProjectTypeGuids = -build_property.InvariantGlobalization = -build_property.PlatformNeutralAssembly = -build_property.EnforceExtendedAnalyzerRules = -build_property._SupportedPlatformList = Linux,macOS,Windows -build_property.RootNamespace = MyAvaloniaApp -build_property.ProjectDir = D:\Log\MyAvaloniaApp\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = -build_property.EffectiveAnalysisLevelStyle = 9.0 -build_property.EnableCodeStyleSeverity = - -[D:/Log/MyAvaloniaApp/App.axaml] -build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml - -[D:/Log/MyAvaloniaApp/MainWindow.axaml] -build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml - -[D:/Log/MyAvaloniaApp/Resources/Colors.axaml] -build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml - -[D:/Log/MyAvaloniaApp/Resources/Strings.en.axaml] -build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml - -[D:/Log/MyAvaloniaApp/Resources/Strings.zh-CN.axaml] -build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml - -[D:/Log/MyAvaloniaApp/Views/Pages/DashboardPageView.axaml] -build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml - -[D:/Log/MyAvaloniaApp/Views/Pages/DialogHostPageView.axaml] -build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml - -[D:/Log/MyAvaloniaApp/Views/Pages/EditorPageView.axaml] -build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml - -[D:/Log/MyAvaloniaApp/Views/Pages/HelpPageView.axaml] -build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml - -[D:/Log/MyAvaloniaApp/Views/Pages/IconsPageView.axaml] -build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml - -[D:/Log/MyAvaloniaApp/Views/Pages/ReportsPageView.axaml] -build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml - -[D:/Log/MyAvaloniaApp/Views/Pages/SettingsPageView.axaml] -build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml - -[D:/Log/MyAvaloniaApp/Views/Pages/UsersPageView.axaml] -build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml diff --git a/obj/Release/net9.0/MyAvaloniaApp.assets.cache b/obj/Release/net9.0/MyAvaloniaApp.assets.cache deleted file mode 100644 index c898eb1..0000000 Binary files a/obj/Release/net9.0/MyAvaloniaApp.assets.cache and /dev/null differ diff --git a/obj/Release/net9.0/MyAvaloniaApp.csproj.AssemblyReference.cache b/obj/Release/net9.0/MyAvaloniaApp.csproj.AssemblyReference.cache deleted file mode 100644 index b949f40..0000000 Binary files a/obj/Release/net9.0/MyAvaloniaApp.csproj.AssemblyReference.cache and /dev/null differ diff --git a/obj/Release/net9.0/linux-x64/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs b/obj/Release/net9.0/linux-x64/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs deleted file mode 100644 index feda5e9..0000000 --- a/obj/Release/net9.0/linux-x64/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v9.0", FrameworkDisplayName = ".NET 9.0")] diff --git a/obj/Release/net9.0/linux-x64/Avalonia/Resources.Inputs.cache b/obj/Release/net9.0/linux-x64/Avalonia/Resources.Inputs.cache deleted file mode 100644 index ecdbfcf..0000000 --- a/obj/Release/net9.0/linux-x64/Avalonia/Resources.Inputs.cache +++ /dev/null @@ -1 +0,0 @@ -c4c294d354420aa37ac28b90b6579ec6e118659488679dbc5a071ae852a5bade diff --git a/obj/Release/net9.0/linux-x64/Avalonia/references b/obj/Release/net9.0/linux-x64/Avalonia/references deleted file mode 100644 index f34fcec..0000000 --- a/obj/Release/net9.0/linux-x64/Avalonia/references +++ /dev/null @@ -1,223 +0,0 @@ -C:\Users\changeself\.nuget\packages\avalonia\11.3.7\ref\net8.0\Avalonia.Base.dll -C:\Users\changeself\.nuget\packages\avalonia\11.3.7\ref\net8.0\Avalonia.Controls.dll -C:\Users\changeself\.nuget\packages\avalonia\11.3.7\ref\net8.0\Avalonia.DesignerSupport.dll -C:\Users\changeself\.nuget\packages\avalonia.desktop\11.3.7\lib\net8.0\Avalonia.Desktop.dll -C:\Users\changeself\.nuget\packages\avalonia\11.3.7\ref\net8.0\Avalonia.Dialogs.dll -C:\Users\changeself\.nuget\packages\avalonia\11.3.7\ref\net8.0\Avalonia.dll -C:\Users\changeself\.nuget\packages\avalonia.fonts.inter\11.3.6\lib\net8.0\Avalonia.Fonts.Inter.dll -C:\Users\changeself\.nuget\packages\avalonia.freedesktop\11.3.7\lib\net8.0\Avalonia.FreeDesktop.dll -C:\Users\changeself\.nuget\packages\avalonia\11.3.7\ref\net8.0\Avalonia.Markup.dll -C:\Users\changeself\.nuget\packages\avalonia\11.3.7\ref\net8.0\Avalonia.Markup.Xaml.dll -C:\Users\changeself\.nuget\packages\avalonia\11.3.7\ref\net8.0\Avalonia.Metal.dll -C:\Users\changeself\.nuget\packages\avalonia\11.3.7\ref\net8.0\Avalonia.MicroCom.dll -C:\Users\changeself\.nuget\packages\avalonia.native\11.3.7\lib\net8.0\Avalonia.Native.dll -C:\Users\changeself\.nuget\packages\avalonia\11.3.7\ref\net8.0\Avalonia.OpenGL.dll -C:\Users\changeself\.nuget\packages\avalonia.reactiveui\11.3.7\lib\net8.0\Avalonia.ReactiveUI.dll -C:\Users\changeself\.nuget\packages\avalonia.remote.protocol\11.3.7\lib\net8.0\Avalonia.Remote.Protocol.dll -C:\Users\changeself\.nuget\packages\avalonia.skia\11.3.7\lib\net8.0\Avalonia.Skia.dll -C:\Users\changeself\.nuget\packages\avalonia.themes.fluent\11.3.6\lib\net8.0\Avalonia.Themes.Fluent.dll -C:\Users\changeself\.nuget\packages\avalonia\11.3.7\ref\net8.0\Avalonia.Vulkan.dll -C:\Users\changeself\.nuget\packages\avalonia.win32\11.3.7\lib\net8.0\Avalonia.Win32.Automation.dll -C:\Users\changeself\.nuget\packages\avalonia.win32\11.3.7\lib\net8.0\Avalonia.Win32.dll -C:\Users\changeself\.nuget\packages\avalonia.x11\11.3.7\lib\net8.0\Avalonia.X11.dll -C:\Users\changeself\.nuget\packages\dynamicdata\8.4.1\lib\net8.0\DynamicData.dll -C:\Users\changeself\.nuget\packages\harfbuzzsharp\8.3.1.1\lib\net8.0\HarfBuzzSharp.dll -C:\Users\changeself\.nuget\packages\heroicons.avalonia\1.0.4\lib\netstandard2.0\HeroIconsAvalonia.dll -C:\Users\changeself\.nuget\packages\microcom.runtime\0.11.0\lib\net5.0\MicroCom.Runtime.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\Microsoft.CSharp.dll -C:\Users\changeself\.nuget\packages\microsoft.extensions.configuration.abstractions\9.0.0\lib\net9.0\Microsoft.Extensions.Configuration.Abstractions.dll -C:\Users\changeself\.nuget\packages\microsoft.extensions.configuration.binder\9.0.0\lib\net9.0\Microsoft.Extensions.Configuration.Binder.dll -C:\Users\changeself\.nuget\packages\microsoft.extensions.configuration.commandline\9.0.0\lib\net9.0\Microsoft.Extensions.Configuration.CommandLine.dll -C:\Users\changeself\.nuget\packages\microsoft.extensions.configuration\9.0.0\lib\net9.0\Microsoft.Extensions.Configuration.dll -C:\Users\changeself\.nuget\packages\microsoft.extensions.configuration.environmentvariables\9.0.0\lib\net9.0\Microsoft.Extensions.Configuration.EnvironmentVariables.dll -C:\Users\changeself\.nuget\packages\microsoft.extensions.configuration.fileextensions\9.0.0\lib\net9.0\Microsoft.Extensions.Configuration.FileExtensions.dll -C:\Users\changeself\.nuget\packages\microsoft.extensions.configuration.json\9.0.0\lib\net9.0\Microsoft.Extensions.Configuration.Json.dll -C:\Users\changeself\.nuget\packages\microsoft.extensions.configuration.usersecrets\9.0.0\lib\net9.0\Microsoft.Extensions.Configuration.UserSecrets.dll -C:\Users\changeself\.nuget\packages\microsoft.extensions.dependencyinjection.abstractions\9.0.0\lib\net9.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll -C:\Users\changeself\.nuget\packages\microsoft.extensions.dependencyinjection\9.0.0\lib\net9.0\Microsoft.Extensions.DependencyInjection.dll -C:\Users\changeself\.nuget\packages\microsoft.extensions.diagnostics.abstractions\9.0.0\lib\net9.0\Microsoft.Extensions.Diagnostics.Abstractions.dll -C:\Users\changeself\.nuget\packages\microsoft.extensions.diagnostics\9.0.0\lib\net9.0\Microsoft.Extensions.Diagnostics.dll -C:\Users\changeself\.nuget\packages\microsoft.extensions.fileproviders.abstractions\9.0.0\lib\net9.0\Microsoft.Extensions.FileProviders.Abstractions.dll -C:\Users\changeself\.nuget\packages\microsoft.extensions.fileproviders.physical\9.0.0\lib\net9.0\Microsoft.Extensions.FileProviders.Physical.dll -C:\Users\changeself\.nuget\packages\microsoft.extensions.filesystemglobbing\9.0.0\lib\net9.0\Microsoft.Extensions.FileSystemGlobbing.dll -C:\Users\changeself\.nuget\packages\microsoft.extensions.hosting.abstractions\9.0.0\lib\net9.0\Microsoft.Extensions.Hosting.Abstractions.dll -C:\Users\changeself\.nuget\packages\microsoft.extensions.hosting\9.0.0\lib\net9.0\Microsoft.Extensions.Hosting.dll -C:\Users\changeself\.nuget\packages\microsoft.extensions.logging.abstractions\9.0.0\lib\net9.0\Microsoft.Extensions.Logging.Abstractions.dll -C:\Users\changeself\.nuget\packages\microsoft.extensions.logging.configuration\9.0.0\lib\net9.0\Microsoft.Extensions.Logging.Configuration.dll -C:\Users\changeself\.nuget\packages\microsoft.extensions.logging.console\9.0.0\lib\net9.0\Microsoft.Extensions.Logging.Console.dll -C:\Users\changeself\.nuget\packages\microsoft.extensions.logging.debug\9.0.0\lib\net9.0\Microsoft.Extensions.Logging.Debug.dll -C:\Users\changeself\.nuget\packages\microsoft.extensions.logging\9.0.0\lib\net9.0\Microsoft.Extensions.Logging.dll -C:\Users\changeself\.nuget\packages\microsoft.extensions.logging.eventlog\9.0.0\lib\net9.0\Microsoft.Extensions.Logging.EventLog.dll -C:\Users\changeself\.nuget\packages\microsoft.extensions.logging.eventsource\9.0.0\lib\net9.0\Microsoft.Extensions.Logging.EventSource.dll -C:\Users\changeself\.nuget\packages\microsoft.extensions.options.configurationextensions\9.0.0\lib\net9.0\Microsoft.Extensions.Options.ConfigurationExtensions.dll -C:\Users\changeself\.nuget\packages\microsoft.extensions.options\9.0.0\lib\net9.0\Microsoft.Extensions.Options.dll -C:\Users\changeself\.nuget\packages\microsoft.extensions.primitives\9.0.0\lib\net9.0\Microsoft.Extensions.Primitives.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\Microsoft.VisualBasic.Core.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\Microsoft.VisualBasic.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\Microsoft.Win32.Primitives.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\Microsoft.Win32.Registry.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\mscorlib.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\netstandard.dll -C:\Users\changeself\.nuget\packages\reactiveui\20.1.1\lib\net8.0\ReactiveUI.dll -C:\Users\changeself\.nuget\packages\skiasharp\2.88.9\lib\net6.0\SkiaSharp.dll -C:\Users\changeself\.nuget\packages\splat\15.1.1\lib\net8.0\Splat.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.AppContext.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Buffers.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Collections.Concurrent.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Collections.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Collections.Immutable.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Collections.NonGeneric.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Collections.Specialized.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.ComponentModel.Annotations.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.ComponentModel.DataAnnotations.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.ComponentModel.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.ComponentModel.EventBasedAsync.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.ComponentModel.Primitives.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.ComponentModel.TypeConverter.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Configuration.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Console.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Core.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Data.Common.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Data.DataSetExtensions.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Data.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Diagnostics.Contracts.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Diagnostics.Debug.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Diagnostics.DiagnosticSource.dll -C:\Users\changeself\.nuget\packages\system.diagnostics.eventlog\9.0.0\lib\net9.0\System.Diagnostics.EventLog.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Diagnostics.FileVersionInfo.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Diagnostics.Process.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Diagnostics.StackTrace.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Diagnostics.TextWriterTraceListener.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Diagnostics.Tools.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Diagnostics.TraceSource.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Diagnostics.Tracing.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Drawing.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Drawing.Primitives.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Dynamic.Runtime.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Formats.Asn1.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Formats.Tar.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Globalization.Calendars.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Globalization.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Globalization.Extensions.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.IO.Compression.Brotli.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.IO.Compression.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.IO.Compression.FileSystem.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.IO.Compression.ZipFile.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.IO.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.IO.FileSystem.AccessControl.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.IO.FileSystem.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.IO.FileSystem.DriveInfo.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.IO.FileSystem.Primitives.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.IO.FileSystem.Watcher.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.IO.IsolatedStorage.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.IO.MemoryMappedFiles.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.IO.Pipelines.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.IO.Pipes.AccessControl.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.IO.Pipes.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.IO.UnmanagedMemoryStream.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Linq.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Linq.Expressions.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Linq.Parallel.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Linq.Queryable.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Memory.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Net.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Net.Http.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Net.Http.Json.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Net.HttpListener.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Net.Mail.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Net.NameResolution.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Net.NetworkInformation.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Net.Ping.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Net.Primitives.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Net.Quic.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Net.Requests.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Net.Security.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Net.ServicePoint.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Net.Sockets.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Net.WebClient.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Net.WebHeaderCollection.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Net.WebProxy.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Net.WebSockets.Client.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Net.WebSockets.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Numerics.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Numerics.Vectors.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.ObjectModel.dll -C:\Users\changeself\.nuget\packages\system.reactive\6.0.1\lib\net6.0\System.Reactive.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Reflection.DispatchProxy.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Reflection.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Reflection.Emit.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Reflection.Emit.ILGeneration.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Reflection.Emit.Lightweight.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Reflection.Extensions.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Reflection.Metadata.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Reflection.Primitives.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Reflection.TypeExtensions.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Resources.Reader.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Resources.ResourceManager.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Resources.Writer.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Runtime.CompilerServices.Unsafe.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Runtime.CompilerServices.VisualC.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Runtime.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Runtime.Extensions.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Runtime.Handles.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Runtime.InteropServices.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Runtime.InteropServices.JavaScript.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Runtime.InteropServices.RuntimeInformation.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Runtime.Intrinsics.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Runtime.Loader.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Runtime.Numerics.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Runtime.Serialization.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Runtime.Serialization.Formatters.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Runtime.Serialization.Json.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Runtime.Serialization.Primitives.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Runtime.Serialization.Xml.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Security.AccessControl.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Security.Claims.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Security.Cryptography.Algorithms.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Security.Cryptography.Cng.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Security.Cryptography.Csp.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Security.Cryptography.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Security.Cryptography.Encoding.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Security.Cryptography.OpenSsl.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Security.Cryptography.Primitives.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Security.Cryptography.X509Certificates.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Security.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Security.Principal.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Security.Principal.Windows.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Security.SecureString.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.ServiceModel.Web.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.ServiceProcess.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Text.Encoding.CodePages.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Text.Encoding.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Text.Encoding.Extensions.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Text.Encodings.Web.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Text.Json.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Text.RegularExpressions.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Threading.Channels.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Threading.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Threading.Overlapped.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Threading.Tasks.Dataflow.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Threading.Tasks.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Threading.Tasks.Extensions.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Threading.Tasks.Parallel.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Threading.Thread.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Threading.ThreadPool.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Threading.Timer.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Transactions.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Transactions.Local.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.ValueTuple.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Web.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Web.HttpUtility.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Windows.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Xml.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Xml.Linq.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Xml.ReaderWriter.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Xml.Serialization.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Xml.XDocument.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Xml.XmlDocument.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Xml.XmlSerializer.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Xml.XPath.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System.Xml.XPath.XDocument.dll -C:\Users\changeself\.nuget\packages\tmds.dbus.protocol\0.21.2\lib\net8.0\Tmds.DBus.Protocol.dll -C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\WindowsBase.dll diff --git a/obj/Release/net9.0/linux-x64/Avalonia/resources b/obj/Release/net9.0/linux-x64/Avalonia/resources deleted file mode 100644 index b0b2978..0000000 Binary files a/obj/Release/net9.0/linux-x64/Avalonia/resources and /dev/null differ diff --git a/obj/Release/net9.0/linux-x64/MyAvalon.9DF80BA1.Up2Date b/obj/Release/net9.0/linux-x64/MyAvalon.9DF80BA1.Up2Date deleted file mode 100644 index e69de29..0000000 diff --git a/obj/Release/net9.0/linux-x64/MyAvaloniaApp.AssemblyInfo.cs b/obj/Release/net9.0/linux-x64/MyAvaloniaApp.AssemblyInfo.cs deleted file mode 100644 index 7d5de66..0000000 --- a/obj/Release/net9.0/linux-x64/MyAvaloniaApp.AssemblyInfo.cs +++ /dev/null @@ -1,22 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("MyAvaloniaApp")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a05a81acc78797ebd427e6d6aed03156b1343493")] -[assembly: System.Reflection.AssemblyProductAttribute("MyAvaloniaApp")] -[assembly: System.Reflection.AssemblyTitleAttribute("MyAvaloniaApp")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] - -// 由 MSBuild WriteCodeFragment 类生成。 - diff --git a/obj/Release/net9.0/linux-x64/MyAvaloniaApp.AssemblyInfoInputs.cache b/obj/Release/net9.0/linux-x64/MyAvaloniaApp.AssemblyInfoInputs.cache deleted file mode 100644 index 644ed73..0000000 --- a/obj/Release/net9.0/linux-x64/MyAvaloniaApp.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -cb222c9b1a7e6b974825e9997ad1ff3ee2ea91da885ea5a9eff2111dc7b6c82a diff --git a/obj/Release/net9.0/linux-x64/MyAvaloniaApp.GeneratedMSBuildEditorConfig.editorconfig b/obj/Release/net9.0/linux-x64/MyAvaloniaApp.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index f1b6c8b..0000000 --- a/obj/Release/net9.0/linux-x64/MyAvaloniaApp.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,55 +0,0 @@ -is_global = true -build_property.AvaloniaNameGeneratorIsEnabled = true -build_property.AvaloniaNameGeneratorBehavior = InitializeComponent -build_property.AvaloniaNameGeneratorDefaultFieldModifier = internal -build_property.AvaloniaNameGeneratorFilterByPath = * -build_property.AvaloniaNameGeneratorFilterByNamespace = * -build_property.AvaloniaNameGeneratorViewFileNamingStrategy = NamespaceAndClassName -build_property.AvaloniaNameGeneratorAttachDevTools = true -build_property.TargetFramework = net9.0 -build_property.TargetPlatformMinVersion = -build_property.UsingMicrosoftNETSdkWeb = -build_property.ProjectTypeGuids = -build_property.InvariantGlobalization = -build_property.PlatformNeutralAssembly = -build_property.EnforceExtendedAnalyzerRules = -build_property._SupportedPlatformList = Linux,macOS,Windows -build_property.RootNamespace = MyAvaloniaApp -build_property.ProjectDir = D:\Log\MyAvaloniaApp\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = -build_property.EffectiveAnalysisLevelStyle = 9.0 -build_property.EnableCodeStyleSeverity = - -[D:/Log/MyAvaloniaApp/App.axaml] -build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml - -[D:/Log/MyAvaloniaApp/MainWindow.axaml] -build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml - -[D:/Log/MyAvaloniaApp/Resources/Colors.axaml] -build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml - -[D:/Log/MyAvaloniaApp/Resources/Strings.en.axaml] -build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml - -[D:/Log/MyAvaloniaApp/Resources/Strings.zh-CN.axaml] -build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml - -[D:/Log/MyAvaloniaApp/Views/Pages/DashboardPageView.axaml] -build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml - -[D:/Log/MyAvaloniaApp/Views/Pages/HelpPageView.axaml] -build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml - -[D:/Log/MyAvaloniaApp/Views/Pages/IconsPageView.axaml] -build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml - -[D:/Log/MyAvaloniaApp/Views/Pages/ReportsPageView.axaml] -build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml - -[D:/Log/MyAvaloniaApp/Views/Pages/SettingsPageView.axaml] -build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml - -[D:/Log/MyAvaloniaApp/Views/Pages/UsersPageView.axaml] -build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml diff --git a/obj/Release/net9.0/linux-x64/MyAvaloniaApp.assets.cache b/obj/Release/net9.0/linux-x64/MyAvaloniaApp.assets.cache deleted file mode 100644 index 1939aae..0000000 Binary files a/obj/Release/net9.0/linux-x64/MyAvaloniaApp.assets.cache and /dev/null differ diff --git a/obj/Release/net9.0/linux-x64/MyAvaloniaApp.csproj.AssemblyReference.cache b/obj/Release/net9.0/linux-x64/MyAvaloniaApp.csproj.AssemblyReference.cache deleted file mode 100644 index 0b8e486..0000000 Binary files a/obj/Release/net9.0/linux-x64/MyAvaloniaApp.csproj.AssemblyReference.cache and /dev/null differ diff --git a/obj/Release/net9.0/linux-x64/MyAvaloniaApp.csproj.CoreCompileInputs.cache b/obj/Release/net9.0/linux-x64/MyAvaloniaApp.csproj.CoreCompileInputs.cache deleted file mode 100644 index 7287a24..0000000 --- a/obj/Release/net9.0/linux-x64/MyAvaloniaApp.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -b62578fea8a18dfe5105a2e709cb315832fb6358bebf41ee063ccc3efd6c5c11 diff --git a/obj/Release/net9.0/linux-x64/MyAvaloniaApp.csproj.FileListAbsolute.txt b/obj/Release/net9.0/linux-x64/MyAvaloniaApp.csproj.FileListAbsolute.txt deleted file mode 100644 index ed27b04..0000000 --- a/obj/Release/net9.0/linux-x64/MyAvaloniaApp.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,264 +0,0 @@ -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\MyAvaloniaApp -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\MyAvaloniaApp.deps.json -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\MyAvaloniaApp.runtimeconfig.json -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\MyAvaloniaApp.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\MyAvaloniaApp.pdb -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\Avalonia.Base.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\Avalonia.Controls.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\Avalonia.DesignerSupport.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\Avalonia.Dialogs.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\Avalonia.Markup.Xaml.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\Avalonia.Markup.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\Avalonia.Metal.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\Avalonia.MicroCom.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\Avalonia.OpenGL.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\Avalonia.Vulkan.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\Avalonia.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\Avalonia.Desktop.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\Avalonia.Fonts.Inter.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\Avalonia.FreeDesktop.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\Avalonia.Native.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\Avalonia.ReactiveUI.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\Avalonia.Remote.Protocol.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\Avalonia.Skia.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\Avalonia.Themes.Fluent.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\Avalonia.Win32.Automation.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\Avalonia.Win32.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\Avalonia.X11.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\DynamicData.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\HarfBuzzSharp.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\MicroCom.Runtime.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\ReactiveUI.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\SkiaSharp.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\Splat.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Reactive.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\Tmds.DBus.Protocol.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\libHarfBuzzSharp.so -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\libSkiaSharp.so -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\Microsoft.CSharp.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\Microsoft.VisualBasic.Core.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\Microsoft.VisualBasic.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\Microsoft.Win32.Primitives.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\Microsoft.Win32.Registry.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.AppContext.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Buffers.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Collections.Concurrent.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Collections.Immutable.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Collections.NonGeneric.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Collections.Specialized.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Collections.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.ComponentModel.Annotations.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.ComponentModel.DataAnnotations.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.ComponentModel.EventBasedAsync.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.ComponentModel.Primitives.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.ComponentModel.TypeConverter.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.ComponentModel.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Configuration.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Console.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Core.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Data.Common.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Data.DataSetExtensions.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Data.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Diagnostics.Contracts.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Diagnostics.Debug.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Diagnostics.DiagnosticSource.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Diagnostics.FileVersionInfo.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Diagnostics.Process.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Diagnostics.StackTrace.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Diagnostics.TextWriterTraceListener.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Diagnostics.Tools.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Diagnostics.TraceSource.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Diagnostics.Tracing.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Drawing.Primitives.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Drawing.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Dynamic.Runtime.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Formats.Asn1.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Formats.Tar.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Globalization.Calendars.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Globalization.Extensions.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Globalization.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.IO.Compression.Brotli.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.IO.Compression.FileSystem.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.IO.Compression.ZipFile.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.IO.Compression.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.IO.FileSystem.AccessControl.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.IO.FileSystem.DriveInfo.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.IO.FileSystem.Primitives.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.IO.FileSystem.Watcher.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.IO.FileSystem.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.IO.IsolatedStorage.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.IO.MemoryMappedFiles.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.IO.Pipelines.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.IO.Pipes.AccessControl.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.IO.Pipes.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.IO.UnmanagedMemoryStream.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.IO.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Linq.Expressions.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Linq.Parallel.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Linq.Queryable.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Linq.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Memory.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Net.Http.Json.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Net.Http.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Net.HttpListener.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Net.Mail.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Net.NameResolution.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Net.NetworkInformation.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Net.Ping.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Net.Primitives.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Net.Quic.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Net.Requests.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Net.Security.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Net.ServicePoint.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Net.Sockets.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Net.WebClient.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Net.WebHeaderCollection.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Net.WebProxy.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Net.WebSockets.Client.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Net.WebSockets.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Net.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Numerics.Vectors.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Numerics.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.ObjectModel.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Private.CoreLib.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Private.DataContractSerialization.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Private.Uri.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Private.Xml.Linq.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Private.Xml.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Reflection.DispatchProxy.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Reflection.Emit.ILGeneration.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Reflection.Emit.Lightweight.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Reflection.Emit.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Reflection.Extensions.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Reflection.Metadata.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Reflection.Primitives.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Reflection.TypeExtensions.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Reflection.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Resources.Reader.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Resources.ResourceManager.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Resources.Writer.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Runtime.CompilerServices.Unsafe.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Runtime.CompilerServices.VisualC.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Runtime.Extensions.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Runtime.Handles.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Runtime.InteropServices.JavaScript.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Runtime.InteropServices.RuntimeInformation.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Runtime.InteropServices.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Runtime.Intrinsics.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Runtime.Loader.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Runtime.Numerics.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Runtime.Serialization.Formatters.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Runtime.Serialization.Json.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Runtime.Serialization.Primitives.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Runtime.Serialization.Xml.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Runtime.Serialization.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Runtime.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Security.AccessControl.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Security.Claims.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Security.Cryptography.Algorithms.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Security.Cryptography.Cng.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Security.Cryptography.Csp.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Security.Cryptography.Encoding.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Security.Cryptography.OpenSsl.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Security.Cryptography.Primitives.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Security.Cryptography.X509Certificates.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Security.Cryptography.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Security.Principal.Windows.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Security.Principal.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Security.SecureString.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Security.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.ServiceModel.Web.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.ServiceProcess.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Text.Encoding.CodePages.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Text.Encoding.Extensions.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Text.Encoding.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Text.Encodings.Web.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Text.Json.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Text.RegularExpressions.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Threading.Channels.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Threading.Overlapped.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Threading.Tasks.Dataflow.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Threading.Tasks.Extensions.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Threading.Tasks.Parallel.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Threading.Tasks.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Threading.Thread.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Threading.ThreadPool.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Threading.Timer.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Threading.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Transactions.Local.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Transactions.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.ValueTuple.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Web.HttpUtility.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Web.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Windows.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Xml.Linq.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Xml.ReaderWriter.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Xml.Serialization.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Xml.XDocument.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Xml.XPath.XDocument.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Xml.XPath.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Xml.XmlDocument.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Xml.XmlSerializer.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Xml.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\WindowsBase.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\mscorlib.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\netstandard.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\createdump -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\libSystem.Globalization.Native.so -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\libSystem.IO.Compression.Native.so -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\libSystem.Native.so -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\libSystem.Net.Security.Native.so -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\libSystem.Security.Cryptography.Native.OpenSsl.so -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\libclrgc.so -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\libclrgcexp.so -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\libclrjit.so -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\libcoreclr.so -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\libcoreclrtraceptprovider.so -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\libhostfxr.so -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\libhostpolicy.so -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\libmscordaccore.so -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\libmscordbi.so -D:\Log\MyAvaloniaApp\obj\Release\net9.0\linux-x64\MyAvaloniaApp.csproj.AssemblyReference.cache -D:\Log\MyAvaloniaApp\obj\Release\net9.0\linux-x64\Avalonia\Resources.Inputs.cache -D:\Log\MyAvaloniaApp\obj\Release\net9.0\linux-x64\Avalonia\resources -D:\Log\MyAvaloniaApp\obj\Release\net9.0\linux-x64\MyAvaloniaApp.GeneratedMSBuildEditorConfig.editorconfig -D:\Log\MyAvaloniaApp\obj\Release\net9.0\linux-x64\MyAvaloniaApp.AssemblyInfoInputs.cache -D:\Log\MyAvaloniaApp\obj\Release\net9.0\linux-x64\MyAvaloniaApp.AssemblyInfo.cs -D:\Log\MyAvaloniaApp\obj\Release\net9.0\linux-x64\MyAvaloniaApp.csproj.CoreCompileInputs.cache -D:\Log\MyAvaloniaApp\obj\Release\net9.0\linux-x64\MyAvalon.9DF80BA1.Up2Date -D:\Log\MyAvaloniaApp\obj\Release\net9.0\linux-x64\MyAvaloniaApp.dll -D:\Log\MyAvaloniaApp\obj\Release\net9.0\linux-x64\refint\MyAvaloniaApp.dll -D:\Log\MyAvaloniaApp\obj\Release\net9.0\linux-x64\MyAvaloniaApp.pdb -D:\Log\MyAvaloniaApp\obj\Release\net9.0\linux-x64\MyAvaloniaApp.genruntimeconfig.cache -D:\Log\MyAvaloniaApp\obj\Release\net9.0\linux-x64\ref\MyAvaloniaApp.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\appsettings.json -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\Microsoft.Extensions.Configuration.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\Microsoft.Extensions.Configuration.Abstractions.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\Microsoft.Extensions.Configuration.Binder.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\Microsoft.Extensions.Configuration.CommandLine.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\Microsoft.Extensions.Configuration.EnvironmentVariables.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\Microsoft.Extensions.Configuration.FileExtensions.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\Microsoft.Extensions.Configuration.Json.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\Microsoft.Extensions.Configuration.UserSecrets.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\Microsoft.Extensions.DependencyInjection.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\Microsoft.Extensions.DependencyInjection.Abstractions.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\Microsoft.Extensions.Diagnostics.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\Microsoft.Extensions.Diagnostics.Abstractions.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\Microsoft.Extensions.FileProviders.Abstractions.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\Microsoft.Extensions.FileProviders.Physical.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\Microsoft.Extensions.FileSystemGlobbing.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\Microsoft.Extensions.Hosting.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\Microsoft.Extensions.Hosting.Abstractions.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\Microsoft.Extensions.Logging.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\Microsoft.Extensions.Logging.Abstractions.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\Microsoft.Extensions.Logging.Configuration.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\Microsoft.Extensions.Logging.Console.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\Microsoft.Extensions.Logging.Debug.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\Microsoft.Extensions.Logging.EventLog.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\Microsoft.Extensions.Logging.EventSource.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\Microsoft.Extensions.Options.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\Microsoft.Extensions.Options.ConfigurationExtensions.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\Microsoft.Extensions.Primitives.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\System.Diagnostics.EventLog.dll -D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\HeroIconsAvalonia.dll diff --git a/obj/Release/net9.0/linux-x64/MyAvaloniaApp.deps.json b/obj/Release/net9.0/linux-x64/MyAvaloniaApp.deps.json deleted file mode 100644 index 262735b..0000000 --- a/obj/Release/net9.0/linux-x64/MyAvaloniaApp.deps.json +++ /dev/null @@ -1,1940 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v9.0/linux-x64", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v9.0": {}, - ".NETCoreApp,Version=v9.0/linux-x64": { - "MyAvaloniaApp/1.0.0": { - "dependencies": { - "Avalonia": "11.3.7", - "Avalonia.Desktop": "11.3.7", - "Avalonia.Diagnostics": "11.3.6", - "Avalonia.Fonts.Inter": "11.3.6", - "Avalonia.ReactiveUI": "11.3.7", - "Avalonia.Themes.Fluent": "11.3.6", - "HeroIcons.Avalonia": "1.0.4", - "Microsoft.Extensions.Configuration": "9.0.0", - "Microsoft.Extensions.Configuration.CommandLine": "9.0.0", - "Microsoft.Extensions.Configuration.EnvironmentVariables": "9.0.0", - "Microsoft.Extensions.Configuration.Json": "9.0.0", - "Microsoft.Extensions.DependencyInjection": "9.0.0", - "Microsoft.Extensions.Hosting": "9.0.0", - "Microsoft.Extensions.Logging": "9.0.0", - "Microsoft.Extensions.Logging.Console": "9.0.0", - "Microsoft.Extensions.Logging.Debug": "9.0.0", - "runtimepack.Microsoft.NETCore.App.Runtime.linux-x64": "9.0.7" - }, - "runtime": { - "MyAvaloniaApp.dll": {} - } - }, - "runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/9.0.7": { - "runtime": { - "Microsoft.CSharp.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "Microsoft.VisualBasic.Core.dll": { - "assemblyVersion": "14.0.0.0", - "fileVersion": "14.0.725.31616" - }, - "Microsoft.VisualBasic.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "Microsoft.Win32.Primitives.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "Microsoft.Win32.Registry.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.AppContext.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Buffers.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Collections.Concurrent.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Collections.Immutable.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Collections.NonGeneric.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Collections.Specialized.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Collections.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.ComponentModel.Annotations.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.ComponentModel.DataAnnotations.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.ComponentModel.EventBasedAsync.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.ComponentModel.Primitives.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.ComponentModel.TypeConverter.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.ComponentModel.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Configuration.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Console.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Core.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Data.Common.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Data.DataSetExtensions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Data.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Diagnostics.Contracts.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Diagnostics.Debug.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Diagnostics.DiagnosticSource.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Diagnostics.FileVersionInfo.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Diagnostics.Process.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Diagnostics.StackTrace.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Diagnostics.TextWriterTraceListener.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Diagnostics.Tools.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Diagnostics.TraceSource.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Diagnostics.Tracing.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Drawing.Primitives.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Drawing.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Dynamic.Runtime.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Formats.Asn1.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Formats.Tar.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Globalization.Calendars.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Globalization.Extensions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Globalization.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.IO.Compression.Brotli.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.IO.Compression.FileSystem.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.IO.Compression.ZipFile.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.IO.Compression.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.IO.FileSystem.AccessControl.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.IO.FileSystem.DriveInfo.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.IO.FileSystem.Primitives.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.IO.FileSystem.Watcher.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.IO.FileSystem.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.IO.IsolatedStorage.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.IO.MemoryMappedFiles.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.IO.Pipelines.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.IO.Pipes.AccessControl.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.IO.Pipes.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.IO.UnmanagedMemoryStream.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.IO.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Linq.Expressions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Linq.Parallel.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Linq.Queryable.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Linq.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Memory.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Net.Http.Json.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Net.Http.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Net.HttpListener.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Net.Mail.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Net.NameResolution.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Net.NetworkInformation.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Net.Ping.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Net.Primitives.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Net.Quic.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Net.Requests.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Net.Security.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Net.ServicePoint.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Net.Sockets.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Net.WebClient.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Net.WebHeaderCollection.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Net.WebProxy.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Net.WebSockets.Client.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Net.WebSockets.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Net.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Numerics.Vectors.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Numerics.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.ObjectModel.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Private.CoreLib.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Private.DataContractSerialization.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Private.Uri.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Private.Xml.Linq.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Private.Xml.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Reflection.DispatchProxy.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Reflection.Emit.ILGeneration.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Reflection.Emit.Lightweight.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Reflection.Emit.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Reflection.Extensions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Reflection.Metadata.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Reflection.Primitives.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Reflection.TypeExtensions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Reflection.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Resources.Reader.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Resources.ResourceManager.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Resources.Writer.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Runtime.CompilerServices.Unsafe.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Runtime.CompilerServices.VisualC.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Runtime.Extensions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Runtime.Handles.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Runtime.InteropServices.JavaScript.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Runtime.InteropServices.RuntimeInformation.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Runtime.InteropServices.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Runtime.Intrinsics.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Runtime.Loader.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Runtime.Numerics.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Runtime.Serialization.Formatters.dll": { - "assemblyVersion": "8.1.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Runtime.Serialization.Json.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Runtime.Serialization.Primitives.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Runtime.Serialization.Xml.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Runtime.Serialization.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Runtime.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Security.AccessControl.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Security.Claims.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Security.Cryptography.Algorithms.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Security.Cryptography.Cng.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Security.Cryptography.Csp.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Security.Cryptography.Encoding.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Security.Cryptography.OpenSsl.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Security.Cryptography.Primitives.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Security.Cryptography.X509Certificates.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Security.Cryptography.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Security.Principal.Windows.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Security.Principal.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Security.SecureString.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Security.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.ServiceModel.Web.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.ServiceProcess.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Text.Encoding.CodePages.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Text.Encoding.Extensions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Text.Encoding.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Text.Encodings.Web.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Text.Json.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Text.RegularExpressions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Threading.Channels.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Threading.Overlapped.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Threading.Tasks.Dataflow.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Threading.Tasks.Extensions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Threading.Tasks.Parallel.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Threading.Tasks.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Threading.Thread.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Threading.ThreadPool.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Threading.Timer.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Threading.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Transactions.Local.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Transactions.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.ValueTuple.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Web.HttpUtility.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Web.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Windows.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Xml.Linq.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Xml.ReaderWriter.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Xml.Serialization.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Xml.XDocument.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Xml.XPath.XDocument.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Xml.XPath.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Xml.XmlDocument.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Xml.XmlSerializer.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.Xml.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "System.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "WindowsBase.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "mscorlib.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.725.31616" - }, - "netstandard.dll": { - "assemblyVersion": "2.1.0.0", - "fileVersion": "9.0.725.31616" - } - }, - "native": { - "createdump": { - "fileVersion": "0.0.0.0" - }, - "libSystem.Globalization.Native.so": { - "fileVersion": "0.0.0.0" - }, - "libSystem.IO.Compression.Native.so": { - "fileVersion": "0.0.0.0" - }, - "libSystem.Native.so": { - "fileVersion": "0.0.0.0" - }, - "libSystem.Net.Security.Native.so": { - "fileVersion": "0.0.0.0" - }, - "libSystem.Security.Cryptography.Native.OpenSsl.so": { - "fileVersion": "0.0.0.0" - }, - "libclrgc.so": { - "fileVersion": "0.0.0.0" - }, - "libclrgcexp.so": { - "fileVersion": "0.0.0.0" - }, - "libclrjit.so": { - "fileVersion": "0.0.0.0" - }, - "libcoreclr.so": { - "fileVersion": "0.0.0.0" - }, - "libcoreclrtraceptprovider.so": { - "fileVersion": "0.0.0.0" - }, - "libhostfxr.so": { - "fileVersion": "0.0.0.0" - }, - "libhostpolicy.so": { - "fileVersion": "0.0.0.0" - }, - "libmscordaccore.so": { - "fileVersion": "0.0.0.0" - }, - "libmscordbi.so": { - "fileVersion": "0.0.0.0" - } - } - }, - "Avalonia/11.3.7": { - "dependencies": { - "Avalonia.BuildServices": "11.3.1", - "Avalonia.Remote.Protocol": "11.3.7", - "MicroCom.Runtime": "0.11.0" - }, - "runtime": { - "lib/net8.0/Avalonia.Base.dll": { - "assemblyVersion": "11.3.7.0", - "fileVersion": "11.3.7.0" - }, - "lib/net8.0/Avalonia.Controls.dll": { - "assemblyVersion": "11.3.7.0", - "fileVersion": "11.3.7.0" - }, - "lib/net8.0/Avalonia.DesignerSupport.dll": { - "assemblyVersion": "0.7.0.0", - "fileVersion": "0.7.0.0" - }, - "lib/net8.0/Avalonia.Dialogs.dll": { - "assemblyVersion": "11.3.7.0", - "fileVersion": "11.3.7.0" - }, - "lib/net8.0/Avalonia.Markup.Xaml.dll": { - "assemblyVersion": "11.3.7.0", - "fileVersion": "11.3.7.0" - }, - "lib/net8.0/Avalonia.Markup.dll": { - "assemblyVersion": "11.3.7.0", - "fileVersion": "11.3.7.0" - }, - "lib/net8.0/Avalonia.Metal.dll": { - "assemblyVersion": "11.3.7.0", - "fileVersion": "11.3.7.0" - }, - "lib/net8.0/Avalonia.MicroCom.dll": { - "assemblyVersion": "11.3.7.0", - "fileVersion": "11.3.7.0" - }, - "lib/net8.0/Avalonia.OpenGL.dll": { - "assemblyVersion": "11.3.7.0", - "fileVersion": "11.3.7.0" - }, - "lib/net8.0/Avalonia.Vulkan.dll": { - "assemblyVersion": "11.3.7.0", - "fileVersion": "11.3.7.0" - }, - "lib/net8.0/Avalonia.dll": { - "assemblyVersion": "11.3.7.0", - "fileVersion": "11.3.7.0" - } - } - }, - "Avalonia.Angle.Windows.Natives/2.1.25547.20250602": {}, - "Avalonia.BuildServices/11.3.1": {}, - "Avalonia.Controls.ColorPicker/11.3.6": { - "dependencies": { - "Avalonia": "11.3.7", - "Avalonia.Remote.Protocol": "11.3.7" - } - }, - "Avalonia.Desktop/11.3.7": { - "dependencies": { - "Avalonia": "11.3.7", - "Avalonia.Native": "11.3.7", - "Avalonia.Skia": "11.3.7", - "Avalonia.Win32": "11.3.7", - "Avalonia.X11": "11.3.7" - }, - "runtime": { - "lib/net8.0/Avalonia.Desktop.dll": { - "assemblyVersion": "11.3.7.0", - "fileVersion": "11.3.7.0" - } - } - }, - "Avalonia.Diagnostics/11.3.6": { - "dependencies": { - "Avalonia": "11.3.7", - "Avalonia.Controls.ColorPicker": "11.3.6", - "Avalonia.Themes.Simple": "11.3.6" - } - }, - "Avalonia.Fonts.Inter/11.3.6": { - "dependencies": { - "Avalonia": "11.3.7" - }, - "runtime": { - "lib/net8.0/Avalonia.Fonts.Inter.dll": { - "assemblyVersion": "11.3.6.0", - "fileVersion": "11.3.6.0" - } - } - }, - "Avalonia.FreeDesktop/11.3.7": { - "dependencies": { - "Avalonia": "11.3.7", - "Tmds.DBus.Protocol": "0.21.2" - }, - "runtime": { - "lib/net8.0/Avalonia.FreeDesktop.dll": { - "assemblyVersion": "11.3.7.0", - "fileVersion": "11.3.7.0" - } - } - }, - "Avalonia.Native/11.3.7": { - "dependencies": { - "Avalonia": "11.3.7" - }, - "runtime": { - "lib/net8.0/Avalonia.Native.dll": { - "assemblyVersion": "11.3.7.0", - "fileVersion": "11.3.7.0" - } - } - }, - "Avalonia.ReactiveUI/11.3.7": { - "dependencies": { - "Avalonia": "11.3.7", - "ReactiveUI": "20.1.1", - "System.Reactive": "6.0.1" - }, - "runtime": { - "lib/net8.0/Avalonia.ReactiveUI.dll": { - "assemblyVersion": "11.3.7.0", - "fileVersion": "11.3.7.0" - } - } - }, - "Avalonia.Remote.Protocol/11.3.7": { - "runtime": { - "lib/net8.0/Avalonia.Remote.Protocol.dll": { - "assemblyVersion": "11.3.7.0", - "fileVersion": "11.3.7.0" - } - } - }, - "Avalonia.Skia/11.3.7": { - "dependencies": { - "Avalonia": "11.3.7", - "HarfBuzzSharp": "8.3.1.1", - "HarfBuzzSharp.NativeAssets.Linux": "8.3.1.1", - "HarfBuzzSharp.NativeAssets.WebAssembly": "8.3.1.1", - "SkiaSharp": "2.88.9", - "SkiaSharp.NativeAssets.Linux": "2.88.9", - "SkiaSharp.NativeAssets.WebAssembly": "2.88.9" - }, - "runtime": { - "lib/net8.0/Avalonia.Skia.dll": { - "assemblyVersion": "11.3.7.0", - "fileVersion": "11.3.7.0" - } - } - }, - "Avalonia.Themes.Fluent/11.3.6": { - "dependencies": { - "Avalonia": "11.3.7" - }, - "runtime": { - "lib/net8.0/Avalonia.Themes.Fluent.dll": { - "assemblyVersion": "11.3.6.0", - "fileVersion": "11.3.6.0" - } - } - }, - "Avalonia.Themes.Simple/11.3.6": { - "dependencies": { - "Avalonia": "11.3.7" - } - }, - "Avalonia.Win32/11.3.7": { - "dependencies": { - "Avalonia": "11.3.7", - "Avalonia.Angle.Windows.Natives": "2.1.25547.20250602" - }, - "runtime": { - "lib/net8.0/Avalonia.Win32.Automation.dll": { - "assemblyVersion": "11.3.7.0", - "fileVersion": "11.3.7.0" - }, - "lib/net8.0/Avalonia.Win32.dll": { - "assemblyVersion": "11.3.7.0", - "fileVersion": "11.3.7.0" - } - } - }, - "Avalonia.X11/11.3.7": { - "dependencies": { - "Avalonia": "11.3.7", - "Avalonia.FreeDesktop": "11.3.7", - "Avalonia.Skia": "11.3.7" - }, - "runtime": { - "lib/net8.0/Avalonia.X11.dll": { - "assemblyVersion": "11.3.7.0", - "fileVersion": "11.3.7.0" - } - } - }, - "DynamicData/8.4.1": { - "dependencies": { - "System.Reactive": "6.0.1" - }, - "runtime": { - "lib/net8.0/DynamicData.dll": { - "assemblyVersion": "8.4.0.0", - "fileVersion": "8.4.1.20756" - } - } - }, - "HarfBuzzSharp/8.3.1.1": { - "dependencies": { - "HarfBuzzSharp.NativeAssets.Win32": "8.3.1.1", - "HarfBuzzSharp.NativeAssets.macOS": "8.3.1.1" - }, - "runtime": { - "lib/net8.0/HarfBuzzSharp.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "8.3.1.1" - } - } - }, - "HarfBuzzSharp.NativeAssets.Linux/8.3.1.1": { - "native": { - "runtimes/linux-x64/native/libHarfBuzzSharp.so": { - "fileVersion": "0.0.0.0" - } - } - }, - "HarfBuzzSharp.NativeAssets.macOS/8.3.1.1": {}, - "HarfBuzzSharp.NativeAssets.WebAssembly/8.3.1.1": {}, - "HarfBuzzSharp.NativeAssets.Win32/8.3.1.1": {}, - "HeroIcons.Avalonia/1.0.4": { - "dependencies": { - "Avalonia": "11.3.7" - }, - "runtime": { - "lib/netstandard2.0/HeroIconsAvalonia.dll": { - "assemblyVersion": "1.0.4.0", - "fileVersion": "1.0.4.0" - } - } - }, - "MicroCom.Runtime/0.11.0": { - "runtime": { - "lib/net5.0/MicroCom.Runtime.dll": { - "assemblyVersion": "0.11.0.0", - "fileVersion": "0.11.0.0" - } - } - }, - "Microsoft.Extensions.Configuration/9.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", - "Microsoft.Extensions.Primitives": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Configuration.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Configuration.Abstractions/9.0.0": { - "dependencies": { - "Microsoft.Extensions.Primitives": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Configuration.Binder/9.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Configuration.Binder.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Configuration.CommandLine/9.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration": "9.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Configuration.CommandLine.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Configuration.EnvironmentVariables/9.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration": "9.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Configuration.FileExtensions/9.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration": "9.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", - "Microsoft.Extensions.FileProviders.Physical": "9.0.0", - "Microsoft.Extensions.Primitives": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Configuration.Json/9.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration": "9.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", - "Microsoft.Extensions.Configuration.FileExtensions": "9.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Configuration.Json.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Configuration.UserSecrets/9.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", - "Microsoft.Extensions.Configuration.Json": "9.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", - "Microsoft.Extensions.FileProviders.Physical": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Configuration.UserSecrets.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.DependencyInjection/9.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": { - "runtime": { - "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Diagnostics/9.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration": "9.0.0", - "Microsoft.Extensions.Diagnostics.Abstractions": "9.0.0", - "Microsoft.Extensions.Options.ConfigurationExtensions": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Diagnostics.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Diagnostics.Abstractions/9.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", - "Microsoft.Extensions.Options": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.FileProviders.Abstractions/9.0.0": { - "dependencies": { - "Microsoft.Extensions.Primitives": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.FileProviders.Physical/9.0.0": { - "dependencies": { - "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", - "Microsoft.Extensions.FileSystemGlobbing": "9.0.0", - "Microsoft.Extensions.Primitives": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.FileProviders.Physical.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.FileSystemGlobbing/9.0.0": { - "runtime": { - "lib/net9.0/Microsoft.Extensions.FileSystemGlobbing.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Hosting/9.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration": "9.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", - "Microsoft.Extensions.Configuration.Binder": "9.0.0", - "Microsoft.Extensions.Configuration.CommandLine": "9.0.0", - "Microsoft.Extensions.Configuration.EnvironmentVariables": "9.0.0", - "Microsoft.Extensions.Configuration.FileExtensions": "9.0.0", - "Microsoft.Extensions.Configuration.Json": "9.0.0", - "Microsoft.Extensions.Configuration.UserSecrets": "9.0.0", - "Microsoft.Extensions.DependencyInjection": "9.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", - "Microsoft.Extensions.Diagnostics": "9.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", - "Microsoft.Extensions.FileProviders.Physical": "9.0.0", - "Microsoft.Extensions.Hosting.Abstractions": "9.0.0", - "Microsoft.Extensions.Logging": "9.0.0", - "Microsoft.Extensions.Logging.Abstractions": "9.0.0", - "Microsoft.Extensions.Logging.Configuration": "9.0.0", - "Microsoft.Extensions.Logging.Console": "9.0.0", - "Microsoft.Extensions.Logging.Debug": "9.0.0", - "Microsoft.Extensions.Logging.EventLog": "9.0.0", - "Microsoft.Extensions.Logging.EventSource": "9.0.0", - "Microsoft.Extensions.Options": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Hosting.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Hosting.Abstractions/9.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", - "Microsoft.Extensions.Diagnostics.Abstractions": "9.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", - "Microsoft.Extensions.Logging.Abstractions": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Hosting.Abstractions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Logging/9.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "9.0.0", - "Microsoft.Extensions.Logging.Abstractions": "9.0.0", - "Microsoft.Extensions.Options": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Logging.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Logging.Abstractions/9.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Logging.Configuration/9.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration": "9.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", - "Microsoft.Extensions.Configuration.Binder": "9.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", - "Microsoft.Extensions.Logging": "9.0.0", - "Microsoft.Extensions.Logging.Abstractions": "9.0.0", - "Microsoft.Extensions.Options": "9.0.0", - "Microsoft.Extensions.Options.ConfigurationExtensions": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Logging.Configuration.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Logging.Console/9.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", - "Microsoft.Extensions.Logging": "9.0.0", - "Microsoft.Extensions.Logging.Abstractions": "9.0.0", - "Microsoft.Extensions.Logging.Configuration": "9.0.0", - "Microsoft.Extensions.Options": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Logging.Console.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Logging.Debug/9.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", - "Microsoft.Extensions.Logging": "9.0.0", - "Microsoft.Extensions.Logging.Abstractions": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Logging.Debug.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Logging.EventLog/9.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", - "Microsoft.Extensions.Logging": "9.0.0", - "Microsoft.Extensions.Logging.Abstractions": "9.0.0", - "Microsoft.Extensions.Options": "9.0.0", - "System.Diagnostics.EventLog": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Logging.EventLog.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Logging.EventSource/9.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", - "Microsoft.Extensions.Logging": "9.0.0", - "Microsoft.Extensions.Logging.Abstractions": "9.0.0", - "Microsoft.Extensions.Options": "9.0.0", - "Microsoft.Extensions.Primitives": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Logging.EventSource.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Options/9.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", - "Microsoft.Extensions.Primitives": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Options.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Options.ConfigurationExtensions/9.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", - "Microsoft.Extensions.Configuration.Binder": "9.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", - "Microsoft.Extensions.Options": "9.0.0", - "Microsoft.Extensions.Primitives": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "Microsoft.Extensions.Primitives/9.0.0": { - "runtime": { - "lib/net9.0/Microsoft.Extensions.Primitives.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "ReactiveUI/20.1.1": { - "dependencies": { - "DynamicData": "8.4.1", - "Splat": "15.1.1", - "System.ComponentModel.Annotations": "5.0.0" - }, - "runtime": { - "lib/net8.0/ReactiveUI.dll": { - "assemblyVersion": "20.1.0.0", - "fileVersion": "20.1.1.46356" - } - } - }, - "SkiaSharp/2.88.9": { - "dependencies": { - "SkiaSharp.NativeAssets.Win32": "2.88.9", - "SkiaSharp.NativeAssets.macOS": "2.88.9" - }, - "runtime": { - "lib/net6.0/SkiaSharp.dll": { - "assemblyVersion": "2.88.0.0", - "fileVersion": "2.88.9.0" - } - } - }, - "SkiaSharp.NativeAssets.Linux/2.88.9": { - "dependencies": { - "SkiaSharp": "2.88.9" - }, - "native": { - "runtimes/linux-x64/native/libSkiaSharp.so": { - "fileVersion": "0.0.0.0" - } - } - }, - "SkiaSharp.NativeAssets.macOS/2.88.9": {}, - "SkiaSharp.NativeAssets.WebAssembly/2.88.9": {}, - "SkiaSharp.NativeAssets.Win32/2.88.9": {}, - "Splat/15.1.1": { - "runtime": { - "lib/net8.0/Splat.dll": { - "assemblyVersion": "15.1.0.0", - "fileVersion": "15.1.1.17670" - } - } - }, - "System.ComponentModel.Annotations/5.0.0": {}, - "System.Diagnostics.EventLog/9.0.0": { - "runtime": { - "lib/net9.0/System.Diagnostics.EventLog.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "System.IO.Pipelines/8.0.0": {}, - "System.Reactive/6.0.1": { - "runtime": { - "lib/net6.0/System.Reactive.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1.7420" - } - } - }, - "Tmds.DBus.Protocol/0.21.2": { - "dependencies": { - "System.IO.Pipelines": "8.0.0" - }, - "runtime": { - "lib/net8.0/Tmds.DBus.Protocol.dll": { - "assemblyVersion": "0.21.2.0", - "fileVersion": "0.21.2.0" - } - } - } - } - }, - "libraries": { - "MyAvaloniaApp/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/9.0.7": { - "type": "runtimepack", - "serviceable": false, - "sha512": "" - }, - "Avalonia/11.3.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-QlVvaYTSTqzoUflmAEMuPzi3vYdybEIXmFQgLZxdTbzTeyhlwKZ1WqtLwHVe1Fbt8oGSCqYYKsU8SViZsdXR2Q==", - "path": "avalonia/11.3.7", - "hashPath": "avalonia.11.3.7.nupkg.sha512" - }, - "Avalonia.Angle.Windows.Natives/2.1.25547.20250602": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZL0VLc4s9rvNNFt19Pxm5UNAkmKNylugAwJPX9ulXZ6JWs/l6XZihPWWTyezaoNOVyEPU8YbURtW7XMAtqXH5A==", - "path": "avalonia.angle.windows.natives/2.1.25547.20250602", - "hashPath": "avalonia.angle.windows.natives.2.1.25547.20250602.nupkg.sha512" - }, - "Avalonia.BuildServices/11.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-k/WwXbqwaCtmE0a90YXB9plT50ok6OgLBIr+DUYK16akJN82iK69kgkL1vGDd8XBvf77JM3O27znBuy7AEoFgg==", - "path": "avalonia.buildservices/11.3.1", - "hashPath": "avalonia.buildservices.11.3.1.nupkg.sha512" - }, - "Avalonia.Controls.ColorPicker/11.3.6": { - "type": "package", - "serviceable": true, - "sha512": "sha512-zgJFM7P7hOS9qcuSUqL2tjBFIsi03qiwAztYjtjtKjfBvLBOrVcmL5qHwjfjeLRLtjHprjMraAHtu3O2vi+51g==", - "path": "avalonia.controls.colorpicker/11.3.6", - "hashPath": "avalonia.controls.colorpicker.11.3.6.nupkg.sha512" - }, - "Avalonia.Desktop/11.3.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-yWYj8M4tpg6YJrGwPIrXPuVUocJsCmT81M+QtVZkEp4PZOUkm21tviaI4BGrY8eQYHuRRy7k/vcVxwHqnmQwuA==", - "path": "avalonia.desktop/11.3.7", - "hashPath": "avalonia.desktop.11.3.7.nupkg.sha512" - }, - "Avalonia.Diagnostics/11.3.6": { - "type": "package", - "serviceable": true, - "sha512": "sha512-iOGrfU/0TudsfHARpsreVt5V1oaer838IghYdgZjlOvGKmh5J1uc5GOSBmBodUpuPDE78wmdVrJZLC57qsndzg==", - "path": "avalonia.diagnostics/11.3.6", - "hashPath": "avalonia.diagnostics.11.3.6.nupkg.sha512" - }, - "Avalonia.Fonts.Inter/11.3.6": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ASuCuosS8elNsRxNpdZE/UrmMSh1wtwoqRDEgpdcbVuMRUH/8ElCur5PdyWhJSwIit/YXaS+xb2xQAGOnvT45w==", - "path": "avalonia.fonts.inter/11.3.6", - "hashPath": "avalonia.fonts.inter.11.3.6.nupkg.sha512" - }, - "Avalonia.FreeDesktop/11.3.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-4K36zaeYiZT/6S5if5fXGDAdJL4u4zuO0k33VrLpdflkVCjgPrd1WhK3qxJrgF9YNRwpkvbxnTtZzSP2X6AfKg==", - "path": "avalonia.freedesktop/11.3.7", - "hashPath": "avalonia.freedesktop.11.3.7.nupkg.sha512" - }, - "Avalonia.Native/11.3.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KONYDXAlqGpMwaVrRQTp4MnbUbiG34nEYMUl3iYkgl9qP54rR/iJgDh8Xo0UfEC9Tjc/N3kV4gmhcSrOT7NCbA==", - "path": "avalonia.native/11.3.7", - "hashPath": "avalonia.native.11.3.7.nupkg.sha512" - }, - "Avalonia.ReactiveUI/11.3.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YtNQVvFVxWMP2ZKxbYWH6PIqPh/0PushbyMBWu6K/mNQaZqMRIavdZCUy8+t6FiX1IIaVPPmM6AqniWjIBo0VA==", - "path": "avalonia.reactiveui/11.3.7", - "hashPath": "avalonia.reactiveui.11.3.7.nupkg.sha512" - }, - "Avalonia.Remote.Protocol/11.3.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xI/QoELcb/U4qSm1KDXRRaA1qy+QgyHlgTS6EN7crV/6Ldzdv990rk6ClFa2RajHhvEm2i6S8kVx2paWZIOHHw==", - "path": "avalonia.remote.protocol/11.3.7", - "hashPath": "avalonia.remote.protocol.11.3.7.nupkg.sha512" - }, - "Avalonia.Skia/11.3.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-nDTop5duFQBdsR3YzLs/w0rhOdOB6szZQLD2vMCe8FDkKQM4j35sXMKVUcTtvSts3x8yo5DEarXfWU1viY2gng==", - "path": "avalonia.skia/11.3.7", - "hashPath": "avalonia.skia.11.3.7.nupkg.sha512" - }, - "Avalonia.Themes.Fluent/11.3.6": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YQ3x66qgMqDxbQoLTqYKGA7yXnxi8fzDL9+CITPrXrVZimlemWmjYqE0NWgd2c78gpp7dNEV4eYzwbbr8bH+9A==", - "path": "avalonia.themes.fluent/11.3.6", - "hashPath": "avalonia.themes.fluent.11.3.6.nupkg.sha512" - }, - "Avalonia.Themes.Simple/11.3.6": { - "type": "package", - "serviceable": true, - "sha512": "sha512-MuwYjUI9qMdu7TYyJbBntWlZRJWi6QmAYhMEBEdDgiEO0yUpTiKNLpYSn+MS8Xh9Jm9N4krclBigW7FYJkqLOA==", - "path": "avalonia.themes.simple/11.3.6", - "hashPath": "avalonia.themes.simple.11.3.6.nupkg.sha512" - }, - "Avalonia.Win32/11.3.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-e6EdWKnGvr7WSg4Q3zjej0DQo5FjzwuB+5kqotYVrf+RG/EvP/49P9S257Cjz9A5Br0TCNLny3VBbqPlt4i4Ag==", - "path": "avalonia.win32/11.3.7", - "hashPath": "avalonia.win32.11.3.7.nupkg.sha512" - }, - "Avalonia.X11/11.3.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-1/C3oM/qIRDGnBViXDpCvwsQPq74+QrwXGCzGb3meF0u+7nTZ/obh+fxMGgcq/0QHcq0t7taxsUr1lhVyBtEYw==", - "path": "avalonia.x11/11.3.7", - "hashPath": "avalonia.x11.11.3.7.nupkg.sha512" - }, - "DynamicData/8.4.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Mn1+fU/jqxgONEJq8KLQPGWEi7g/hUVTbjZyn4QM0sWWDAVOHPO9WjXWORSykwdfg/6S3GM15qsfz+2EvO+QAQ==", - "path": "dynamicdata/8.4.1", - "hashPath": "dynamicdata.8.4.1.nupkg.sha512" - }, - "HarfBuzzSharp/8.3.1.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tLZN66oe/uiRPTZfrCU4i8ScVGwqHNh5MHrXj0yVf4l7Mz0FhTGnQ71RGySROTmdognAs0JtluHkL41pIabWuQ==", - "path": "harfbuzzsharp/8.3.1.1", - "hashPath": "harfbuzzsharp.8.3.1.1.nupkg.sha512" - }, - "HarfBuzzSharp.NativeAssets.Linux/8.3.1.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3EZ1mpIiKWRLL5hUYA82ZHteeDIVaEA/Z0rA/wU6tjx6crcAkJnBPwDXZugBSfo8+J3EznvRJf49uMsqYfKrHg==", - "path": "harfbuzzsharp.nativeassets.linux/8.3.1.1", - "hashPath": "harfbuzzsharp.nativeassets.linux.8.3.1.1.nupkg.sha512" - }, - "HarfBuzzSharp.NativeAssets.macOS/8.3.1.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-jbtCsgftcaFLCA13tVKo5iWdElJScrulLTKJre36O4YQTIlwDtPPqhRZNk+Y0vv4D1gxbscasGRucUDfS44ofQ==", - "path": "harfbuzzsharp.nativeassets.macos/8.3.1.1", - "hashPath": "harfbuzzsharp.nativeassets.macos.8.3.1.1.nupkg.sha512" - }, - "HarfBuzzSharp.NativeAssets.WebAssembly/8.3.1.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-loJweK2u/mH/3C2zBa0ggJlITIszOkK64HLAZB7FUT670dTg965whLFYHDQo69NmC4+d9UN0icLC9VHidXaVCA==", - "path": "harfbuzzsharp.nativeassets.webassembly/8.3.1.1", - "hashPath": "harfbuzzsharp.nativeassets.webassembly.8.3.1.1.nupkg.sha512" - }, - "HarfBuzzSharp.NativeAssets.Win32/8.3.1.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-UsJtQsfAJoFDZrXc4hCUfRPMqccfKZ0iumJ/upcUjz/cmsTgVFGNEL5yaJWmkqsuFYdMWbj/En5/kS4PFl9hBA==", - "path": "harfbuzzsharp.nativeassets.win32/8.3.1.1", - "hashPath": "harfbuzzsharp.nativeassets.win32.8.3.1.1.nupkg.sha512" - }, - "HeroIcons.Avalonia/1.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-wOJIOvexOPubqvxzYqmzNHLup/j3K5n6cEfaeszWy2X8iiVkDM8CiHZU7y/N16mbQvhBHc1zw0QnUFhHN63v4A==", - "path": "heroicons.avalonia/1.0.4", - "hashPath": "heroicons.avalonia.1.0.4.nupkg.sha512" - }, - "MicroCom.Runtime/0.11.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-MEnrZ3UIiH40hjzMDsxrTyi8dtqB5ziv3iBeeU4bXsL/7NLSal9F1lZKpK+tfBRnUoDSdtcW3KufE4yhATOMCA==", - "path": "microcom.runtime/0.11.0", - "hashPath": "microcom.runtime.0.11.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YIMO9T3JL8MeEXgVozKt2v79hquo/EFtnY0vgxmLnUvk1Rei/halI7kOWZL2RBeV9FMGzgM9LZA8CVaNwFMaNA==", - "path": "microsoft.extensions.configuration/9.0.0", - "hashPath": "microsoft.extensions.configuration.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Abstractions/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lqvd7W3FGKUO1+ZoUEMaZ5XDJeWvjpy2/M/ptCGz3tXLD4HWVaSzjufsAsjemasBEg+2SxXVtYVvGt5r2nKDlg==", - "path": "microsoft.extensions.configuration.abstractions/9.0.0", - "hashPath": "microsoft.extensions.configuration.abstractions.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Binder/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-RiScL99DcyngY9zJA2ROrri7Br8tn5N4hP4YNvGdTN/bvg1A3dwvDOxHnNZ3Im7x2SJ5i4LkX1uPiR/MfSFBLQ==", - "path": "microsoft.extensions.configuration.binder/9.0.0", - "hashPath": "microsoft.extensions.configuration.binder.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.CommandLine/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-qD+hdkBtR9Ps7AxfhTJCnoVakkadHgHlD1WRN0QHGHod+SDuca1ao1kF4G2rmpAz2AEKrE2N2vE8CCCZ+ILnNw==", - "path": "microsoft.extensions.configuration.commandline/9.0.0", - "hashPath": "microsoft.extensions.configuration.commandline.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.EnvironmentVariables/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-v5R638eNMxksfXb7MFnkPwLPp+Ym4W/SIGNuoe8qFVVyvygQD5DdLusybmYSJEr9zc1UzWzim/ATKeIOVvOFDg==", - "path": "microsoft.extensions.configuration.environmentvariables/9.0.0", - "hashPath": "microsoft.extensions.configuration.environmentvariables.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.FileExtensions/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-4EK93Jcd2lQG4GY6PAw8jGss0ZzFP0vPc1J85mES5fKNuDTqgFXHba9onBw2s18fs3I4vdo2AWyfD1mPAxWSQQ==", - "path": "microsoft.extensions.configuration.fileextensions/9.0.0", - "hashPath": "microsoft.extensions.configuration.fileextensions.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Json/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-WiTK0LrnsqmedrbzwL7f4ZUo+/wByqy2eKab39I380i2rd8ImfCRMrtkqJVGDmfqlkP/YzhckVOwPc5MPrSNpg==", - "path": "microsoft.extensions.configuration.json/9.0.0", - "hashPath": "microsoft.extensions.configuration.json.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.UserSecrets/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FShWw8OysquwV7wQHYkkz0VWsJSo6ETUu4h7tJRMtnG0uR+tzKOldhcO8xB1pGSOI3Ng6v3N1Q94YO8Rzq1P6A==", - "path": "microsoft.extensions.configuration.usersecrets/9.0.0", - "hashPath": "microsoft.extensions.configuration.usersecrets.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-MCPrg7v3QgNMr0vX4vzRXvkNGgLg8vKWX0nKCWUxu2uPyMsaRgiRc1tHBnbTcfJMhMKj2slE/j2M9oGkd25DNw==", - "path": "microsoft.extensions.dependencyinjection/9.0.0", - "hashPath": "microsoft.extensions.dependencyinjection.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+6f2qv2a3dLwd5w6JanPIPs47CxRbnk+ZocMJUhv9NxP88VlOcJYZs9jY+MYSjxvady08bUZn6qgiNh7DadGgg==", - "path": "microsoft.extensions.dependencyinjection.abstractions/9.0.0", - "hashPath": "microsoft.extensions.dependencyinjection.abstractions.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Diagnostics/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-0CF9ZrNw5RAlRfbZuVIvzzhP8QeWqHiUmMBU/2H7Nmit8/vwP3/SbHeEctth7D4Gz2fBnEbokPc1NU8/j/1ZLw==", - "path": "microsoft.extensions.diagnostics/9.0.0", - "hashPath": "microsoft.extensions.diagnostics.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Diagnostics.Abstractions/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-1K8P7XzuzX8W8pmXcZjcrqS6x5eSSdvhQohmcpgiQNY/HlDAlnrhR9dvlURfFz428A+RTCJpUyB+aKTA6AgVcQ==", - "path": "microsoft.extensions.diagnostics.abstractions/9.0.0", - "hashPath": "microsoft.extensions.diagnostics.abstractions.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.FileProviders.Abstractions/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uK439QzYR0q2emLVtYzwyK3x+T5bTY4yWsd/k/ZUS9LR6Sflp8MIdhGXW8kQCd86dQD4tLqvcbLkku8qHY263Q==", - "path": "microsoft.extensions.fileproviders.abstractions/9.0.0", - "hashPath": "microsoft.extensions.fileproviders.abstractions.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.FileProviders.Physical/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3+ZUSpOSmie+o8NnLIRqCxSh65XL/ExU7JYnFOg58awDRlY3lVpZ9A369jkoZL1rpsq7LDhEfkn2ghhGaY1y5Q==", - "path": "microsoft.extensions.fileproviders.physical/9.0.0", - "hashPath": "microsoft.extensions.fileproviders.physical.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.FileSystemGlobbing/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-jGFKZiXs2HNseK3NK/rfwHNNovER71jSj4BD1a/649ml9+h6oEtYd0GSALZDNW8jZ2Rh+oAeadOa6sagYW1F2A==", - "path": "microsoft.extensions.filesystemglobbing/9.0.0", - "hashPath": "microsoft.extensions.filesystemglobbing.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Hosting/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-wNmQWRCa83HYbpxQ3wH7xBn8oyGjONSj1k8svzrFUFyJMfg/Ja/g0NfI0p85wxlUxBh97A6ypmL8X5vVUA5y2Q==", - "path": "microsoft.extensions.hosting/9.0.0", - "hashPath": "microsoft.extensions.hosting.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Hosting.Abstractions/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-yUKJgu81ExjvqbNWqZKshBbLntZMbMVz/P7Way2SBx7bMqA08Mfdc9O7hWDKAiSp+zPUGT6LKcSCQIPeDK+CCw==", - "path": "microsoft.extensions.hosting.abstractions/9.0.0", - "hashPath": "microsoft.extensions.hosting.abstractions.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-crjWyORoug0kK7RSNJBTeSE6VX8IQgLf3nUpTB9m62bPXp/tzbnOsnbe8TXEG0AASNaKZddnpHKw7fET8E++Pg==", - "path": "microsoft.extensions.logging/9.0.0", - "hashPath": "microsoft.extensions.logging.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Abstractions/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-g0UfujELzlLbHoVG8kPKVBaW470Ewi+jnptGS9KUi6jcb+k2StujtK3m26DFSGGwQ/+bVgZfsWqNzlP6YOejvw==", - "path": "microsoft.extensions.logging.abstractions/9.0.0", - "hashPath": "microsoft.extensions.logging.abstractions.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Configuration/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-H05HiqaNmg6GjH34ocYE9Wm1twm3Oz2aXZko8GTwGBzM7op2brpAA8pJ5yyD1OpS1mXUtModBYOlcZ/wXeWsSg==", - "path": "microsoft.extensions.logging.configuration/9.0.0", - "hashPath": "microsoft.extensions.logging.configuration.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Console/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-yDZ4zsjl7N0K+R/1QTNpXBd79Kaf4qNLHtjk4NaG82UtNg2Z6etJywwv6OarOv3Rp7ocU7uIaRY4CrzHRO/d3w==", - "path": "microsoft.extensions.logging.console/9.0.0", - "hashPath": "microsoft.extensions.logging.console.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Debug/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-4wGlHsrLhYjLw4sFkfRixu2w4DK7dv60OjbvgbLGhUJk0eUPxYHhnszZ/P18nnAkfrPryvtOJ3ZTVev0kpqM6A==", - "path": "microsoft.extensions.logging.debug/9.0.0", - "hashPath": "microsoft.extensions.logging.debug.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.EventLog/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/B8I5bScondnLMNULA3PBu/7Gvmv/P7L83j7gVrmLh6R+HCgHqUNIwVvzCok4ZjIXN2KxrsONHjFYwoBK5EJgQ==", - "path": "microsoft.extensions.logging.eventlog/9.0.0", - "hashPath": "microsoft.extensions.logging.eventlog.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.EventSource/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-zvSjdOAb3HW3aJPM5jf+PR9UoIkoci9id80RXmBgrDEozWI0GDw8tdmpyZgZSwFDvGCwHFodFLNQaeH8879rlA==", - "path": "microsoft.extensions.logging.eventsource/9.0.0", - "hashPath": "microsoft.extensions.logging.eventsource.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Options/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-y2146b3jrPI3Q0lokKXdKLpmXqakYbDIPDV6r3M8SqvSf45WwOTzkyfDpxnZXJsJQEpAsAqjUq5Pu8RCJMjubg==", - "path": "microsoft.extensions.options/9.0.0", - "hashPath": "microsoft.extensions.options.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Options.ConfigurationExtensions/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Ob3FXsXkcSMQmGZi7qP07EQ39kZpSBlTcAZLbJLdI4FIf0Jug8biv2HTavWmnTirchctPlq9bl/26CXtQRguzA==", - "path": "microsoft.extensions.options.configurationextensions/9.0.0", - "hashPath": "microsoft.extensions.options.configurationextensions.9.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Primitives/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-N3qEBzmLMYiASUlKxxFIISP4AiwuPTHF5uCh+2CWSwwzAJiIYx0kBJsS30cp1nvhSySFAVi30jecD307jV+8Kg==", - "path": "microsoft.extensions.primitives/9.0.0", - "hashPath": "microsoft.extensions.primitives.9.0.0.nupkg.sha512" - }, - "ReactiveUI/20.1.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9hNPknWjijnaSWs6auypoXqUptPZcRpUypF+cf1zD50fgW+SEoQda502N3fVZ2eWPcaiUad+z6GaLwOWmUVHNw==", - "path": "reactiveui/20.1.1", - "hashPath": "reactiveui.20.1.1.nupkg.sha512" - }, - "SkiaSharp/2.88.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3MD5VHjXXieSHCleRLuaTXmL2pD0mB7CcOB1x2kA1I4bhptf4e3R27iM93264ZYuAq6mkUyX5XbcxnZvMJYc1Q==", - "path": "skiasharp/2.88.9", - "hashPath": "skiasharp.2.88.9.nupkg.sha512" - }, - "SkiaSharp.NativeAssets.Linux/2.88.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-cWSaJKVPWAaT/WIn9c8T5uT/l4ETwHxNJTkEOtNKjphNo8AW6TF9O32aRkxqw3l8GUdUo66Bu7EiqtFh/XG0Zg==", - "path": "skiasharp.nativeassets.linux/2.88.9", - "hashPath": "skiasharp.nativeassets.linux.2.88.9.nupkg.sha512" - }, - "SkiaSharp.NativeAssets.macOS/2.88.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Nv5spmKc4505Ep7oUoJ5vp3KweFpeNqxpyGDWyeEPTX2uR6S6syXIm3gj75dM0YJz7NPvcix48mR5laqs8dPuA==", - "path": "skiasharp.nativeassets.macos/2.88.9", - "hashPath": "skiasharp.nativeassets.macos.2.88.9.nupkg.sha512" - }, - "SkiaSharp.NativeAssets.WebAssembly/2.88.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kt06RccBHSnAs2wDYdBSfsjIDbY3EpsOVqnlDgKdgvyuRA8ZFDaHRdWNx1VHjGgYzmnFCGiTJBnXFl5BqGwGnA==", - "path": "skiasharp.nativeassets.webassembly/2.88.9", - "hashPath": "skiasharp.nativeassets.webassembly.2.88.9.nupkg.sha512" - }, - "SkiaSharp.NativeAssets.Win32/2.88.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-wb2kYgU7iy84nQLYZwMeJXixvK++GoIuECjU4ECaUKNuflyRlJKyiRhN1MAHswvlvzuvkrjRWlK0Za6+kYQK7w==", - "path": "skiasharp.nativeassets.win32/2.88.9", - "hashPath": "skiasharp.nativeassets.win32.2.88.9.nupkg.sha512" - }, - "Splat/15.1.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-RHDTdF90FwVbRia2cmuIzkiVoETqnXSB2dDBBi/I35HWXqv4OKGqoMcfcd6obMvO2OmmY5PjU1M62K8LkJafAA==", - "path": "splat/15.1.1", - "hashPath": "splat.15.1.1.nupkg.sha512" - }, - "System.ComponentModel.Annotations/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==", - "path": "system.componentmodel.annotations/5.0.0", - "hashPath": "system.componentmodel.annotations.5.0.0.nupkg.sha512" - }, - "System.Diagnostics.EventLog/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-qd01+AqPhbAG14KtdtIqFk+cxHQFZ/oqRSCoxU1F+Q6Kv0cl726sl7RzU9yLFGd4BUOKdN4XojXF0pQf/R6YeA==", - "path": "system.diagnostics.eventlog/9.0.0", - "hashPath": "system.diagnostics.eventlog.9.0.0.nupkg.sha512" - }, - "System.IO.Pipelines/8.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FHNOatmUq0sqJOkTx+UF/9YK1f180cnW5FVqnQMvYUN0elp6wFzbtPSiqbo1/ru8ICp43JM1i7kKkk6GsNGHlA==", - "path": "system.io.pipelines/8.0.0", - "hashPath": "system.io.pipelines.8.0.0.nupkg.sha512" - }, - "System.Reactive/6.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rHaWtKDwCi9qJ3ObKo8LHPMuuwv33YbmQi7TcUK1C264V3MFnOr5Im7QgCTdLniztP3GJyeiSg5x8NqYJFqRmg==", - "path": "system.reactive/6.0.1", - "hashPath": "system.reactive.6.0.1.nupkg.sha512" - }, - "Tmds.DBus.Protocol/0.21.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ScSMrUrrw8px4kK1Glh0fZv/HQUlg1078bNXNPfRPKQ3WbRzV9HpsydYEOgSoMK5LWICMf2bMwIFH0pGjxjcMA==", - "path": "tmds.dbus.protocol/0.21.2", - "hashPath": "tmds.dbus.protocol.0.21.2.nupkg.sha512" - } - }, - "runtimes": { - "android-x64": [ - "android", - "linux-bionic-x64", - "linux-bionic", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "linux-bionic-x64": [ - "linux-bionic", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "linux-musl-x64": [ - "linux-musl", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "linux-x64": [ - "linux", - "unix-x64", - "unix", - "any", - "base" - ] - } -} \ No newline at end of file diff --git a/obj/Release/net9.0/linux-x64/MyAvaloniaApp.dll b/obj/Release/net9.0/linux-x64/MyAvaloniaApp.dll deleted file mode 100644 index 8e0ef90..0000000 Binary files a/obj/Release/net9.0/linux-x64/MyAvaloniaApp.dll and /dev/null differ diff --git a/obj/Release/net9.0/linux-x64/MyAvaloniaApp.genbundle.cache b/obj/Release/net9.0/linux-x64/MyAvaloniaApp.genbundle.cache deleted file mode 100644 index 031377b..0000000 --- a/obj/Release/net9.0/linux-x64/MyAvaloniaApp.genbundle.cache +++ /dev/null @@ -1 +0,0 @@ -3e6dc3b27e2fc97f38cb7d65a1d8cf22905c1072adc7c5a907fb3b79ee9357ab diff --git a/obj/Release/net9.0/linux-x64/MyAvaloniaApp.genpublishdeps.cache b/obj/Release/net9.0/linux-x64/MyAvaloniaApp.genpublishdeps.cache deleted file mode 100644 index 11a8d2d..0000000 --- a/obj/Release/net9.0/linux-x64/MyAvaloniaApp.genpublishdeps.cache +++ /dev/null @@ -1 +0,0 @@ -af962c824baa971c05273761d43e5bbb8524418dd1d5102498de55d796227eb2 diff --git a/obj/Release/net9.0/linux-x64/MyAvaloniaApp.genruntimeconfig.cache b/obj/Release/net9.0/linux-x64/MyAvaloniaApp.genruntimeconfig.cache deleted file mode 100644 index 8a029e1..0000000 --- a/obj/Release/net9.0/linux-x64/MyAvaloniaApp.genruntimeconfig.cache +++ /dev/null @@ -1 +0,0 @@ -d071a40603217df3165558e4f2e39b8cf74f5df709bdbf0923409671b3b71bdd diff --git a/obj/Release/net9.0/linux-x64/MyAvaloniaApp.pdb b/obj/Release/net9.0/linux-x64/MyAvaloniaApp.pdb deleted file mode 100644 index cec9349..0000000 Binary files a/obj/Release/net9.0/linux-x64/MyAvaloniaApp.pdb and /dev/null differ diff --git a/obj/Release/net9.0/linux-x64/PublishOutputs.6ca985d4d5.txt b/obj/Release/net9.0/linux-x64/PublishOutputs.6ca985d4d5.txt deleted file mode 100644 index 348c73e..0000000 --- a/obj/Release/net9.0/linux-x64/PublishOutputs.6ca985d4d5.txt +++ /dev/null @@ -1,251 +0,0 @@ -D:\Log\MyAvaloniaApp\publish\linux-x64\appsettings.json -D:\Log\MyAvaloniaApp\publish\linux-x64\MyAvaloniaApp -D:\Log\MyAvaloniaApp\publish\linux-x64\MyAvaloniaApp.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\MyAvaloniaApp.runtimeconfig.json -D:\Log\MyAvaloniaApp\publish\linux-x64\MyAvaloniaApp.pdb -D:\Log\MyAvaloniaApp\publish\linux-x64\Microsoft.CSharp.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\Microsoft.VisualBasic.Core.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\Microsoft.VisualBasic.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\Microsoft.Win32.Primitives.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\Microsoft.Win32.Registry.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.AppContext.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Buffers.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Collections.Concurrent.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Collections.Immutable.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Collections.NonGeneric.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Collections.Specialized.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Collections.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.ComponentModel.Annotations.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.ComponentModel.DataAnnotations.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.ComponentModel.EventBasedAsync.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.ComponentModel.Primitives.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.ComponentModel.TypeConverter.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.ComponentModel.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Configuration.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Console.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Core.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Data.Common.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Data.DataSetExtensions.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Data.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Diagnostics.Contracts.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Diagnostics.Debug.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Diagnostics.DiagnosticSource.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Diagnostics.FileVersionInfo.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Diagnostics.Process.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Diagnostics.StackTrace.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Diagnostics.TextWriterTraceListener.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Diagnostics.Tools.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Diagnostics.TraceSource.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Diagnostics.Tracing.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Drawing.Primitives.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Drawing.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Dynamic.Runtime.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Formats.Asn1.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Formats.Tar.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Globalization.Calendars.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Globalization.Extensions.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Globalization.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.IO.Compression.Brotli.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.IO.Compression.FileSystem.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.IO.Compression.ZipFile.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.IO.Compression.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.IO.FileSystem.AccessControl.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.IO.FileSystem.DriveInfo.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.IO.FileSystem.Primitives.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.IO.FileSystem.Watcher.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.IO.FileSystem.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.IO.IsolatedStorage.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.IO.MemoryMappedFiles.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.IO.Pipelines.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.IO.Pipes.AccessControl.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.IO.Pipes.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.IO.UnmanagedMemoryStream.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.IO.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Linq.Expressions.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Linq.Parallel.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Linq.Queryable.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Linq.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Memory.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Net.Http.Json.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Net.Http.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Net.HttpListener.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Net.Mail.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Net.NameResolution.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Net.NetworkInformation.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Net.Ping.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Net.Primitives.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Net.Quic.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Net.Requests.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Net.Security.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Net.ServicePoint.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Net.Sockets.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Net.WebClient.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Net.WebHeaderCollection.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Net.WebProxy.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Net.WebSockets.Client.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Net.WebSockets.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Net.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Numerics.Vectors.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Numerics.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.ObjectModel.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Private.CoreLib.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Private.DataContractSerialization.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Private.Uri.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Private.Xml.Linq.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Private.Xml.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Reflection.DispatchProxy.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Reflection.Emit.ILGeneration.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Reflection.Emit.Lightweight.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Reflection.Emit.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Reflection.Extensions.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Reflection.Metadata.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Reflection.Primitives.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Reflection.TypeExtensions.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Reflection.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Resources.Reader.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Resources.ResourceManager.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Resources.Writer.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Runtime.CompilerServices.Unsafe.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Runtime.CompilerServices.VisualC.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Runtime.Extensions.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Runtime.Handles.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Runtime.InteropServices.JavaScript.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Runtime.InteropServices.RuntimeInformation.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Runtime.InteropServices.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Runtime.Intrinsics.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Runtime.Loader.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Runtime.Numerics.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Runtime.Serialization.Formatters.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Runtime.Serialization.Json.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Runtime.Serialization.Primitives.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Runtime.Serialization.Xml.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Runtime.Serialization.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Runtime.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Security.AccessControl.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Security.Claims.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Security.Cryptography.Algorithms.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Security.Cryptography.Cng.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Security.Cryptography.Csp.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Security.Cryptography.Encoding.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Security.Cryptography.OpenSsl.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Security.Cryptography.Primitives.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Security.Cryptography.X509Certificates.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Security.Cryptography.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Security.Principal.Windows.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Security.Principal.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Security.SecureString.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Security.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.ServiceModel.Web.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.ServiceProcess.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Text.Encoding.CodePages.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Text.Encoding.Extensions.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Text.Encoding.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Text.Encodings.Web.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Text.Json.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Text.RegularExpressions.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Threading.Channels.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Threading.Overlapped.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Threading.Tasks.Dataflow.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Threading.Tasks.Extensions.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Threading.Tasks.Parallel.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Threading.Tasks.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Threading.Thread.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Threading.ThreadPool.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Threading.Timer.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Threading.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Transactions.Local.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Transactions.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.ValueTuple.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Web.HttpUtility.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Web.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Windows.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Xml.Linq.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Xml.ReaderWriter.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Xml.Serialization.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Xml.XDocument.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Xml.XPath.XDocument.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Xml.XPath.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Xml.XmlDocument.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Xml.XmlSerializer.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Xml.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\WindowsBase.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\mscorlib.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\netstandard.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\createdump -D:\Log\MyAvaloniaApp\publish\linux-x64\libSystem.Globalization.Native.so -D:\Log\MyAvaloniaApp\publish\linux-x64\libSystem.IO.Compression.Native.so -D:\Log\MyAvaloniaApp\publish\linux-x64\libSystem.Native.so -D:\Log\MyAvaloniaApp\publish\linux-x64\libSystem.Net.Security.Native.so -D:\Log\MyAvaloniaApp\publish\linux-x64\libSystem.Security.Cryptography.Native.OpenSsl.so -D:\Log\MyAvaloniaApp\publish\linux-x64\libclrgc.so -D:\Log\MyAvaloniaApp\publish\linux-x64\libclrgcexp.so -D:\Log\MyAvaloniaApp\publish\linux-x64\libclrjit.so -D:\Log\MyAvaloniaApp\publish\linux-x64\libcoreclr.so -D:\Log\MyAvaloniaApp\publish\linux-x64\libcoreclrtraceptprovider.so -D:\Log\MyAvaloniaApp\publish\linux-x64\libhostfxr.so -D:\Log\MyAvaloniaApp\publish\linux-x64\libhostpolicy.so -D:\Log\MyAvaloniaApp\publish\linux-x64\libmscordaccore.so -D:\Log\MyAvaloniaApp\publish\linux-x64\libmscordbi.so -D:\Log\MyAvaloniaApp\publish\linux-x64\Avalonia.Base.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\Avalonia.Controls.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\Avalonia.DesignerSupport.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\Avalonia.Dialogs.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\Avalonia.Markup.Xaml.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\Avalonia.Markup.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\Avalonia.Metal.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\Avalonia.MicroCom.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\Avalonia.OpenGL.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\Avalonia.Vulkan.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\Avalonia.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\Avalonia.Desktop.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\Avalonia.Fonts.Inter.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\Avalonia.FreeDesktop.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\Avalonia.Native.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\Avalonia.ReactiveUI.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\Avalonia.Remote.Protocol.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\Avalonia.Skia.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\Avalonia.Themes.Fluent.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\Avalonia.Win32.Automation.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\Avalonia.Win32.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\Avalonia.X11.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\DynamicData.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\HarfBuzzSharp.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\HeroIconsAvalonia.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\MicroCom.Runtime.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\Microsoft.Extensions.Configuration.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\Microsoft.Extensions.Configuration.Abstractions.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\Microsoft.Extensions.Configuration.Binder.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\Microsoft.Extensions.Configuration.CommandLine.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\Microsoft.Extensions.Configuration.EnvironmentVariables.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\Microsoft.Extensions.Configuration.FileExtensions.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\Microsoft.Extensions.Configuration.Json.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\Microsoft.Extensions.Configuration.UserSecrets.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\Microsoft.Extensions.DependencyInjection.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\Microsoft.Extensions.DependencyInjection.Abstractions.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\Microsoft.Extensions.Diagnostics.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\Microsoft.Extensions.Diagnostics.Abstractions.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\Microsoft.Extensions.FileProviders.Abstractions.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\Microsoft.Extensions.FileProviders.Physical.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\Microsoft.Extensions.FileSystemGlobbing.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\Microsoft.Extensions.Hosting.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\Microsoft.Extensions.Hosting.Abstractions.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\Microsoft.Extensions.Logging.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\Microsoft.Extensions.Logging.Abstractions.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\Microsoft.Extensions.Logging.Configuration.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\Microsoft.Extensions.Logging.Console.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\Microsoft.Extensions.Logging.Debug.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\Microsoft.Extensions.Logging.EventLog.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\Microsoft.Extensions.Logging.EventSource.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\Microsoft.Extensions.Options.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\Microsoft.Extensions.Options.ConfigurationExtensions.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\Microsoft.Extensions.Primitives.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\ReactiveUI.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\SkiaSharp.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\Splat.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Diagnostics.EventLog.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\System.Reactive.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\Tmds.DBus.Protocol.dll -D:\Log\MyAvaloniaApp\publish\linux-x64\libHarfBuzzSharp.so -D:\Log\MyAvaloniaApp\publish\linux-x64\libSkiaSharp.so -D:\Log\MyAvaloniaApp\publish\linux-x64\MyAvaloniaApp.deps.json diff --git a/obj/Release/net9.0/linux-x64/apphost b/obj/Release/net9.0/linux-x64/apphost deleted file mode 100644 index 93d8ad8..0000000 Binary files a/obj/Release/net9.0/linux-x64/apphost and /dev/null differ diff --git a/obj/Release/net9.0/linux-x64/ref/MyAvaloniaApp.dll b/obj/Release/net9.0/linux-x64/ref/MyAvaloniaApp.dll deleted file mode 100644 index adb7fbb..0000000 Binary files a/obj/Release/net9.0/linux-x64/ref/MyAvaloniaApp.dll and /dev/null differ diff --git a/obj/Release/net9.0/linux-x64/refint/MyAvaloniaApp.dll b/obj/Release/net9.0/linux-x64/refint/MyAvaloniaApp.dll deleted file mode 100644 index adb7fbb..0000000 Binary files a/obj/Release/net9.0/linux-x64/refint/MyAvaloniaApp.dll and /dev/null differ diff --git a/obj/Release/net9.0/linux-x64/singlefilehost b/obj/Release/net9.0/linux-x64/singlefilehost deleted file mode 100644 index 486dfd6..0000000 Binary files a/obj/Release/net9.0/linux-x64/singlefilehost and /dev/null differ diff --git a/obj/project.assets.json b/obj/project.assets.json index 17a8b0c..bb6e792 100644 --- a/obj/project.assets.json +++ b/obj/project.assets.json @@ -5178,9 +5178,9 @@ "project": { "version": "1.0.0", "restore": { - "projectUniqueName": "D:\\Log\\MyAvaloniaApp\\MyAvaloniaApp.csproj", - "projectName": "MyAvaloniaApp", - "projectPath": "D:\\Log\\MyAvaloniaApp\\MyAvaloniaApp.csproj", + "projectUniqueName": "D:\\Log\\MyAvaloniaApp\\AuroraDesk.csproj", + "projectName": "AuroraDesk", + "projectPath": "D:\\Log\\MyAvaloniaApp\\AuroraDesk.csproj", "packagesPath": "C:\\Users\\changeself\\.nuget\\packages\\", "outputPath": "D:\\Log\\MyAvaloniaApp\\obj\\", "projectStyle": "PackageReference", diff --git a/obj/project.nuget.cache b/obj/project.nuget.cache index 2f0feaf..9670f08 100644 --- a/obj/project.nuget.cache +++ b/obj/project.nuget.cache @@ -1,8 +1,8 @@ { "version": 2, - "dgSpecHash": "GqmepY5QBuE=", + "dgSpecHash": "B0UIj4HCbcM=", "success": true, - "projectFilePath": "D:\\Log\\MyAvaloniaApp\\MyAvaloniaApp.csproj", + "projectFilePath": "D:\\Log\\MyAvaloniaApp\\AuroraDesk.csproj", "expectedPackageFiles": [ "C:\\Users\\changeself\\.nuget\\packages\\avalonia\\11.3.7\\avalonia.11.3.7.nupkg.sha512", "C:\\Users\\changeself\\.nuget\\packages\\avalonia.angle.windows.natives\\2.1.25547.20250602\\avalonia.angle.windows.natives.2.1.25547.20250602.nupkg.sha512",