first commit

This commit is contained in:
andrea
2025-12-17 21:52:28 +01:00
parent 487a38b906
commit 68f5916140
105 changed files with 3518 additions and 0 deletions

15
App.axaml Normal file
View File

@@ -0,0 +1,15 @@
<Application xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Class="OMControl.App"
xmlns:local="using:OMControl"
RequestedThemeVariant="Default">
<!-- "Default" ThemeVariant follows system theme variant. "Dark" or "Light" are other available options. -->
<Application.DataTemplates>
<local:ViewLocator/>
</Application.DataTemplates>
<Application.Styles>
<FluentTheme />
</Application.Styles>
</Application>

47
App.axaml.cs Normal file
View File

@@ -0,0 +1,47 @@
using Avalonia;
using Avalonia.Controls.ApplicationLifetimes;
using Avalonia.Data.Core;
using Avalonia.Data.Core.Plugins;
using System.Linq;
using Avalonia.Markup.Xaml;
using OMControl.ViewModels;
using OMControl.Views;
namespace OMControl;
public partial class App : Application
{
public override void Initialize()
{
AvaloniaXamlLoader.Load(this);
}
public override void OnFrameworkInitializationCompleted()
{
if (ApplicationLifetime is IClassicDesktopStyleApplicationLifetime desktop)
{
// Avoid duplicate validations from both Avalonia and the CommunityToolkit.
// More info: https://docs.avaloniaui.net/docs/guides/development-guides/data-validation#manage-validationplugins
DisableAvaloniaDataAnnotationValidation();
desktop.MainWindow = new MainWindow
{
DataContext = new MainWindowViewModel(),
};
}
base.OnFrameworkInitializationCompleted();
}
private void DisableAvaloniaDataAnnotationValidation()
{
// Get an array of plugins to remove
var dataValidationPluginsToRemove =
BindingPlugins.DataValidators.OfType<DataAnnotationsValidationPlugin>().ToArray();
// remove each entry found
foreach (var plugin in dataValidationPluginsToRemove)
{
BindingPlugins.DataValidators.Remove(plugin);
}
}
}

BIN
Assets/avalonia-logo.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 172 KiB

28
OMControl.csproj Normal file
View File

@@ -0,0 +1,28 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
<ApplicationManifest>app.manifest</ApplicationManifest>
<AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
</PropertyGroup>
<ItemGroup>
<Folder Include="Models\" />
<AvaloniaResource Include="Assets\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Avalonia" Version="11.3.9" />
<PackageReference Include="Avalonia.Desktop" Version="11.3.9" />
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.3.9" />
<PackageReference Include="Avalonia.Fonts.Inter" Version="11.3.9" />
<!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
<PackageReference Include="Avalonia.Diagnostics" Version="11.3.9">
<IncludeAssets Condition="'$(Configuration)' != 'Debug'">None</IncludeAssets>
<PrivateAssets Condition="'$(Configuration)' != 'Debug'">All</PrivateAssets>
</PackageReference>
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.2.1" />
<PackageReference Include="System.IO.Ports" Version="8.0.0" />
</ItemGroup>
</Project>

24
OMControl.sln Normal file
View File

@@ -0,0 +1,24 @@
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.5.2.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OMControl", "OMControl.csproj", "{354B5A1B-F5A0-FE1B-2381-A190E018DE95}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{354B5A1B-F5A0-FE1B-2381-A190E018DE95}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{354B5A1B-F5A0-FE1B-2381-A190E018DE95}.Debug|Any CPU.Build.0 = Debug|Any CPU
{354B5A1B-F5A0-FE1B-2381-A190E018DE95}.Release|Any CPU.ActiveCfg = Release|Any CPU
{354B5A1B-F5A0-FE1B-2381-A190E018DE95}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {7AE9FAE1-5E72-4A75-BDB8-0761F1E7B61E}
EndGlobalSection
EndGlobal

21
Program.cs Normal file
View File

@@ -0,0 +1,21 @@
using Avalonia;
using System;
namespace OMControl;
sealed class Program
{
// Initialization code. Don't use any Avalonia, third-party APIs or any
// SynchronizationContext-reliant code before AppMain is called: things aren't initialized
// yet and stuff might break.
[STAThread]
public static void Main(string[] args) => BuildAvaloniaApp()
.StartWithClassicDesktopLifetime(args);
// Avalonia configuration, don't remove; also used by visual designer.
public static AppBuilder BuildAvaloniaApp()
=> AppBuilder.Configure<App>()
.UsePlatformDetect()
.WithInterFont()
.LogToTrace();
}

View File

@@ -0,0 +1,53 @@
using System;
using System.IO.Ports;
namespace OMControl.Services;
public class SerialPortService : IDisposable
{
private SerialPort? _serialPort;
public bool IsOpen => _serialPort?.IsOpen == true;
public event Action<string>? DataReceived;
public void Open(string portName, int baudRate = 9600)
{
if (IsOpen) return;
_serialPort = new SerialPort(portName, baudRate)
{
NewLine = "\n",
ReadTimeout = 1000,
WriteTimeout = 1000
};
_serialPort.DataReceived += OnDataReceived;
_serialPort.Open();
}
public void Close()
{
if (_serialPort == null) return;
_serialPort.DataReceived -= OnDataReceived;
_serialPort.Close();
_serialPort.Dispose();
_serialPort = null;
}
public void Send(string data)
{
if (!IsOpen || _serialPort == null) return;
_serialPort.WriteLine(data);
}
private void OnDataReceived(object sender, SerialDataReceivedEventArgs e)
{
try
{
var data = _serialPort?.ReadLine();
if (data != null) DataReceived?.Invoke(data);
}
catch { }
}
public void Dispose() => Close();
}

37
ViewLocator.cs Normal file
View File

@@ -0,0 +1,37 @@
using System;
using System.Diagnostics.CodeAnalysis;
using Avalonia.Controls;
using Avalonia.Controls.Templates;
using OMControl.ViewModels;
namespace OMControl;
/// <summary>
/// Given a view model, returns the corresponding view if possible.
/// </summary>
[RequiresUnreferencedCode(
"Default implementation of ViewLocator involves reflection which may be trimmed away.",
Url = "https://docs.avaloniaui.net/docs/concepts/view-locator")]
public class ViewLocator : IDataTemplate
{
public Control? Build(object? param)
{
if (param is null)
return null;
var name = param.GetType().FullName!.Replace("ViewModel", "View", StringComparison.Ordinal);
var type = Type.GetType(name);
if (type != null)
{
return (Control)Activator.CreateInstance(type)!;
}
return new TextBlock { Text = "Not Found: " + name };
}
public bool Match(object? data)
{
return data is ViewModelBase;
}
}

View File

