feat: added AvaloniaEdit for the text editor with basic highlight an line count, better "about" dialog and adde textmate

This commit is contained in:
2026-04-09 17:09:01 +02:00
parent d6d621dc92
commit cbf0891ba4
51 changed files with 564 additions and 17 deletions

View File

@ -13,7 +13,7 @@ using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("GsaEditor.Core")]
[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+d6d621dc92b3083d8e47827baa0ccf59d5b0a4c4")]
[assembly: System.Reflection.AssemblyProductAttribute("GsaEditor.Core")]
[assembly: System.Reflection.AssemblyTitleAttribute("GsaEditor.Core")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]

View File

@ -1 +1 @@
68387796343863a0e5c11cd0f612a1b364816551cf5816c6d556d410439a3710
27416b735d6b5e6056e4f76966d345ebebb5a18e412e4170cdbcf381f9ab7092

View File

@ -5,5 +5,6 @@
<Application.Styles>
<FluentTheme />
<StyleInclude Source="avares://AvaloniaEdit/Themes/Fluent/AvaloniaEdit.xaml"/>
</Application.Styles>
</Application>

View File

@ -23,6 +23,8 @@
<PrivateAssets Condition="'$(Configuration)' != 'Debug'">All</PrivateAssets>
</PackageReference>
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.2.1"/>
<PackageReference Include="Avalonia.AvaloniaEdit" Version="11.3.0"/>
<PackageReference Include="AvaloniaEdit.TextMate" Version="11.3.0"/>
</ItemGroup>
<ItemGroup>

View File

@ -1,4 +1,5 @@
using System.Collections.ObjectModel;
using System.Reflection;
using System.Text;
using Avalonia.Controls;
using Avalonia.Media.Imaging;
@ -627,14 +628,24 @@ public partial class MainWindowViewModel : ViewModelBase
[RelayCommand]
private void SaveEdit()
{
if (SelectedNode?.Entry == null || PreviewText == null) return;
if (SelectedNode?.Entry == null) return;
// Get the current text from the AvaloniaEdit editor via the window
string? editorText = null;
if (_window is GsaEditor.Views.MainWindow mainWindow)
{
editorText = mainWindow.GetEditorText();
}
if (editorText == null) editorText = PreviewText ?? string.Empty;
var entry = SelectedNode.Entry;
var newData = Encoding.UTF8.GetBytes(PreviewText);
var newData = Encoding.UTF8.GetBytes(editorText);
entry.SetData(newData, entry.IsCompressed);
IsDirty = true;
IsEditingText = false;
PreviewText = editorText;
var entryVm = new EntryViewModel(entry);
entryVm.OnModified = () => { IsDirty = true; NotifyStatusChanged(); };
@ -660,8 +671,17 @@ public partial class MainWindowViewModel : ViewModelBase
private async Task ShowAbout()
{
if (_window == null) return;
var appVersion = Assembly.GetExecutingAssembly().GetName().Version;
var versionStr = appVersion != null ? $"{appVersion.Major}.{appVersion.Minor}.{appVersion.Build}" : "1.0.0";
var avaloniaVersion = typeof(Avalonia.Application).Assembly.GetName().Version;
var avaloniaStr = avaloniaVersion != null ? $"{avaloniaVersion.Major}.{avaloniaVersion.Minor}.{avaloniaVersion.Build}" : "unknown";
await Dialogs.ShowMessageAsync(_window, "About GsaEditor",
"GsaEditor v1.0\n\nGSA Archive Viewer & Editor\nBuilt with Avalonia UI");
$"GsaEditor v{versionStr}\n\n" +
$"GSA Archive Viewer & Editor\n" +
$"By Develter Innovation (Nicolas RACOT)\n\n" +
$"Built with Avalonia UI v{avaloniaStr}");
}
// =========================================================================

View File

@ -3,6 +3,7 @@
xmlns:vm="using:GsaEditor.ViewModels"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:aedit="https://github.com/avaloniaui/avaloniaedit"
mc:Ignorable="d" d:DesignWidth="1100" d:DesignHeight="700"
x:Class="GsaEditor.Views.MainWindow"
x:CompileBindings="False"
@ -199,12 +200,11 @@
<Button Content="Cancel" Command="{Binding CancelEditCommand}"
IsVisible="{Binding IsEditingText}"/>
</StackPanel>
<TextBox Text="{Binding PreviewText, Mode=TwoWay}"
<aedit:TextEditor Name="TextEditor"
IsReadOnly="{Binding !IsEditingText}"
FontFamily="Consolas, Courier New, monospace"
FontSize="13"
AcceptsReturn="True"
TextWrapping="NoWrap"
ShowLineNumbers="True"
Margin="10,0,10,10"/>
</DockPanel>

View File

@ -1,16 +1,31 @@
using System.ComponentModel;
using Avalonia.Controls;
using Avalonia.Interactivity;
using AvaloniaEdit;
using AvaloniaEdit.TextMate;
using GsaEditor.ViewModels;
using TextMateSharp.Grammars;
namespace GsaEditor.Views;
public partial class MainWindow : Window
{
private bool _forceClose;
private TextEditor? _textEditor;
private TextMate.Installation? _textMateInstall;
private readonly RegistryOptions _registryOptions;
public MainWindow()
{
InitializeComponent();
_registryOptions = new RegistryOptions(ThemeName.DarkPlus);
_textEditor = this.FindControl<TextEditor>("TextEditor");
if (_textEditor != null)
{
_textMateInstall = _textEditor.InstallTextMate(_registryOptions);
}
}
protected override void OnLoaded(RoutedEventArgs e)
@ -20,9 +35,59 @@ public partial class MainWindow : Window
if (DataContext is MainWindowViewModel vm)
{
vm.SetWindow(this);
vm.PropertyChanged += ViewModel_PropertyChanged;
}
}
private void ViewModel_PropertyChanged(object? sender, PropertyChangedEventArgs e)
{
if (sender is not MainWindowViewModel vm) return;
if (e.PropertyName == nameof(MainWindowViewModel.PreviewText))
{
if (_textEditor != null && vm.PreviewText != null)
{
_textEditor.Text = vm.PreviewText;
}
else if (_textEditor != null)
{
_textEditor.Text = string.Empty;
}
}
if (e.PropertyName == nameof(MainWindowViewModel.SelectedEntry))
{
ApplySyntaxHighlighting(vm);
}
}
private void ApplySyntaxHighlighting(MainWindowViewModel vm)
{
if (_textMateInstall == null || vm.SelectedEntry == null) return;
var alias = vm.SelectedEntry.Alias;
var ext = System.IO.Path.GetExtension(alias).ToLowerInvariant();
// Map file extension to a TextMate language scope
var language = _registryOptions.GetLanguageByExtension(ext);
if (language != null)
{
_textMateInstall.SetGrammar(_registryOptions.GetScopeByLanguageId(language.Id));
}
else
{
_textMateInstall.SetGrammar(null);
}
}
/// <summary>
/// Called by the ViewModel to retrieve the current text from the editor.
/// </summary>
public string? GetEditorText()
{
return _textEditor?.Text;
}
private void TreeView_SelectionChanged(object? sender, SelectionChangedEventArgs e)
{
if (DataContext is MainWindowViewModel vm && sender is TreeView tree)

Binary file not shown.

Binary file not shown.

View File

@ -9,10 +9,12 @@
"GsaEditor/1.0.0": {
"dependencies": {
"Avalonia": "11.3.6",
"Avalonia.AvaloniaEdit": "11.3.0",
"Avalonia.Desktop": "11.3.6",
"Avalonia.Diagnostics": "11.3.6",
"Avalonia.Fonts.Inter": "11.3.6",
"Avalonia.Themes.Fluent": "11.3.6",
"AvaloniaEdit.TextMate": "11.3.0",
"CommunityToolkit.Mvvm": "8.2.1",
"GsaEditor.Core": "1.0.0"
},
@ -92,6 +94,17 @@
}
}
},
"Avalonia.AvaloniaEdit/11.3.0": {
"dependencies": {
"Avalonia": "11.3.6"
},
"runtime": {
"lib/net6.0/AvaloniaEdit.dll": {
"assemblyVersion": "11.3.0.0",
"fileVersion": "11.3.0.0"
}
}
},
"Avalonia.BuildServices/0.0.31": {},
"Avalonia.Controls.ColorPicker/11.3.6": {
"dependencies": {
@ -250,6 +263,20 @@
}
}
},
"AvaloniaEdit.TextMate/11.3.0": {
"dependencies": {
"Avalonia": "11.3.6",
"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"
}
}
},
"CommunityToolkit.Mvvm/8.2.1": {
"runtime": {
"lib/net6.0/CommunityToolkit.Mvvm.dll": {
@ -366,6 +393,56 @@
}
}
},
"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"
}
}
},
"SkiaSharp/2.88.9": {
"dependencies": {
"SkiaSharp.NativeAssets.Win32": "2.88.9",
@ -442,6 +519,31 @@
}
}
},
"System.Text.Json/8.0.5": {},
"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"
@ -483,6 +585,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/0.0.31": {
"type": "package",
"serviceable": true,
@ -574,6 +683,13 @@
"path": "avalonia.x11/11.3.6",
"hashPath": "avalonia.x11.11.3.6.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"
},
"CommunityToolkit.Mvvm/8.2.1": {
"type": "package",
"serviceable": true,
@ -623,6 +739,13 @@
"path": "microcom.runtime/0.11.0",
"hashPath": "microcom.runtime.0.11.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"
},
"SkiaSharp/2.88.9": {
"type": "package",
"serviceable": true,
@ -665,6 +788,27 @@
"path": "system.io.pipelines/8.0.0",
"hashPath": "system.io.pipelines.8.0.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"
},
"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,

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -1 +1 @@
d782e1ffb99673442429186864c017bcdb48edf4276c6d693cf9b041bd93aabd
aada552c8fd51710edc7ad0d0c49003781116f6ee0520c030a54982aadcd9736

