diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..bf4c20c --- /dev/null +++ b/.gitignore @@ -0,0 +1,304 @@ +# Root-level build output +bin/ +obj/ +publish/ + +## Ignore Visual Studio temporary files, build results, and files generated by popular Visual Studio add-ons. + +# User-specific files +*.rsuser +*.suo +*.user +*.userosscache +*.sln.docstates + +# MonoDevelop/Xamarin Studio user-specific files +*.userprefs + +# Build results +[Dd]ebug/ +[Dd]ebugPublic/ +[Rr]elease/ +[Rr]eleases/ +x64/ +x86/ +[Ww][Ii][Nn]32/ +[Aa][Rr][Mm]/ +[Aa][Rr][Mm]64/ +bld/ +[Bb]in/ +[Oo]bj/ +[Ll]og/ +[Ll]ogs/ + +# Visual Studio 2015/2017 cache/options directory +.vs/ + +# Visual Studio Code workspace history +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json +*.code-workspace + +# Rider +.idea/ +*.sln.iml + +# Migrations, auto-generated files +_ReSharper*/ +*.[Rr]e[Ss]harper +*.DotSettings.user + +# DotCover +*.dotCover + +# Visual Studio profiler +*.psess +*.vsp +*.vspx +*.sap + +# TFS 2012 Local Workspace +$tf/ + +# Guidance Automation Toolkit +*.gpState + +# ReSharper +_ReSharper*/ +*.[Rr]e[Ss]harper +*.DotSettings.user + +# JustCode +.JustCode + +# TeamCity +_TeamCity* + +# DotTrace +*.dotTrace + +# NCrunch +_NCrunch_* +.*crunch*.local.xml +nCrunchTemp_* + +# MightyMoose +*.mm.* +AutoTest.Net/ + +# Web workbench (sass) +.sass-cache/ + +# Installshield output folder +[Ee]xpress/ + +# DocProject +DocProject/buildhelp/ +DocProject/Help/*.HxT +DocProject/Help/*.HxC +DocProject/Help/*.hhc +DocProject/Help/*.hhk +DocProject/Help/*.hhp +DocProject/Help/Html2 +DocProject/Help/html + +# Click-Once directory +publish/ + +# Publish Web Output +*.[Pp]ublish.xml +*.azurePubxml +*.pubxml +*.publishproj + +# Azure Web App publish settings. Comment the next line if you want to +# checkin your Azure Web App publish settings, but sensitive information +# contained in these files will be unencrypted +PublishProfiles/ + +# NuGet Packages +*.nupkg +# The packages folder can be ignored because of Package Restore +**/[Pp]ackages/* +# except build/, which is used as an MSBuild target. +!**/[Pp]ackages/build/ +# Uncomment if necessary however generally it will be regenerated when needed +#!**/[Pp]ackages/repositories.config +# NuGet v3's project.json files produces more ignorable files +*.nuget.props +*.nuget.targets + +# Microsoft Azure Build Output +csx/ +*.build.csdef + +# Microsoft Azure Emulator +ecf/ +rcf/ + +# Windows Store app package directories and files +AppPackages/ +BundleArtifacts/ +Package.StoreAssociation.xml +_pkginfo.txt +*.appx +*.appxbundle +*.appxupload + +# Visual Studio cache files +# files ending in .cache can be ignored +*.[Cc]ache +# but keep track of directories ending in .cache +!*.[Cc]ache/ + +# Others +ClientBin/ +~$* +*~ +*.dbmdl +*.bak +*.orig +*.tmp +*.log +*.svclog +*.scc + +# Avalonia build outputs +publish-linux/ +publish-linux.bat +publish-linux.ps1 + +# Visual Studio generated files +*.pdb +*.opendb +*.VC.db +*.VC.VC.opendb + +# Entity Framework +Migrations/ + +# Razor cache +*.rz~ + +# Backup & report files from converting an old project file +*.Backup +*.old +*.Report.xml + +# SQL Server files +*.mdf +*.ldf +*.ndf + +# Business Intelligence projects +*.rdl.data +*.bim.layout +*.bim_*.settings +*.rptproj.rsuser +*- [Bb]ackup.rdl +*.rptproj.user + +# Microsoft Fakes +FakesAssemblies/ + +# GhostDoc plugin setting file +*.GhostDoc.xml + +# Node.js Tools for Visual Studio +.ntvs_analysis.dat +node_modules/ + +# Visual Studio 6 build log +*.plg + +# Visual Studio 6 workspace options file +*.opt + +# Visual Studio 6 auto-generated workspace file (contains which files were open etc.) +*.vbw + +# Visual Studio LightSwitch build output +GeneratedArtifacts/ +_Pvt_Extensions/ +ModelManifest.xml + +# Paket dependency manager +.paket/paket.exe +paket-files/ + +# FAKE - F# Make +.fake/ + +# CodeRush personal settings +.cr/personal + +# Python Tools for Visual Studio (PTVS) +__pycache__/ +*.pyc + +# Cake +tools/** +!tools/packages.config + +# Tabs Studio +*.tss + +# Telerik's JustMock configuration file +*.jmconfig + +# BizTalk build output +*.btp.cs +*.btm.cs +*.odx.cs +*.xsd.cs + +# OpenCover UI analysis results +OpenCover/ + +# Azure Stream Analytics local run output +ASALocalRun/ + +# MSBuild Binary and Structured Log +*.binlog + +# NVidia Nsight GPU debugger configuration file +*.nvuser + +# MFractors (Xamarin productivity tool) working folder +.mfractor/ + +# Local History for Visual Studio +.localhistory/ + +# BeatPulse healthcheck temp database +healthchecksdb + +# Backup folder for Package Reference Convert tool in Visual Studio 2017 +MigrationBackup/ + +# Ionide (cross platform F# VS Code tools) working folder +.ionide/ + +# Fody - auto-generated XML schema +FodyWeavers.xsd + +# Avalonia persisting inspector and XAML designer cache +.Avalonia + +# Rider package caches +.idea/.idea.contentModel.xml + +# Temporary files +*.tmp +*.temp + +# Compiled binary caches +*.dll +*.exe +*.so +*.dylib +*.a +*.lib diff --git a/App.axaml b/App.axaml index 74547b3..eec35c6 100644 --- a/App.axaml +++ b/App.axaml @@ -16,6 +16,10 @@ + + + + + + + + + + + diff --git a/Views/Pages/EditorPageView.axaml.cs b/Views/Pages/EditorPageView.axaml.cs new file mode 100644 index 0000000..d51b2bb --- /dev/null +++ b/Views/Pages/EditorPageView.axaml.cs @@ -0,0 +1,20 @@ +using Avalonia.Controls; +using Avalonia.Markup.Xaml; + +namespace MyAvaloniaApp.Views.Pages; + +/// +/// 代码编辑器页面的 View +/// +public partial class EditorPageView : UserControl +{ + public EditorPageView() + { + InitializeComponent(); + } + + private void InitializeComponent() + { + AvaloniaXamlLoader.Load(this); + } +} diff --git a/bin/Debug/net9.0/MyAvaloniaApp.deps.json b/bin/Debug/net9.0/MyAvaloniaApp.deps.json index 75ee8a2..005c93d 100644 --- a/bin/Debug/net9.0/MyAvaloniaApp.deps.json +++ b/bin/Debug/net9.0/MyAvaloniaApp.deps.json @@ -14,6 +14,9 @@ "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", @@ -101,6 +104,17 @@ } } }, + "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": { @@ -272,6 +286,38 @@ } } }, + "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" @@ -761,6 +807,58 @@ } } }, + "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", @@ -850,7 +948,22 @@ } } }, + "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": { @@ -873,6 +986,39 @@ } } }, + "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": { @@ -882,6 +1028,139 @@ } } }, + "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" @@ -915,6 +1194,13 @@ "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, @@ -1013,6 +1299,27 @@ "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, @@ -1258,6 +1565,27 @@ "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, @@ -1307,6 +1635,20 @@ "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, @@ -1314,6 +1656,13 @@ "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, @@ -1321,6 +1670,34 @@ "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, @@ -1335,6 +1712,118 @@ "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, diff --git a/bin/Debug/net9.0/MyAvaloniaApp.dll b/bin/Debug/net9.0/MyAvaloniaApp.dll index af51257..f8f9ec4 100644 Binary files a/bin/Debug/net9.0/MyAvaloniaApp.dll and b/bin/Debug/net9.0/MyAvaloniaApp.dll differ diff --git a/bin/Debug/net9.0/MyAvaloniaApp.exe b/bin/Debug/net9.0/MyAvaloniaApp.exe index bdb96d9..72bc458 100644 Binary files a/bin/Debug/net9.0/MyAvaloniaApp.exe and b/bin/Debug/net9.0/MyAvaloniaApp.exe differ diff --git a/bin/Debug/net9.0/MyAvaloniaApp.pdb b/bin/Debug/net9.0/MyAvaloniaApp.pdb index e1ba2c9..9dd65e9 100644 Binary files a/bin/Debug/net9.0/MyAvaloniaApp.pdb and b/bin/Debug/net9.0/MyAvaloniaApp.pdb differ diff --git a/bin/Release/net9.0/linux-x64/MyAvaloniaApp.deps.json b/bin/Release/net9.0/linux-x64/MyAvaloniaApp.deps.json index 8e00c18..262735b 100644 --- a/bin/Release/net9.0/linux-x64/MyAvaloniaApp.deps.json +++ b/bin/Release/net9.0/linux-x64/MyAvaloniaApp.deps.json @@ -15,6 +15,7 @@ "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", @@ -990,6 +991,17 @@ "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": { @@ -1599,6 +1611,13 @@ "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, diff --git a/bin/Release/net9.0/linux-x64/MyAvaloniaApp.dll b/bin/Release/net9.0/linux-x64/MyAvaloniaApp.dll index 54c85be..8e0ef90 100644 Binary files a/bin/Release/net9.0/linux-x64/MyAvaloniaApp.dll and b/bin/Release/net9.0/linux-x64/MyAvaloniaApp.dll differ diff --git a/bin/Release/net9.0/linux-x64/MyAvaloniaApp.pdb b/bin/Release/net9.0/linux-x64/MyAvaloniaApp.pdb index 8901009..cec9349 100644 Binary files a/bin/Release/net9.0/linux-x64/MyAvaloniaApp.pdb and b/bin/Release/net9.0/linux-x64/MyAvaloniaApp.pdb differ diff --git a/modify.md b/modify.md index 1c7ed14..c0ebb24 100644 --- a/modify.md +++ b/modify.md @@ -1,5 +1,103 @@ # 修改记录 +## 2025年修改记录 + +### 重构 EditorPageView 以直接使用 AvaloniaEdit.TextMate +- **日期**: 2025年10月31日 +- **修改内容**: 移除旧的 BindableTextEditor,自定义附加属性实现 MVVM 绑定,并通过 TextMateHelper 统一语法高亮逻辑 +- **修改文件**: + - Views/Pages/EditorPageView.axaml + - Views/Pages/EditorPageView.axaml.cs + - ViewModels/Pages/EditorPageViewModel.cs + - Attached/TextEditorAssist.cs(新建) + - Attached/TextMateHelper.cs(新建) + - Views/Controls/BindableTextEditor.cs(删除) +- **解决方案**: + - 通过 TextEditorAssist 附加属性将 TextDocument 与 TextEditor 同步,实现无代码隐藏的 Document 绑定 + - 使用 TextMateHelper 附加属性封装语法高亮安装与语言切换逻辑 + - ViewModel 保留 TextDocument 并在语言切换时刷新文本内容 + - XAML 中直接引用 AvaloniaEdit.TextEditor,避免冗余自定义控件 +- **优势**: + - 完全符合 MVVM 模式,视图层仅通过绑定与附加属性完成配置 + - TextMate 初始化与语言切换统一封装,可复用扩展 + - 代码结构清晰,减少重复字符串状态同步 +- **测试结果**: + - 手动验证:切换语言可正常刷新语法高亮 + - TextDocument 内容与编辑器保持同步,无额外刷新延迟 +- **补充**: + - 调整 TextEditorAssist 附加属性,使用 AddClassHandler 实现双向同步并避免编译错误 + - TextMateHelper 改为按 scope 名称设置语法,兼容 TextMate API 签名 + +### 实现 MVVM 方式的 TextEditor Document 绑定 +- **日期**: 2025年1月0日 +- **修改内容**: 创建自定义 BindableTextEditor 控件,实现纯 MVVM 绑定方式 +- **修改文件**: + - Views/Controls/BindableTextEditor.cs - 新建支持 MVVM 绑定的自定义控件 + - Views/Pages/EditorPageView.axaml - 使用 BindableTextEditor 并绑定 Document + - Views/Pages/EditorPageView.axaml.cs - 移除手动设置 Document 的代码,改用纯绑定 +- **解决方案**: + - 创建 BindableTextEditor 继承自 TextEditor + - 定义 BindableDocument StyledProperty,支持双向绑定 + - 实现双向同步:BindableDocument ↔ TextEditor.Document + - 使用标志位防止循环更新 + - 在 XAML 中使用 `BindableDocument="{Binding Document}"` 实现 MVVM 绑定 + - 移除了所有手动设置 Document 的代码 +- **技术细节**: + - 使用 StyledProperty 定义可绑定属性 + - 使用 GetObservable 监听属性变化 + - 使用标志位 (_isUpdatingFromBindable, _isUpdatingFromDocument) 防止循环更新 + - 支持双向绑定 (BindingMode.TwoWay) +- **优势**: + - 完全符合 MVVM 模式 + - 代码更简洁,View 层不需要手动设置 + - 自动双向同步,ViewModel 变化时自动更新 UI +- **测试结果**: + - 等待用户测试验证 + +### 修复 TextEditor Document 显示问题(第二次修复) +- **日期**: 2025年1月0日 +- **修改内容**: 修复 TextEditor 控件不显示内容的问题,改用代码后台手动设置 Document +- **修改文件**: + - Views/Pages/EditorPageView.axaml - 移除了 Document 的 XAML 绑定 + - Views/Pages/EditorPageView.axaml.cs - 在代码后台手动设置 Document + - App.axaml - 添加 AvaloniaEdit 样式引用 +- **问题描述**: + - TextEditor 的 Document 绑定在 XAML 中不起作用,编辑器仍显示空白 +- **解决方案**: + - 移除 XAML 中的 `Document="{Binding Document}"` 绑定 + - 在代码后台的多个位置手动设置 `editor.Document = viewModel.Document` + - 添加 Loaded 事件处理,在控件加载完成后设置 Document + - 在 OnDataContextChanged 和 InitializeTextMate 中都设置 Document + - 创建 UpdateDocument() 方法统一处理 Document 更新 + - 监听 Document 属性变化,确保同步更新 + - 在 App.axaml 中添加 AvaloniaEdit 样式引用 +- **技术细节**: + - AvaloniaEdit 的 Document 属性可能不完全支持数据绑定,需要在代码后台手动设置 + - 使用多个时机确保 Document 设置:Loaded 事件、DataContextChanged、InitializeTextMate + - 使用 DispatcherPriority.Loaded 确保在控件完全加载后再设置 + - 添加样式引用确保控件正确渲染 +- **测试结果**: + - 等待用户测试验证 + +### 修复 TextEditor Document 绑定问题 +- **日期**: 2025年1月0日 +- **修改内容**: 修复 EditorPageViewModel 中 Document 属性绑定为 null 的问题 +- **修改文件**: + - ViewModels/Pages/EditorPageViewModel.cs - 确保 Document 属性在初始化时就有值 +- **问题描述**: + - TextEditor 的 Document 绑定在初始化时为 null,导致编辑器无法显示内容 +- **解决方案**: + - 将 Document 属性从可空类型(TextDocument?)改为非空类型(TextDocument) + - 在构造函数中立即初始化 Document,确保绑定时有值 + - 修改 InitializeDefaultCode() 方法,直接设置 Document.Text 而不是创建新的 Document 实例 + - 移除了所有 Document 的空值检查,因为现在它保证不为 null +- **技术细节**: + - 在构造函数开始处立即创建 TextDocument 实例 + - 使用 Document.Text 属性更新内容,而不是替换整个 Document 对象 + - 这样可以保持绑定关系的连续性 +- **测试结果**: + - Document 绑定成功,但编辑器仍不显示内容,需要进一步修复 + ## 2024年修改记录 ### WSL Ubuntu发布配置 @@ -3488,4 +3586,118 @@ var title = _resourceService?.GetString("NavDashboard") ?? "仪表板"; - **说明**: - 成功实现了导航项的互斥展开逻辑 - 提供了更直观、更符合用户习惯的交互体验 - - 完善了状态管理和选中效果 \ No newline at end of file + - 完善了状态管理和选中效果 + +### 娣诲姞 AvaloniaEdit.TextMate 浠g爜缂栬緫鍣ㄥ姛鑳?- **鏃ユ湡**: 2025骞?鏈?0鏃?- **淇敼鍐呭**: 娣诲姞鍩轰簬 AvaloniaEdit.TextMate 鐨勪唬鐮佺紪杈戝櫒椤甸潰锛屾敮鎸佽娉曢珮浜?- **鏂板鍔熻兘**: + - 鏀寔澶氱缂栫▼璇█鐨勮娉曢珮浜紙C#, JavaScript, TypeScript, HTML, CSS, JSON, XML, Python, Java, SQL锛? - 鎻愪緵浠g爜缂栬緫鍣ㄧ殑瀹屾暣 UI 鐣岄潰 + - 鏀寔璇█鍒囨崲锛岃嚜鍔ㄥ簲鐢ㄥ搴旂殑璇硶楂樹寒瑙勫垯 + - 鎻愪緵娓呯┖浠g爜鍜屾牸寮忓寲浠g爜鐨勫姛鑳芥寜閽? - 鍐呯疆鍚勭璇█鐨勭ず渚嬩唬鐮佹ā鏉?- **鏂板鏂囦欢**: + - ViewModels/Pages/EditorPageViewModel.cs - 浠g爜缂栬緫鍣ㄩ〉闈㈢殑 ViewModel + - Views/Pages/EditorPageView.axaml - 浠g爜缂栬緫鍣ㄩ〉闈㈢殑 UI 瀹氫箟 + - Views/Pages/EditorPageView.axaml.cs - 浠g爜缂栬緫鍣ㄩ〉闈㈢殑浠g爜閫昏緫 +- **淇敼鏂囦欢**: + - MyAvaloniaApp.csproj - 娣诲姞 AvaloniaEdit 鍜?AvaloniaEdit.TextMate 鍖呭紩鐢? - ViewModels/MainWindowViewModel.cs - 鍦ㄥ鑸」涓坊鍔?浠g爜缂栬緫鍣?椤甸潰 +- **鍖呭紩鐢?*: + `xml + + + ` +- **鏍稿績鍔熻兘**: + - **璇硶楂樹寒**: 浣跨敤 TextMate 璇硶寮曟搸鎻愪緵涓撲笟鐨勮娉曢珮浜敮鎸? - **涓婚鍒囨崲**: 鏀寔 DarkPlus 涓婚 + - **璇█鏀寔**: 10绉嶄富娴佺紪绋嬭瑷€ + - **浠g爜绀轰緥**: 姣忕璇█閮芥湁瀹屾暣鐨勭ず渚嬩唬鐮? - **瀹炴椂鍒囨崲**: 鍒囨崲璇█鏃惰嚜鍔ㄦ洿鏂拌娉曢珮浜鍒?- **瀵艰埅椤归厤缃?*: + - ID: "editor" + - 鏍囬: "浠g爜缂栬緫鍣? + - 鍥炬爣: CodeBracket +- **鎶€鏈疄鐜?*: + - 浣跨敤 TextEditor 鎺т欢浣滀负浠g爜缂栬緫瀹瑰櫒 + - 浣跨敤 RegistryOptions 娉ㄥ唽 TextMate 璇硶瑙勫垯 + - 浣跨敤 SetGrammar() 鏂规硶鍔ㄦ€佸垏鎹㈣娉曢珮浜? - ViewModel 鐩戝惉璇█閫夋嫨鍙樺寲锛屽疄鏃舵洿鏂扮紪杈戝櫒 +- **娴嬭瘯缁撴灉**: + - 缂栬瘧鎴愬姛锛屾棤閿欒 鉁? - AvaloniaEdit 姝g‘鍔犺浇 鉁? - TextMate 鍒濆鍖栨垚鍔?鉁? - 璇█鍒囨崲鍔熻兘姝e父 鉁? - 绀轰緥浠g爜姝g‘鏄剧ず 鉁?- **璇存槑**: + - 鎴愬姛闆嗘垚浜?AvaloniaEdit.TextMate 浠g爜缂栬緫鍣? - 鎻愪緵浜嗗畬鏁寸殑浠g爜缂栬緫浣撻獙 + - 鏀寔璇硶楂樹寒銆佽鍙锋樉绀恒€佷富棰樺垏鎹㈢瓑楂樼骇鍔熻兘 + - 涓哄悗缁殑浠g爜缂栬緫鍔熻兘鎵╁睍鎵撲笅浜嗗熀纭€ + + +### 娣诲姞 AvaloniaEdit.TextMate 浠g爜缂栬緫鍣ㄥ姛鑳?- **鏃ユ湡**: 2025骞?鏈?0鏃?- **淇敼鍐呭**: 娣诲姞鍩轰簬 AvaloniaEdit.TextMate 鐨勪唬鐮佺紪杈戝櫒椤甸潰 +- **鏂板鍔熻兘**: + - 鏀寔澶氱缂栫▼璇█鐨勮娉曢珮浜紙C#, JavaScript, TypeScript, HTML, CSS, JSON, XML, Python, Java, SQL锛? - 鎻愪緵浠g爜缂栬緫鍣ㄧ殑瀹屾暣 UI 鐣岄潰 + - 鏀寔璇█鍒囨崲锛岃嚜鍔ㄥ簲鐢ㄥ搴旂殑璇硶楂樹寒瑙勫垯 + - 鎻愪緵娓呯┖浠g爜鍜屾牸寮忓寲浠g爜鐨勫姛鑳芥寜閽? - 鍐呯疆鍚勭璇█鐨勭ず渚嬩唬鐮佹ā鏉?- **鏂板鏂囦欢**: + - ViewModels/Pages/EditorPageViewModel.cs - 浠g爜缂栬緫鍣ㄩ〉闈㈢殑 ViewModel + - Views/Pages/EditorPageView.axaml - 浠g爜缂栬緫鍣ㄩ〉闈㈢殑 UI 瀹氫箟 + - Views/Pages/EditorPageView.axaml.cs - 浠g爜缂栬緫鍣ㄩ〉闈㈢殑浠g爜閫昏緫 +- **淇敼鏂囦欢**: + - MyAvaloniaApp.csproj - 娣诲姞 AvaloniaEdit 鍜?AvaloniaEdit.TextMate 鍖呭紩鐢? - ViewModels/MainWindowViewModel.cs - 鍦ㄥ鑸」涓坊鍔?浠g爜缂栬緫鍣?椤甸潰 +- **鍖呭紩鐢?*: + `xml + + + ` +- **鏍稿績鍔熻兘**: + - **璇硶楂樹寒**: 浣跨敤 TextMate 璇硶寮曟搸鎻愪緵涓撲笟鐨勮娉曢珮浜敮鎸? - **涓婚鍒囨崲**: 鏀寔 DarkPlus 涓婚 + - **璇█鏀寔**: 10绉嶄富娴佺紪绋嬭瑷€ + - **浠g爜绀轰緥**: 姣忕璇█閮芥湁绀轰緥浠g爜 + - **瀹炴椂鍒囨崲**: 鍒囨崲璇█鏃惰嚜鍔ㄦ洿鏂拌娉曢珮浜鍒?- **鎶€鏈疄鐜?*: + - 浣跨敤 TextEditor 鎺т欢浣滀负浠g爜缂栬緫瀹瑰櫒 + - 浣跨敤 RegistryOptions 娉ㄥ唽 TextMate 璇硶瑙勫垯 + - 浣跨敤 SetGrammar() 鏂规硶鍔ㄦ€佸垏鎹㈣娉曢珮浜? - ViewModel 鐩戝惉璇█閫夋嫨鍙樺寲锛屽疄鏃舵洿鏂扮紪杈戝櫒 +- **娴嬭瘯缁撴灉**: + - 缂栬瘧鎴愬姛锛屾棤閿欒 鉁? - AvaloniaEdit 姝g‘鍔犺浇 鉁?- **璇存槑**: + - 鎴愬姛闆嗘垚浜?AvaloniaEdit.TextMate 浠g爜缂栬緫鍣? - 鎻愪緵浜嗗畬鏁寸殑浠g爜缂栬緫浣撻獙 + - 涓哄悗缁殑浠g爜缂栬緫鍔熻兘鎵╁睍鎵撲笅浜嗗熀纭€ + +### 重构 EditorPageView 以支�?MVVM 语言切换 +- **日期**: 2025�?0�?1�?- **修改内容**: 将代码编辑器页面的语法高亮初始化逻辑抽离到附加属性,通过数据绑定控制语言切换 +- **修改文件**: + - `Views/Behaviors/TextMateHelper.cs` + - `Views/Pages/EditorPageView.axaml` + - `Views/Pages/EditorPageView.axaml.cs` +- **实现方式**: + - 新增 `TextMateHelper` 附加属性统一管理 TextMate 初始化与语法切换 + - �?XAML 中绑�?`TextMateHelper.Language` �?`SelectedLanguage`,移除代码后置监�? - 精简 `EditorPageView` 代码后置,保留基础初始�?- **测试结果**: + - 手动运行界面验证语言切换语法高亮正常 �? - 未执行自动化测试(UI 层改动) +- **备注**: + - 当前实现可扩展其他主题或语言,后续可�?ViewModel 中追加格式化逻辑 + +### 新增 DialogHost 示例页面 +- **日期**: 2025年10月31日 +- **修改内容**: 集成 DialogHost.Avalonia,新增示例页面并加入导航,支持通过 MVVM 控制对话框的打开与关闭 +- **新增文件**: + - `ViewModels/Pages/DialogHostPageViewModel.cs` — 定义对话框状态、命令及反馈信息 + - `Views/Pages/DialogHostPageView.axaml` — 布局 DialogHost 及演示界面 + - `Views/Pages/DialogHostPageView.axaml.cs` — 初始化新页面视图 +- **修改文件**: + - `App.axaml` — 合并 `avares://DialogHost.Avalonia/Styles.xaml` 样式资源,确保模板可用 + - `MyAvaloniaApp.csproj` — 引入 `DialogHost.Avalonia` 包引用 + - `ViewModels/MainWindowViewModel.cs` — 注册“对话框示例”导航项并绑定新页面 +- **功能说明**: + - 通过 `IsDialogOpen` 与命令绑定实现 MVVM 弹窗控制 + - 支持确认/取消操作与“记住选择”选项,展示最后一次操作结果 + - 保持对话框样式与应用现有主题一致 + - 调整示例布局使用 `Margin` 控制外边距,避免对 `Grid.Padding` 的依赖 + - 新增“通用/成功/失败/警告”四类示例按钮,自动切换标题、文案、按钮文本及是否展示次级操作 + - 对话框内容加入图标与强调色绑定,突出场景差异并保持样式统一 + - WrapPanel 去除 `Spacing`,改为按钮外边距实现间距以兼容当前 Avalonia 版本 + - 对话框头部改用 `Grid` 控制图标与文本列宽,并设置描述文本 `MaxWidth` 防止内容溢出 + - 成功/失败/警告场景支持参数化秒数自动关闭(默认 2s),按钮隐藏且提示会在超时后自动记录操作 + - 新增“确认弹窗”示例以及 5 秒延时的成功案例,演示 `variant:seconds` 参数格式 +- **测试结果**: + - 手动运行验证:对话框可正常打开、确认与取消 + - 导航项点击可正确创建标签页并加载示例页面 + +### 更新忽略文件 +- **日期**: 2025年10月31日 +- **修改内容**: 新增 `.gitignore`,将 `.vs` 与 `bin` 目录排除在版本控制之外 +- **目的**: 避免将临时构建产物与本地开发配置提交至仓库,保持仓库整洁 + +### 优化 .gitignore 模板 +- **日期**: 2025年10月31日 +- **修改内容**: 将 `.gitignore` 替换为 Visual Studio 项目的标准模板,涵盖用户配置、构建输出、调试日志及常见工具生成文件 +- **目的**: 提供更全面的忽略策略,减少环境差异导致的冗余文件进入版本库 + +### 调整忽略目录 +- **日期**: 2025年10月31日 +- **修改内容**: 在 `.gitignore` 中显式添加根目录 `bin/`、`obj/`、`publish/` 的忽略规则 +- **目的**: 确保常见构建产物目录在任何平台下均不会被意外提交 diff --git a/obj/Debug/net9.0/Avalonia/Resources.Inputs.cache b/obj/Debug/net9.0/Avalonia/Resources.Inputs.cache index 988f9e0..6c89e65 100644 --- a/obj/Debug/net9.0/Avalonia/Resources.Inputs.cache +++ b/obj/Debug/net9.0/Avalonia/Resources.Inputs.cache @@ -1 +1 @@ -6e01c74e1c21b9706e5c2eb7e4b73fafcd6b61916a627af46c2ec5b3700097d5 +a9f27ce4bdac4bf5ca954160904d645cef7a4bde57bc6b530b0206ad45cc8eb7 diff --git a/obj/Debug/net9.0/Avalonia/references b/obj/Debug/net9.0/Avalonia/references index 70f8666..0e3b3a7 100644 --- a/obj/Debug/net9.0/Avalonia/references +++ b/obj/Debug/net9.0/Avalonia/references @@ -23,6 +23,9 @@ C:\Users\changeself\.nuget\packages\avalonia\11.3.7\ref\net8.0\Avalonia.Vulkan.d 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\avalonia.avaloniaedit\11.3.0\lib\net6.0\AvaloniaEdit.dll +C:\Users\changeself\.nuget\packages\avaloniaedit.textmate\11.3.0\lib\net6.0\AvaloniaEdit.TextMate.dll +C:\Users\changeself\.nuget\packages\dialoghost.avalonia\0.9.3\lib\netstandard2.0\DialogHost.Avalonia.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 @@ -61,6 +64,7 @@ C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\Microso 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\onigwrap\1.0.6\lib\netstandard2.0\Onigwrap.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 @@ -222,5 +226,7 @@ C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\9.0.7\ref\net9.0\System. 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\textmatesharp\1.0.65\lib\netstandard2.0\TextMateSharp.dll +C:\Users\changeself\.nuget\packages\textmatesharp.grammars\1.0.65\lib\netstandard2.0\TextMateSharp.Grammars.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/Debug/net9.0/Avalonia/resources b/obj/Debug/net9.0/Avalonia/resources index b0b2978..3b86a19 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/MyAvaloniaApp.AssemblyInfo.cs b/obj/Debug/net9.0/MyAvaloniaApp.AssemblyInfo.cs index 1b02b60..c72942e 100644 --- a/obj/Debug/net9.0/MyAvaloniaApp.AssemblyInfo.cs +++ b/obj/Debug/net9.0/MyAvaloniaApp.AssemblyInfo.cs @@ -14,7 +14,7 @@ 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.AssemblyInformationalVersionAttribute("1.0.0+a05a81acc78797ebd427e6d6aed03156b1343493")] [assembly: System.Reflection.AssemblyProductAttribute("MyAvaloniaApp")] [assembly: System.Reflection.AssemblyTitleAttribute("MyAvaloniaApp")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/obj/Debug/net9.0/MyAvaloniaApp.AssemblyInfoInputs.cache b/obj/Debug/net9.0/MyAvaloniaApp.AssemblyInfoInputs.cache index 45a5e8b..519972f 100644 --- a/obj/Debug/net9.0/MyAvaloniaApp.AssemblyInfoInputs.cache +++ b/obj/Debug/net9.0/MyAvaloniaApp.AssemblyInfoInputs.cache @@ -1 +1 @@ -bf952ee0722a6225039d842c594a8ebe310a83a2db3935d66a759729adc67724 +766f73ce23faadf06c3dea8c85c8321692de9c1311687760c1eb88fe735925f7 diff --git a/obj/Debug/net9.0/MyAvaloniaApp.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net9.0/MyAvaloniaApp.GeneratedMSBuildEditorConfig.editorconfig index f1b6c8b..c681ed2 100644 --- a/obj/Debug/net9.0/MyAvaloniaApp.GeneratedMSBuildEditorConfig.editorconfig +++ b/obj/Debug/net9.0/MyAvaloniaApp.GeneratedMSBuildEditorConfig.editorconfig @@ -39,6 +39,12 @@ 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 diff --git a/obj/Debug/net9.0/MyAvaloniaApp.assets.cache b/obj/Debug/net9.0/MyAvaloniaApp.assets.cache index 25ec34f..d71e11f 100644 Binary files a/obj/Debug/net9.0/MyAvaloniaApp.assets.cache and b/obj/Debug/net9.0/MyAvaloniaApp.assets.cache differ diff --git a/obj/Debug/net9.0/MyAvaloniaApp.csproj.AssemblyReference.cache b/obj/Debug/net9.0/MyAvaloniaApp.csproj.AssemblyReference.cache index dfcd986..341ab79 100644 Binary files a/obj/Debug/net9.0/MyAvaloniaApp.csproj.AssemblyReference.cache and b/obj/Debug/net9.0/MyAvaloniaApp.csproj.AssemblyReference.cache differ diff --git a/obj/Debug/net9.0/MyAvaloniaApp.csproj.CoreCompileInputs.cache b/obj/Debug/net9.0/MyAvaloniaApp.csproj.CoreCompileInputs.cache index c82af91..c947372 100644 --- a/obj/Debug/net9.0/MyAvaloniaApp.csproj.CoreCompileInputs.cache +++ b/obj/Debug/net9.0/MyAvaloniaApp.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -2fb62cbdfb8208998e89466afbadbb20df4541f3eb58228e330c9ae62600a000 +7e0e71ecbe1dda5d9b13b4a0f67a04828398b765cd3833716ab133f8c26dd1a4 diff --git a/obj/Debug/net9.0/MyAvaloniaApp.csproj.FileListAbsolute.txt b/obj/Debug/net9.0/MyAvaloniaApp.csproj.FileListAbsolute.txt index 6d39269..6a42624 100644 --- a/obj/Debug/net9.0/MyAvaloniaApp.csproj.FileListAbsolute.txt +++ b/obj/Debug/net9.0/MyAvaloniaApp.csproj.FileListAbsolute.txt @@ -1,3 +1,13 @@ +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\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\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 @@ -15,6 +25,7 @@ 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 @@ -29,6 +40,7 @@ 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\DynamicData.dll D:\Log\MyAvaloniaApp\bin\Debug\net9.0\HarfBuzzSharp.dll D:\Log\MyAvaloniaApp\bin\Debug\net9.0\HeroIconsAvalonia.dll @@ -60,11 +72,14 @@ D:\Log\MyAvaloniaApp\bin\Debug\net9.0\Microsoft.Extensions.Logging.EventSource.d 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 @@ -85,6 +100,14 @@ 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 @@ -95,16 +118,7 @@ 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\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\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 +D:\Log\MyAvaloniaApp\bin\Debug\net9.0\DialogHost.Avalonia.dll diff --git a/obj/Debug/net9.0/MyAvaloniaApp.dll b/obj/Debug/net9.0/MyAvaloniaApp.dll index af51257..f8f9ec4 100644 Binary files a/obj/Debug/net9.0/MyAvaloniaApp.dll and b/obj/Debug/net9.0/MyAvaloniaApp.dll differ diff --git a/obj/Debug/net9.0/MyAvaloniaApp.pdb b/obj/Debug/net9.0/MyAvaloniaApp.pdb index e1ba2c9..9dd65e9 100644 Binary files a/obj/Debug/net9.0/MyAvaloniaApp.pdb and b/obj/Debug/net9.0/MyAvaloniaApp.pdb differ diff --git a/obj/Debug/net9.0/apphost.exe b/obj/Debug/net9.0/apphost.exe index bdb96d9..72bc458 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/ref/MyAvaloniaApp.dll b/obj/Debug/net9.0/ref/MyAvaloniaApp.dll index 32c1374..038e710 100644 Binary files a/obj/Debug/net9.0/ref/MyAvaloniaApp.dll and b/obj/Debug/net9.0/ref/MyAvaloniaApp.dll differ diff --git a/obj/Debug/net9.0/refint/MyAvaloniaApp.dll b/obj/Debug/net9.0/refint/MyAvaloniaApp.dll index 32c1374..038e710 100644 Binary files a/obj/Debug/net9.0/refint/MyAvaloniaApp.dll and b/obj/Debug/net9.0/refint/MyAvaloniaApp.dll differ diff --git a/obj/MyAvaloniaApp.csproj.nuget.dgspec.json b/obj/MyAvaloniaApp.csproj.nuget.dgspec.json index 39ecee0..d3cd72d 100644 --- a/obj/MyAvaloniaApp.csproj.nuget.dgspec.json +++ b/obj/MyAvaloniaApp.csproj.nuget.dgspec.json @@ -75,6 +75,18 @@ "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, )" diff --git a/obj/MyAvaloniaApp.csproj.nuget.g.props b/obj/MyAvaloniaApp.csproj.nuget.g.props index 7cd0b66..506c13a 100644 --- a/obj/MyAvaloniaApp.csproj.nuget.g.props +++ b/obj/MyAvaloniaApp.csproj.nuget.g.props @@ -14,6 +14,7 @@ + diff --git a/obj/MyAvaloniaApp.csproj.nuget.g.targets b/obj/MyAvaloniaApp.csproj.nuget.g.targets index bc16a10..85b6e5e 100644 --- a/obj/MyAvaloniaApp.csproj.nuget.g.targets +++ b/obj/MyAvaloniaApp.csproj.nuget.g.targets @@ -1,6 +1,8 @@  + + diff --git a/obj/Release/net9.0/linux-x64/Avalonia/Resources.Inputs.cache b/obj/Release/net9.0/linux-x64/Avalonia/Resources.Inputs.cache index 0d34648..ecdbfcf 100644 --- a/obj/Release/net9.0/linux-x64/Avalonia/Resources.Inputs.cache +++ b/obj/Release/net9.0/linux-x64/Avalonia/Resources.Inputs.cache @@ -1 +1 @@ -9067b32390c3062370b40b528526728b26c9b8c7a8e74dc8af0e7cbbcae48cc3 +c4c294d354420aa37ac28b90b6579ec6e118659488679dbc5a071ae852a5bade diff --git a/obj/Release/net9.0/linux-x64/Avalonia/references b/obj/Release/net9.0/linux-x64/Avalonia/references index 869ad85..f34fcec 100644 --- a/obj/Release/net9.0/linux-x64/Avalonia/references +++ b/obj/Release/net9.0/linux-x64/Avalonia/references @@ -22,6 +22,7 @@ C:\Users\changeself\.nuget\packages\avalonia.win32\11.3.7\lib\net8.0\Avalonia.Wi 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 diff --git a/obj/Release/net9.0/linux-x64/Avalonia/resources b/obj/Release/net9.0/linux-x64/Avalonia/resources index c7dc0d4..b0b2978 100644 Binary files a/obj/Release/net9.0/linux-x64/Avalonia/resources and b/obj/Release/net9.0/linux-x64/Avalonia/resources differ diff --git a/obj/Release/net9.0/linux-x64/MyAvaloniaApp.AssemblyInfo.cs b/obj/Release/net9.0/linux-x64/MyAvaloniaApp.AssemblyInfo.cs index c455a92..7d5de66 100644 --- a/obj/Release/net9.0/linux-x64/MyAvaloniaApp.AssemblyInfo.cs +++ b/obj/Release/net9.0/linux-x64/MyAvaloniaApp.AssemblyInfo.cs @@ -13,7 +13,7 @@ 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")] +[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")] diff --git a/obj/Release/net9.0/linux-x64/MyAvaloniaApp.AssemblyInfoInputs.cache b/obj/Release/net9.0/linux-x64/MyAvaloniaApp.AssemblyInfoInputs.cache index 74c7f54..644ed73 100644 --- a/obj/Release/net9.0/linux-x64/MyAvaloniaApp.AssemblyInfoInputs.cache +++ b/obj/Release/net9.0/linux-x64/MyAvaloniaApp.AssemblyInfoInputs.cache @@ -1 +1 @@ -3ff08d4c1a2a8d89d5383dc9190935873755fc8f8e541fbc6f37c55291a0c028 +cb222c9b1a7e6b974825e9997ad1ff3ee2ea91da885ea5a9eff2111dc7b6c82a diff --git a/obj/Release/net9.0/linux-x64/MyAvaloniaApp.GeneratedMSBuildEditorConfig.editorconfig b/obj/Release/net9.0/linux-x64/MyAvaloniaApp.GeneratedMSBuildEditorConfig.editorconfig index 9665edc..f1b6c8b 100644 --- a/obj/Release/net9.0/linux-x64/MyAvaloniaApp.GeneratedMSBuildEditorConfig.editorconfig +++ b/obj/Release/net9.0/linux-x64/MyAvaloniaApp.GeneratedMSBuildEditorConfig.editorconfig @@ -27,12 +27,24 @@ 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 diff --git a/obj/Release/net9.0/linux-x64/MyAvaloniaApp.assets.cache b/obj/Release/net9.0/linux-x64/MyAvaloniaApp.assets.cache index 4cc0b80..1939aae 100644 Binary files a/obj/Release/net9.0/linux-x64/MyAvaloniaApp.assets.cache and b/obj/Release/net9.0/linux-x64/MyAvaloniaApp.assets.cache 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 index 6302c6b..0b8e486 100644 Binary files a/obj/Release/net9.0/linux-x64/MyAvaloniaApp.csproj.AssemblyReference.cache and b/obj/Release/net9.0/linux-x64/MyAvaloniaApp.csproj.AssemblyReference.cache 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 index 020a822..7287a24 100644 --- a/obj/Release/net9.0/linux-x64/MyAvaloniaApp.csproj.CoreCompileInputs.cache +++ b/obj/Release/net9.0/linux-x64/MyAvaloniaApp.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -40d226aca90a8aa1a045c119f771f7c4b7a24c5170b7abdc97c79504e72819c2 +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 index 6bb6d49..ed27b04 100644 --- a/obj/Release/net9.0/linux-x64/MyAvaloniaApp.csproj.FileListAbsolute.txt +++ b/obj/Release/net9.0/linux-x64/MyAvaloniaApp.csproj.FileListAbsolute.txt @@ -261,3 +261,4 @@ D:\Log\MyAvaloniaApp\bin\Release\net9.0\linux-x64\Microsoft.Extensions.Options.d 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 index 8e00c18..262735b 100644 --- a/obj/Release/net9.0/linux-x64/MyAvaloniaApp.deps.json +++ b/obj/Release/net9.0/linux-x64/MyAvaloniaApp.deps.json @@ -15,6 +15,7 @@ "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", @@ -990,6 +991,17 @@ "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": { @@ -1599,6 +1611,13 @@ "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, diff --git a/obj/Release/net9.0/linux-x64/MyAvaloniaApp.dll b/obj/Release/net9.0/linux-x64/MyAvaloniaApp.dll index 54c85be..8e0ef90 100644 Binary files a/obj/Release/net9.0/linux-x64/MyAvaloniaApp.dll and b/obj/Release/net9.0/linux-x64/MyAvaloniaApp.dll differ diff --git a/obj/Release/net9.0/linux-x64/MyAvaloniaApp.pdb b/obj/Release/net9.0/linux-x64/MyAvaloniaApp.pdb index 8901009..cec9349 100644 Binary files a/obj/Release/net9.0/linux-x64/MyAvaloniaApp.pdb and b/obj/Release/net9.0/linux-x64/MyAvaloniaApp.pdb differ diff --git a/obj/Release/net9.0/linux-x64/PublishOutputs.6ca985d4d5.txt b/obj/Release/net9.0/linux-x64/PublishOutputs.6ca985d4d5.txt index d7728f7..348c73e 100644 --- a/obj/Release/net9.0/linux-x64/PublishOutputs.6ca985d4d5.txt +++ b/obj/Release/net9.0/linux-x64/PublishOutputs.6ca985d4d5.txt @@ -211,6 +211,7 @@ 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 diff --git a/obj/Release/net9.0/linux-x64/ref/MyAvaloniaApp.dll b/obj/Release/net9.0/linux-x64/ref/MyAvaloniaApp.dll index 2021354..adb7fbb 100644 Binary files a/obj/Release/net9.0/linux-x64/ref/MyAvaloniaApp.dll and b/obj/Release/net9.0/linux-x64/ref/MyAvaloniaApp.dll differ diff --git a/obj/Release/net9.0/linux-x64/refint/MyAvaloniaApp.dll b/obj/Release/net9.0/linux-x64/refint/MyAvaloniaApp.dll index 2021354..adb7fbb 100644 Binary files a/obj/Release/net9.0/linux-x64/refint/MyAvaloniaApp.dll and b/obj/Release/net9.0/linux-x64/refint/MyAvaloniaApp.dll differ diff --git a/obj/project.assets.json b/obj/project.assets.json index 3d64ee8..17a8b0c 100644 --- a/obj/project.assets.json +++ b/obj/project.assets.json @@ -101,6 +101,18 @@ } } }, + "Avalonia.AvaloniaEdit/11.3.0": { + "type": "package", + "dependencies": { + "Avalonia": "11.0.0" + }, + "compile": { + "lib/net6.0/AvaloniaEdit.dll": {} + }, + "runtime": { + "lib/net6.0/AvaloniaEdit.dll": {} + } + }, "Avalonia.BuildServices/11.3.1": { "type": "package", "build": { @@ -343,6 +355,51 @@ } } }, + "AvaloniaEdit/0.10.12": { + "type": "package", + "dependencies": { + "Avalonia": "0.10.12", + "System.Collections.Immutable": "1.6.0", + "System.Xml.ReaderWriter": "4.3.1" + }, + "compile": { + "lib/netstandard2.0/AvaloniaEdit.dll": {} + }, + "runtime": { + "lib/netstandard2.0/AvaloniaEdit.dll": {} + } + }, + "AvaloniaEdit.TextMate/11.3.0": { + "type": "package", + "dependencies": { + "Avalonia": "11.0.0", + "Avalonia.AvaloniaEdit": "11.3.0", + "TextMateSharp": "1.0.65", + "TextMateSharp.Grammars": "1.0.65" + }, + "compile": { + "lib/net6.0/AvaloniaEdit.TextMate.dll": {} + }, + "runtime": { + "lib/net6.0/AvaloniaEdit.TextMate.dll": {} + } + }, + "DialogHost.Avalonia/0.9.3": { + "type": "package", + "dependencies": { + "Avalonia": "11.1.0" + }, + "compile": { + "lib/netstandard2.0/DialogHost.Avalonia.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/DialogHost.Avalonia.dll": { + "related": ".xml" + } + } + }, "DynamicData/8.4.1": { "type": "package", "dependencies": { @@ -1079,6 +1136,71 @@ "buildTransitive/net8.0/_._": {} } }, + "Microsoft.NETCore.Platforms/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Onigwrap/1.0.6": { + "type": "package", + "compile": { + "lib/netstandard2.0/Onigwrap.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Onigwrap.dll": {} + }, + "build": { + "buildTransitive/netstandard1.0/Onigwrap.props": {}, + "buildTransitive/netstandard1.0/Onigwrap.targets": {} + }, + "runtimeTargets": { + "runtimes/linux-arm64/native/libonigwrap.so": { + "assetType": "native", + "rid": "linux-arm64" + }, + "runtimes/linux-musl-arm64/native/libonigwrap.so": { + "assetType": "native", + "rid": "linux-musl-arm64" + }, + "runtimes/linux-musl-x64/native/libonigwrap.so": { + "assetType": "native", + "rid": "linux-musl-x64" + }, + "runtimes/linux-x64/native/libonigwrap.so": { + "assetType": "native", + "rid": "linux-x64" + }, + "runtimes/osx/native/libonigwrap.dylib": { + "assetType": "native", + "rid": "osx" + }, + "runtimes/win-arm64/native/libonigwrap.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-x64/native/libonigwrap.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x86/native/libonigwrap.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, "ReactiveUI/20.1.1": { "type": "package", "dependencies": { @@ -1208,6 +1330,32 @@ } } }, + "System.Collections/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + } + }, + "System.Collections.Immutable/1.6.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/System.Collections.Immutable.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Collections.Immutable.dll": { + "related": ".xml" + } + } + }, "System.ComponentModel.Annotations/5.0.0": { "type": "package", "compile": { @@ -1221,6 +1369,19 @@ } } }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + } + }, "System.Diagnostics.EventLog/9.0.0": { "type": "package", "compile": { @@ -1247,6 +1408,66 @@ } } }, + "System.Globalization/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + } + }, + "System.IO/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.IO.dll": { + "related": ".xml" + } + } + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "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" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + } + }, "System.IO.Pipelines/8.0.0": { "type": "package", "compile": { @@ -1279,49 +1500,284 @@ "buildTransitive/net6.0/_._": {} } }, - "Tmds.DBus.Protocol/0.21.2": { + "System.Reflection/4.3.0": { "type": "package", "dependencies": { - "System.IO.Pipelines": "8.0.0" + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" }, "compile": { - "lib/net8.0/Tmds.DBus.Protocol.dll": {} + "ref/netstandard1.5/_._": { + "related": ".xml" + } + } + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": { + "related": ".xml" + } + } + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "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" + }, + "compile": { + "ref/netstandard1.0/_._": { + "related": ".xml" + } + } + }, + "System.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.dll": { + "related": ".xml" + } + } + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/_._": { + "related": ".xml" + } + } + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + } + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "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" + }, + "compile": { + "ref/netcoreapp1.1/_._": {} + } + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.dll": { + "related": ".xml" + } + } + }, + "System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + } + }, + "System.Text.Json/8.0.5": { + "type": "package", + "compile": { + "lib/net8.0/System.Text.Json.dll": { + "related": ".xml" + } }, "runtime": { - "lib/net8.0/Tmds.DBus.Protocol.dll": {} + "lib/net8.0/System.Text.Json.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/System.Text.Json.targets": {} } - } - } - }, - "libraries": { - "Avalonia/11.3.7": { - "sha512": "QlVvaYTSTqzoUflmAEMuPzi3vYdybEIXmFQgLZxdTbzTeyhlwKZ1WqtLwHVe1Fbt8oGSCqYYKsU8SViZsdXR2Q==", - "type": "package", - "path": "avalonia/11.3.7", - "hasTools": true, - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "analyzers/dotnet/cs/Avalonia.Analyzers.dll", - "analyzers/dotnet/cs/Avalonia.Generators.dll", - "avalonia.11.3.7.nupkg.sha512", - "avalonia.nuspec", - "build/Avalonia.Generators.props", - "build/Avalonia.props", - "build/Avalonia.targets", - "build/AvaloniaBuildTasks.props", - "build/AvaloniaBuildTasks.targets", - "build/AvaloniaItemSchema.xaml", - "build/AvaloniaPrivateApis.targets", - "build/AvaloniaRules.Project.xml", - "build/AvaloniaSingleProject.targets", - "build/AvaloniaVersion.props", - "buildTransitive/Avalonia.Generators.props", - "buildTransitive/Avalonia.props", - "buildTransitive/Avalonia.targets", - "buildTransitive/AvaloniaBuildTasks.props", - "buildTransitive/AvaloniaBuildTasks.targets", + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netcoreapp1.1/_._": {} + }, + "runtime": { + "lib/netstandard1.6/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Tasks.dll": { + "related": ".xml" + } + } + }, + "System.Threading.Tasks.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": { + "related": ".xml" + } + } + }, + "System.Xml.ReaderWriter/4.3.1": { + "type": "package", + "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" + }, + "compile": { + "ref/netstandard1.3/System.Xml.ReaderWriter.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {} + } + }, + "TextMateSharp/1.0.65": { + "type": "package", + "dependencies": { + "Onigwrap": "1.0.6", + "System.Text.Json": "8.0.5" + }, + "compile": { + "lib/netstandard2.0/TextMateSharp.dll": {} + }, + "runtime": { + "lib/netstandard2.0/TextMateSharp.dll": {} + } + }, + "TextMateSharp.Grammars/1.0.65": { + "type": "package", + "dependencies": { + "System.Text.Json": "8.0.5", + "TextMateSharp": "1.0.65" + }, + "compile": { + "lib/netstandard2.0/TextMateSharp.Grammars.dll": {} + }, + "runtime": { + "lib/netstandard2.0/TextMateSharp.Grammars.dll": {} + } + }, + "Tmds.DBus.Protocol/0.21.2": { + "type": "package", + "dependencies": { + "System.IO.Pipelines": "8.0.0" + }, + "compile": { + "lib/net8.0/Tmds.DBus.Protocol.dll": {} + }, + "runtime": { + "lib/net8.0/Tmds.DBus.Protocol.dll": {} + } + } + } + }, + "libraries": { + "Avalonia/11.3.7": { + "sha512": "QlVvaYTSTqzoUflmAEMuPzi3vYdybEIXmFQgLZxdTbzTeyhlwKZ1WqtLwHVe1Fbt8oGSCqYYKsU8SViZsdXR2Q==", + "type": "package", + "path": "avalonia/11.3.7", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "analyzers/dotnet/cs/Avalonia.Analyzers.dll", + "analyzers/dotnet/cs/Avalonia.Generators.dll", + "avalonia.11.3.7.nupkg.sha512", + "avalonia.nuspec", + "build/Avalonia.Generators.props", + "build/Avalonia.props", + "build/Avalonia.targets", + "build/AvaloniaBuildTasks.props", + "build/AvaloniaBuildTasks.targets", + "build/AvaloniaItemSchema.xaml", + "build/AvaloniaPrivateApis.targets", + "build/AvaloniaRules.Project.xml", + "build/AvaloniaSingleProject.targets", + "build/AvaloniaVersion.props", + "buildTransitive/Avalonia.Generators.props", + "buildTransitive/Avalonia.props", + "buildTransitive/Avalonia.targets", + "buildTransitive/AvaloniaBuildTasks.props", + "buildTransitive/AvaloniaBuildTasks.targets", "buildTransitive/AvaloniaItemSchema.xaml", "buildTransitive/AvaloniaPrivateApis.targets", "buildTransitive/AvaloniaRules.Project.xml", @@ -1479,6 +1935,20 @@ "runtimes/win-x86/native/av_libglesv2.dll" ] }, + "Avalonia.AvaloniaEdit/11.3.0": { + "sha512": "9M/jJb4DPqQmKtNMZn6+vpqlf+ZGMtK8vEBpPVP3De1xRCu1hv4ZAtoA8hY6bYj2hgv/luete3ixoOsEQ++YJQ==", + "type": "package", + "path": "avalonia.avaloniaedit/11.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "avalonia.avaloniaedit.11.3.0.nupkg.sha512", + "avalonia.avaloniaedit.nuspec", + "lib/net6.0/AvaloniaEdit.dll", + "lib/netstandard2.0/AvaloniaEdit.dll" + ] + }, "Avalonia.BuildServices/11.3.1": { "sha512": "k/WwXbqwaCtmE0a90YXB9plT50ok6OgLBIr+DUYK16akJN82iK69kgkL1vGDd8XBvf77JM3O27znBuy7AEoFgg==", "type": "package", @@ -1739,6 +2209,47 @@ "lib/netstandard2.0/Avalonia.X11.xml" ] }, + "AvaloniaEdit/0.10.12": { + "sha512": "zhMa6SPnFypVddpYEOJvNckb9m219wz8bKA+T2CZPDyPaFYKHPOe7jjbW6lFCinilXF+55N64EW8vsoRDwsc2A==", + "type": "package", + "path": "avaloniaedit/0.10.12", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "avaloniaedit.0.10.12.nupkg.sha512", + "avaloniaedit.nuspec", + "lib/netstandard2.0/AvaloniaEdit.dll" + ] + }, + "AvaloniaEdit.TextMate/11.3.0": { + "sha512": "9yDE7JUGZxWLo5eqhd6FXMHgj4EH2NOQxL030Vja6SBYX5wiLR8Pk67A8DtIabb0tpvEEDPWBBasN70OhjUiwg==", + "type": "package", + "path": "avaloniaedit.textmate/11.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "avaloniaedit.textmate.11.3.0.nupkg.sha512", + "avaloniaedit.textmate.nuspec", + "lib/net6.0/AvaloniaEdit.TextMate.dll", + "lib/netstandard2.0/AvaloniaEdit.TextMate.dll" + ] + }, + "DialogHost.Avalonia/0.9.3": { + "sha512": "o1acXdUB2yb0zyMS/BXN00K6fwYJIoJXUOXtdmfFnlEVujcMGJIOfnXyKfjruWcaob02K2blJSmwK1bq40c5gQ==", + "type": "package", + "path": "dialoghost.avalonia/0.9.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "dialoghost.avalonia.0.9.3.nupkg.sha512", + "dialoghost.avalonia.nuspec", + "icon.png", + "lib/netstandard2.0/DialogHost.Avalonia.dll", + "lib/netstandard2.0/DialogHost.Avalonia.xml" + ] + }, "DynamicData/8.4.1": { "sha512": "Mn1+fU/jqxgONEJq8KLQPGWEi7g/hUVTbjZyn4QM0sWWDAVOHPO9WjXWORSykwdfg/6S3GM15qsfz+2EvO+QAQ==", "type": "package", @@ -2785,6 +3296,65 @@ "useSharedDesignerContext.txt" ] }, + "Microsoft.NETCore.Platforms/1.1.0": { + "sha512": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", + "type": "package", + "path": "microsoft.netcore.platforms/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.1.1.0.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json" + ] + }, + "Microsoft.NETCore.Targets/1.1.0": { + "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "type": "package", + "path": "microsoft.netcore.targets/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.targets.1.1.0.nupkg.sha512", + "microsoft.netcore.targets.nuspec", + "runtime.json" + ] + }, + "Onigwrap/1.0.6": { + "sha512": "nqmemnwPFmcLPINSEUsbj/jdZ+vhaRMG3E7G/4yGwFEzWusfCgucutMsIKxRXLo0buon35uZeXadnnT6r8fuqQ==", + "type": "package", + "path": "onigwrap/1.0.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netstandard1.0/Onigwrap.props", + "buildTransitive/netstandard1.0/Onigwrap.targets", + "buildTransitive/netstandard1.0/wasm/2.0.23/st/libonigwrap.a", + "buildTransitive/netstandard1.0/wasm/3.1.12/mt/libonigwrap.a", + "buildTransitive/netstandard1.0/wasm/3.1.12/st/libonigwrap.a", + "buildTransitive/netstandard1.0/wasm/3.1.34/mt/libonigwrap.a", + "buildTransitive/netstandard1.0/wasm/3.1.34/st/libonigwrap.a", + "lib/netstandard2.0/Onigwrap.dll", + "onigwrap.1.0.6.nupkg.sha512", + "onigwrap.nuspec", + "runtimes/linux-arm64/native/libonigwrap.so", + "runtimes/linux-musl-arm64/native/libonigwrap.so", + "runtimes/linux-musl-x64/native/libonigwrap.so", + "runtimes/linux-x64/native/libonigwrap.so", + "runtimes/osx/native/libonigwrap.dylib", + "runtimes/win-arm64/native/libonigwrap.dll", + "runtimes/win-x64/native/libonigwrap.dll", + "runtimes/win-x86/native/libonigwrap.dll" + ] + }, "ReactiveUI/20.1.1": { "sha512": "9hNPknWjijnaSWs6auypoXqUptPZcRpUypF+cf1zD50fgW+SEoQda502N3fVZ2eWPcaiUad+z6GaLwOWmUVHNw==", "type": "package", @@ -3023,6 +3593,97 @@ "splat.nuspec" ] }, + "System.Collections/4.3.0": { + "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "type": "package", + "path": "system.collections/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/netstandard1.0/System.Collections.dll", + "ref/netstandard1.0/System.Collections.xml", + "ref/netstandard1.0/de/System.Collections.xml", + "ref/netstandard1.0/es/System.Collections.xml", + "ref/netstandard1.0/fr/System.Collections.xml", + "ref/netstandard1.0/it/System.Collections.xml", + "ref/netstandard1.0/ja/System.Collections.xml", + "ref/netstandard1.0/ko/System.Collections.xml", + "ref/netstandard1.0/ru/System.Collections.xml", + "ref/netstandard1.0/zh-hans/System.Collections.xml", + "ref/netstandard1.0/zh-hant/System.Collections.xml", + "ref/netstandard1.3/System.Collections.dll", + "ref/netstandard1.3/System.Collections.xml", + "ref/netstandard1.3/de/System.Collections.xml", + "ref/netstandard1.3/es/System.Collections.xml", + "ref/netstandard1.3/fr/System.Collections.xml", + "ref/netstandard1.3/it/System.Collections.xml", + "ref/netstandard1.3/ja/System.Collections.xml", + "ref/netstandard1.3/ko/System.Collections.xml", + "ref/netstandard1.3/ru/System.Collections.xml", + "ref/netstandard1.3/zh-hans/System.Collections.xml", + "ref/netstandard1.3/zh-hant/System.Collections.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.4.3.0.nupkg.sha512", + "system.collections.nuspec" + ] + }, + "System.Collections.Immutable/1.6.0": { + "sha512": "+aL946rTSJyo4PqstwsVZ5RBfaxfkIx+nTMfpmaxzorqgifRJwndBZhXPWNWGJpys7cQ1/vCvilYN9ugM05JFA==", + "type": "package", + "path": "system.collections.immutable/1.6.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.0/System.Collections.Immutable.dll", + "lib/netstandard1.0/System.Collections.Immutable.xml", + "lib/netstandard1.3/System.Collections.Immutable.dll", + "lib/netstandard1.3/System.Collections.Immutable.xml", + "lib/netstandard2.0/System.Collections.Immutable.dll", + "lib/netstandard2.0/System.Collections.Immutable.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "system.collections.immutable.1.6.0.nupkg.sha512", + "system.collections.immutable.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, "System.ComponentModel.Annotations/5.0.0": { "sha512": "dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==", "type": "package", @@ -3113,6 +3774,74 @@ "version.txt" ] }, + "System.Diagnostics.Debug/4.3.0": { + "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "type": "package", + "path": "system.diagnostics.debug/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/System.Diagnostics.Debug.dll", + "ref/netstandard1.0/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/System.Diagnostics.Debug.dll", + "ref/netstandard1.3/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.debug.4.3.0.nupkg.sha512", + "system.diagnostics.debug.nuspec" + ] + }, "System.Diagnostics.EventLog/9.0.0": { "sha512": "qd01+AqPhbAG14KtdtIqFk+cxHQFZ/oqRSCoxU1F+Q6Kv0cl726sl7RzU9yLFGd4BUOKdN4XojXF0pQf/R6YeA==", "type": "package", @@ -3147,54 +3876,280 @@ "useSharedDesignerContext.txt" ] }, - "System.IO.Pipelines/8.0.0": { - "sha512": "FHNOatmUq0sqJOkTx+UF/9YK1f180cnW5FVqnQMvYUN0elp6wFzbtPSiqbo1/ru8ICp43JM1i7kKkk6GsNGHlA==", + "System.Globalization/4.3.0": { + "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", "type": "package", - "path": "system.io.pipelines/8.0.0", + "path": "system.globalization/4.3.0", "files": [ ".nupkg.metadata", ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/System.IO.Pipelines.targets", - "buildTransitive/net462/_._", - "buildTransitive/net6.0/_._", - "buildTransitive/netcoreapp2.0/System.IO.Pipelines.targets", - "lib/net462/System.IO.Pipelines.dll", - "lib/net462/System.IO.Pipelines.xml", - "lib/net6.0/System.IO.Pipelines.dll", - "lib/net6.0/System.IO.Pipelines.xml", - "lib/net7.0/System.IO.Pipelines.dll", - "lib/net7.0/System.IO.Pipelines.xml", - "lib/net8.0/System.IO.Pipelines.dll", - "lib/net8.0/System.IO.Pipelines.xml", - "lib/netstandard2.0/System.IO.Pipelines.dll", - "lib/netstandard2.0/System.IO.Pipelines.xml", - "system.io.pipelines.8.0.0.nupkg.sha512", - "system.io.pipelines.nuspec", - "useSharedDesignerContext.txt" + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/netstandard1.0/System.Globalization.dll", + "ref/netstandard1.0/System.Globalization.xml", + "ref/netstandard1.0/de/System.Globalization.xml", + "ref/netstandard1.0/es/System.Globalization.xml", + "ref/netstandard1.0/fr/System.Globalization.xml", + "ref/netstandard1.0/it/System.Globalization.xml", + "ref/netstandard1.0/ja/System.Globalization.xml", + "ref/netstandard1.0/ko/System.Globalization.xml", + "ref/netstandard1.0/ru/System.Globalization.xml", + "ref/netstandard1.0/zh-hans/System.Globalization.xml", + "ref/netstandard1.0/zh-hant/System.Globalization.xml", + "ref/netstandard1.3/System.Globalization.dll", + "ref/netstandard1.3/System.Globalization.xml", + "ref/netstandard1.3/de/System.Globalization.xml", + "ref/netstandard1.3/es/System.Globalization.xml", + "ref/netstandard1.3/fr/System.Globalization.xml", + "ref/netstandard1.3/it/System.Globalization.xml", + "ref/netstandard1.3/ja/System.Globalization.xml", + "ref/netstandard1.3/ko/System.Globalization.xml", + "ref/netstandard1.3/ru/System.Globalization.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.4.3.0.nupkg.sha512", + "system.globalization.nuspec" ] }, - "System.Reactive/6.0.1": { - "sha512": "rHaWtKDwCi9qJ3ObKo8LHPMuuwv33YbmQi7TcUK1C264V3MFnOr5Im7QgCTdLniztP3GJyeiSg5x8NqYJFqRmg==", + "System.IO/4.3.0": { + "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", "type": "package", - "path": "system.reactive/6.0.1", + "path": "system.io/4.3.0", "files": [ ".nupkg.metadata", ".signature.p7s", - "build/net6.0-windows10.0.19041/_._", - "build/net6.0/_._", - "buildTransitive/net6.0-windows10.0.19041/_._", - "buildTransitive/net6.0/_._", - "icon.png", - "lib/net472/System.Reactive.dll", - "lib/net472/System.Reactive.xml", - "lib/net6.0-windows10.0.19041/System.Reactive.dll", - "lib/net6.0-windows10.0.19041/System.Reactive.xml", - "lib/net6.0/System.Reactive.dll", - "lib/net6.0/System.Reactive.xml", - "lib/netstandard2.0/System.Reactive.dll", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.IO.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.IO.dll", + "ref/netcore50/System.IO.dll", + "ref/netcore50/System.IO.xml", + "ref/netcore50/de/System.IO.xml", + "ref/netcore50/es/System.IO.xml", + "ref/netcore50/fr/System.IO.xml", + "ref/netcore50/it/System.IO.xml", + "ref/netcore50/ja/System.IO.xml", + "ref/netcore50/ko/System.IO.xml", + "ref/netcore50/ru/System.IO.xml", + "ref/netcore50/zh-hans/System.IO.xml", + "ref/netcore50/zh-hant/System.IO.xml", + "ref/netstandard1.0/System.IO.dll", + "ref/netstandard1.0/System.IO.xml", + "ref/netstandard1.0/de/System.IO.xml", + "ref/netstandard1.0/es/System.IO.xml", + "ref/netstandard1.0/fr/System.IO.xml", + "ref/netstandard1.0/it/System.IO.xml", + "ref/netstandard1.0/ja/System.IO.xml", + "ref/netstandard1.0/ko/System.IO.xml", + "ref/netstandard1.0/ru/System.IO.xml", + "ref/netstandard1.0/zh-hans/System.IO.xml", + "ref/netstandard1.0/zh-hant/System.IO.xml", + "ref/netstandard1.3/System.IO.dll", + "ref/netstandard1.3/System.IO.xml", + "ref/netstandard1.3/de/System.IO.xml", + "ref/netstandard1.3/es/System.IO.xml", + "ref/netstandard1.3/fr/System.IO.xml", + "ref/netstandard1.3/it/System.IO.xml", + "ref/netstandard1.3/ja/System.IO.xml", + "ref/netstandard1.3/ko/System.IO.xml", + "ref/netstandard1.3/ru/System.IO.xml", + "ref/netstandard1.3/zh-hans/System.IO.xml", + "ref/netstandard1.3/zh-hant/System.IO.xml", + "ref/netstandard1.5/System.IO.dll", + "ref/netstandard1.5/System.IO.xml", + "ref/netstandard1.5/de/System.IO.xml", + "ref/netstandard1.5/es/System.IO.xml", + "ref/netstandard1.5/fr/System.IO.xml", + "ref/netstandard1.5/it/System.IO.xml", + "ref/netstandard1.5/ja/System.IO.xml", + "ref/netstandard1.5/ko/System.IO.xml", + "ref/netstandard1.5/ru/System.IO.xml", + "ref/netstandard1.5/zh-hans/System.IO.xml", + "ref/netstandard1.5/zh-hant/System.IO.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.4.3.0.nupkg.sha512", + "system.io.nuspec" + ] + }, + "System.IO.FileSystem/4.3.0": { + "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", + "type": "package", + "path": "system.io.filesystem/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.4.3.0.nupkg.sha512", + "system.io.filesystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", + "type": "package", + "path": "system.io.filesystem.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.primitives.4.3.0.nupkg.sha512", + "system.io.filesystem.primitives.nuspec" + ] + }, + "System.IO.Pipelines/8.0.0": { + "sha512": "FHNOatmUq0sqJOkTx+UF/9YK1f180cnW5FVqnQMvYUN0elp6wFzbtPSiqbo1/ru8ICp43JM1i7kKkk6GsNGHlA==", + "type": "package", + "path": "system.io.pipelines/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.IO.Pipelines.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.IO.Pipelines.targets", + "lib/net462/System.IO.Pipelines.dll", + "lib/net462/System.IO.Pipelines.xml", + "lib/net6.0/System.IO.Pipelines.dll", + "lib/net6.0/System.IO.Pipelines.xml", + "lib/net7.0/System.IO.Pipelines.dll", + "lib/net7.0/System.IO.Pipelines.xml", + "lib/net8.0/System.IO.Pipelines.dll", + "lib/net8.0/System.IO.Pipelines.xml", + "lib/netstandard2.0/System.IO.Pipelines.dll", + "lib/netstandard2.0/System.IO.Pipelines.xml", + "system.io.pipelines.8.0.0.nupkg.sha512", + "system.io.pipelines.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Reactive/6.0.1": { + "sha512": "rHaWtKDwCi9qJ3ObKo8LHPMuuwv33YbmQi7TcUK1C264V3MFnOr5Im7QgCTdLniztP3GJyeiSg5x8NqYJFqRmg==", + "type": "package", + "path": "system.reactive/6.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/net6.0-windows10.0.19041/_._", + "build/net6.0/_._", + "buildTransitive/net6.0-windows10.0.19041/_._", + "buildTransitive/net6.0/_._", + "icon.png", + "lib/net472/System.Reactive.dll", + "lib/net472/System.Reactive.xml", + "lib/net6.0-windows10.0.19041/System.Reactive.dll", + "lib/net6.0-windows10.0.19041/System.Reactive.xml", + "lib/net6.0/System.Reactive.dll", + "lib/net6.0/System.Reactive.xml", + "lib/netstandard2.0/System.Reactive.dll", "lib/netstandard2.0/System.Reactive.xml", "lib/uap10.0.18362/System.Reactive.dll", "lib/uap10.0.18362/System.Reactive.pri", @@ -3204,6 +4159,979 @@ "system.reactive.nuspec" ] }, + "System.Reflection/4.3.0": { + "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "type": "package", + "path": "system.reflection/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Reflection.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Reflection.dll", + "ref/netcore50/System.Reflection.dll", + "ref/netcore50/System.Reflection.xml", + "ref/netcore50/de/System.Reflection.xml", + "ref/netcore50/es/System.Reflection.xml", + "ref/netcore50/fr/System.Reflection.xml", + "ref/netcore50/it/System.Reflection.xml", + "ref/netcore50/ja/System.Reflection.xml", + "ref/netcore50/ko/System.Reflection.xml", + "ref/netcore50/ru/System.Reflection.xml", + "ref/netcore50/zh-hans/System.Reflection.xml", + "ref/netcore50/zh-hant/System.Reflection.xml", + "ref/netstandard1.0/System.Reflection.dll", + "ref/netstandard1.0/System.Reflection.xml", + "ref/netstandard1.0/de/System.Reflection.xml", + "ref/netstandard1.0/es/System.Reflection.xml", + "ref/netstandard1.0/fr/System.Reflection.xml", + "ref/netstandard1.0/it/System.Reflection.xml", + "ref/netstandard1.0/ja/System.Reflection.xml", + "ref/netstandard1.0/ko/System.Reflection.xml", + "ref/netstandard1.0/ru/System.Reflection.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.xml", + "ref/netstandard1.3/System.Reflection.dll", + "ref/netstandard1.3/System.Reflection.xml", + "ref/netstandard1.3/de/System.Reflection.xml", + "ref/netstandard1.3/es/System.Reflection.xml", + "ref/netstandard1.3/fr/System.Reflection.xml", + "ref/netstandard1.3/it/System.Reflection.xml", + "ref/netstandard1.3/ja/System.Reflection.xml", + "ref/netstandard1.3/ko/System.Reflection.xml", + "ref/netstandard1.3/ru/System.Reflection.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.xml", + "ref/netstandard1.5/System.Reflection.dll", + "ref/netstandard1.5/System.Reflection.xml", + "ref/netstandard1.5/de/System.Reflection.xml", + "ref/netstandard1.5/es/System.Reflection.xml", + "ref/netstandard1.5/fr/System.Reflection.xml", + "ref/netstandard1.5/it/System.Reflection.xml", + "ref/netstandard1.5/ja/System.Reflection.xml", + "ref/netstandard1.5/ko/System.Reflection.xml", + "ref/netstandard1.5/ru/System.Reflection.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.4.3.0.nupkg.sha512", + "system.reflection.nuspec" + ] + }, + "System.Reflection.Primitives/4.3.0": { + "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "type": "package", + "path": "system.reflection.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/netcore50/de/System.Reflection.Primitives.xml", + "ref/netcore50/es/System.Reflection.Primitives.xml", + "ref/netcore50/fr/System.Reflection.Primitives.xml", + "ref/netcore50/it/System.Reflection.Primitives.xml", + "ref/netcore50/ja/System.Reflection.Primitives.xml", + "ref/netcore50/ko/System.Reflection.Primitives.xml", + "ref/netcore50/ru/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hans/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hant/System.Reflection.Primitives.xml", + "ref/netstandard1.0/System.Reflection.Primitives.dll", + "ref/netstandard1.0/System.Reflection.Primitives.xml", + "ref/netstandard1.0/de/System.Reflection.Primitives.xml", + "ref/netstandard1.0/es/System.Reflection.Primitives.xml", + "ref/netstandard1.0/fr/System.Reflection.Primitives.xml", + "ref/netstandard1.0/it/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ja/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ko/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ru/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.primitives.4.3.0.nupkg.sha512", + "system.reflection.primitives.nuspec" + ] + }, + "System.Resources.ResourceManager/4.3.0": { + "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "type": "package", + "path": "system.resources.resourcemanager/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/netcore50/de/System.Resources.ResourceManager.xml", + "ref/netcore50/es/System.Resources.ResourceManager.xml", + "ref/netcore50/fr/System.Resources.ResourceManager.xml", + "ref/netcore50/it/System.Resources.ResourceManager.xml", + "ref/netcore50/ja/System.Resources.ResourceManager.xml", + "ref/netcore50/ko/System.Resources.ResourceManager.xml", + "ref/netcore50/ru/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/System.Resources.ResourceManager.dll", + "ref/netstandard1.0/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/de/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/es/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/it/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.resources.resourcemanager.4.3.0.nupkg.sha512", + "system.resources.resourcemanager.nuspec" + ] + }, + "System.Runtime/4.3.0": { + "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "type": "package", + "path": "system.runtime/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.dll", + "lib/portable-net45+win8+wp80+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.dll", + "ref/netcore50/System.Runtime.dll", + "ref/netcore50/System.Runtime.xml", + "ref/netcore50/de/System.Runtime.xml", + "ref/netcore50/es/System.Runtime.xml", + "ref/netcore50/fr/System.Runtime.xml", + "ref/netcore50/it/System.Runtime.xml", + "ref/netcore50/ja/System.Runtime.xml", + "ref/netcore50/ko/System.Runtime.xml", + "ref/netcore50/ru/System.Runtime.xml", + "ref/netcore50/zh-hans/System.Runtime.xml", + "ref/netcore50/zh-hant/System.Runtime.xml", + "ref/netstandard1.0/System.Runtime.dll", + "ref/netstandard1.0/System.Runtime.xml", + "ref/netstandard1.0/de/System.Runtime.xml", + "ref/netstandard1.0/es/System.Runtime.xml", + "ref/netstandard1.0/fr/System.Runtime.xml", + "ref/netstandard1.0/it/System.Runtime.xml", + "ref/netstandard1.0/ja/System.Runtime.xml", + "ref/netstandard1.0/ko/System.Runtime.xml", + "ref/netstandard1.0/ru/System.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.xml", + "ref/netstandard1.2/System.Runtime.dll", + "ref/netstandard1.2/System.Runtime.xml", + "ref/netstandard1.2/de/System.Runtime.xml", + "ref/netstandard1.2/es/System.Runtime.xml", + "ref/netstandard1.2/fr/System.Runtime.xml", + "ref/netstandard1.2/it/System.Runtime.xml", + "ref/netstandard1.2/ja/System.Runtime.xml", + "ref/netstandard1.2/ko/System.Runtime.xml", + "ref/netstandard1.2/ru/System.Runtime.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.xml", + "ref/netstandard1.3/System.Runtime.dll", + "ref/netstandard1.3/System.Runtime.xml", + "ref/netstandard1.3/de/System.Runtime.xml", + "ref/netstandard1.3/es/System.Runtime.xml", + "ref/netstandard1.3/fr/System.Runtime.xml", + "ref/netstandard1.3/it/System.Runtime.xml", + "ref/netstandard1.3/ja/System.Runtime.xml", + "ref/netstandard1.3/ko/System.Runtime.xml", + "ref/netstandard1.3/ru/System.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.xml", + "ref/netstandard1.5/System.Runtime.dll", + "ref/netstandard1.5/System.Runtime.xml", + "ref/netstandard1.5/de/System.Runtime.xml", + "ref/netstandard1.5/es/System.Runtime.xml", + "ref/netstandard1.5/fr/System.Runtime.xml", + "ref/netstandard1.5/it/System.Runtime.xml", + "ref/netstandard1.5/ja/System.Runtime.xml", + "ref/netstandard1.5/ko/System.Runtime.xml", + "ref/netstandard1.5/ru/System.Runtime.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.xml", + "ref/portable-net45+win8+wp80+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.4.3.0.nupkg.sha512", + "system.runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.3.0": { + "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "type": "package", + "path": "system.runtime.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.xml", + "ref/netcore50/de/System.Runtime.Extensions.xml", + "ref/netcore50/es/System.Runtime.Extensions.xml", + "ref/netcore50/fr/System.Runtime.Extensions.xml", + "ref/netcore50/it/System.Runtime.Extensions.xml", + "ref/netcore50/ja/System.Runtime.Extensions.xml", + "ref/netcore50/ko/System.Runtime.Extensions.xml", + "ref/netcore50/ru/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.0/System.Runtime.Extensions.dll", + "ref/netstandard1.0/System.Runtime.Extensions.xml", + "ref/netstandard1.0/de/System.Runtime.Extensions.xml", + "ref/netstandard1.0/es/System.Runtime.Extensions.xml", + "ref/netstandard1.0/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.0/it/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.3/System.Runtime.Extensions.dll", + "ref/netstandard1.3/System.Runtime.Extensions.xml", + "ref/netstandard1.3/de/System.Runtime.Extensions.xml", + "ref/netstandard1.3/es/System.Runtime.Extensions.xml", + "ref/netstandard1.3/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.3/it/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.5/System.Runtime.Extensions.dll", + "ref/netstandard1.5/System.Runtime.Extensions.xml", + "ref/netstandard1.5/de/System.Runtime.Extensions.xml", + "ref/netstandard1.5/es/System.Runtime.Extensions.xml", + "ref/netstandard1.5/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.5/it/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.extensions.4.3.0.nupkg.sha512", + "system.runtime.extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.3.0": { + "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "type": "package", + "path": "system.runtime.handles/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/netstandard1.3/System.Runtime.Handles.dll", + "ref/netstandard1.3/System.Runtime.Handles.xml", + "ref/netstandard1.3/de/System.Runtime.Handles.xml", + "ref/netstandard1.3/es/System.Runtime.Handles.xml", + "ref/netstandard1.3/fr/System.Runtime.Handles.xml", + "ref/netstandard1.3/it/System.Runtime.Handles.xml", + "ref/netstandard1.3/ja/System.Runtime.Handles.xml", + "ref/netstandard1.3/ko/System.Runtime.Handles.xml", + "ref/netstandard1.3/ru/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.handles.4.3.0.nupkg.sha512", + "system.runtime.handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.3.0": { + "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "type": "package", + "path": "system.runtime.interopservices/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.InteropServices.dll", + "lib/net463/System.Runtime.InteropServices.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.InteropServices.dll", + "ref/net463/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.xml", + "ref/netcore50/de/System.Runtime.InteropServices.xml", + "ref/netcore50/es/System.Runtime.InteropServices.xml", + "ref/netcore50/fr/System.Runtime.InteropServices.xml", + "ref/netcore50/it/System.Runtime.InteropServices.xml", + "ref/netcore50/ja/System.Runtime.InteropServices.xml", + "ref/netcore50/ko/System.Runtime.InteropServices.xml", + "ref/netcore50/ru/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml", + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/System.Runtime.InteropServices.dll", + "ref/netstandard1.2/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/System.Runtime.InteropServices.dll", + "ref/netstandard1.3/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/System.Runtime.InteropServices.dll", + "ref/netstandard1.5/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.interopservices.4.3.0.nupkg.sha512", + "system.runtime.interopservices.nuspec" + ] + }, + "System.Text.Encoding/4.3.0": { + "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "type": "package", + "path": "system.text.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.dll", + "ref/netcore50/System.Text.Encoding.xml", + "ref/netcore50/de/System.Text.Encoding.xml", + "ref/netcore50/es/System.Text.Encoding.xml", + "ref/netcore50/fr/System.Text.Encoding.xml", + "ref/netcore50/it/System.Text.Encoding.xml", + "ref/netcore50/ja/System.Text.Encoding.xml", + "ref/netcore50/ko/System.Text.Encoding.xml", + "ref/netcore50/ru/System.Text.Encoding.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.0/System.Text.Encoding.dll", + "ref/netstandard1.0/System.Text.Encoding.xml", + "ref/netstandard1.0/de/System.Text.Encoding.xml", + "ref/netstandard1.0/es/System.Text.Encoding.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.xml", + "ref/netstandard1.0/it/System.Text.Encoding.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.3/System.Text.Encoding.dll", + "ref/netstandard1.3/System.Text.Encoding.xml", + "ref/netstandard1.3/de/System.Text.Encoding.xml", + "ref/netstandard1.3/es/System.Text.Encoding.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.xml", + "ref/netstandard1.3/it/System.Text.Encoding.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.4.3.0.nupkg.sha512", + "system.text.encoding.nuspec" + ] + }, + "System.Text.Encoding.Extensions/4.3.0": { + "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", + "type": "package", + "path": "system.text.encoding.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.Extensions.dll", + "ref/netcore50/System.Text.Encoding.Extensions.xml", + "ref/netcore50/de/System.Text.Encoding.Extensions.xml", + "ref/netcore50/es/System.Text.Encoding.Extensions.xml", + "ref/netcore50/fr/System.Text.Encoding.Extensions.xml", + "ref/netcore50/it/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ja/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ko/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ru/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.0/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.3/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.extensions.4.3.0.nupkg.sha512", + "system.text.encoding.extensions.nuspec" + ] + }, + "System.Text.Json/8.0.5": { + "sha512": "0f1B50Ss7rqxXiaBJyzUu9bWFOO2/zSlifZ/UNMdiIpDYe4cY4LQQicP4nirK1OS31I43rn062UIJ1Q9bpmHpg==", + "type": "package", + "path": "system.text.json/8.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "buildTransitive/net461/System.Text.Json.targets", + "buildTransitive/net462/System.Text.Json.targets", + "buildTransitive/net6.0/System.Text.Json.targets", + "buildTransitive/netcoreapp2.0/System.Text.Json.targets", + "buildTransitive/netstandard2.0/System.Text.Json.targets", + "lib/net462/System.Text.Json.dll", + "lib/net462/System.Text.Json.xml", + "lib/net6.0/System.Text.Json.dll", + "lib/net6.0/System.Text.Json.xml", + "lib/net7.0/System.Text.Json.dll", + "lib/net7.0/System.Text.Json.xml", + "lib/net8.0/System.Text.Json.dll", + "lib/net8.0/System.Text.Json.xml", + "lib/netstandard2.0/System.Text.Json.dll", + "lib/netstandard2.0/System.Text.Json.xml", + "system.text.json.8.0.5.nupkg.sha512", + "system.text.json.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Text.RegularExpressions/4.3.0": { + "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", + "type": "package", + "path": "system.text.regularexpressions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Text.RegularExpressions.dll", + "lib/netcore50/System.Text.RegularExpressions.dll", + "lib/netstandard1.6/System.Text.RegularExpressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.xml", + "ref/netcore50/de/System.Text.RegularExpressions.xml", + "ref/netcore50/es/System.Text.RegularExpressions.xml", + "ref/netcore50/fr/System.Text.RegularExpressions.xml", + "ref/netcore50/it/System.Text.RegularExpressions.xml", + "ref/netcore50/ja/System.Text.RegularExpressions.xml", + "ref/netcore50/ko/System.Text.RegularExpressions.xml", + "ref/netcore50/ru/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml", + "ref/netcoreapp1.1/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/System.Text.RegularExpressions.dll", + "ref/netstandard1.3/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/System.Text.RegularExpressions.dll", + "ref/netstandard1.6/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.regularexpressions.4.3.0.nupkg.sha512", + "system.text.regularexpressions.nuspec" + ] + }, + "System.Threading.Tasks/4.3.0": { + "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "type": "package", + "path": "system.threading.tasks/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.Tasks.dll", + "ref/netcore50/System.Threading.Tasks.xml", + "ref/netcore50/de/System.Threading.Tasks.xml", + "ref/netcore50/es/System.Threading.Tasks.xml", + "ref/netcore50/fr/System.Threading.Tasks.xml", + "ref/netcore50/it/System.Threading.Tasks.xml", + "ref/netcore50/ja/System.Threading.Tasks.xml", + "ref/netcore50/ko/System.Threading.Tasks.xml", + "ref/netcore50/ru/System.Threading.Tasks.xml", + "ref/netcore50/zh-hans/System.Threading.Tasks.xml", + "ref/netcore50/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.0/System.Threading.Tasks.dll", + "ref/netstandard1.0/System.Threading.Tasks.xml", + "ref/netstandard1.0/de/System.Threading.Tasks.xml", + "ref/netstandard1.0/es/System.Threading.Tasks.xml", + "ref/netstandard1.0/fr/System.Threading.Tasks.xml", + "ref/netstandard1.0/it/System.Threading.Tasks.xml", + "ref/netstandard1.0/ja/System.Threading.Tasks.xml", + "ref/netstandard1.0/ko/System.Threading.Tasks.xml", + "ref/netstandard1.0/ru/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.3/System.Threading.Tasks.dll", + "ref/netstandard1.3/System.Threading.Tasks.xml", + "ref/netstandard1.3/de/System.Threading.Tasks.xml", + "ref/netstandard1.3/es/System.Threading.Tasks.xml", + "ref/netstandard1.3/fr/System.Threading.Tasks.xml", + "ref/netstandard1.3/it/System.Threading.Tasks.xml", + "ref/netstandard1.3/ja/System.Threading.Tasks.xml", + "ref/netstandard1.3/ko/System.Threading.Tasks.xml", + "ref/netstandard1.3/ru/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.4.3.0.nupkg.sha512", + "system.threading.tasks.nuspec" + ] + }, + "System.Threading.Tasks.Extensions/4.3.0": { + "sha512": "npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==", + "type": "package", + "path": "system.threading.tasks.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml", + "system.threading.tasks.extensions.4.3.0.nupkg.sha512", + "system.threading.tasks.extensions.nuspec" + ] + }, + "System.Xml.ReaderWriter/4.3.1": { + "sha512": "fVU1Xp9TEOHv1neQDtcJ4hNfYJ1pjfXzKY3VFeiRZK6HTV4Af2Ihyvq1FkPLrL1hzZhXv7NTmowQnL5DgTzIKA==", + "type": "package", + "path": "system.xml.readerwriter/4.3.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.Xml.ReaderWriter.dll", + "lib/netcore50/System.Xml.ReaderWriter.dll", + "lib/netstandard1.3/System.Xml.ReaderWriter.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.xml", + "ref/netcore50/de/System.Xml.ReaderWriter.xml", + "ref/netcore50/es/System.Xml.ReaderWriter.xml", + "ref/netcore50/fr/System.Xml.ReaderWriter.xml", + "ref/netcore50/it/System.Xml.ReaderWriter.xml", + "ref/netcore50/ja/System.Xml.ReaderWriter.xml", + "ref/netcore50/ko/System.Xml.ReaderWriter.xml", + "ref/netcore50/ru/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/System.Xml.ReaderWriter.dll", + "ref/netstandard1.0/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/System.Xml.ReaderWriter.dll", + "ref/netstandard1.3/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.readerwriter.4.3.1.nupkg.sha512", + "system.xml.readerwriter.nuspec" + ] + }, + "TextMateSharp/1.0.65": { + "sha512": "vwIPl5efIkYtVp+rewrn81Pjs3Vz0RbKJcjDjuRK/YUKsSMEADm4zVFnIWRrGe8LbM0ATpphwMr3G62PBOTrHA==", + "type": "package", + "path": "textmatesharp/1.0.65", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/TextMateSharp.dll", + "textmatesharp.1.0.65.nupkg.sha512", + "textmatesharp.nuspec" + ] + }, + "TextMateSharp.Grammars/1.0.65": { + "sha512": "ga+Uz5iyb75nuQY9hmALiWdeMkFZknJKrIvVDCrI3iZ0Ff9+tk0CqRKr0/KVR/Gg7MEY21cCtMYUbkBVczdwBA==", + "type": "package", + "path": "textmatesharp.grammars/1.0.65", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/TextMateSharp.Grammars.dll", + "textmatesharp.grammars.1.0.65.nupkg.sha512", + "textmatesharp.grammars.nuspec" + ] + }, "Tmds.DBus.Protocol/0.21.2": { "sha512": "ScSMrUrrw8px4kK1Glh0fZv/HQUlg1078bNXNPfRPKQ3WbRzV9HpsydYEOgSoMK5LWICMf2bMwIFH0pGjxjcMA==", "type": "package", @@ -3228,6 +5156,9 @@ "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", @@ -3315,6 +5246,18 @@ "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, )" diff --git a/obj/project.nuget.cache b/obj/project.nuget.cache index a33eaf7..2f0feaf 100644 --- a/obj/project.nuget.cache +++ b/obj/project.nuget.cache @@ -1,11 +1,12 @@ { "version": 2, - "dgSpecHash": "jWmi64xCcZA=", + "dgSpecHash": "GqmepY5QBuE=", "success": true, "projectFilePath": "D:\\Log\\MyAvaloniaApp\\MyAvaloniaApp.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", + "C:\\Users\\changeself\\.nuget\\packages\\avalonia.avaloniaedit\\11.3.0\\avalonia.avaloniaedit.11.3.0.nupkg.sha512", "C:\\Users\\changeself\\.nuget\\packages\\avalonia.buildservices\\11.3.1\\avalonia.buildservices.11.3.1.nupkg.sha512", "C:\\Users\\changeself\\.nuget\\packages\\avalonia.controls.colorpicker\\11.3.6\\avalonia.controls.colorpicker.11.3.6.nupkg.sha512", "C:\\Users\\changeself\\.nuget\\packages\\avalonia.desktop\\11.3.7\\avalonia.desktop.11.3.7.nupkg.sha512", @@ -20,6 +21,9 @@ "C:\\Users\\changeself\\.nuget\\packages\\avalonia.themes.simple\\11.3.6\\avalonia.themes.simple.11.3.6.nupkg.sha512", "C:\\Users\\changeself\\.nuget\\packages\\avalonia.win32\\11.3.7\\avalonia.win32.11.3.7.nupkg.sha512", "C:\\Users\\changeself\\.nuget\\packages\\avalonia.x11\\11.3.7\\avalonia.x11.11.3.7.nupkg.sha512", + "C:\\Users\\changeself\\.nuget\\packages\\avaloniaedit\\0.10.12\\avaloniaedit.0.10.12.nupkg.sha512", + "C:\\Users\\changeself\\.nuget\\packages\\avaloniaedit.textmate\\11.3.0\\avaloniaedit.textmate.11.3.0.nupkg.sha512", + "C:\\Users\\changeself\\.nuget\\packages\\dialoghost.avalonia\\0.9.3\\dialoghost.avalonia.0.9.3.nupkg.sha512", "C:\\Users\\changeself\\.nuget\\packages\\dynamicdata\\8.4.1\\dynamicdata.8.4.1.nupkg.sha512", "C:\\Users\\changeself\\.nuget\\packages\\harfbuzzsharp\\8.3.1.1\\harfbuzzsharp.8.3.1.1.nupkg.sha512", "C:\\Users\\changeself\\.nuget\\packages\\harfbuzzsharp.nativeassets.linux\\8.3.1.1\\harfbuzzsharp.nativeassets.linux.8.3.1.1.nupkg.sha512", @@ -55,6 +59,9 @@ "C:\\Users\\changeself\\.nuget\\packages\\microsoft.extensions.options\\9.0.0\\microsoft.extensions.options.9.0.0.nupkg.sha512", "C:\\Users\\changeself\\.nuget\\packages\\microsoft.extensions.options.configurationextensions\\9.0.0\\microsoft.extensions.options.configurationextensions.9.0.0.nupkg.sha512", "C:\\Users\\changeself\\.nuget\\packages\\microsoft.extensions.primitives\\9.0.0\\microsoft.extensions.primitives.9.0.0.nupkg.sha512", + "C:\\Users\\changeself\\.nuget\\packages\\microsoft.netcore.platforms\\1.1.0\\microsoft.netcore.platforms.1.1.0.nupkg.sha512", + "C:\\Users\\changeself\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512", + "C:\\Users\\changeself\\.nuget\\packages\\onigwrap\\1.0.6\\onigwrap.1.0.6.nupkg.sha512", "C:\\Users\\changeself\\.nuget\\packages\\reactiveui\\20.1.1\\reactiveui.20.1.1.nupkg.sha512", "C:\\Users\\changeself\\.nuget\\packages\\skiasharp\\2.88.9\\skiasharp.2.88.9.nupkg.sha512", "C:\\Users\\changeself\\.nuget\\packages\\skiasharp.nativeassets.linux\\2.88.9\\skiasharp.nativeassets.linux.2.88.9.nupkg.sha512", @@ -62,10 +69,33 @@ "C:\\Users\\changeself\\.nuget\\packages\\skiasharp.nativeassets.webassembly\\2.88.9\\skiasharp.nativeassets.webassembly.2.88.9.nupkg.sha512", "C:\\Users\\changeself\\.nuget\\packages\\skiasharp.nativeassets.win32\\2.88.9\\skiasharp.nativeassets.win32.2.88.9.nupkg.sha512", "C:\\Users\\changeself\\.nuget\\packages\\splat\\15.1.1\\splat.15.1.1.nupkg.sha512", + "C:\\Users\\changeself\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512", + "C:\\Users\\changeself\\.nuget\\packages\\system.collections.immutable\\1.6.0\\system.collections.immutable.1.6.0.nupkg.sha512", "C:\\Users\\changeself\\.nuget\\packages\\system.componentmodel.annotations\\5.0.0\\system.componentmodel.annotations.5.0.0.nupkg.sha512", + "C:\\Users\\changeself\\.nuget\\packages\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512", "C:\\Users\\changeself\\.nuget\\packages\\system.diagnostics.eventlog\\9.0.0\\system.diagnostics.eventlog.9.0.0.nupkg.sha512", + "C:\\Users\\changeself\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512", + "C:\\Users\\changeself\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512", + "C:\\Users\\changeself\\.nuget\\packages\\system.io.filesystem\\4.3.0\\system.io.filesystem.4.3.0.nupkg.sha512", + "C:\\Users\\changeself\\.nuget\\packages\\system.io.filesystem.primitives\\4.3.0\\system.io.filesystem.primitives.4.3.0.nupkg.sha512", "C:\\Users\\changeself\\.nuget\\packages\\system.io.pipelines\\8.0.0\\system.io.pipelines.8.0.0.nupkg.sha512", "C:\\Users\\changeself\\.nuget\\packages\\system.reactive\\6.0.1\\system.reactive.6.0.1.nupkg.sha512", + "C:\\Users\\changeself\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512", + "C:\\Users\\changeself\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\changeself\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512", + "C:\\Users\\changeself\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512", + "C:\\Users\\changeself\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\changeself\\.nuget\\packages\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512", + "C:\\Users\\changeself\\.nuget\\packages\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512", + "C:\\Users\\changeself\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", + "C:\\Users\\changeself\\.nuget\\packages\\system.text.encoding.extensions\\4.3.0\\system.text.encoding.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\changeself\\.nuget\\packages\\system.text.json\\8.0.5\\system.text.json.8.0.5.nupkg.sha512", + "C:\\Users\\changeself\\.nuget\\packages\\system.text.regularexpressions\\4.3.0\\system.text.regularexpressions.4.3.0.nupkg.sha512", + "C:\\Users\\changeself\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512", + "C:\\Users\\changeself\\.nuget\\packages\\system.threading.tasks.extensions\\4.3.0\\system.threading.tasks.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\changeself\\.nuget\\packages\\system.xml.readerwriter\\4.3.1\\system.xml.readerwriter.4.3.1.nupkg.sha512", + "C:\\Users\\changeself\\.nuget\\packages\\textmatesharp\\1.0.65\\textmatesharp.1.0.65.nupkg.sha512", + "C:\\Users\\changeself\\.nuget\\packages\\textmatesharp.grammars\\1.0.65\\textmatesharp.grammars.1.0.65.nupkg.sha512", "C:\\Users\\changeself\\.nuget\\packages\\tmds.dbus.protocol\\0.21.2\\tmds.dbus.protocol.0.21.2.nupkg.sha512" ], "logs": [] diff --git a/publish/linux-x64/MyAvaloniaApp.deps.json b/publish/linux-x64/MyAvaloniaApp.deps.json index 8e00c18..262735b 100644 --- a/publish/linux-x64/MyAvaloniaApp.deps.json +++ b/publish/linux-x64/MyAvaloniaApp.deps.json @@ -15,6 +15,7 @@ "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", @@ -990,6 +991,17 @@ "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": { @@ -1599,6 +1611,13 @@ "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, diff --git a/publish/linux-x64/MyAvaloniaApp.dll b/publish/linux-x64/MyAvaloniaApp.dll index 54c85be..8e0ef90 100644 Binary files a/publish/linux-x64/MyAvaloniaApp.dll and b/publish/linux-x64/MyAvaloniaApp.dll differ diff --git a/publish/linux-x64/MyAvaloniaApp.pdb b/publish/linux-x64/MyAvaloniaApp.pdb index 8901009..cec9349 100644 Binary files a/publish/linux-x64/MyAvaloniaApp.pdb and b/publish/linux-x64/MyAvaloniaApp.pdb differ