@@ -0,0 +1,102 @@
using System;
using System.Collections.ObjectModel;
using System.ComponentModel;
using System.IO.Ports;
using System.Runtime.CompilerServices;
using System.Windows.Input;
using Avalonia.Threading;
using OMControl.Services;
namespace OMControl.ViewModels;
public class MainWindowViewModel : INotifyPropertyChanged
{
public event PropertyChangedEventHandler? PropertyChanged;
void Raise([CallerMemberName] string? p = null) => PropertyChanged?.Invoke(this, new(p));
private readonly SerialPortService _serial = new();
public ObservableCollection<string> AvailablePorts { get; } = new();
private string? _selectedPort;
public string? SelectedPort { get => _selectedPort; set { _selectedPort = value; Raise(); } }
private string _receivedData = "";
public string ReceivedData { get => _receivedData; set { _receivedData = value; Raise(); } }
private string _sendData = "";
public string SendData { get => _sendData; set { _sendData = value; Raise(); } }
string _field01 = ""; public string Field01 { get => _field01; set { _field01 = value; Raise(); } }
string _field02 = ""; public string Field02 { get => _field02; set { _field02 = value; Raise(); } }
string _field03 = ""; public string Field03 { get => _field03; set { _field03 = value; Raise(); } }
public ICommand RefreshPortsCommand { get; }
public ICommand ConnectCommand { get; }
public ICommand DisconnectCommand { get; }
public ICommand SendCommand { get; }
public ICommand ClearCommand { get; }
public MainWindowViewModel()
{
RefreshPortsCommand = new RelayCommand(RefreshPorts);
ConnectCommand = new RelayCommand(Connect);
DisconnectCommand = new RelayCommand(Disconnect);
SendCommand = new RelayCommand(Send);
ClearCommand = new RelayCommand(ClearAll);
_serial.DataReceived += data =>
{
Dispatcher.UIThread.Post(() => ReceivedData += data + Environment.NewLine);
};
RefreshPorts();
}
private void RefreshPorts()
{
AvailablePorts.Clear();
foreach (var p in SerialPort.GetPortNames())
AvailablePorts.Add(p);
if (SelectedPort == null && AvailablePorts.Count > 0)
SelectedPort = AvailablePorts[0];
}
private void Connect()
{
if (SelectedPort is null) return;
_serial.Open(SelectedPort, 9600);
}
private void Disconnect() => _serial.Close();
private void Send()
{
if (!string.IsNullOrWhiteSpace(SendData))
_serial.Send(SendData);
}
private void ClearAll()
{
Field01 = Field02 = Field03 = "";
ReceivedData = "";
SendData = "";
}
}
public sealed class RelayCommand : ICommand
{
private readonly Action _execute;
private readonly Func<bool>? _canExecute;
public RelayCommand(Action execute, Func<bool>? canExecute = null)
{
_execute = execute;
_canExecute = canExecute;
}
public event EventHandler? CanExecuteChanged;
public bool CanExecute(object? parameter) => _canExecute?.Invoke() ?? true;
public void Execute(object? parameter) => _execute();
}

View File

@@ -0,0 +1,7 @@
using CommunityToolkit.Mvvm.ComponentModel;
namespace OMControl.ViewModels;
public abstract class ViewModelBase : ObservableObject
{
}

59
Views/MainWindow.axaml Normal file
View File

@@ -0,0 +1,59 @@
<Window xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Class="OMControl.Views.MainWindow"
xmlns:vm="clr-namespace:OMControl.ViewModels"
x:DataType="vm:MainWindowViewModel"
Width="900" Height="600"
MinWidth="900" MinHeight="600"
MaxWidth="900" MaxHeight="600"
CanResize="False"
Title="Data Entry Form">
<DockPanel Margin="16" LastChildFill="True">
<Border DockPanel.Dock="Top"
Margin="0,0,0,12"
Padding="10"
BorderBrush="Gray"
BorderThickness="1"
CornerRadius="6">
<StackPanel Spacing="8">
<TextBlock Text="Serial Port" FontWeight="Bold" Margin="0,0,0,6"/>
<StackPanel Orientation="Horizontal" Spacing="8">
<ComboBox Width="120"
ItemsSource="{Binding AvailablePorts}"
SelectedItem="{Binding SelectedPort}" />
<Button Content="Connect" Command="{Binding ConnectCommand}" />
<Button Content="Disconnect" Command="{Binding DisconnectCommand}" />
</StackPanel>
<StackPanel Orientation="Horizontal" Spacing="8">
<TextBox Width="200" Text="{Binding SendData}" Watermark="Data to send"/>
<Button Content="Send" Command="{Binding SendCommand}" />
</StackPanel>
<TextBox Height="120" AcceptsReturn="True" IsReadOnly="True" Text="{Binding ReceivedData}" />
</StackPanel>
</Border>
<StackPanel DockPanel.Dock="Top" Orientation="Horizontal" Margin="0,0,0,12" Spacing="8">
<Button Content="Clear" Command="{Binding ClearCommand}" />
<Button Content="Refresh COM" Command="{Binding RefreshPortsCommand}" />
</StackPanel>
<ScrollViewer>
<Grid ColumnDefinitions="180,*" RowDefinitions="Auto,Auto,Auto"
RowSpacing="8" ColumnSpacing="10">
<TextBlock Grid.Row="0" Grid.Column="0" Text="Field 01" VerticalAlignment="Center"/>
<TextBox Grid.Row="0" Grid.Column="1" Text="{Binding Field01}"/>
<TextBlock Grid.Row="1" Grid.Column="0" Text="Field 02" VerticalAlignment="Center"/>
<TextBox Grid.Row="1" Grid.Column="1" Text="{Binding Field02}"/>
<TextBlock Grid.Row="2" Grid.Column="0" Text="Field 03" VerticalAlignment="Center"/>
<TextBox Grid.Row="2" Grid.Column="1" Text="{Binding Field03}"/>
</Grid>
</ScrollViewer>
</DockPanel>
</Window>

11
Views/MainWindow.axaml.cs Normal file
View File

@@ -0,0 +1,11 @@
using Avalonia.Controls;
namespace OMControl.Views;
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
}
}

18
app.manifest Normal file
View File