View File

@ -22,6 +22,8 @@ C:\Users\simulateur\.nuget\packages\avalonia\11.3.6\ref\net8.0\Avalonia.Vulkan.d
C:\Users\simulateur\.nuget\packages\avalonia.win32\11.3.6\lib\net8.0\Avalonia.Win32.Automation.dll
C:\Users\simulateur\.nuget\packages\avalonia.win32\11.3.6\lib\net8.0\Avalonia.Win32.dll
C:\Users\simulateur\.nuget\packages\avalonia.x11\11.3.6\lib\net8.0\Avalonia.X11.dll
C:\Users\simulateur\.nuget\packages\avalonia.avaloniaedit\11.3.0\lib\net6.0\AvaloniaEdit.dll
C:\Users\simulateur\.nuget\packages\avaloniaedit.textmate\11.3.0\lib\net6.0\AvaloniaEdit.TextMate.dll
C:\Users\simulateur\.nuget\packages\communitytoolkit.mvvm\8.2.1\lib\net6.0\CommunityToolkit.Mvvm.dll
C:\Users\simulateur\Desktop\GsaViewer\GsaEditor.Core\obj\Debug\net8.0\ref\GsaEditor.Core.dll
C:\Users\simulateur\.nuget\packages\harfbuzzsharp\8.3.1.1\lib\net8.0\HarfBuzzSharp.dll
@ -33,6 +35,7 @@ C:\Users\simulateur\.nuget\packages\microsoft.netcore.app.ref\8.0.21\ref\net8.0\
C:\Users\simulateur\.nuget\packages\microsoft.netcore.app.ref\8.0.21\ref\net8.0\Microsoft.Win32.Registry.dll
C:\Users\simulateur\.nuget\packages\microsoft.netcore.app.ref\8.0.21\ref\net8.0\mscorlib.dll
C:\Users\simulateur\.nuget\packages\microsoft.netcore.app.ref\8.0.21\ref\net8.0\netstandard.dll
C:\Users\simulateur\.nuget\packages\onigwrap\1.0.6\lib\netstandard2.0\Onigwrap.dll
C:\Users\simulateur\.nuget\packages\skiasharp\2.88.9\lib\net6.0\SkiaSharp.dll
C:\Users\simulateur\.nuget\packages\microsoft.netcore.app.ref\8.0.21\ref\net8.0\System.AppContext.dll
C:\Users\simulateur\.nuget\packages\microsoft.netcore.app.ref\8.0.21\ref\net8.0\System.Buffers.dll
@ -190,5 +193,7 @@ C:\Users\simulateur\.nuget\packages\microsoft.netcore.app.ref\8.0.21\ref\net8.0\
C:\Users\simulateur\.nuget\packages\microsoft.netcore.app.ref\8.0.21\ref\net8.0\System.Xml.XmlSerializer.dll
C:\Users\simulateur\.nuget\packages\microsoft.netcore.app.ref\8.0.21\ref\net8.0\System.Xml.XPath.dll
C:\Users\simulateur\.nuget\packages\microsoft.netcore.app.ref\8.0.21\ref\net8.0\System.Xml.XPath.XDocument.dll
C:\Users\simulateur\.nuget\packages\textmatesharp\1.0.65\lib\netstandard2.0\TextMateSharp.dll
C:\Users\simulateur\.nuget\packages\textmatesharp.grammars\1.0.65\lib\netstandard2.0\TextMateSharp.Grammars.dll
C:\Users\simulateur\.nuget\packages\tmds.dbus.protocol\0.21.2\lib\net8.0\Tmds.DBus.Protocol.dll
C:\Users\simulateur\.nuget\packages\microsoft.netcore.app.ref\8.0.21\ref\net8.0\WindowsBase.dll

View File

@ -13,7 +13,7 @@ using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("GsaEditor")]
[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+d6d621dc92b3083d8e47827baa0ccf59d5b0a4c4")]
[assembly: System.Reflection.AssemblyProductAttribute("GsaEditor")]
[assembly: System.Reflection.AssemblyTitleAttribute("GsaEditor")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]

View File

@ -1 +1 @@
4f46922e64cd318e4907893c7c764d8331b010b4fff0b29b8eee6ed1f5661cdd
2ff94264e42d1924e3c6fd4243d279b8ea5cccc75f6ef146a562319dedcab0d3

View File

@ -1 +1 @@
e61bdb18dea480ee5463d302d5085174026f2b5c0ec744c6df878e874b884d3b
39a488a720409bb8a448fa3ac77a4fee498f2436a8299f5fec82e7f76321352a

View File

@ -76,3 +76,16 @@ C:\Users\simulateur\Desktop\GsaViewer\GsaEditor\obj\Debug\net8.0\refint\GsaEdito
C:\Users\simulateur\Desktop\GsaViewer\GsaEditor\obj\Debug\net8.0\GsaEditor.pdb
C:\Users\simulateur\Desktop\GsaViewer\GsaEditor\obj\Debug\net8.0\GsaEditor.genruntimeconfig.cache
C:\Users\simulateur\Desktop\GsaViewer\GsaEditor\obj\Debug\net8.0\ref\GsaEditor.dll
C:\Users\simulateur\Desktop\GsaViewer\GsaEditor\bin\Debug\net8.0\AvaloniaEdit.dll
C:\Users\simulateur\Desktop\GsaViewer\GsaEditor\bin\Debug\net8.0\AvaloniaEdit.TextMate.dll
C:\Users\simulateur\Desktop\GsaViewer\GsaEditor\bin\Debug\net8.0\Onigwrap.dll
C:\Users\simulateur\Desktop\GsaViewer\GsaEditor\bin\Debug\net8.0\TextMateSharp.dll
C:\Users\simulateur\Desktop\GsaViewer\GsaEditor\bin\Debug\net8.0\TextMateSharp.Grammars.dll
C:\Users\simulateur\Desktop\GsaViewer\GsaEditor\bin\Debug\net8.0\runtimes\linux-arm64\native\libonigwrap.so
C:\Users\simulateur\Desktop\GsaViewer\GsaEditor\bin\Debug\net8.0\runtimes\linux-musl-arm64\native\libonigwrap.so
C:\Users\simulateur\Desktop\GsaViewer\GsaEditor\bin\Debug\net8.0\runtimes\linux-musl-x64\native\libonigwrap.so
C:\Users\simulateur\Desktop\GsaViewer\GsaEditor\bin\Debug\net8.0\runtimes\linux-x64\native\libonigwrap.so
C:\Users\simulateur\Desktop\GsaViewer\GsaEditor\bin\Debug\net8.0\runtimes\osx\native\libonigwrap.dylib
C:\Users\simulateur\Desktop\GsaViewer\GsaEditor\bin\Debug\net8.0\runtimes\win-arm64\native\libonigwrap.dll
C:\Users\simulateur\Desktop\GsaViewer\GsaEditor\bin\Debug\net8.0\runtimes\win-x64\native\libonigwrap.dll
C:\Users\simulateur\Desktop\GsaViewer\GsaEditor\bin\Debug\net8.0\runtimes\win-x86\native\libonigwrap.dll

View File

@ -125,6 +125,10 @@
"target": "Package",
"version": "[11.3.6, )"
},
"Avalonia.AvaloniaEdit": {
"target": "Package",
"version": "[11.3.0, )"
},
"Avalonia.Desktop": {
"target": "Package",
"version": "[11.3.6, )"
@ -141,6 +145,10 @@
"target": "Package",
"version": "[11.3.6, )"
},
"AvaloniaEdit.TextMate": {
"target": "Package",
"version": "[11.3.0, )"
},
"CommunityToolkit.Mvvm": {
"target": "Package",
"version": "[8.2.1, )"

View File

@ -13,6 +13,7 @@
<SourceRoot Include="C:\Users\simulateur\.nuget\packages\" />
</ItemGroup>
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<Import Project="$(NuGetPackageRoot)onigwrap\1.0.6\buildTransitive\netstandard1.0\Onigwrap.props" Condition="Exists('$(NuGetPackageRoot)onigwrap\1.0.6\buildTransitive\netstandard1.0\Onigwrap.props')" />
<Import Project="$(NuGetPackageRoot)skiasharp.nativeassets.webassembly\2.88.9\buildTransitive\netstandard1.0\SkiaSharp.NativeAssets.WebAssembly.props" Condition="Exists('$(NuGetPackageRoot)skiasharp.nativeassets.webassembly\2.88.9\buildTransitive\netstandard1.0\SkiaSharp.NativeAssets.WebAssembly.props')" />
<Import Project="$(NuGetPackageRoot)harfbuzzsharp.nativeassets.webassembly\8.3.1.1\buildTransitive\netstandard1.0\HarfBuzzSharp.NativeAssets.WebAssembly.props" Condition="Exists('$(NuGetPackageRoot)harfbuzzsharp.nativeassets.webassembly\8.3.1.1\buildTransitive\netstandard1.0\HarfBuzzSharp.NativeAssets.WebAssembly.props')" />
<Import Project="$(NuGetPackageRoot)avalonia\11.3.6\buildTransitive\Avalonia.props" Condition="Exists('$(NuGetPackageRoot)avalonia\11.3.6\buildTransitive\Avalonia.props')" />

View File

@ -1,6 +1,8 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<Import Project="$(NuGetPackageRoot)system.text.json\8.0.5\buildTransitive\net6.0\System.Text.Json.targets" Condition="Exists('$(NuGetPackageRoot)system.text.json\8.0.5\buildTransitive\net6.0\System.Text.Json.targets')" />
<Import Project="$(NuGetPackageRoot)onigwrap\1.0.6\buildTransitive\netstandard1.0\Onigwrap.targets" Condition="Exists('$(NuGetPackageRoot)onigwrap\1.0.6\buildTransitive\netstandard1.0\Onigwrap.targets')" />
<Import Project="$(NuGetPackageRoot)skiasharp.nativeassets.webassembly\2.88.9\buildTransitive\netstandard1.0\SkiaSharp.NativeAssets.WebAssembly.targets" Condition="Exists('$(NuGetPackageRoot)skiasharp.nativeassets.webassembly\2.88.9\buildTransitive\netstandard1.0\SkiaSharp.NativeAssets.WebAssembly.targets')" />
<Import Project="$(NuGetPackageRoot)harfbuzzsharp.nativeassets.webassembly\8.3.1.1\buildTransitive\netstandard1.0\HarfBuzzSharp.NativeAssets.WebAssembly.targets" Condition="Exists('$(NuGetPackageRoot)harfbuzzsharp.nativeassets.webassembly\8.3.1.1\buildTransitive\netstandard1.0\HarfBuzzSharp.NativeAssets.WebAssembly.targets')" />
<Import Project="$(NuGetPackageRoot)communitytoolkit.mvvm\8.2.1\buildTransitive\netstandard2.1\CommunityToolkit.Mvvm.targets" Condition="Exists('$(NuGetPackageRoot)communitytoolkit.mvvm\8.2.1\buildTransitive\netstandard2.1\CommunityToolkit.Mvvm.targets')" />

View File

@ -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/0.0.31": {
"type": "package",
"build": {
@ -325,6 +337,21 @@
}
}
},
"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": {}
}
},
"CommunityToolkit.Mvvm/8.2.1": {
"type": "package",
"compile": {
@ -473,6 +500,53 @@
"lib/net5.0/MicroCom.Runtime.dll": {}
}
},
"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"
}
}
},
"SkiaSharp/2.88.9": {
"type": "package",
"dependencies": {
@ -587,6 +661,48 @@
"buildTransitive/net6.0/_._": {}
}
},
"System.Text.Json/8.0.5": {
"type": "package",
"compile": {
"lib/net8.0/System.Text.Json.dll": {
"related": ".xml"
}
},
"runtime": {
"lib/net8.0/System.Text.Json.dll": {
"related": ".xml"
}
},
"build": {
"buildTransitive/net6.0/System.Text.Json.targets": {}
}
},
"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": {
@ -797,6 +913,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/0.0.31": {
"sha512": "KmCN6Hc+45q4OnF10ge450yVUvWuxU6bdQiyKqiSvrHKpahNrEdk0kG6Ip6GHk2SKOCttGQuA206JVdkldEENg==",
"type": "package",
@ -1038,6 +1168,20 @@
"lib/netstandard2.0/Avalonia.X11.xml"
]
},
"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"
]
},
"CommunityToolkit.Mvvm/8.2.1": {
"sha512": "I24ofWVEdplxYjUez9/bljv/qb8r8Ccj6cvYXHexNBegLaD3iDy3QrzAAOYVMmfGWIXxlU1ZtECQNfU07+6hXQ==",
"type": "package",
@ -1240,6 +1384,35 @@
"microcom.runtime.nuspec"
]
},
"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"
]
},
"SkiaSharp/2.88.9": {
"sha512": "3MD5VHjXXieSHCleRLuaTXmL2pD0mB7CcOB1x2kA1I4bhptf4e3R27iM93264ZYuAq6mkUyX5XbcxnZvMJYc1Q==",
"type": "package",
@ -1447,6 +1620,103 @@
"useSharedDesignerContext.txt"
]
},
"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"
]
},
"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",
@ -1471,10 +1741,12 @@
"projectFileDependencyGroups": {
"net8.0": [
"Avalonia >= 11.3.6",
"Avalonia.AvaloniaEdit >= 11.3.0",
"Avalonia.Desktop >= 11.3.6",
"Avalonia.Diagnostics >= 11.3.6",
"Avalonia.Fonts.Inter >= 11.3.6",
"Avalonia.Themes.Fluent >= 11.3.6",
"AvaloniaEdit.TextMate >= 11.3.0",
"CommunityToolkit.Mvvm >= 8.2.1",
"GsaEditor.Core >= 1.0.0"
]
@ -1530,6 +1802,10 @@
"target": "Package",
"version": "[11.3.6, )"
},
"Avalonia.AvaloniaEdit": {
"target": "Package",
"version": "[11.3.0, )"
},
"Avalonia.Desktop": {
"target": "Package",
"version": "[11.3.6, )"
@ -1546,6 +1822,10 @@
"target": "Package",
"version": "[11.3.6, )"
},
"AvaloniaEdit.TextMate": {
"target": "Package",
"version": "[11.3.0, )"
},
"CommunityToolkit.Mvvm": {
"target": "Package",
"version": "[8.2.1, )"

View File

@ -1,11 +1,12 @@
{
"version": 2,
"dgSpecHash": "5deS6nN5wwk=",
"dgSpecHash": "iBMK/QJq0GQ=",
"success": true,
"projectFilePath": "C:\\Users\\simulateur\\Desktop\\GsaViewer\\GsaEditor\\GsaEditor.csproj",
"expectedPackageFiles": [
"C:\\Users\\simulateur\\.nuget\\packages\\avalonia\\11.3.6\\avalonia.11.3.6.nupkg.sha512",
"C:\\Users\\simulateur\\.nuget\\packages\\avalonia.angle.windows.natives\\2.1.25547.20250602\\avalonia.angle.windows.natives.2.1.25547.20250602.nupkg.sha512",
"C:\\Users\\simulateur\\.nuget\\packages\\avalonia.avaloniaedit\\11.3.0\\avalonia.avaloniaedit.11.3.0.nupkg.sha512",
"C:\\Users\\simulateur\\.nuget\\packages\\avalonia.buildservices\\0.0.31\\avalonia.buildservices.0.0.31.nupkg.sha512",
"C:\\Users\\simulateur\\.nuget\\packages\\avalonia.controls.colorpicker\\11.3.6\\avalonia.controls.colorpicker.11.3.6.nupkg.sha512",
"C:\\Users\\simulateur\\.nuget\\packages\\avalonia.desktop\\11.3.6\\avalonia.desktop.11.3.6.nupkg.sha512",
@ -19,6 +20,7 @@
"C:\\Users\\simulateur\\.nuget\\packages\\avalonia.themes.simple\\11.3.6\\avalonia.themes.simple.11.3.6.nupkg.sha512",
"C:\\Users\\simulateur\\.nuget\\packages\\avalonia.win32\\11.3.6\\avalonia.win32.11.3.6.nupkg.sha512",
"C:\\Users\\simulateur\\.nuget\\packages\\avalonia.x11\\11.3.6\\avalonia.x11.11.3.6.nupkg.sha512",
"C:\\Users\\simulateur\\.nuget\\packages\\avaloniaedit.textmate\\11.3.0\\avaloniaedit.textmate.11.3.0.nupkg.sha512",
"C:\\Users\\simulateur\\.nuget\\packages\\communitytoolkit.mvvm\\8.2.1\\communitytoolkit.mvvm.8.2.1.nupkg.sha512",
"C:\\Users\\simulateur\\.nuget\\packages\\harfbuzzsharp\\8.3.1.1\\harfbuzzsharp.8.3.1.1.nupkg.sha512",
"C:\\Users\\simulateur\\.nuget\\packages\\harfbuzzsharp.nativeassets.linux\\8.3.1.1\\harfbuzzsharp.nativeassets.linux.8.3.1.1.nupkg.sha512",
@ -26,12 +28,16 @@
"C:\\Users\\simulateur\\.nuget\\packages\\harfbuzzsharp.nativeassets.webassembly\\8.3.1.1\\harfbuzzsharp.nativeassets.webassembly.8.3.1.1.nupkg.sha512",
"C:\\Users\\simulateur\\.nuget\\packages\\harfbuzzsharp.nativeassets.win32\\8.3.1.1\\harfbuzzsharp.nativeassets.win32.8.3.1.1.nupkg.sha512",
"C:\\Users\\simulateur\\.nuget\\packages\\microcom.runtime\\0.11.0\\microcom.runtime.0.11.0.nupkg.sha512",
"C:\\Users\\simulateur\\.nuget\\packages\\onigwrap\\1.0.6\\onigwrap.1.0.6.nupkg.sha512",
"C:\\Users\\simulateur\\.nuget\\packages\\skiasharp\\2.88.9\\skiasharp.2.88.9.nupkg.sha512",
"C:\\Users\\simulateur\\.nuget\\packages\\skiasharp.nativeassets.linux\\2.88.9\\skiasharp.nativeassets.linux.2.88.9.nupkg.sha512",
"C:\\Users\\simulateur\\.nuget\\packages\\skiasharp.nativeassets.macos\\2.88.9\\skiasharp.nativeassets.macos.2.88.9.nupkg.sha512",
"C:\\Users\\simulateur\\.nuget\\packages\\skiasharp.nativeassets.webassembly\\2.88.9\\skiasharp.nativeassets.webassembly.2.88.9.nupkg.sha512",
"C:\\Users\\simulateur\\.nuget\\packages\\skiasharp.nativeassets.win32\\2.88.9\\skiasharp.nativeassets.win32.2.88.9.nupkg.sha512",
"C:\\Users\\simulateur\\.nuget\\packages\\system.io.pipelines\\8.0.0\\system.io.pipelines.8.0.0.nupkg.sha512",
"C:\\Users\\simulateur\\.nuget\\packages\\system.text.json\\8.0.5\\system.text.json.8.0.5.nupkg.sha512",
"C:\\Users\\simulateur\\.nuget\\packages\\textmatesharp\\1.0.65\\textmatesharp.1.0.65.nupkg.sha512",
"C:\\Users\\simulateur\\.nuget\\packages\\textmatesharp.grammars\\1.0.65\\textmatesharp.grammars.1.0.65.nupkg.sha512",
"C:\\Users\\simulateur\\.nuget\\packages\\tmds.dbus.protocol\\0.21.2\\tmds.dbus.protocol.0.21.2.nupkg.sha512",
"C:\\Users\\simulateur\\.nuget\\packages\\microsoft.netcore.app.ref\\8.0.21\\microsoft.netcore.app.ref.8.0.21.nupkg.sha512",
"C:\\Users\\simulateur\\.nuget\\packages\\microsoft.windowsdesktop.app.ref\\8.0.21\\microsoft.windowsdesktop.app.ref.8.0.21.nupkg.sha512",