@@ -0,0 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1">
<!-- This manifest is used on Windows only.
Don't remove it as it might cause problems with window transparency and embedded controls.
For more details visit https://learn.microsoft.com/en-us/windows/win32/sbscs/application-manifests -->
<assemblyIdentity version="1.0.0.0" name="OMControl.Desktop"/>
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
<application>
<!-- A list of the Windows versions that this application has been tested on
and is designed to work with. Uncomment the appropriate elements
and Windows will automatically select the most compatible environment. -->
<!-- Windows 10 -->
<supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}" />
</application>
</compatibility>
</assembly>

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,751 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v9.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v9.0": {
"OMControl/1.0.0": {
"dependencies": {
"Avalonia": "11.3.9",
"Avalonia.Desktop": "11.3.9",
"Avalonia.Diagnostics": "11.3.9",
"Avalonia.Fonts.Inter": "11.3.9",
"Avalonia.Themes.Fluent": "11.3.9",
"CommunityToolkit.Mvvm": "8.2.1",
"System.IO.Ports": "8.0.0"
},
"runtime": {
"OMControl.dll": {}
}
},
"Avalonia/11.3.9": {
"dependencies": {
"Avalonia.Remote.Protocol": "11.3.9",
"MicroCom.Runtime": "0.11.0"
},
"runtime": {
"lib/net8.0/Avalonia.Base.dll": {
"assemblyVersion": "11.3.9.0",
"fileVersion": "11.3.9.0"
},
"lib/net8.0/Avalonia.Controls.dll": {
"assemblyVersion": "11.3.9.0",
"fileVersion": "11.3.9.0"
},
"lib/net8.0/Avalonia.DesignerSupport.dll": {
"assemblyVersion": "0.7.0.0",
"fileVersion": "0.7.0.0"
},
"lib/net8.0/Avalonia.Dialogs.dll": {
"assemblyVersion": "11.3.9.0",
"fileVersion": "11.3.9.0"
},
"lib/net8.0/Avalonia.Markup.Xaml.dll": {
"assemblyVersion": "11.3.9.0",
"fileVersion": "11.3.9.0"
},
"lib/net8.0/Avalonia.Markup.dll": {
"assemblyVersion": "11.3.9.0",
"fileVersion": "11.3.9.0"
},
"lib/net8.0/Avalonia.Metal.dll": {
"assemblyVersion": "11.3.9.0",
"fileVersion": "11.3.9.0"
},
"lib/net8.0/Avalonia.MicroCom.dll": {
"assemblyVersion": "11.3.9.0",
"fileVersion": "11.3.9.0"
},
"lib/net8.0/Avalonia.OpenGL.dll": {
"assemblyVersion": "11.3.9.0",
"fileVersion": "11.3.9.0"
},
"lib/net8.0/Avalonia.Vulkan.dll": {
"assemblyVersion": "11.3.9.0",
"fileVersion": "11.3.9.0"
},
"lib/net8.0/Avalonia.dll": {
"assemblyVersion": "11.3.9.0",
"fileVersion": "11.3.9.0"
}
}
},
"Avalonia.Angle.Windows.Natives/2.1.25547.20250602": {
"runtimeTargets": {
"runtimes/win-arm64/native/av_libglesv2.dll": {
"rid": "win-arm64",
"assetType": "native",
"fileVersion": "2.1.25606.0"
},
"runtimes/win-x64/native/av_libglesv2.dll": {
"rid": "win-x64",
"assetType": "native",
"fileVersion": "2.1.25606.0"
},
"runtimes/win-x86/native/av_libglesv2.dll": {
"rid": "win-x86",
"assetType": "native",
"fileVersion": "2.1.25606.0"
}
}
},
"Avalonia.Controls.ColorPicker/11.3.9": {
"dependencies": {
"Avalonia": "11.3.9",
"Avalonia.Remote.Protocol": "11.3.9"
},
"runtime": {
"lib/net8.0/Avalonia.Controls.ColorPicker.dll": {
"assemblyVersion": "11.3.9.0",
"fileVersion": "11.3.9.0"
}
}
},
"Avalonia.Desktop/11.3.9": {
"dependencies": {
"Avalonia": "11.3.9",
"Avalonia.Native": "11.3.9",
"Avalonia.Skia": "11.3.9",
"Avalonia.Win32": "11.3.9",
"Avalonia.X11": "11.3.9"
},
"runtime": {
"lib/net8.0/Avalonia.Desktop.dll": {
"assemblyVersion": "11.3.9.0",
"fileVersion": "11.3.9.0"
}
}
},
"Avalonia.Diagnostics/11.3.9": {
"dependencies": {
"Avalonia": "11.3.9",
"Avalonia.Controls.ColorPicker": "11.3.9",
"Avalonia.Themes.Simple": "11.3.9"
},
"runtime": {
"lib/net8.0/Avalonia.Diagnostics.dll": {
"assemblyVersion": "11.3.9.0",
"fileVersion": "11.3.9.0"
}
}
},
"Avalonia.Fonts.Inter/11.3.9": {
"dependencies": {
"Avalonia": "11.3.9"
},
"runtime": {
"lib/net8.0/Avalonia.Fonts.Inter.dll": {
"assemblyVersion": "11.3.9.0",
"fileVersion": "11.3.9.0"
}
}
},
"Avalonia.FreeDesktop/11.3.9": {
"dependencies": {
"Avalonia": "11.3.9",
"Tmds.DBus.Protocol": "0.21.2"
},
"runtime": {
"lib/net8.0/Avalonia.FreeDesktop.dll": {
"assemblyVersion": "11.3.9.0",
"fileVersion": "11.3.9.0"
}
}
},
"Avalonia.Native/11.3.9": {
"dependencies": {
"Avalonia": "11.3.9"
},
"runtime": {
"lib/net8.0/Avalonia.Native.dll": {
"assemblyVersion": "11.3.9.0",
"fileVersion": "11.3.9.0"
}
},
"runtimeTargets": {
"runtimes/osx/native/libAvaloniaNative.dylib": {
"rid": "osx",
"assetType": "native",
"fileVersion": "0.0.0.0"
}
}
},
"Avalonia.Remote.Protocol/11.3.9": {
"runtime": {
"lib/net8.0/Avalonia.Remote.Protocol.dll": {
"assemblyVersion": "11.3.9.0",
"fileVersion": "11.3.9.0"
}
}
},
"Avalonia.Skia/11.3.9": {
"dependencies": {
"Avalonia": "11.3.9",
"HarfBuzzSharp": "8.3.1.1",
"HarfBuzzSharp.NativeAssets.Linux": "8.3.1.1",
"SkiaSharp": "2.88.9",
"SkiaSharp.NativeAssets.Linux": "2.88.9"
},
"runtime": {
"lib/net8.0/Avalonia.Skia.dll": {
"assemblyVersion": "11.3.9.0",
"fileVersion": "11.3.9.0"
}
}
},
"Avalonia.Themes.Fluent/11.3.9": {
"dependencies": {
"Avalonia": "11.3.9"
},
"runtime": {
"lib/net8.0/Avalonia.Themes.Fluent.dll": {
"assemblyVersion": "11.3.9.0",
"fileVersion": "11.3.9.0"
}
}
},
"Avalonia.Themes.Simple/11.3.9": {
"dependencies": {
"Avalonia": "11.3.9"
},
"runtime": {
"lib/net8.0/Avalonia.Themes.Simple.dll": {
"assemblyVersion": "11.3.9.0",
"fileVersion": "11.3.9.0"
}
}
},
"Avalonia.Win32/11.3.9": {
"dependencies": {
"Avalonia": "11.3.9",
"Avalonia.Angle.Windows.Natives": "2.1.25547.20250602"
},
"runtime": {
"lib/net8.0/Avalonia.Win32.Automation.dll": {
"assemblyVersion": "11.3.9.0",
"fileVersion": "11.3.9.0"
},
"lib/net8.0/Avalonia.Win32.dll": {
"assemblyVersion": "11.3.9.0",
"fileVersion": "11.3.9.0"
}
}
},
"Avalonia.X11/11.3.9": {
"dependencies": {
"Avalonia": "11.3.9",
"Avalonia.FreeDesktop": "11.3.9",
"Avalonia.Skia": "11.3.9"
},
"runtime": {
"lib/net8.0/Avalonia.X11.dll": {
"assemblyVersion": "11.3.9.0",
"fileVersion": "11.3.9.0"
}
}
},
"CommunityToolkit.Mvvm/8.2.1": {
"runtime": {
"lib/net6.0/CommunityToolkit.Mvvm.dll": {
"assemblyVersion": "8.2.0.0",
"fileVersion": "8.2.1.1"
}
}
},
"HarfBuzzSharp/8.3.1.1": {
"dependencies": {
"HarfBuzzSharp.NativeAssets.Win32": "8.3.1.1",
"HarfBuzzSharp.NativeAssets.macOS": "8.3.1.1"
},
"runtime": {
"lib/net8.0/HarfBuzzSharp.dll": {
"assemblyVersion": "1.0.0.0",
"fileVersion": "8.3.1.1"
}
}
},
"HarfBuzzSharp.NativeAssets.Linux/8.3.1.1": {
"runtimeTargets": {
"runtimes/linux-arm/native/libHarfBuzzSharp.so": {
"rid": "linux-arm",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/linux-arm64/native/libHarfBuzzSharp.so": {
"rid": "linux-arm64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/linux-loongarch64/native/libHarfBuzzSharp.so": {
"rid": "linux-loongarch64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/linux-musl-arm/native/libHarfBuzzSharp.so": {
"rid": "linux-musl-arm",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/linux-musl-arm64/native/libHarfBuzzSharp.so": {
"rid": "linux-musl-arm64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/linux-musl-loongarch64/native/libHarfBuzzSharp.so": {
"rid": "linux-musl-loongarch64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/linux-musl-riscv64/native/libHarfBuzzSharp.so": {
"rid": "linux-musl-riscv64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/linux-musl-x64/native/libHarfBuzzSharp.so": {
"rid": "linux-musl-x64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/linux-riscv64/native/libHarfBuzzSharp.so": {
"rid": "linux-riscv64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/linux-x64/native/libHarfBuzzSharp.so": {
"rid": "linux-x64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/linux-x86/native/libHarfBuzzSharp.so": {
"rid": "linux-x86",
"assetType": "native",
"fileVersion": "0.0.0.0"
}
}
},
"HarfBuzzSharp.NativeAssets.macOS/8.3.1.1": {
"runtimeTargets": {
"runtimes/osx/native/libHarfBuzzSharp.dylib": {
"rid": "osx",
"assetType": "native",
"fileVersion": "0.0.0.0"
}
}
},
"HarfBuzzSharp.NativeAssets.Win32/8.3.1.1": {
"runtimeTargets": {
"runtimes/win-arm64/native/libHarfBuzzSharp.dll": {
"rid": "win-arm64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/win-x64/native/libHarfBuzzSharp.dll": {
"rid": "win-x64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/win-x86/native/libHarfBuzzSharp.dll": {
"rid": "win-x86",
"assetType": "native",
"fileVersion": "0.0.0.0"
}
}
},
"MicroCom.Runtime/0.11.0": {
"runtime": {
"lib/net5.0/MicroCom.Runtime.dll": {
"assemblyVersion": "0.11.0.0",
"fileVersion": "0.11.0.0"
}
}
},
"runtime.linux-arm.runtime.native.System.IO.Ports/8.0.0": {
"runtimeTargets": {
"runtimes/linux-arm/native/libSystem.IO.Ports.Native.so": {
"rid": "linux-arm",
"assetType": "native",
"fileVersion": "0.0.0.0"
}
}
},
"runtime.linux-arm64.runtime.native.System.IO.Ports/8.0.0": {
"runtimeTargets": {
"runtimes/linux-arm64/native/libSystem.IO.Ports.Native.so": {
"rid": "linux-arm64",
"assetType": "native",
"fileVersion": "0.0.0.0"
}
}
},
"runtime.linux-x64.runtime.native.System.IO.Ports/8.0.0": {
"runtimeTargets": {
"runtimes/linux-x64/native/libSystem.IO.Ports.Native.so": {
"rid": "linux-x64",
"assetType": "native",
"fileVersion": "0.0.0.0"
}
}
},
"runtime.native.System.IO.Ports/8.0.0": {
"dependencies": {
"runtime.linux-arm.runtime.native.System.IO.Ports": "8.0.0",
"runtime.linux-arm64.runtime.native.System.IO.Ports": "8.0.0",
"runtime.linux-x64.runtime.native.System.IO.Ports": "8.0.0",
"runtime.osx-arm64.runtime.native.System.IO.Ports": "8.0.0",
"runtime.osx-x64.runtime.native.System.IO.Ports": "8.0.0"
}
},
"runtime.osx-arm64.runtime.native.System.IO.Ports/8.0.0": {
"runtimeTargets": {
"runtimes/osx-arm64/native/libSystem.IO.Ports.Native.dylib": {
"rid": "osx-arm64",
"assetType": "native",
"fileVersion": "0.0.0.0"
}
}
},
"runtime.osx-x64.runtime.native.System.IO.Ports/8.0.0": {
"runtimeTargets": {
"runtimes/osx-x64/native/libSystem.IO.Ports.Native.dylib": {
"rid": "osx-x64",
"assetType": "native",
"fileVersion": "0.0.0.0"
}
}
},
"SkiaSharp/2.88.9": {
"dependencies": {
"SkiaSharp.NativeAssets.Win32": "2.88.9",
"SkiaSharp.NativeAssets.macOS": "2.88.9"
},
"runtime": {
"lib/net6.0/SkiaSharp.dll": {
"assemblyVersion": "2.88.0.0",
"fileVersion": "2.88.9.0"
}
}
},
"SkiaSharp.NativeAssets.Linux/2.88.9": {
"dependencies": {
"SkiaSharp": "2.88.9"
},
"runtimeTargets": {
"runtimes/linux-arm/native/libSkiaSharp.so": {
"rid": "linux-arm",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/linux-arm64/native/libSkiaSharp.so": {
"rid": "linux-arm64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/linux-musl-x64/native/libSkiaSharp.so": {
"rid": "linux-musl-x64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/linux-x64/native/libSkiaSharp.so": {
"rid": "linux-x64",
"assetType": "native",
"fileVersion": "0.0.0.0"
}
}
},
"SkiaSharp.NativeAssets.macOS/2.88.9": {
"runtimeTargets": {
"runtimes/osx/native/libSkiaSharp.dylib": {
"rid": "osx",
"assetType": "native",
"fileVersion": "0.0.0.0"
}
}
},
"SkiaSharp.NativeAssets.Win32/2.88.9": {
"runtimeTargets": {
"runtimes/win-arm64/native/libSkiaSharp.dll": {
"rid": "win-arm64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/win-x64/native/libSkiaSharp.dll": {
"rid": "win-x64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/win-x86/native/libSkiaSharp.dll": {
"rid": "win-x86",
"assetType": "native",
"fileVersion": "0.0.0.0"
}
}
},
"System.IO.Ports/8.0.0": {
"dependencies": {
"runtime.native.System.IO.Ports": "8.0.0"
},
"runtime": {
"lib/net8.0/System.IO.Ports.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.23.53103"
}
},
"runtimeTargets": {
"runtimes/unix/lib/net8.0/System.IO.Ports.dll": {
"rid": "unix",
"assetType": "runtime",
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.23.53103"
},
"runtimes/win/lib/net8.0/System.IO.Ports.dll": {
"rid": "win",
"assetType": "runtime",
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.23.53103"
}
}
},
"Tmds.DBus.Protocol/0.21.2": {
"runtime": {
"lib/net8.0/Tmds.DBus.Protocol.dll": {
"assemblyVersion": "0.21.2.0",
"fileVersion": "0.21.2.0"
}
}
}
}
},
"libraries": {
"OMControl/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"Avalonia/11.3.9": {
"type": "package",
"serviceable": true,
"sha512": "sha512-YfaTrUxcmVTsGOw2YqdZyunHqZArK16m1pYfNIBvyvAgX89Pzd3A1PgoMkf64u7scL23IN6HkfqhZeFcbYWLoA==",
"path": "avalonia/11.3.9",
"hashPath": "avalonia.11.3.9.nupkg.sha512"
},
"Avalonia.Angle.Windows.Natives/2.1.25547.20250602": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ZL0VLc4s9rvNNFt19Pxm5UNAkmKNylugAwJPX9ulXZ6JWs/l6XZihPWWTyezaoNOVyEPU8YbURtW7XMAtqXH5A==",
"path": "avalonia.angle.windows.natives/2.1.25547.20250602",
"hashPath": "avalonia.angle.windows.natives.2.1.25547.20250602.nupkg.sha512"
},
"Avalonia.Controls.ColorPicker/11.3.9": {
"type": "package",
"serviceable": true,
"sha512": "sha512-AVn/h8R/jhlHLIImECZnCTpcrcRo319J7y2gJ/YU4ELMaCsRTmWY3dxlRyBDbyCukURTupGmsPy6gb7XEYbWow==",
"path": "avalonia.controls.colorpicker/11.3.9",
"hashPath": "avalonia.controls.colorpicker.11.3.9.nupkg.sha512"
},
"Avalonia.Desktop/11.3.9": {
"type": "package",
"serviceable": true,
"sha512": "sha512-zOHbAssjjLz85a2RONK2UMfV/uqMtot9lxcUrSrwa3SneEm8ALeg6Pewc0u/YqvVRI5pyTm4HCtN9w5yRK0uZg==",
"path": "avalonia.desktop/11.3.9",
"hashPath": "avalonia.desktop.11.3.9.nupkg.sha512"
},
"Avalonia.Diagnostics/11.3.9": {
"type": "package",
"serviceable": true,
"sha512": "sha512-d2XGagyYZvFGv6adGrEzCNyoF+6Pfl+YU9zfUE4XyYBMw1zQcv2TBL6nRduZnqlCovf+zJZnNHA8cqpvwWJp7Q==",
"path": "avalonia.diagnostics/11.3.9",
"hashPath": "avalonia.diagnostics.11.3.9.nupkg.sha512"
},
"Avalonia.Fonts.Inter/11.3.9": {
"type": "package",
"serviceable": true,
"sha512": "sha512-g5qaObmtQUNqtuONcoYv6wrN3fNZ3ATyBohOtFAEyopwwFNQPcQaA+JSgW+AFmdBXaBOuvxthD8P4qglagNUvw==",
"path": "avalonia.fonts.inter/11.3.9",
"hashPath": "avalonia.fonts.inter.11.3.9.nupkg.sha512"
},
"Avalonia.FreeDesktop/11.3.9": {
"type": "package",
"serviceable": true,
"sha512": "sha512-PLFQTyzo9T7PpFgE0vYgWjxOXAKwStUxMDdLZAw3vaczKBheUNj2sINiFo60dYPMbW9f2yAVHfHcnReRsjuLDg==",
"path": "avalonia.freedesktop/11.3.9",
"hashPath": "avalonia.freedesktop.11.3.9.nupkg.sha512"
},
"Avalonia.Native/11.3.9": {
"type": "package",
"serviceable": true,
"sha512": "sha512-l8hIlbLOMRVPM0RPX1Er+qnhoGi8TcfTe60f7sxsAbVbvVFC1hdzCya0SyU+F2nWLoFH8AF2/KRPbkM2f4OjXw==",
"path": "avalonia.native/11.3.9",
"hashPath": "avalonia.native.11.3.9.nupkg.sha512"
},
"Avalonia.Remote.Protocol/11.3.9": {
"type": "package",
"serviceable": true,
"sha512": "sha512-2XVLTSNa+Nvwu4D8NqqdudhllTaCRA9ZKlLZZvYLZeuLlzg7OcAV+df/biHQc6AqOv7iMFR9K5Zt3wG0EF4KfQ==",
"path": "avalonia.remote.protocol/11.3.9",
"hashPath": "avalonia.remote.protocol.11.3.9.nupkg.sha512"
},
"Avalonia.Skia/11.3.9": {
"type": "package",
"serviceable": true,
"sha512": "sha512-8Jg1D9RxL377uUz8kiJcgvTfc/jQKF1jvNTkih+lRFmjMA8ZdLt4ZB5E6Yd6lIRH25DbE/4+oHe8pKHey3LfgQ==",
"path": "avalonia.skia/11.3.9",
"hashPath": "avalonia.skia.11.3.9.nupkg.sha512"
},
"Avalonia.Themes.Fluent/11.3.9": {
"type": "package",
"serviceable": true,
"sha512": "sha512-XSgQxSRKgK/yNhkKa1rGuEUDISi+VNxwoj1pq4JUhFd1XXk/dqGsc4MfESItwTyGEYJH+HDbWfWEPVDDxAfUJg==",
"path": "avalonia.themes.fluent/11.3.9",
"hashPath": "avalonia.themes.fluent.11.3.9.nupkg.sha512"
},
"Avalonia.Themes.Simple/11.3.9": {
"type": "package",
"serviceable": true,
"sha512": "sha512-BicF6GQJJs6sI5+GcuTujnUdMijVyBpD3QD9O9ZpqkSSDE3vyZFbRZb5MyCBlPu/LxPANnKoTW95erlpYIICTw==",
"path": "avalonia.themes.simple/11.3.9",
"hashPath": "avalonia.themes.simple.11.3.9.nupkg.sha512"
},
"Avalonia.Win32/11.3.9": {
"type": "package",
"serviceable": true,
"sha512": "sha512-gWOlzYCO1278eRwnvlmGd346nUgWu30MetwfMmBZ4flQrjoQNXB5rUrpQxLS1egyvpupkeUSFDuyJSK/qqcX/g==",
"path": "avalonia.win32/11.3.9",
"hashPath": "avalonia.win32.11.3.9.nupkg.sha512"
},
"Avalonia.X11/11.3.9": {
"type": "package",
"serviceable": true,
"sha512": "sha512-YurSHKV585ydR7CaifcHroY2ujZJR4LZpDtHW9KOCowMcFhbzXNSI0unxAyF5nMQbzg96Itl4gopDX7LulzuLg==",
"path": "avalonia.x11/11.3.9",
"hashPath": "avalonia.x11.11.3.9.nupkg.sha512"
},
"CommunityToolkit.Mvvm/8.2.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-I24ofWVEdplxYjUez9/bljv/qb8r8Ccj6cvYXHexNBegLaD3iDy3QrzAAOYVMmfGWIXxlU1ZtECQNfU07+6hXQ==",
"path": "communitytoolkit.mvvm/8.2.1",
"hashPath": "communitytoolkit.mvvm.8.2.1.nupkg.sha512"
},
"HarfBuzzSharp/8.3.1.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-tLZN66oe/uiRPTZfrCU4i8ScVGwqHNh5MHrXj0yVf4l7Mz0FhTGnQ71RGySROTmdognAs0JtluHkL41pIabWuQ==",
"path": "harfbuzzsharp/8.3.1.1",
"hashPath": "harfbuzzsharp.8.3.1.1.nupkg.sha512"
},
"HarfBuzzSharp.NativeAssets.Linux/8.3.1.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-3EZ1mpIiKWRLL5hUYA82ZHteeDIVaEA/Z0rA/wU6tjx6crcAkJnBPwDXZugBSfo8+J3EznvRJf49uMsqYfKrHg==",
"path": "harfbuzzsharp.nativeassets.linux/8.3.1.1",
"hashPath": "harfbuzzsharp.nativeassets.linux.8.3.1.1.nupkg.sha512"
},
"HarfBuzzSharp.NativeAssets.macOS/8.3.1.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-jbtCsgftcaFLCA13tVKo5iWdElJScrulLTKJre36O4YQTIlwDtPPqhRZNk+Y0vv4D1gxbscasGRucUDfS44ofQ==",
"path": "harfbuzzsharp.nativeassets.macos/8.3.1.1",
"hashPath": "harfbuzzsharp.nativeassets.macos.8.3.1.1.nupkg.sha512"
},
"HarfBuzzSharp.NativeAssets.Win32/8.3.1.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-UsJtQsfAJoFDZrXc4hCUfRPMqccfKZ0iumJ/upcUjz/cmsTgVFGNEL5yaJWmkqsuFYdMWbj/En5/kS4PFl9hBA==",
"path": "harfbuzzsharp.nativeassets.win32/8.3.1.1",
"hashPath": "harfbuzzsharp.nativeassets.win32.8.3.1.1.nupkg.sha512"
},
"MicroCom.Runtime/0.11.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-MEnrZ3UIiH40hjzMDsxrTyi8dtqB5ziv3iBeeU4bXsL/7NLSal9F1lZKpK+tfBRnUoDSdtcW3KufE4yhATOMCA==",
"path": "microcom.runtime/0.11.0",
"hashPath": "microcom.runtime.0.11.0.nupkg.sha512"
},
"runtime.linux-arm.runtime.native.System.IO.Ports/8.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-gK720fg6HemDg8sXcfy+xCMZ9+hF78Gc7BmREbmkS4noqlu1BAr9qZtuWGhLzFjBfgecmdtl4+SYVwJ1VneZBQ==",
"path": "runtime.linux-arm.runtime.native.system.io.ports/8.0.0",
"hashPath": "runtime.linux-arm.runtime.native.system.io.ports.8.0.0.nupkg.sha512"
},
"runtime.linux-arm64.runtime.native.System.IO.Ports/8.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-KYG6/3ojhEWbb3FwQAKgGWPHrY+HKUXXdVjJlrtyCLn3EMcNTaNcPadb2c0ndQzixZSmAxZKopXJr0nLwhOrpQ==",
"path": "runtime.linux-arm64.runtime.native.system.io.ports/8.0.0",
"hashPath": "runtime.linux-arm64.runtime.native.system.io.ports.8.0.0.nupkg.sha512"
},
"runtime.linux-x64.runtime.native.System.IO.Ports/8.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Wnw5vhA4mgGbIFoo6l9Fk3iEcwRSq49a1aKwJgXUCUtEQLCSUDjTGSxqy/oMUuOyyn7uLHsH8KgZzQ1y3lReiQ==",
"path": "runtime.linux-x64.runtime.native.system.io.ports/8.0.0",
"hashPath": "runtime.linux-x64.runtime.native.system.io.ports.8.0.0.nupkg.sha512"
},
"runtime.native.System.IO.Ports/8.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Ee7Sz5llLpTgyKIWzKI/GeuRSbFkOABgJRY00SqTY0OkTYtkB+9l5rFZfE7fxPA3c22RfytCBYkUdAkcmwMjQg==",
"path": "runtime.native.system.io.ports/8.0.0",
"hashPath": "runtime.native.system.io.ports.8.0.0.nupkg.sha512"
},
"runtime.osx-arm64.runtime.native.System.IO.Ports/8.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-rbUBLAaFW9oVkbsb0+XSrAo2QdhBeAyzLl5KQ6Oci9L/u626uXGKInsVJG6B9Z5EO8bmplC8tsMiaHK8wOBZ+w==",
"path": "runtime.osx-arm64.runtime.native.system.io.ports/8.0.0",
"hashPath": "runtime.osx-arm64.runtime.native.system.io.ports.8.0.0.nupkg.sha512"
},
"runtime.osx-x64.runtime.native.System.IO.Ports/8.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-IcfB4jKtM9pkzP9OpYelEcUX1MiDt0IJPBh3XYYdEISFF+6Mc+T8WWi0dr9wVh1gtcdVjubVEIBgB8BHESlGfQ==",
"path": "runtime.osx-x64.runtime.native.system.io.ports/8.0.0",
"hashPath": "runtime.osx-x64.runtime.native.system.io.ports.8.0.0.nupkg.sha512"
},
"SkiaSharp/2.88.9": {
"type": "package",
"serviceable": true,
"sha512": "sha512-3MD5VHjXXieSHCleRLuaTXmL2pD0mB7CcOB1x2kA1I4bhptf4e3R27iM93264ZYuAq6mkUyX5XbcxnZvMJYc1Q==",
"path": "skiasharp/2.88.9",
"hashPath": "skiasharp.2.88.9.nupkg.sha512"
},
"SkiaSharp.NativeAssets.Linux/2.88.9": {
"type": "package",
"serviceable": true,
"sha512": "sha512-cWSaJKVPWAaT/WIn9c8T5uT/l4ETwHxNJTkEOtNKjphNo8AW6TF9O32aRkxqw3l8GUdUo66Bu7EiqtFh/XG0Zg==",
"path": "skiasharp.nativeassets.linux/2.88.9",
"hashPath": "skiasharp.nativeassets.linux.2.88.9.nupkg.sha512"
},
"SkiaSharp.NativeAssets.macOS/2.88.9": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Nv5spmKc4505Ep7oUoJ5vp3KweFpeNqxpyGDWyeEPTX2uR6S6syXIm3gj75dM0YJz7NPvcix48mR5laqs8dPuA==",
"path": "skiasharp.nativeassets.macos/2.88.9",
"hashPath": "skiasharp.nativeassets.macos.2.88.9.nupkg.sha512"
},
"SkiaSharp.NativeAssets.Win32/2.88.9": {
"type": "package",
"serviceable": true,
"sha512": "sha512-wb2kYgU7iy84nQLYZwMeJXixvK++GoIuECjU4ECaUKNuflyRlJKyiRhN1MAHswvlvzuvkrjRWlK0Za6+kYQK7w==",
"path": "skiasharp.nativeassets.win32/2.88.9",
"hashPath": "skiasharp.nativeassets.win32.2.88.9.nupkg.sha512"
},
"System.IO.Ports/8.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-MaiPbx2/QXZc62gm/DrajRrGPG1lU4m08GWMoWiymPYM+ba4kfACp2PbiYpqJ4QiFGhHD00zX3RoVDTucjWe9g==",
"path": "system.io.ports/8.0.0",
"hashPath": "system.io.ports.8.0.0.nupkg.sha512"
},
"Tmds.DBus.Protocol/0.21.2": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ScSMrUrrw8px4kK1Glh0fZv/HQUlg1078bNXNPfRPKQ3WbRzV9HpsydYEOgSoMK5LWICMf2bMwIFH0pGjxjcMA==",
"path": "tmds.dbus.protocol/0.21.2",
"hashPath": "tmds.dbus.protocol.0.21.2.nupkg.sha512"
}
}
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,12 @@
{
"runtimeOptions": {
"tfm": "net9.0",
"framework": {
"name": "Microsoft.NETCore.App",
"version": "9.0.0"
},
"configProperties": {
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
}
}
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v9.0", FrameworkDisplayName = ".NET 9.0")]

View File

@@ -0,0 +1 @@
9a33aa2aa426e62660f086e696536b38c98d63b73e579ca91ab7957a2578adbe

View File

@@ -0,0 +1,194 @@
C:\Users\user\.nuget\packages\avalonia\11.3.9\ref\net8.0\Avalonia.Base.dll
C:\Users\user\.nuget\packages\avalonia.controls.colorpicker\11.3.9\lib\net8.0\Avalonia.Controls.ColorPicker.dll
C:\Users\user\.nuget\packages\avalonia\11.3.9\ref\net8.0\Avalonia.Controls.dll
C:\Users\user\.nuget\packages\avalonia\11.3.9\ref\net8.0\Avalonia.DesignerSupport.dll
C:\Users\user\.nuget\packages\avalonia.desktop\11.3.9\lib\net8.0\Avalonia.Desktop.dll
C:\Users\user\.nuget\packages\avalonia.diagnostics\11.3.9\lib\net8.0\Avalonia.Diagnostics.dll
C:\Users\user\.nuget\packages\avalonia\11.3.9\ref\net8.0\Avalonia.Dialogs.dll
C:\Users\user\.nuget\packages\avalonia\11.3.9\ref\net8.0\Avalonia.dll
C:\Users\user\.nuget\packages\avalonia.fonts.inter\11.3.9\lib\net8.0\Avalonia.Fonts.Inter.dll
C:\Users\user\.nuget\packages\avalonia.freedesktop\11.3.9\lib\net8.0\Avalonia.FreeDesktop.dll
C:\Users\user\.nuget\packages\avalonia\11.3.9\ref\net8.0\Avalonia.Markup.dll
C:\Users\user\.nuget\packages\avalonia\11.3.9\ref\net8.0\Avalonia.Markup.Xaml.dll
C:\Users\user\.nuget\packages\avalonia\11.3.9\ref\net8.0\Avalonia.Metal.dll
C:\Users\user\.nuget\packages\avalonia\11.3.9\ref\net8.0\Avalonia.MicroCom.dll
C:\Users\user\.nuget\packages\avalonia.native\11.3.9\lib\net8.0\Avalonia.Native.dll
C:\Users\user\.nuget\packages\avalonia\11.3.9\ref\net8.0\Avalonia.OpenGL.dll
C:\Users\user\.nuget\packages\avalonia.remote.protocol\11.3.9\lib\net8.0\Avalonia.Remote.Protocol.dll
C:\Users\user\.nuget\packages\avalonia.skia\11.3.9\lib\net8.0\Avalonia.Skia.dll
C:\Users\user\.nuget\packages\avalonia.themes.fluent\11.3.9\lib\net8.0\Avalonia.Themes.Fluent.dll
C:\Users\user\.nuget\packages\avalonia.themes.simple\11.3.9\lib\net8.0\Avalonia.Themes.Simple.dll
C:\Users\user\.nuget\packages\avalonia\11.3.9\ref\net8.0\Avalonia.Vulkan.dll
C:\Users\user\.nuget\packages\avalonia.win32\11.3.9\lib\net8.0\Avalonia.Win32.Automation.dll
C:\Users\user\.nuget\packages\avalonia.win32\11.3.9\lib\net8.0\Avalonia.Win32.dll
C:\Users\user\.nuget\packages\avalonia.x11\11.3.9\lib\net8.0\Avalonia.X11.dll
C:\Users\user\.nuget\packages\communitytoolkit.mvvm\8.2.1\lib\net6.0\CommunityToolkit.Mvvm.dll
C:\Users\user\.nuget\packages\harfbuzzsharp\8.3.1.1\lib\net8.0\HarfBuzzSharp.dll
C:\Users\user\.nuget\packages\microcom.runtime\0.11.0\lib\net5.0\MicroCom.Runtime.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\Microsoft.CSharp.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\Microsoft.VisualBasic.Core.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\Microsoft.VisualBasic.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\Microsoft.Win32.Primitives.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\Microsoft.Win32.Registry.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\mscorlib.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\netstandard.dll
C:\Users\user\.nuget\packages\skiasharp\2.88.9\lib\net6.0\SkiaSharp.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.AppContext.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Buffers.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Collections.Concurrent.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Collections.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Collections.Immutable.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Collections.NonGeneric.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Collections.Specialized.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.ComponentModel.Annotations.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.ComponentModel.DataAnnotations.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.ComponentModel.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.ComponentModel.EventBasedAsync.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.ComponentModel.Primitives.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.ComponentModel.TypeConverter.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Configuration.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Console.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Core.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Data.Common.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Data.DataSetExtensions.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Data.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Diagnostics.Contracts.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Diagnostics.Debug.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Diagnostics.DiagnosticSource.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Diagnostics.FileVersionInfo.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Diagnostics.Process.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Diagnostics.StackTrace.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Diagnostics.TextWriterTraceListener.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Diagnostics.Tools.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Diagnostics.TraceSource.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Diagnostics.Tracing.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Drawing.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Drawing.Primitives.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Dynamic.Runtime.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Formats.Asn1.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Formats.Tar.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Globalization.Calendars.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Globalization.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Globalization.Extensions.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.IO.Compression.Brotli.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.IO.Compression.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.IO.Compression.FileSystem.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.IO.Compression.ZipFile.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.IO.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.IO.FileSystem.AccessControl.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.IO.FileSystem.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.IO.FileSystem.DriveInfo.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.IO.FileSystem.Primitives.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.IO.FileSystem.Watcher.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.IO.IsolatedStorage.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.IO.MemoryMappedFiles.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.IO.Pipelines.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.IO.Pipes.AccessControl.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.IO.Pipes.dll
C:\Users\user\.nuget\packages\system.io.ports\8.0.0\lib\net8.0\System.IO.Ports.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.IO.UnmanagedMemoryStream.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Linq.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Linq.Expressions.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Linq.Parallel.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Linq.Queryable.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Memory.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Net.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Net.Http.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Net.Http.Json.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Net.HttpListener.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Net.Mail.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Net.NameResolution.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Net.NetworkInformation.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Net.Ping.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Net.Primitives.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Net.Quic.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Net.Requests.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Net.Security.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Net.ServicePoint.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Net.Sockets.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Net.WebClient.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Net.WebHeaderCollection.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Net.WebProxy.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Net.WebSockets.Client.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Net.WebSockets.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Numerics.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Numerics.Vectors.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.ObjectModel.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Reflection.DispatchProxy.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Reflection.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Reflection.Emit.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Reflection.Emit.ILGeneration.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Reflection.Emit.Lightweight.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Reflection.Extensions.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Reflection.Metadata.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Reflection.Primitives.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Reflection.TypeExtensions.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Resources.Reader.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Resources.ResourceManager.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Resources.Writer.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Runtime.CompilerServices.Unsafe.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Runtime.CompilerServices.VisualC.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Runtime.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Runtime.Extensions.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Runtime.Handles.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Runtime.InteropServices.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Runtime.InteropServices.JavaScript.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Runtime.InteropServices.RuntimeInformation.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Runtime.Intrinsics.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Runtime.Loader.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Runtime.Numerics.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Runtime.Serialization.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Runtime.Serialization.Formatters.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Runtime.Serialization.Json.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Runtime.Serialization.Primitives.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Runtime.Serialization.Xml.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Security.AccessControl.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Security.Claims.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Security.Cryptography.Algorithms.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Security.Cryptography.Cng.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Security.Cryptography.Csp.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Security.Cryptography.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Security.Cryptography.Encoding.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Security.Cryptography.OpenSsl.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Security.Cryptography.Primitives.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Security.Cryptography.X509Certificates.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Security.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Security.Principal.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Security.Principal.Windows.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Security.SecureString.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.ServiceModel.Web.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.ServiceProcess.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Text.Encoding.CodePages.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Text.Encoding.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Text.Encoding.Extensions.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Text.Encodings.Web.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Text.Json.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Text.RegularExpressions.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Threading.Channels.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Threading.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Threading.Overlapped.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Threading.Tasks.Dataflow.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Threading.Tasks.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Threading.Tasks.Extensions.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Threading.Tasks.Parallel.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Threading.Thread.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Threading.ThreadPool.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Threading.Timer.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Transactions.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Transactions.Local.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.ValueTuple.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Web.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Web.HttpUtility.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Windows.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Xml.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Xml.Linq.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Xml.ReaderWriter.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Xml.Serialization.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Xml.XDocument.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Xml.XmlDocument.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Xml.XmlSerializer.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Xml.XPath.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\System.Xml.XPath.XDocument.dll
C:\Users\user\.nuget\packages\tmds.dbus.protocol\0.21.2\lib\net8.0\Tmds.DBus.Protocol.dll
C:\Users\user\.nuget\packages\microsoft.netcore.app.ref\9.0.11\ref\net9.0\WindowsBase.dll

Binary file not shown.

View File

@@ -0,0 +1,22 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("OMControl")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("OMControl")]
[assembly: System.Reflection.AssemblyTitleAttribute("OMControl")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Generato dalla classe WriteCodeFragment di MSBuild.

View File

@@ -0,0 +1 @@
b2391bae0b7cd451cdd751d430a256e47366f824e29381d0ca2458d6ceb7c695

View File

@@ -0,0 +1,30 @@
is_global = true
build_property.AvaloniaNameGeneratorIsEnabled = true
build_property.AvaloniaNameGeneratorBehavior = InitializeComponent
build_property.AvaloniaNameGeneratorDefaultFieldModifier = internal
build_property.AvaloniaNameGeneratorFilterByPath = *
build_property.AvaloniaNameGeneratorFilterByNamespace = *
build_property.AvaloniaNameGeneratorViewFileNamingStrategy = NamespaceAndClassName
build_property.AvaloniaNameGeneratorAttachDevTools = true
build_property.TargetFramework = net9.0
build_property.TargetFrameworkIdentifier = .NETCoreApp
build_property.TargetFrameworkVersion = v9.0
build_property.TargetPlatformMinVersion =
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = OMControl
build_property.ProjectDir = C:\temp\OMControl\
build_property.EnableComHosting =
build_property.EnableGeneratedComInterfaceComImportInterop =
build_property.EffectiveAnalysisLevelStyle = 9.0
build_property.EnableCodeStyleSeverity =
[C:/temp/OMControl/App.axaml]
build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml
[C:/temp/OMControl/Views/MainWindow.axaml]
build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml

Binary file not shown.

View File

@@ -0,0 +1 @@
ef4691f2c51cd20143535a311572003dba24f6ea203585b7dc4290bebccfda6a

View File

@@ -0,0 +1,82 @@
C:\temp\OMControl\obj\Debug\net9.0\OMControl.csproj.AssemblyReference.cache
C:\temp\OMControl\obj\Debug\net9.0\Avalonia\Resources.Inputs.cache
C:\temp\OMControl\obj\Debug\net9.0\Avalonia\resources
C:\temp\OMControl\obj\Debug\net9.0\OMControl.GeneratedMSBuildEditorConfig.editorconfig
C:\temp\OMControl\obj\Debug\net9.0\OMControl.AssemblyInfoInputs.cache
C:\temp\OMControl\obj\Debug\net9.0\OMControl.AssemblyInfo.cs
C:\temp\OMControl\obj\Debug\net9.0\OMControl.csproj.CoreCompileInputs.cache
C:\temp\OMControl\obj\Debug\net9.0\OMControl.dll
C:\temp\OMControl\obj\Debug\net9.0\refint\OMControl.dll
C:\temp\OMControl\obj\Debug\net9.0\OMControl.pdb
C:\temp\OMControl\bin\Debug\net9.0\OMControl.exe
C:\temp\OMControl\bin\Debug\net9.0\OMControl.deps.json
C:\temp\OMControl\bin\Debug\net9.0\OMControl.runtimeconfig.json
C:\temp\OMControl\bin\Debug\net9.0\OMControl.dll
C:\temp\OMControl\bin\Debug\net9.0\OMControl.pdb
C:\temp\OMControl\bin\Debug\net9.0\Avalonia.Base.dll
C:\temp\OMControl\bin\Debug\net9.0\Avalonia.Controls.dll
C:\temp\OMControl\bin\Debug\net9.0\Avalonia.DesignerSupport.dll
C:\temp\OMControl\bin\Debug\net9.0\Avalonia.Dialogs.dll
C:\temp\OMControl\bin\Debug\net9.0\Avalonia.Markup.Xaml.dll
C:\temp\OMControl\bin\Debug\net9.0\Avalonia.Markup.dll
C:\temp\OMControl\bin\Debug\net9.0\Avalonia.Metal.dll
C:\temp\OMControl\bin\Debug\net9.0\Avalonia.MicroCom.dll
C:\temp\OMControl\bin\Debug\net9.0\Avalonia.OpenGL.dll
C:\temp\OMControl\bin\Debug\net9.0\Avalonia.Vulkan.dll
C:\temp\OMControl\bin\Debug\net9.0\Avalonia.dll
C:\temp\OMControl\bin\Debug\net9.0\Avalonia.Controls.ColorPicker.dll
C:\temp\OMControl\bin\Debug\net9.0\Avalonia.Desktop.dll
C:\temp\OMControl\bin\Debug\net9.0\Avalonia.Diagnostics.dll
C:\temp\OMControl\bin\Debug\net9.0\Avalonia.Fonts.Inter.dll
C:\temp\OMControl\bin\Debug\net9.0\Avalonia.FreeDesktop.dll
C:\temp\OMControl\bin\Debug\net9.0\Avalonia.Native.dll
C:\temp\OMControl\bin\Debug\net9.0\Avalonia.Remote.Protocol.dll
C:\temp\OMControl\bin\Debug\net9.0\Avalonia.Skia.dll
C:\temp\OMControl\bin\Debug\net9.0\Avalonia.Themes.Fluent.dll
C:\temp\OMControl\bin\Debug\net9.0\Avalonia.Themes.Simple.dll
C:\temp\OMControl\bin\Debug\net9.0\Avalonia.Win32.Automation.dll
C:\temp\OMControl\bin\Debug\net9.0\Avalonia.Win32.dll
C:\temp\OMControl\bin\Debug\net9.0\Avalonia.X11.dll
C:\temp\OMControl\bin\Debug\net9.0\CommunityToolkit.Mvvm.dll
C:\temp\OMControl\bin\Debug\net9.0\HarfBuzzSharp.dll
C:\temp\OMControl\bin\Debug\net9.0\MicroCom.Runtime.dll
C:\temp\OMControl\bin\Debug\net9.0\SkiaSharp.dll
C:\temp\OMControl\bin\Debug\net9.0\System.IO.Ports.dll
C:\temp\OMControl\bin\Debug\net9.0\Tmds.DBus.Protocol.dll
C:\temp\OMControl\bin\Debug\net9.0\runtimes\win-arm64\native\av_libglesv2.dll
C:\temp\OMControl\bin\Debug\net9.0\runtimes\win-x64\native\av_libglesv2.dll
C:\temp\OMControl\bin\Debug\net9.0\runtimes\win-x86\native\av_libglesv2.dll
C:\temp\OMControl\bin\Debug\net9.0\runtimes\osx\native\libAvaloniaNative.dylib
C:\temp\OMControl\bin\Debug\net9.0\runtimes\linux-arm\native\libHarfBuzzSharp.so
C:\temp\OMControl\bin\Debug\net9.0\runtimes\linux-arm64\native\libHarfBuzzSharp.so
C:\temp\OMControl\bin\Debug\net9.0\runtimes\linux-loongarch64\native\libHarfBuzzSharp.so
C:\temp\OMControl\bin\Debug\net9.0\runtimes\linux-musl-arm\native\libHarfBuzzSharp.so
C:\temp\OMControl\bin\Debug\net9.0\runtimes\linux-musl-arm64\native\libHarfBuzzSharp.so
C:\temp\OMControl\bin\Debug\net9.0\runtimes\linux-musl-loongarch64\native\libHarfBuzzSharp.so
C:\temp\OMControl\bin\Debug\net9.0\runtimes\linux-musl-riscv64\native\libHarfBuzzSharp.so
C:\temp\OMControl\bin\Debug\net9.0\runtimes\linux-musl-x64\native\libHarfBuzzSharp.so
C:\temp\OMControl\bin\Debug\net9.0\runtimes\linux-riscv64\native\libHarfBuzzSharp.so
C:\temp\OMControl\bin\Debug\net9.0\runtimes\linux-x64\native\libHarfBuzzSharp.so
C:\temp\OMControl\bin\Debug\net9.0\runtimes\linux-x86\native\libHarfBuzzSharp.so
C:\temp\OMControl\bin\Debug\net9.0\runtimes\osx\native\libHarfBuzzSharp.dylib
C:\temp\OMControl\bin\Debug\net9.0\runtimes\win-arm64\native\libHarfBuzzSharp.dll
C:\temp\OMControl\bin\Debug\net9.0\runtimes\win-x64\native\libHarfBuzzSharp.dll
C:\temp\OMControl\bin\Debug\net9.0\runtimes\win-x86\native\libHarfBuzzSharp.dll
C:\temp\OMControl\bin\Debug\net9.0\runtimes\linux-arm\native\libSystem.IO.Ports.Native.so
C:\temp\OMControl\bin\Debug\net9.0\runtimes\linux-arm64\native\libSystem.IO.Ports.Native.so
C:\temp\OMControl\bin\Debug\net9.0\runtimes\linux-x64\native\libSystem.IO.Ports.Native.so
C:\temp\OMControl\bin\Debug\net9.0\runtimes\osx-arm64\native\libSystem.IO.Ports.Native.dylib
C:\temp\OMControl\bin\Debug\net9.0\runtimes\osx-x64\native\libSystem.IO.Ports.Native.dylib
C:\temp\OMControl\bin\Debug\net9.0\runtimes\linux-arm\native\libSkiaSharp.so
C:\temp\OMControl\bin\Debug\net9.0\runtimes\linux-arm64\native\libSkiaSharp.so
C:\temp\OMControl\bin\Debug\net9.0\runtimes\linux-musl-x64\native\libSkiaSharp.so
C:\temp\OMControl\bin\Debug\net9.0\runtimes\linux-x64\native\libSkiaSharp.so
C:\temp\OMControl\bin\Debug\net9.0\runtimes\osx\native\libSkiaSharp.dylib
C:\temp\OMControl\bin\Debug\net9.0\runtimes\win-arm64\native\libSkiaSharp.dll
C:\temp\OMControl\bin\Debug\net9.0\runtimes\win-x64\native\libSkiaSharp.dll
C:\temp\OMControl\bin\Debug\net9.0\runtimes\win-x86\native\libSkiaSharp.dll
C:\temp\OMControl\bin\Debug\net9.0\runtimes\unix\lib\net8.0\System.IO.Ports.dll
C:\temp\OMControl\bin\Debug\net9.0\runtimes\win\lib\net8.0\System.IO.Ports.dll
C:\temp\OMControl\obj\Debug\net9.0\OMControl.csproj.Up2Date
C:\temp\OMControl\obj\Debug\net9.0\OMControl.genruntimeconfig.cache
C:\temp\OMControl\obj\Debug\net9.0\ref\OMControl.dll

Binary file not shown.

View File

@@ -0,0 +1 @@
4989937ec1098fde06ce16670c251f8f4ad272e95e7bf251942173c2d3c7a0ce

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Some files were not shown because too many files have changed in this diff Show More