created desktop
This commit is contained in:
parent
427bb6d163
commit
c690640f78
15
Presence.Desktop/App.axaml
Normal file
15
Presence.Desktop/App.axaml
Normal file
@ -0,0 +1,15 @@
|
||||
<Application xmlns="https://github.com/avaloniaui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
x:Class="Presence.Desktop.App"
|
||||
xmlns:local="using:Presence.Desktop"
|
||||
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>
|
29
Presence.Desktop/App.axaml.cs
Normal file
29
Presence.Desktop/App.axaml.cs
Normal file
@ -0,0 +1,29 @@
|
||||
using Avalonia;
|
||||
using Avalonia.Controls.ApplicationLifetimes;
|
||||
using Avalonia.Markup.Xaml;
|
||||
using Presence.Desktop.ViewModels;
|
||||
using Presence.Desktop.Views;
|
||||
|
||||
namespace Presence.Desktop;
|
||||
|
||||
public partial class App : Application
|
||||
{
|
||||
public override void Initialize()
|
||||
{
|
||||
AvaloniaXamlLoader.Load(this);
|
||||
}
|
||||
|
||||
public override void OnFrameworkInitializationCompleted()
|
||||
{
|
||||
if (ApplicationLifetime is IClassicDesktopStyleApplicationLifetime desktop)
|
||||
{
|
||||
desktop.MainWindow = new MainWindow
|
||||
{
|
||||
DataContext = new MainWindowViewModel(),
|
||||
};
|
||||
}
|
||||
|
||||
base.OnFrameworkInitializationCompleted();
|
||||
}
|
||||
|
||||
}
|
BIN
Presence.Desktop/Assets/avalonia-logo.ico
Normal file
BIN
Presence.Desktop/Assets/avalonia-logo.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 172 KiB |
28
Presence.Desktop/Presence.Desktop.csproj
Normal file
28
Presence.Desktop/Presence.Desktop.csproj
Normal file
@ -0,0 +1,28 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<PropertyGroup>
|
||||
<OutputType>WinExe</OutputType>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<Nullable>enable</Nullable>
|
||||
<BuiltInComInteropSupport>true</BuiltInComInteropSupport>
|
||||
<ApplicationManifest>app.manifest</ApplicationManifest>
|
||||
<AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Folder Include="Models\" />
|
||||
<AvaloniaResource Include="Assets\**" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Avalonia" Version="11.2.1" />
|
||||
<PackageReference Include="Avalonia.Desktop" Version="11.2.1" />
|
||||
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.2.1" />
|
||||
<PackageReference Include="Avalonia.Fonts.Inter" Version="11.2.1" />
|
||||
<!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
|
||||
<PackageReference Include="Avalonia.Diagnostics" Version="11.2.1">
|
||||
<IncludeAssets Condition="'$(Configuration)' != 'Debug'">None</IncludeAssets>
|
||||
<PrivateAssets Condition="'$(Configuration)' != 'Debug'">All</PrivateAssets>
|
||||
</PackageReference>
|
||||
<PackageReference Include="Avalonia.ReactiveUI" Version="11.2.1" />
|
||||
</ItemGroup>
|
||||
</Project>
|
23
Presence.Desktop/Program.cs
Normal file
23
Presence.Desktop/Program.cs
Normal file
@ -0,0 +1,23 @@
|
||||
using Avalonia;
|
||||
using Avalonia.ReactiveUI;
|
||||
using System;
|
||||
|
||||
namespace Presence.Desktop;
|
||||
|
||||
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()
|
||||
.UseReactiveUI();
|
||||
}
|
31
Presence.Desktop/ViewLocator.cs
Normal file
31
Presence.Desktop/ViewLocator.cs
Normal file
@ -0,0 +1,31 @@
|
||||
using System;
|
||||
using Avalonia.Controls;
|
||||
using Avalonia.Controls.Templates;
|
||||
using Presence.Desktop.ViewModels;
|
||||
|
||||
namespace Presence.Desktop;
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
6
Presence.Desktop/ViewModels/MainWindowViewModel.cs
Normal file
6
Presence.Desktop/ViewModels/MainWindowViewModel.cs
Normal file
@ -0,0 +1,6 @@
|
||||
namespace Presence.Desktop.ViewModels;
|
||||
|
||||
public class MainWindowViewModel : ViewModelBase
|
||||
{
|
||||
public string Greeting { get; } = "Welcome to Avalonia!";
|
||||
}
|
7
Presence.Desktop/ViewModels/ViewModelBase.cs
Normal file
7
Presence.Desktop/ViewModels/ViewModelBase.cs
Normal file
@ -0,0 +1,7 @@
|
||||
using ReactiveUI;
|
||||
|
||||
namespace Presence.Desktop.ViewModels;
|
||||
|
||||
public class ViewModelBase : ReactiveObject
|
||||
{
|
||||
}
|
20
Presence.Desktop/Views/MainWindow.axaml
Normal file
20
Presence.Desktop/Views/MainWindow.axaml
Normal file
@ -0,0 +1,20 @@
|
||||
<Window xmlns="https://github.com/avaloniaui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
xmlns:vm="using:Presence.Desktop.ViewModels"
|
||||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
|
||||
x:Class="Presence.Desktop.Views.MainWindow"
|
||||
x:DataType="vm:MainWindowViewModel"
|
||||
Icon="/Assets/avalonia-logo.ico"
|
||||
Title="Presence.Desktop">
|
||||
|
||||
<Design.DataContext>
|
||||
<!-- This only sets the DataContext for the previewer in an IDE,
|
||||
to set the actual DataContext for runtime, set the DataContext property in code (look at App.axaml.cs) -->
|
||||
<vm:MainWindowViewModel/>
|
||||
</Design.DataContext>
|
||||
|
||||
<TextBlock Text="{Binding Greeting}" HorizontalAlignment="Center" VerticalAlignment="Center"/>
|
||||
|
||||
</Window>
|
11
Presence.Desktop/Views/MainWindow.axaml.cs
Normal file
11
Presence.Desktop/Views/MainWindow.axaml.cs
Normal file
@ -0,0 +1,11 @@
|
||||
using Avalonia.Controls;
|
||||
|
||||
namespace Presence.Desktop.Views;
|
||||
|
||||
public partial class MainWindow : Window
|
||||
{
|
||||
public MainWindow()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
}
|
18
Presence.Desktop/app.manifest
Normal file
18
Presence.Desktop/app.manifest
Normal 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="Presence.Desktop.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>
|
BIN
Presence.Desktop/bin/Debug/net8.0/Avalonia.Base.dll
Executable file
BIN
Presence.Desktop/bin/Debug/net8.0/Avalonia.Base.dll
Executable file
Binary file not shown.
BIN
Presence.Desktop/bin/Debug/net8.0/Avalonia.Controls.ColorPicker.dll
Executable file
BIN
Presence.Desktop/bin/Debug/net8.0/Avalonia.Controls.ColorPicker.dll
Executable file
Binary file not shown.
BIN
Presence.Desktop/bin/Debug/net8.0/Avalonia.Controls.DataGrid.dll
Executable file
BIN
Presence.Desktop/bin/Debug/net8.0/Avalonia.Controls.DataGrid.dll
Executable file
Binary file not shown.
BIN
Presence.Desktop/bin/Debug/net8.0/Avalonia.Controls.dll
Executable file
BIN
Presence.Desktop/bin/Debug/net8.0/Avalonia.Controls.dll
Executable file
Binary file not shown.
BIN
Presence.Desktop/bin/Debug/net8.0/Avalonia.DesignerSupport.dll
Executable file
BIN
Presence.Desktop/bin/Debug/net8.0/Avalonia.DesignerSupport.dll
Executable file
Binary file not shown.
BIN
Presence.Desktop/bin/Debug/net8.0/Avalonia.Desktop.dll
Executable file
BIN
Presence.Desktop/bin/Debug/net8.0/Avalonia.Desktop.dll
Executable file
Binary file not shown.
BIN
Presence.Desktop/bin/Debug/net8.0/Avalonia.Diagnostics.dll
Executable file
BIN
Presence.Desktop/bin/Debug/net8.0/Avalonia.Diagnostics.dll
Executable file
Binary file not shown.
BIN
Presence.Desktop/bin/Debug/net8.0/Avalonia.Dialogs.dll
Executable file
BIN
Presence.Desktop/bin/Debug/net8.0/Avalonia.Dialogs.dll
Executable file
Binary file not shown.
BIN
Presence.Desktop/bin/Debug/net8.0/Avalonia.Fonts.Inter.dll
Executable file
BIN
Presence.Desktop/bin/Debug/net8.0/Avalonia.Fonts.Inter.dll
Executable file
Binary file not shown.
BIN
Presence.Desktop/bin/Debug/net8.0/Avalonia.FreeDesktop.dll
Executable file
BIN
Presence.Desktop/bin/Debug/net8.0/Avalonia.FreeDesktop.dll
Executable file
Binary file not shown.
BIN
Presence.Desktop/bin/Debug/net8.0/Avalonia.Markup.Xaml.dll
Executable file
BIN
Presence.Desktop/bin/Debug/net8.0/Avalonia.Markup.Xaml.dll
Executable file
Binary file not shown.
BIN
Presence.Desktop/bin/Debug/net8.0/Avalonia.Markup.dll
Executable file
BIN
Presence.Desktop/bin/Debug/net8.0/Avalonia.Markup.dll
Executable file
Binary file not shown.
BIN
Presence.Desktop/bin/Debug/net8.0/Avalonia.Metal.dll
Executable file
BIN
Presence.Desktop/bin/Debug/net8.0/Avalonia.Metal.dll
Executable file
Binary file not shown.
BIN
Presence.Desktop/bin/Debug/net8.0/Avalonia.MicroCom.dll
Executable file
BIN
Presence.Desktop/bin/Debug/net8.0/Avalonia.MicroCom.dll
Executable file
Binary file not shown.
BIN
Presence.Desktop/bin/Debug/net8.0/Avalonia.Native.dll
Executable file
BIN
Presence.Desktop/bin/Debug/net8.0/Avalonia.Native.dll
Executable file
Binary file not shown.
BIN
Presence.Desktop/bin/Debug/net8.0/Avalonia.OpenGL.dll
Executable file
BIN
Presence.Desktop/bin/Debug/net8.0/Avalonia.OpenGL.dll
Executable file
Binary file not shown.
BIN
Presence.Desktop/bin/Debug/net8.0/Avalonia.ReactiveUI.dll
Executable file
BIN
Presence.Desktop/bin/Debug/net8.0/Avalonia.ReactiveUI.dll
Executable file
Binary file not shown.
BIN
Presence.Desktop/bin/Debug/net8.0/Avalonia.Remote.Protocol.dll
Executable file
BIN
Presence.Desktop/bin/Debug/net8.0/Avalonia.Remote.Protocol.dll
Executable file
Binary file not shown.
BIN
Presence.Desktop/bin/Debug/net8.0/Avalonia.Skia.dll
Executable file
BIN
Presence.Desktop/bin/Debug/net8.0/Avalonia.Skia.dll
Executable file
Binary file not shown.
BIN
Presence.Desktop/bin/Debug/net8.0/Avalonia.Themes.Fluent.dll
Executable file
BIN
Presence.Desktop/bin/Debug/net8.0/Avalonia.Themes.Fluent.dll
Executable file
Binary file not shown.
BIN
Presence.Desktop/bin/Debug/net8.0/Avalonia.Themes.Simple.dll
Executable file
BIN
Presence.Desktop/bin/Debug/net8.0/Avalonia.Themes.Simple.dll
Executable file
Binary file not shown.
BIN
Presence.Desktop/bin/Debug/net8.0/Avalonia.Vulkan.dll
Executable file
BIN
Presence.Desktop/bin/Debug/net8.0/Avalonia.Vulkan.dll
Executable file
Binary file not shown.
BIN
Presence.Desktop/bin/Debug/net8.0/Avalonia.Win32.dll
Executable file
BIN
Presence.Desktop/bin/Debug/net8.0/Avalonia.Win32.dll
Executable file
Binary file not shown.
BIN
Presence.Desktop/bin/Debug/net8.0/Avalonia.X11.dll
Executable file
BIN
Presence.Desktop/bin/Debug/net8.0/Avalonia.X11.dll
Executable file
Binary file not shown.
BIN
Presence.Desktop/bin/Debug/net8.0/Avalonia.dll
Executable file
BIN
Presence.Desktop/bin/Debug/net8.0/Avalonia.dll
Executable file
Binary file not shown.
BIN
Presence.Desktop/bin/Debug/net8.0/DynamicData.dll
Executable file
BIN
Presence.Desktop/bin/Debug/net8.0/DynamicData.dll
Executable file
Binary file not shown.
BIN
Presence.Desktop/bin/Debug/net8.0/HarfBuzzSharp.dll
Executable file
BIN
Presence.Desktop/bin/Debug/net8.0/HarfBuzzSharp.dll
Executable file
Binary file not shown.
BIN
Presence.Desktop/bin/Debug/net8.0/MicroCom.Runtime.dll
Executable file
BIN
Presence.Desktop/bin/Debug/net8.0/MicroCom.Runtime.dll
Executable file
Binary file not shown.
BIN
Presence.Desktop/bin/Debug/net8.0/Presence.Desktop
Executable file
BIN
Presence.Desktop/bin/Debug/net8.0/Presence.Desktop
Executable file
Binary file not shown.
732
Presence.Desktop/bin/Debug/net8.0/Presence.Desktop.deps.json
Normal file
732
Presence.Desktop/bin/Debug/net8.0/Presence.Desktop.deps.json
Normal file
@ -0,0 +1,732 @@
|
||||
{
|
||||
"runtimeTarget": {
|
||||
"name": ".NETCoreApp,Version=v8.0",
|
||||
"signature": ""
|
||||
},
|
||||
"compilationOptions": {},
|
||||
"targets": {
|
||||
".NETCoreApp,Version=v8.0": {
|
||||
"Presence.Desktop/1.0.0": {
|
||||
"dependencies": {
|
||||
"Avalonia": "11.2.1",
|
||||
"Avalonia.Desktop": "11.2.1",
|
||||
"Avalonia.Diagnostics": "11.2.1",
|
||||
"Avalonia.Fonts.Inter": "11.2.1",
|
||||
"Avalonia.ReactiveUI": "11.2.1",
|
||||
"Avalonia.Themes.Fluent": "11.2.1"
|
||||
},
|
||||
"runtime": {
|
||||
"Presence.Desktop.dll": {}
|
||||
}
|
||||
},
|
||||
"Avalonia/11.2.1": {
|
||||
"dependencies": {
|
||||
"Avalonia.BuildServices": "0.0.29",
|
||||
"Avalonia.Remote.Protocol": "11.2.1",
|
||||
"MicroCom.Runtime": "0.11.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/Avalonia.Base.dll": {
|
||||
"assemblyVersion": "11.2.1.0",
|
||||
"fileVersion": "11.2.1.0"
|
||||
},
|
||||
"lib/net8.0/Avalonia.Controls.dll": {
|
||||
"assemblyVersion": "11.2.1.0",
|
||||
"fileVersion": "11.2.1.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.2.1.0",
|
||||
"fileVersion": "11.2.1.0"
|
||||
},
|
||||
"lib/net8.0/Avalonia.Markup.Xaml.dll": {
|
||||
"assemblyVersion": "11.2.1.0",
|
||||
"fileVersion": "11.2.1.0"
|
||||
},
|
||||
"lib/net8.0/Avalonia.Markup.dll": {
|
||||
"assemblyVersion": "11.2.1.0",
|
||||
"fileVersion": "11.2.1.0"
|
||||
},
|
||||
"lib/net8.0/Avalonia.Metal.dll": {
|
||||
"assemblyVersion": "11.2.1.0",
|
||||
"fileVersion": "11.2.1.0"
|
||||
},
|
||||
"lib/net8.0/Avalonia.MicroCom.dll": {
|
||||
"assemblyVersion": "11.2.1.0",
|
||||
"fileVersion": "11.2.1.0"
|
||||
},
|
||||
"lib/net8.0/Avalonia.OpenGL.dll": {
|
||||
"assemblyVersion": "11.2.1.0",
|
||||
"fileVersion": "11.2.1.0"
|
||||
},
|
||||
"lib/net8.0/Avalonia.Vulkan.dll": {
|
||||
"assemblyVersion": "11.2.1.0",
|
||||
"fileVersion": "11.2.1.0"
|
||||
},
|
||||
"lib/net8.0/Avalonia.dll": {
|
||||
"assemblyVersion": "11.2.1.0",
|
||||
"fileVersion": "11.2.1.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Avalonia.Angle.Windows.Natives/2.1.22045.20230930": {
|
||||
"runtimeTargets": {
|
||||
"runtimes/win-arm64/native/av_libglesv2.dll": {
|
||||
"rid": "win-arm64",
|
||||
"assetType": "native",
|
||||
"fileVersion": "0.0.0.0"
|
||||
},
|
||||
"runtimes/win-x64/native/av_libglesv2.dll": {
|
||||
"rid": "win-x64",
|
||||
"assetType": "native",
|
||||
"fileVersion": "0.0.0.0"
|
||||
},
|
||||
"runtimes/win-x86/native/av_libglesv2.dll": {
|
||||
"rid": "win-x86",
|
||||
"assetType": "native",
|
||||
"fileVersion": "0.0.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Avalonia.BuildServices/0.0.29": {},
|
||||
"Avalonia.Controls.ColorPicker/11.2.1": {
|
||||
"dependencies": {
|
||||
"Avalonia": "11.2.1",
|
||||
"Avalonia.Remote.Protocol": "11.2.1"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/Avalonia.Controls.ColorPicker.dll": {
|
||||
"assemblyVersion": "11.2.1.0",
|
||||
"fileVersion": "11.2.1.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Avalonia.Controls.DataGrid/11.2.1": {
|
||||
"dependencies": {
|
||||
"Avalonia": "11.2.1",
|
||||
"Avalonia.Remote.Protocol": "11.2.1"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/Avalonia.Controls.DataGrid.dll": {
|
||||
"assemblyVersion": "11.2.1.0",
|
||||
"fileVersion": "11.2.1.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Avalonia.Desktop/11.2.1": {
|
||||
"dependencies": {
|
||||
"Avalonia": "11.2.1",
|
||||
"Avalonia.Native": "11.2.1",
|
||||
"Avalonia.Skia": "11.2.1",
|
||||
"Avalonia.Win32": "11.2.1",
|
||||
"Avalonia.X11": "11.2.1"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/Avalonia.Desktop.dll": {
|
||||
"assemblyVersion": "11.2.1.0",
|
||||
"fileVersion": "11.2.1.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Avalonia.Diagnostics/11.2.1": {
|
||||
"dependencies": {
|
||||
"Avalonia": "11.2.1",
|
||||
"Avalonia.Controls.ColorPicker": "11.2.1",
|
||||
"Avalonia.Controls.DataGrid": "11.2.1",
|
||||
"Avalonia.Themes.Simple": "11.2.1"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/Avalonia.Diagnostics.dll": {
|
||||
"assemblyVersion": "11.2.1.0",
|
||||
"fileVersion": "11.2.1.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Avalonia.Fonts.Inter/11.2.1": {
|
||||
"dependencies": {
|
||||
"Avalonia": "11.2.1"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/Avalonia.Fonts.Inter.dll": {
|
||||
"assemblyVersion": "11.2.1.0",
|
||||
"fileVersion": "11.2.1.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Avalonia.FreeDesktop/11.2.1": {
|
||||
"dependencies": {
|
||||
"Avalonia": "11.2.1",
|
||||
"Tmds.DBus.Protocol": "0.20.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/Avalonia.FreeDesktop.dll": {
|
||||
"assemblyVersion": "11.2.1.0",
|
||||
"fileVersion": "11.2.1.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Avalonia.Native/11.2.1": {
|
||||
"dependencies": {
|
||||
"Avalonia": "11.2.1"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/Avalonia.Native.dll": {
|
||||
"assemblyVersion": "11.2.1.0",
|
||||
"fileVersion": "11.2.1.0"
|
||||
}
|
||||
},
|
||||
"runtimeTargets": {
|
||||
"runtimes/osx/native/libAvaloniaNative.dylib": {
|
||||
"rid": "osx",
|
||||
"assetType": "native",
|
||||
"fileVersion": "0.0.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Avalonia.ReactiveUI/11.2.1": {
|
||||
"dependencies": {
|
||||
"Avalonia": "11.2.1",
|
||||
"ReactiveUI": "20.1.1",
|
||||
"System.Reactive": "6.0.1"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/Avalonia.ReactiveUI.dll": {
|
||||
"assemblyVersion": "11.2.1.0",
|
||||
"fileVersion": "11.2.1.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Avalonia.Remote.Protocol/11.2.1": {
|
||||
"runtime": {
|
||||
"lib/net8.0/Avalonia.Remote.Protocol.dll": {
|
||||
"assemblyVersion": "11.2.1.0",
|
||||
"fileVersion": "11.2.1.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Avalonia.Skia/11.2.1": {
|
||||
"dependencies": {
|
||||
"Avalonia": "11.2.1",
|
||||
"HarfBuzzSharp": "7.3.0.2",
|
||||
"HarfBuzzSharp.NativeAssets.Linux": "7.3.0.2",
|
||||
"HarfBuzzSharp.NativeAssets.WebAssembly": "7.3.0.3-preview.2.2",
|
||||
"SkiaSharp": "2.88.8",
|
||||
"SkiaSharp.NativeAssets.Linux": "2.88.8",
|
||||
"SkiaSharp.NativeAssets.WebAssembly": "2.88.8"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/Avalonia.Skia.dll": {
|
||||
"assemblyVersion": "11.2.1.0",
|
||||
"fileVersion": "11.2.1.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Avalonia.Themes.Fluent/11.2.1": {
|
||||
"dependencies": {
|
||||
"Avalonia": "11.2.1"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/Avalonia.Themes.Fluent.dll": {
|
||||
"assemblyVersion": "11.2.1.0",
|
||||
"fileVersion": "11.2.1.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Avalonia.Themes.Simple/11.2.1": {
|
||||
"dependencies": {
|
||||
"Avalonia": "11.2.1"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/Avalonia.Themes.Simple.dll": {
|
||||
"assemblyVersion": "11.2.1.0",
|
||||
"fileVersion": "11.2.1.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Avalonia.Win32/11.2.1": {
|
||||
"dependencies": {
|
||||
"Avalonia": "11.2.1",
|
||||
"Avalonia.Angle.Windows.Natives": "2.1.22045.20230930"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/Avalonia.Win32.dll": {
|
||||
"assemblyVersion": "11.2.1.0",
|
||||
"fileVersion": "11.2.1.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Avalonia.X11/11.2.1": {
|
||||
"dependencies": {
|
||||
"Avalonia": "11.2.1",
|
||||
"Avalonia.FreeDesktop": "11.2.1",
|
||||
"Avalonia.Skia": "11.2.1"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/Avalonia.X11.dll": {
|
||||
"assemblyVersion": "11.2.1.0",
|
||||
"fileVersion": "11.2.1.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"DynamicData/8.4.1": {
|
||||
"dependencies": {
|
||||
"System.Reactive": "6.0.1"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/DynamicData.dll": {
|
||||
"assemblyVersion": "8.4.0.0",
|
||||
"fileVersion": "8.4.1.20756"
|
||||
}
|
||||
}
|
||||
},
|
||||
"HarfBuzzSharp/7.3.0.2": {
|
||||
"dependencies": {
|
||||
"HarfBuzzSharp.NativeAssets.Win32": "7.3.0.2",
|
||||
"HarfBuzzSharp.NativeAssets.macOS": "7.3.0.2"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net6.0/HarfBuzzSharp.dll": {
|
||||
"assemblyVersion": "1.0.0.0",
|
||||
"fileVersion": "7.3.0.2"
|
||||
}
|
||||
}
|
||||
},
|
||||
"HarfBuzzSharp.NativeAssets.Linux/7.3.0.2": {
|
||||
"dependencies": {
|
||||
"HarfBuzzSharp": "7.3.0.2"
|
||||
},
|
||||
"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-musl-x64/native/libHarfBuzzSharp.so": {
|
||||
"rid": "linux-musl-x64",
|
||||
"assetType": "native",
|
||||
"fileVersion": "0.0.0.0"
|
||||
},
|
||||
"runtimes/linux-x64/native/libHarfBuzzSharp.so": {
|
||||
"rid": "linux-x64",
|
||||
"assetType": "native",
|
||||
"fileVersion": "0.0.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"HarfBuzzSharp.NativeAssets.macOS/7.3.0.2": {
|
||||
"runtimeTargets": {
|
||||
"runtimes/osx/native/libHarfBuzzSharp.dylib": {
|
||||
"rid": "osx",
|
||||
"assetType": "native",
|
||||
"fileVersion": "0.0.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"HarfBuzzSharp.NativeAssets.WebAssembly/7.3.0.3-preview.2.2": {},
|
||||
"HarfBuzzSharp.NativeAssets.Win32/7.3.0.2": {
|
||||
"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"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ReactiveUI/20.1.1": {
|
||||
"dependencies": {
|
||||
"DynamicData": "8.4.1",
|
||||
"Splat": "15.1.1",
|
||||
"System.ComponentModel.Annotations": "5.0.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/ReactiveUI.dll": {
|
||||
"assemblyVersion": "20.1.0.0",
|
||||
"fileVersion": "20.1.1.46356"
|
||||
}
|
||||
}
|
||||
},
|
||||
"SkiaSharp/2.88.8": {
|
||||
"dependencies": {
|
||||
"SkiaSharp.NativeAssets.Win32": "2.88.8",
|
||||
"SkiaSharp.NativeAssets.macOS": "2.88.8"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net6.0/SkiaSharp.dll": {
|
||||
"assemblyVersion": "2.88.0.0",
|
||||
"fileVersion": "2.88.8.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"SkiaSharp.NativeAssets.Linux/2.88.8": {
|
||||
"dependencies": {
|
||||
"SkiaSharp": "2.88.8"
|
||||
},
|
||||
"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.8": {
|
||||
"runtimeTargets": {
|
||||
"runtimes/osx/native/libSkiaSharp.dylib": {
|
||||
"rid": "osx",
|
||||
"assetType": "native",
|
||||
"fileVersion": "0.0.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"SkiaSharp.NativeAssets.WebAssembly/2.88.8": {},
|
||||
"SkiaSharp.NativeAssets.Win32/2.88.8": {
|
||||
"runtimeTargets": {
|
||||
"runtimes/win-arm64/native/libSkiaSharp.dll": {
|
||||
"rid": "win-arm64",
|
||||
"assetType": "native",
|
||||
"fileVersion": "0.0.0.0"
|
||||
},
|
||||
"runtimes/win-x64/native/libSkiaSharp.dll": {
|
||||
"rid": "win-x64",
|
||||
"assetType": "native",
|
||||
"fileVersion": "0.0.0.0"
|
||||
},
|
||||
"runtimes/win-x86/native/libSkiaSharp.dll": {
|
||||
"rid": "win-x86",
|
||||
"assetType": "native",
|
||||
"fileVersion": "0.0.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Splat/15.1.1": {
|
||||
"runtime": {
|
||||
"lib/net8.0/Splat.dll": {
|
||||
"assemblyVersion": "15.1.0.0",
|
||||
"fileVersion": "15.1.1.17670"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.ComponentModel.Annotations/5.0.0": {},
|
||||
"System.IO.Pipelines/8.0.0": {
|
||||
"runtime": {
|
||||
"lib/net8.0/System.IO.Pipelines.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.23.53103"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Reactive/6.0.1": {
|
||||
"runtime": {
|
||||
"lib/net6.0/System.Reactive.dll": {
|
||||
"assemblyVersion": "6.0.0.0",
|
||||
"fileVersion": "6.0.1.7420"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Tmds.DBus.Protocol/0.20.0": {
|
||||
"dependencies": {
|
||||
"System.IO.Pipelines": "8.0.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/Tmds.DBus.Protocol.dll": {
|
||||
"assemblyVersion": "0.20.0.0",
|
||||
"fileVersion": "0.20.0.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"Presence.Desktop/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
},
|
||||
"Avalonia/11.2.1": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-AyYhIN2A7bRwxp6BFHrIbXAHUFPXegzSMYwDrUnw1BzZs9ctwYTiCPCM5wbE2PXsEBwFDVJ/a2YHTOp56fSYAw==",
|
||||
"path": "avalonia/11.2.1",
|
||||
"hashPath": "avalonia.11.2.1.nupkg.sha512"
|
||||
},
|
||||
"Avalonia.Angle.Windows.Natives/2.1.22045.20230930": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-Bo3qOhKC1b84BIhiogndMdAzB3UrrESKK7hS769f5HWeoMw/pcd42US5KFYW2JJ4ZSTrXnP8mXwLTMzh+S+9Lg==",
|
||||
"path": "avalonia.angle.windows.natives/2.1.22045.20230930",
|
||||
"hashPath": "avalonia.angle.windows.natives.2.1.22045.20230930.nupkg.sha512"
|
||||
},
|
||||
"Avalonia.BuildServices/0.0.29": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-U4eJLQdoDNHXtEba7MZUCwrBErBTxFp6sUewXBOdAhU0Kwzwaa/EKFcYm8kpcysjzKtfB4S0S9n0uxKZFz/ikw==",
|
||||
"path": "avalonia.buildservices/0.0.29",
|
||||
"hashPath": "avalonia.buildservices.0.0.29.nupkg.sha512"
|
||||
},
|
||||
"Avalonia.Controls.ColorPicker/11.2.1": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-t8ViFwfIe6jCO5HvzPWOtwGNSMHYNc8XakWp76Rgy1MOiht8tHKry9cU7k40AHEYU6wVjiYBkl0c8zYZyyha1g==",
|
||||
"path": "avalonia.controls.colorpicker/11.2.1",
|
||||
"hashPath": "avalonia.controls.colorpicker.11.2.1.nupkg.sha512"
|
||||
},
|
||||
"Avalonia.Controls.DataGrid/11.2.1": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-UaNQrY86GBqMZqZ/N/5/wLzr4Emh2N405VZI/IgH0I8BoMrjnosNr+++D7BOcahMNce0lUZLOsFyy+OY02PUAw==",
|
||||
"path": "avalonia.controls.datagrid/11.2.1",
|
||||
"hashPath": "avalonia.controls.datagrid.11.2.1.nupkg.sha512"
|
||||
},
|
||||
"Avalonia.Desktop/11.2.1": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-q6alzkTgFjukOrbiiFlh0mkhkxGRMRTMS8zdNEixIl9apPnD2ln9sjAC4NR2agNz5+HmZVfXYu6kYK12rMmKwA==",
|
||||
"path": "avalonia.desktop/11.2.1",
|
||||
"hashPath": "avalonia.desktop.11.2.1.nupkg.sha512"
|
||||
},
|
||||
"Avalonia.Diagnostics/11.2.1": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-axUWa4sZoe9HgUXPEDhbZXijL8ex+lwQGVwNQLmD299O7pCqKcYThjyG/eCETO/boqjKTt3H85LHEPx94BP9dg==",
|
||||
"path": "avalonia.diagnostics/11.2.1",
|
||||
"hashPath": "avalonia.diagnostics.11.2.1.nupkg.sha512"
|
||||
},
|
||||
"Avalonia.Fonts.Inter/11.2.1": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-egEFQWLHuSzyWKolPy9u4qPor270N2GL/4CI33eBxr09chrUVQsOlxQ6zeWPiBLzzgv/lCrZhOMCAIWsOz3tNg==",
|
||||
"path": "avalonia.fonts.inter/11.2.1",
|
||||
"hashPath": "avalonia.fonts.inter.11.2.1.nupkg.sha512"
|
||||
},
|
||||
"Avalonia.FreeDesktop/11.2.1": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-ChKdPjQ2uBJUN0y+/RsdoETzXRn/q1eWFBDwprDy+Zi/AVkUfRk06hKbsb/U+Q3zO65CMEprRcMPbys0EkK2vg==",
|
||||
"path": "avalonia.freedesktop/11.2.1",
|
||||
"hashPath": "avalonia.freedesktop.11.2.1.nupkg.sha512"
|
||||
},
|
||||
"Avalonia.Native/11.2.1": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-1cVasDUIkqfAYLkaLFDx+VDZymer2v643OYD6Jd6nzP20TNTqN2LfFOpxXCTYMrWc9Dk5AoVJJCrz3wRE5kooQ==",
|
||||
"path": "avalonia.native/11.2.1",
|
||||
"hashPath": "avalonia.native.11.2.1.nupkg.sha512"
|
||||
},
|
||||
"Avalonia.ReactiveUI/11.2.1": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-SgjmPrkpAyxnG9z9Ms1Nj53xTvD2W00GQ0w+WGMrt3Jm8UNHha8b0LK1Gx9WT4Do/ggH51j76RfRdXchbardWw==",
|
||||
"path": "avalonia.reactiveui/11.2.1",
|
||||
"hashPath": "avalonia.reactiveui.11.2.1.nupkg.sha512"
|
||||
},
|
||||
"Avalonia.Remote.Protocol/11.2.1": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-aqEialxjir7DO/dOFf7BGN/yQ4/adSC5UuVfqBr/RUHOENSH6CqoHj8kmtmJxnuz7ESQFSB2+h1kLVnk5csiDw==",
|
||||
"path": "avalonia.remote.protocol/11.2.1",
|
||||
"hashPath": "avalonia.remote.protocol.11.2.1.nupkg.sha512"
|
||||
},
|
||||
"Avalonia.Skia/11.2.1": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-FkqiXWT1hN0s5MIx5IKDGZaqewQENikQh6aBQyApiZVu5koa8H8RW1yfb2cFK3M4IVIyhqwl8ZirkXsS18lf/Q==",
|
||||
"path": "avalonia.skia/11.2.1",
|
||||
"hashPath": "avalonia.skia.11.2.1.nupkg.sha512"
|
||||
},
|
||||
"Avalonia.Themes.Fluent/11.2.1": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-9YUzDmZO5oDppsoA3Igeu/v1cVi4xu8jdO6ZrBzXJXJ9mma/htK0Ub9+V1lRoCW/O70nQfBX+ZDpm0dca1PVgw==",
|
||||
"path": "avalonia.themes.fluent/11.2.1",
|
||||
"hashPath": "avalonia.themes.fluent.11.2.1.nupkg.sha512"
|
||||
},
|
||||
"Avalonia.Themes.Simple/11.2.1": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-ToiYv8hhJ5gcEtD54VZv7NpBFiqGasj4bjFh/AtjXApiYOp8r3orFPX8Nsc3kHcUCvNNjbjAy9dmBG65nYePkw==",
|
||||
"path": "avalonia.themes.simple/11.2.1",
|
||||
"hashPath": "avalonia.themes.simple.11.2.1.nupkg.sha512"
|
||||
},
|
||||
"Avalonia.Win32/11.2.1": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-7Gfw7S1PoINaCXaIV1rh7zo82IhsqhR7a0PAt281cBrfDkJiNU0DYgW2RZxKl3oVFxtfbxJZbdP7hSVmHvoDfw==",
|
||||
"path": "avalonia.win32/11.2.1",
|
||||
"hashPath": "avalonia.win32.11.2.1.nupkg.sha512"
|
||||
},
|
||||
"Avalonia.X11/11.2.1": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-h2aCpyLmxGkldPK7cbncEgyobrJ5En7gQtrwVARLmN32Rw6dHut3jyF3P8at2DmWxRuKwZVXgWBSSI62hINgrQ==",
|
||||
"path": "avalonia.x11/11.2.1",
|
||||
"hashPath": "avalonia.x11.11.2.1.nupkg.sha512"
|
||||
},
|
||||
"DynamicData/8.4.1": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-Mn1+fU/jqxgONEJq8KLQPGWEi7g/hUVTbjZyn4QM0sWWDAVOHPO9WjXWORSykwdfg/6S3GM15qsfz+2EvO+QAQ==",
|
||||
"path": "dynamicdata/8.4.1",
|
||||
"hashPath": "dynamicdata.8.4.1.nupkg.sha512"
|
||||
},
|
||||
"HarfBuzzSharp/7.3.0.2": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-0tCd6HyCmNsX/DniCp2b00fo0xPbdNwKOs9BxxyT8oOOuMlWjcSFwzONKyeckCKVBFEsbSmsAHPDTqxoSDwZMg==",
|
||||
"path": "harfbuzzsharp/7.3.0.2",
|
||||
"hashPath": "harfbuzzsharp.7.3.0.2.nupkg.sha512"
|
||||
},
|
||||
"HarfBuzzSharp.NativeAssets.Linux/7.3.0.2": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-aKa5J1RqjXKAtdcZJp5wjC78klfBIzJHM6CneN76lFmQ9LLRJA9Oa0TkIDaV8lVLDKMAy5fCKHXFlXUK1YfL/g==",
|
||||
"path": "harfbuzzsharp.nativeassets.linux/7.3.0.2",
|
||||
"hashPath": "harfbuzzsharp.nativeassets.linux.7.3.0.2.nupkg.sha512"
|
||||
},
|
||||
"HarfBuzzSharp.NativeAssets.macOS/7.3.0.2": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-nycYH/WLJ6ogm+I+QSFCdPJsdxSb5GANWYbQyp1vsd/KjXN56RVUJWPhbgP2GKb/Y7mrsHM7EProqVXlO/EMsA==",
|
||||
"path": "harfbuzzsharp.nativeassets.macos/7.3.0.2",
|
||||
"hashPath": "harfbuzzsharp.nativeassets.macos.7.3.0.2.nupkg.sha512"
|
||||
},
|
||||
"HarfBuzzSharp.NativeAssets.WebAssembly/7.3.0.3-preview.2.2": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-Dc+dolrhmkpqwT25NfNEEgceW0//KRR2WIOvxlyIIHIIMBCn0FfUeJX5RhFll8kyaZwF8tuKsxRJtQG/rzSBog==",
|
||||
"path": "harfbuzzsharp.nativeassets.webassembly/7.3.0.3-preview.2.2",
|
||||
"hashPath": "harfbuzzsharp.nativeassets.webassembly.7.3.0.3-preview.2.2.nupkg.sha512"
|
||||
},
|
||||
"HarfBuzzSharp.NativeAssets.Win32/7.3.0.2": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-DpF9JBzwws2dupOLnjME65hxQWWbN/GD40AoTkwB4S05WANvxo3n81AnQJKxWDCnrWfWhLPB36OF27TvEqzb/A==",
|
||||
"path": "harfbuzzsharp.nativeassets.win32/7.3.0.2",
|
||||
"hashPath": "harfbuzzsharp.nativeassets.win32.7.3.0.2.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"
|
||||
},
|
||||
"ReactiveUI/20.1.1": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-9hNPknWjijnaSWs6auypoXqUptPZcRpUypF+cf1zD50fgW+SEoQda502N3fVZ2eWPcaiUad+z6GaLwOWmUVHNw==",
|
||||
"path": "reactiveui/20.1.1",
|
||||
"hashPath": "reactiveui.20.1.1.nupkg.sha512"
|
||||
},
|
||||
"SkiaSharp/2.88.8": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-bRkp3uKp5ZI8gXYQT57uKwil1uobb2p8c69n7v5evlB/2JNcMAXVcw9DZAP5Ig3WSvgzGm2YSn27UVeOi05NlA==",
|
||||
"path": "skiasharp/2.88.8",
|
||||
"hashPath": "skiasharp.2.88.8.nupkg.sha512"
|
||||
},
|
||||
"SkiaSharp.NativeAssets.Linux/2.88.8": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-0FO6YA7paNFBMJULvEyecPmCvL9/STvOAi5VOUw2srqJ7pNTbiiZkfl7sulAzcumbWgfzaVjRXYTgMj7SoUnWQ==",
|
||||
"path": "skiasharp.nativeassets.linux/2.88.8",
|
||||
"hashPath": "skiasharp.nativeassets.linux.2.88.8.nupkg.sha512"
|
||||
},
|
||||
"SkiaSharp.NativeAssets.macOS/2.88.8": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-6Kn5TSkKlfyS6azWHF3Jk2sW5C4jCE5uSshM/5AbfFrR+5n6qM5XEnz9h4VaVl7LTxBvHvMkuPb/3bpbq0vxTw==",
|
||||
"path": "skiasharp.nativeassets.macos/2.88.8",
|
||||
"hashPath": "skiasharp.nativeassets.macos.2.88.8.nupkg.sha512"
|
||||
},
|
||||
"SkiaSharp.NativeAssets.WebAssembly/2.88.8": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-S3qRo8c+gVYOyfrdf6FYnjx/ft+gPkb4dNY2IPv5Oy5yNBhDhXhKqHFr9h4+ne6ZU+7D4dbuRQqsIqCo8u1/DA==",
|
||||
"path": "skiasharp.nativeassets.webassembly/2.88.8",
|
||||
"hashPath": "skiasharp.nativeassets.webassembly.2.88.8.nupkg.sha512"
|
||||
},
|
||||
"SkiaSharp.NativeAssets.Win32/2.88.8": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-O9QXoWEXA+6cweR4h3BOnwMz+pO9vL9mXdjLrpDd0w1QzCgWmLQBxa1VgySDITiH7nQndrDG1h6937zm9pLj1Q==",
|
||||
"path": "skiasharp.nativeassets.win32/2.88.8",
|
||||
"hashPath": "skiasharp.nativeassets.win32.2.88.8.nupkg.sha512"
|
||||
},
|
||||
"Splat/15.1.1": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-RHDTdF90FwVbRia2cmuIzkiVoETqnXSB2dDBBi/I35HWXqv4OKGqoMcfcd6obMvO2OmmY5PjU1M62K8LkJafAA==",
|
||||
"path": "splat/15.1.1",
|
||||
"hashPath": "splat.15.1.1.nupkg.sha512"
|
||||
},
|
||||
"System.ComponentModel.Annotations/5.0.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==",
|
||||
"path": "system.componentmodel.annotations/5.0.0",
|
||||
"hashPath": "system.componentmodel.annotations.5.0.0.nupkg.sha512"
|
||||
},
|
||||
"System.IO.Pipelines/8.0.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-FHNOatmUq0sqJOkTx+UF/9YK1f180cnW5FVqnQMvYUN0elp6wFzbtPSiqbo1/ru8ICp43JM1i7kKkk6GsNGHlA==",
|
||||
"path": "system.io.pipelines/8.0.0",
|
||||
"hashPath": "system.io.pipelines.8.0.0.nupkg.sha512"
|
||||
},
|
||||
"System.Reactive/6.0.1": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-rHaWtKDwCi9qJ3ObKo8LHPMuuwv33YbmQi7TcUK1C264V3MFnOr5Im7QgCTdLniztP3GJyeiSg5x8NqYJFqRmg==",
|
||||
"path": "system.reactive/6.0.1",
|
||||
"hashPath": "system.reactive.6.0.1.nupkg.sha512"
|
||||
},
|
||||
"Tmds.DBus.Protocol/0.20.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-2gkt2kuYPhDKd8gtl34jZSJOnn4nRJfFngCDcTZT/uySbK++ua0YQx2418l9Rn1Y4dE5XNq6zG9ZsE5ltLlNNw==",
|
||||
"path": "tmds.dbus.protocol/0.20.0",
|
||||
"hashPath": "tmds.dbus.protocol.0.20.0.nupkg.sha512"
|
||||
}
|
||||
}
|
||||
}
|
BIN
Presence.Desktop/bin/Debug/net8.0/Presence.Desktop.dll
Normal file
BIN
Presence.Desktop/bin/Debug/net8.0/Presence.Desktop.dll
Normal file
Binary file not shown.
BIN
Presence.Desktop/bin/Debug/net8.0/Presence.Desktop.pdb
Normal file
BIN
Presence.Desktop/bin/Debug/net8.0/Presence.Desktop.pdb
Normal file
Binary file not shown.
@ -0,0 +1,13 @@
|
||||
{
|
||||
"runtimeOptions": {
|
||||
"tfm": "net8.0",
|
||||
"framework": {
|
||||
"name": "Microsoft.NETCore.App",
|
||||
"version": "8.0.0"
|
||||
},
|
||||
"configProperties": {
|
||||
"System.Runtime.InteropServices.BuiltInComInterop.IsSupported": true,
|
||||
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
|
||||
}
|
||||
}
|
||||
}
|
BIN
Presence.Desktop/bin/Debug/net8.0/ReactiveUI.dll
Executable file
BIN
Presence.Desktop/bin/Debug/net8.0/ReactiveUI.dll
Executable file
Binary file not shown.
BIN
Presence.Desktop/bin/Debug/net8.0/SkiaSharp.dll
Executable file
BIN
Presence.Desktop/bin/Debug/net8.0/SkiaSharp.dll
Executable file
Binary file not shown.
BIN
Presence.Desktop/bin/Debug/net8.0/Splat.dll
Executable file
BIN
Presence.Desktop/bin/Debug/net8.0/Splat.dll
Executable file
Binary file not shown.
BIN
Presence.Desktop/bin/Debug/net8.0/System.IO.Pipelines.dll
Executable file
BIN
Presence.Desktop/bin/Debug/net8.0/System.IO.Pipelines.dll
Executable file
Binary file not shown.
BIN
Presence.Desktop/bin/Debug/net8.0/System.Reactive.dll
Executable file
BIN
Presence.Desktop/bin/Debug/net8.0/System.Reactive.dll
Executable file
Binary file not shown.
BIN
Presence.Desktop/bin/Debug/net8.0/Tmds.DBus.Protocol.dll
Executable file
BIN
Presence.Desktop/bin/Debug/net8.0/Tmds.DBus.Protocol.dll
Executable file
Binary file not shown.
BIN
Presence.Desktop/bin/Debug/net8.0/runtimes/linux-arm/native/libHarfBuzzSharp.so
Executable file
BIN
Presence.Desktop/bin/Debug/net8.0/runtimes/linux-arm/native/libHarfBuzzSharp.so
Executable file
Binary file not shown.
BIN
Presence.Desktop/bin/Debug/net8.0/runtimes/linux-arm/native/libSkiaSharp.so
Executable file
BIN
Presence.Desktop/bin/Debug/net8.0/runtimes/linux-arm/native/libSkiaSharp.so
Executable file
Binary file not shown.
Binary file not shown.
BIN
Presence.Desktop/bin/Debug/net8.0/runtimes/linux-arm64/native/libSkiaSharp.so
Executable file
BIN
Presence.Desktop/bin/Debug/net8.0/runtimes/linux-arm64/native/libSkiaSharp.so
Executable file
Binary file not shown.
Binary file not shown.
BIN
Presence.Desktop/bin/Debug/net8.0/runtimes/linux-musl-x64/native/libSkiaSharp.so
Executable file
BIN
Presence.Desktop/bin/Debug/net8.0/runtimes/linux-musl-x64/native/libSkiaSharp.so
Executable file
Binary file not shown.
BIN
Presence.Desktop/bin/Debug/net8.0/runtimes/linux-x64/native/libHarfBuzzSharp.so
Executable file
BIN
Presence.Desktop/bin/Debug/net8.0/runtimes/linux-x64/native/libHarfBuzzSharp.so
Executable file
Binary file not shown.
BIN
Presence.Desktop/bin/Debug/net8.0/runtimes/linux-x64/native/libSkiaSharp.so
Executable file
BIN
Presence.Desktop/bin/Debug/net8.0/runtimes/linux-x64/native/libSkiaSharp.so
Executable file
Binary file not shown.
BIN
Presence.Desktop/bin/Debug/net8.0/runtimes/osx/native/libAvaloniaNative.dylib
Executable file
BIN
Presence.Desktop/bin/Debug/net8.0/runtimes/osx/native/libAvaloniaNative.dylib
Executable file
Binary file not shown.
BIN
Presence.Desktop/bin/Debug/net8.0/runtimes/osx/native/libHarfBuzzSharp.dylib
Executable file
BIN
Presence.Desktop/bin/Debug/net8.0/runtimes/osx/native/libHarfBuzzSharp.dylib
Executable file
Binary file not shown.
BIN
Presence.Desktop/bin/Debug/net8.0/runtimes/osx/native/libSkiaSharp.dylib
Executable file
BIN
Presence.Desktop/bin/Debug/net8.0/runtimes/osx/native/libSkiaSharp.dylib
Executable file
Binary file not shown.
BIN
Presence.Desktop/bin/Debug/net8.0/runtimes/win-arm64/native/av_libglesv2.dll
Executable file
BIN
Presence.Desktop/bin/Debug/net8.0/runtimes/win-arm64/native/av_libglesv2.dll
Executable file
Binary file not shown.
BIN
Presence.Desktop/bin/Debug/net8.0/runtimes/win-arm64/native/libHarfBuzzSharp.dll
Executable file
BIN
Presence.Desktop/bin/Debug/net8.0/runtimes/win-arm64/native/libHarfBuzzSharp.dll
Executable file
Binary file not shown.
BIN
Presence.Desktop/bin/Debug/net8.0/runtimes/win-arm64/native/libSkiaSharp.dll
Executable file
BIN
Presence.Desktop/bin/Debug/net8.0/runtimes/win-arm64/native/libSkiaSharp.dll
Executable file
Binary file not shown.
BIN
Presence.Desktop/bin/Debug/net8.0/runtimes/win-x64/native/av_libglesv2.dll
Executable file
BIN
Presence.Desktop/bin/Debug/net8.0/runtimes/win-x64/native/av_libglesv2.dll
Executable file
Binary file not shown.
BIN
Presence.Desktop/bin/Debug/net8.0/runtimes/win-x64/native/libHarfBuzzSharp.dll
Executable file
BIN
Presence.Desktop/bin/Debug/net8.0/runtimes/win-x64/native/libHarfBuzzSharp.dll
Executable file
Binary file not shown.
BIN
Presence.Desktop/bin/Debug/net8.0/runtimes/win-x64/native/libSkiaSharp.dll
Executable file
BIN
Presence.Desktop/bin/Debug/net8.0/runtimes/win-x64/native/libSkiaSharp.dll
Executable file
Binary file not shown.
BIN
Presence.Desktop/bin/Debug/net8.0/runtimes/win-x86/native/av_libglesv2.dll
Executable file
BIN
Presence.Desktop/bin/Debug/net8.0/runtimes/win-x86/native/av_libglesv2.dll
Executable file
Binary file not shown.
BIN
Presence.Desktop/bin/Debug/net8.0/runtimes/win-x86/native/libHarfBuzzSharp.dll
Executable file
BIN
Presence.Desktop/bin/Debug/net8.0/runtimes/win-x86/native/libHarfBuzzSharp.dll
Executable file
Binary file not shown.
BIN
Presence.Desktop/bin/Debug/net8.0/runtimes/win-x86/native/libSkiaSharp.dll
Executable file
BIN
Presence.Desktop/bin/Debug/net8.0/runtimes/win-x86/native/libSkiaSharp.dll
Executable file
Binary file not shown.
@ -0,0 +1,4 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")]
|
BIN
Presence.Desktop/obj/Debug/net8.0/Avalonia/Presence.Desktop.dll
Normal file
BIN
Presence.Desktop/obj/Debug/net8.0/Avalonia/Presence.Desktop.dll
Normal file
Binary file not shown.
BIN
Presence.Desktop/obj/Debug/net8.0/Avalonia/Presence.Desktop.pdb
Normal file
BIN
Presence.Desktop/obj/Debug/net8.0/Avalonia/Presence.Desktop.pdb
Normal file
Binary file not shown.
@ -0,0 +1 @@
|
||||
15f2befdcd594ebd13b58232a419e51eeef63891a84ce4128e3145ca606a550a
|
197
Presence.Desktop/obj/Debug/net8.0/Avalonia/references
Normal file
197
Presence.Desktop/obj/Debug/net8.0/Avalonia/references
Normal file
@ -0,0 +1,197 @@
|
||||
/home/gara/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.Base.dll
|
||||
/home/gara/.nuget/packages/avalonia.controls.colorpicker/11.2.1/lib/net8.0/Avalonia.Controls.ColorPicker.dll
|
||||
/home/gara/.nuget/packages/avalonia.controls.datagrid/11.2.1/lib/net8.0/Avalonia.Controls.DataGrid.dll
|
||||
/home/gara/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.Controls.dll
|
||||
/home/gara/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.DesignerSupport.dll
|
||||
/home/gara/.nuget/packages/avalonia.desktop/11.2.1/lib/net8.0/Avalonia.Desktop.dll
|
||||
/home/gara/.nuget/packages/avalonia.diagnostics/11.2.1/lib/net8.0/Avalonia.Diagnostics.dll
|
||||
/home/gara/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.Dialogs.dll
|
||||
/home/gara/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.dll
|
||||
/home/gara/.nuget/packages/avalonia.fonts.inter/11.2.1/lib/net8.0/Avalonia.Fonts.Inter.dll
|
||||
/home/gara/.nuget/packages/avalonia.freedesktop/11.2.1/lib/net8.0/Avalonia.FreeDesktop.dll
|
||||
/home/gara/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.Markup.dll
|
||||
/home/gara/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.Markup.Xaml.dll
|
||||
/home/gara/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.Metal.dll
|
||||
/home/gara/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.MicroCom.dll
|
||||
/home/gara/.nuget/packages/avalonia.native/11.2.1/lib/net8.0/Avalonia.Native.dll
|
||||
/home/gara/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.OpenGL.dll
|
||||
/home/gara/.nuget/packages/avalonia.reactiveui/11.2.1/lib/net8.0/Avalonia.ReactiveUI.dll
|
||||
/home/gara/.nuget/packages/avalonia.remote.protocol/11.2.1/lib/net8.0/Avalonia.Remote.Protocol.dll
|
||||
/home/gara/.nuget/packages/avalonia.skia/11.2.1/lib/net8.0/Avalonia.Skia.dll
|
||||
/home/gara/.nuget/packages/avalonia.themes.fluent/11.2.1/lib/net8.0/Avalonia.Themes.Fluent.dll
|
||||
/home/gara/.nuget/packages/avalonia.themes.simple/11.2.1/lib/net8.0/Avalonia.Themes.Simple.dll
|
||||
/home/gara/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.Vulkan.dll
|
||||
/home/gara/.nuget/packages/avalonia.win32/11.2.1/lib/net8.0/Avalonia.Win32.dll
|
||||
/home/gara/.nuget/packages/avalonia.x11/11.2.1/lib/net8.0/Avalonia.X11.dll
|
||||
/home/gara/.nuget/packages/dynamicdata/8.4.1/lib/net8.0/DynamicData.dll
|
||||
/home/gara/.nuget/packages/harfbuzzsharp/7.3.0.2/lib/net6.0/HarfBuzzSharp.dll
|
||||
/home/gara/.nuget/packages/microcom.runtime/0.11.0/lib/net5.0/MicroCom.Runtime.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/Microsoft.CSharp.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/Microsoft.VisualBasic.Core.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/Microsoft.VisualBasic.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/Microsoft.Win32.Primitives.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/Microsoft.Win32.Registry.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/mscorlib.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/netstandard.dll
|
||||
/home/gara/.nuget/packages/reactiveui/20.1.1/lib/net8.0/ReactiveUI.dll
|
||||
/home/gara/.nuget/packages/skiasharp/2.88.8/lib/net6.0/SkiaSharp.dll
|
||||
/home/gara/.nuget/packages/splat/15.1.1/lib/net8.0/Splat.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.AppContext.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Buffers.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Collections.Concurrent.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Collections.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Collections.Immutable.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Collections.NonGeneric.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Collections.Specialized.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.ComponentModel.Annotations.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.ComponentModel.DataAnnotations.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.ComponentModel.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.ComponentModel.EventBasedAsync.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.ComponentModel.Primitives.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.ComponentModel.TypeConverter.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Configuration.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Console.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Core.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Data.Common.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Data.DataSetExtensions.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Data.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Diagnostics.Contracts.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Diagnostics.Debug.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Diagnostics.DiagnosticSource.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Diagnostics.FileVersionInfo.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Diagnostics.Process.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Diagnostics.StackTrace.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Diagnostics.TextWriterTraceListener.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Diagnostics.Tools.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Diagnostics.TraceSource.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Diagnostics.Tracing.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Drawing.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Drawing.Primitives.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Dynamic.Runtime.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Formats.Asn1.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Formats.Tar.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Globalization.Calendars.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Globalization.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Globalization.Extensions.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.IO.Compression.Brotli.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.IO.Compression.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.IO.Compression.FileSystem.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.IO.Compression.ZipFile.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.IO.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.IO.FileSystem.AccessControl.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.IO.FileSystem.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.IO.FileSystem.DriveInfo.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.IO.FileSystem.Primitives.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.IO.FileSystem.Watcher.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.IO.IsolatedStorage.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.IO.MemoryMappedFiles.dll
|
||||
/home/gara/.nuget/packages/system.io.pipelines/8.0.0/lib/net8.0/System.IO.Pipelines.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.IO.Pipes.AccessControl.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.IO.Pipes.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.IO.UnmanagedMemoryStream.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Linq.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Linq.Expressions.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Linq.Parallel.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Linq.Queryable.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Memory.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Net.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Net.Http.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Net.Http.Json.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Net.HttpListener.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Net.Mail.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Net.NameResolution.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Net.NetworkInformation.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Net.Ping.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Net.Primitives.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Net.Quic.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Net.Requests.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Net.Security.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Net.ServicePoint.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Net.Sockets.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Net.WebClient.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Net.WebHeaderCollection.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Net.WebProxy.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Net.WebSockets.Client.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Net.WebSockets.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Numerics.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Numerics.Vectors.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.ObjectModel.dll
|
||||
/home/gara/.nuget/packages/system.reactive/6.0.1/lib/net6.0/System.Reactive.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Reflection.DispatchProxy.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Reflection.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Reflection.Emit.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Reflection.Emit.ILGeneration.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Reflection.Emit.Lightweight.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Reflection.Extensions.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Reflection.Metadata.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Reflection.Primitives.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Reflection.TypeExtensions.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Resources.Reader.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Resources.ResourceManager.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Resources.Writer.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Runtime.CompilerServices.Unsafe.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Runtime.CompilerServices.VisualC.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Runtime.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Runtime.Extensions.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Runtime.Handles.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Runtime.InteropServices.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Runtime.InteropServices.JavaScript.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Runtime.InteropServices.RuntimeInformation.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Runtime.Intrinsics.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Runtime.Loader.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Runtime.Numerics.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Runtime.Serialization.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Runtime.Serialization.Formatters.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Runtime.Serialization.Json.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Runtime.Serialization.Primitives.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Runtime.Serialization.Xml.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Security.AccessControl.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Security.Claims.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Security.Cryptography.Algorithms.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Security.Cryptography.Cng.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Security.Cryptography.Csp.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Security.Cryptography.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Security.Cryptography.Encoding.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Security.Cryptography.OpenSsl.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Security.Cryptography.Primitives.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Security.Cryptography.X509Certificates.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Security.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Security.Principal.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Security.Principal.Windows.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Security.SecureString.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.ServiceModel.Web.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.ServiceProcess.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Text.Encoding.CodePages.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Text.Encoding.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Text.Encoding.Extensions.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Text.Encodings.Web.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Text.Json.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Text.RegularExpressions.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Threading.Channels.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Threading.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Threading.Overlapped.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Threading.Tasks.Dataflow.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Threading.Tasks.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Threading.Tasks.Extensions.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Threading.Tasks.Parallel.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Threading.Thread.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Threading.ThreadPool.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Threading.Timer.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Transactions.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Transactions.Local.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.ValueTuple.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Web.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Web.HttpUtility.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Windows.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Xml.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Xml.Linq.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Xml.ReaderWriter.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Xml.Serialization.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Xml.XDocument.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Xml.XmlDocument.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Xml.XmlSerializer.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Xml.XPath.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Xml.XPath.XDocument.dll
|
||||
/home/gara/.nuget/packages/tmds.dbus.protocol/0.20.0/lib/net8.0/Tmds.DBus.Protocol.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/WindowsBase.dll
|
BIN
Presence.Desktop/obj/Debug/net8.0/Avalonia/resources
Normal file
BIN
Presence.Desktop/obj/Debug/net8.0/Avalonia/resources
Normal file
Binary file not shown.
@ -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("Presence.Desktop")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+427bb6d1639a554afe63c4c9b999f31f3af7ae76")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("Presence.Desktop")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("Presence.Desktop")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
||||
// Generated by the MSBuild WriteCodeFragment class.
|
||||
|
@ -0,0 +1 @@
|
||||
ae6e219e97a2e1895985d0650b802aceec95cd96cba399cff6364b57cb7f3a93
|
@ -0,0 +1,26 @@
|
||||
is_global = true
|
||||
build_property.AvaloniaNameGeneratorIsEnabled = true
|
||||
build_property.AvaloniaNameGeneratorBehavior = InitializeComponent
|
||||
build_property.AvaloniaNameGeneratorDefaultFieldModifier = internal
|
||||
build_property.AvaloniaNameGeneratorFilterByPath = *
|
||||
build_property.AvaloniaNameGeneratorFilterByNamespace = *
|
||||
build_property.AvaloniaNameGeneratorViewFileNamingStrategy = NamespaceAndClassName
|
||||
build_property.AvaloniaNameGeneratorAttachDevTools = true
|
||||
build_property.TargetFramework = net8.0
|
||||
build_property.TargetPlatformMinVersion =
|
||||
build_property.UsingMicrosoftNETSdkWeb =
|
||||
build_property.ProjectTypeGuids =
|
||||
build_property.InvariantGlobalization =
|
||||
build_property.PlatformNeutralAssembly =
|
||||
build_property.EnforceExtendedAnalyzerRules =
|
||||
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||
build_property.RootNamespace = Presence.Desktop
|
||||
build_property.ProjectDir = /home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/
|
||||
build_property.EnableComHosting =
|
||||
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||
|
||||
[/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/App.axaml]
|
||||
build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml
|
||||
|
||||
[/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/Views/MainWindow.axaml]
|
||||
build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml
|
BIN
Presence.Desktop/obj/Debug/net8.0/Presence.Desktop.assets.cache
Normal file
BIN
Presence.Desktop/obj/Debug/net8.0/Presence.Desktop.assets.cache
Normal file
Binary file not shown.
Binary file not shown.
@ -0,0 +1 @@
|
||||
ad0226e00477ef82b79936269033a260c079ca0e61334c2fa472eb7f676734f1
|
@ -0,0 +1,72 @@
|
||||
/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/Presence.Desktop
|
||||
/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/Presence.Desktop.deps.json
|
||||
/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/Presence.Desktop.runtimeconfig.json
|
||||
/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/Presence.Desktop.dll
|
||||
/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/Presence.Desktop.pdb
|
||||
/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/Avalonia.Base.dll
|
||||
/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/Avalonia.Controls.dll
|
||||
/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/Avalonia.DesignerSupport.dll
|
||||
/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/Avalonia.Dialogs.dll
|
||||
/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/Avalonia.Markup.Xaml.dll
|
||||
/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/Avalonia.Markup.dll
|
||||
/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/Avalonia.Metal.dll
|
||||
/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/Avalonia.MicroCom.dll
|
||||
/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/Avalonia.OpenGL.dll
|
||||
/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/Avalonia.Vulkan.dll
|
||||
/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/Avalonia.dll
|
||||
/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/Avalonia.Controls.ColorPicker.dll
|
||||
/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/Avalonia.Controls.DataGrid.dll
|
||||
/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/Avalonia.Desktop.dll
|
||||
/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/Avalonia.Diagnostics.dll
|
||||
/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/Avalonia.Fonts.Inter.dll
|
||||
/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/Avalonia.FreeDesktop.dll
|
||||
/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/Avalonia.Native.dll
|
||||
/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/Avalonia.ReactiveUI.dll
|
||||
/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/Avalonia.Remote.Protocol.dll
|
||||
/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/Avalonia.Skia.dll
|
||||
/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/Avalonia.Themes.Fluent.dll
|
||||
/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/Avalonia.Themes.Simple.dll
|
||||
/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/Avalonia.Win32.dll
|
||||
/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/Avalonia.X11.dll
|
||||
/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/DynamicData.dll
|
||||
/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/HarfBuzzSharp.dll
|
||||
/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/MicroCom.Runtime.dll
|
||||
/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/ReactiveUI.dll
|
||||
/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/SkiaSharp.dll
|
||||
/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/Splat.dll
|
||||
/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/System.IO.Pipelines.dll
|
||||
/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/System.Reactive.dll
|
||||
/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/Tmds.DBus.Protocol.dll
|
||||
/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/runtimes/win-arm64/native/av_libglesv2.dll
|
||||
/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/runtimes/win-x64/native/av_libglesv2.dll
|
||||
/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/runtimes/win-x86/native/av_libglesv2.dll
|
||||
/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/runtimes/osx/native/libAvaloniaNative.dylib
|
||||
/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/runtimes/linux-arm/native/libHarfBuzzSharp.so
|
||||
/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/runtimes/linux-arm64/native/libHarfBuzzSharp.so
|
||||
/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/runtimes/linux-musl-x64/native/libHarfBuzzSharp.so
|
||||
/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/runtimes/linux-x64/native/libHarfBuzzSharp.so
|
||||
/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/runtimes/osx/native/libHarfBuzzSharp.dylib
|
||||
/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/runtimes/win-arm64/native/libHarfBuzzSharp.dll
|
||||
/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/runtimes/win-x64/native/libHarfBuzzSharp.dll
|
||||
/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/runtimes/win-x86/native/libHarfBuzzSharp.dll
|
||||
/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/runtimes/linux-arm/native/libSkiaSharp.so
|
||||
/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/runtimes/linux-arm64/native/libSkiaSharp.so
|
||||
/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/runtimes/linux-musl-x64/native/libSkiaSharp.so
|
||||
/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/runtimes/linux-x64/native/libSkiaSharp.so
|
||||
/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/runtimes/osx/native/libSkiaSharp.dylib
|
||||
/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/runtimes/win-arm64/native/libSkiaSharp.dll
|
||||
/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/runtimes/win-x64/native/libSkiaSharp.dll
|
||||
/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/runtimes/win-x86/native/libSkiaSharp.dll
|
||||
/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/obj/Debug/net8.0/Presence.Desktop.csproj.AssemblyReference.cache
|
||||
/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/obj/Debug/net8.0/Avalonia/Resources.Inputs.cache
|
||||
/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/obj/Debug/net8.0/Avalonia/resources
|
||||
/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/obj/Debug/net8.0/Presence.Desktop.GeneratedMSBuildEditorConfig.editorconfig
|
||||
/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/obj/Debug/net8.0/Presence.Desktop.AssemblyInfoInputs.cache
|
||||
/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/obj/Debug/net8.0/Presence.Desktop.AssemblyInfo.cs
|
||||
/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/obj/Debug/net8.0/Presence.Desktop.csproj.CoreCompileInputs.cache
|
||||
/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/obj/Debug/net8.0/Avalonia/Presence.Desktop.dll
|
||||
/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/obj/Debug/net8.0/Avalonia/Presence.Desktop.pdb
|
||||
/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/obj/Debug/net8.0/refint/Avalonia/Presence.Desktop.dll
|
||||
/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/obj/Debug/net8.0/Presence.C94E1B86.Up2Date
|
||||
/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/obj/Debug/net8.0/Presence.Desktop.genruntimeconfig.cache
|
||||
/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/obj/Debug/net8.0/ref/Presence.Desktop.dll
|
BIN
Presence.Desktop/obj/Debug/net8.0/Presence.Desktop.dll
Normal file
BIN
Presence.Desktop/obj/Debug/net8.0/Presence.Desktop.dll
Normal file
Binary file not shown.
@ -0,0 +1 @@
|
||||
be20363c74f23ae794fc0c198cce5d75dc9dee71954abbd6a521762e33422600
|
BIN
Presence.Desktop/obj/Debug/net8.0/Presence.Desktop.pdb
Normal file
BIN
Presence.Desktop/obj/Debug/net8.0/Presence.Desktop.pdb
Normal file
Binary file not shown.
BIN
Presence.Desktop/obj/Debug/net8.0/apphost
Executable file
BIN
Presence.Desktop/obj/Debug/net8.0/apphost
Executable file
Binary file not shown.
BIN
Presence.Desktop/obj/Debug/net8.0/ref/Presence.Desktop.dll
Normal file
BIN
Presence.Desktop/obj/Debug/net8.0/ref/Presence.Desktop.dll
Normal file
Binary file not shown.
Binary file not shown.
BIN
Presence.Desktop/obj/Debug/net8.0/refint/Presence.Desktop.dll
Normal file
BIN
Presence.Desktop/obj/Debug/net8.0/refint/Presence.Desktop.dll
Normal file
Binary file not shown.
@ -0,0 +1,92 @@
|
||||
{
|
||||
"format": 1,
|
||||
"restore": {
|
||||
"/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/Presence.Desktop.csproj": {}
|
||||
},
|
||||
"projects": {
|
||||
"/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/Presence.Desktop.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/Presence.Desktop.csproj",
|
||||
"projectName": "Presence.Desktop",
|
||||
"projectPath": "/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/Presence.Desktop.csproj",
|
||||
"packagesPath": "/home/gara/.nuget/packages/",
|
||||
"outputPath": "/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/obj/",
|
||||
"projectStyle": "PackageReference",
|
||||
"configFilePaths": [
|
||||
"/home/gara/.nuget/NuGet/NuGet.Config"
|
||||
],
|
||||
"originalTargetFrameworks": [
|
||||
"net8.0"
|
||||
],
|
||||
"sources": {
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"net8.0": {
|
||||
"targetAlias": "net8.0",
|
||||
"projectReferences": {}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
},
|
||||
"restoreAuditProperties": {
|
||||
"enableAudit": "true",
|
||||
"auditLevel": "low",
|
||||
"auditMode": "direct"
|
||||
}
|
||||
},
|
||||
"frameworks": {
|
||||
"net8.0": {
|
||||
"targetAlias": "net8.0",
|
||||
"dependencies": {
|
||||
"Avalonia": {
|
||||
"target": "Package",
|
||||
"version": "[11.2.1, )"
|
||||
},
|
||||
"Avalonia.Desktop": {
|
||||
"target": "Package",
|
||||
"version": "[11.2.1, )"
|
||||
},
|
||||
"Avalonia.Diagnostics": {
|
||||
"target": "Package",
|
||||
"version": "[11.2.1, )"
|
||||
},
|
||||
"Avalonia.Fonts.Inter": {
|
||||
"target": "Package",
|
||||
"version": "[11.2.1, )"
|
||||
},
|
||||
"Avalonia.ReactiveUI": {
|
||||
"target": "Package",
|
||||
"version": "[11.2.1, )"
|
||||
},
|
||||
"Avalonia.Themes.Fluent": {
|
||||
"target": "Package",
|
||||
"version": "[11.2.1, )"
|
||||
}
|
||||
},
|
||||
"imports": [
|
||||
"net461",
|
||||
"net462",
|
||||
"net47",
|
||||
"net471",
|
||||
"net472",
|
||||
"net48",
|
||||
"net481"
|
||||
],
|
||||
"assetTargetFallback": true,
|
||||
"warn": true,
|
||||
"frameworkReferences": {
|
||||
"Microsoft.NETCore.App": {
|
||||
"privateAssets": "all"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.404/PortableRuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
24
Presence.Desktop/obj/Presence.Desktop.csproj.nuget.g.props
Normal file
24
Presence.Desktop/obj/Presence.Desktop.csproj.nuget.g.props
Normal file
@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
|
||||
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
||||
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">/home/gara/.nuget/packages/</NuGetPackageRoot>
|
||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/home/gara/.nuget/packages/</NuGetPackageFolders>
|
||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.11.1</NuGetToolVersion>
|
||||
</PropertyGroup>
|
||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<SourceRoot Include="/home/gara/.nuget/packages/" />
|
||||
</ItemGroup>
|
||||
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<Import Project="$(NuGetPackageRoot)skiasharp.nativeassets.webassembly/2.88.8/buildTransitive/netstandard1.0/SkiaSharp.NativeAssets.WebAssembly.props" Condition="Exists('$(NuGetPackageRoot)skiasharp.nativeassets.webassembly/2.88.8/buildTransitive/netstandard1.0/SkiaSharp.NativeAssets.WebAssembly.props')" />
|
||||
<Import Project="$(NuGetPackageRoot)harfbuzzsharp.nativeassets.webassembly/7.3.0.3-preview.2.2/buildTransitive/netstandard1.0/HarfBuzzSharp.NativeAssets.WebAssembly.props" Condition="Exists('$(NuGetPackageRoot)harfbuzzsharp.nativeassets.webassembly/7.3.0.3-preview.2.2/buildTransitive/netstandard1.0/HarfBuzzSharp.NativeAssets.WebAssembly.props')" />
|
||||
<Import Project="$(NuGetPackageRoot)avalonia/11.2.1/buildTransitive/Avalonia.props" Condition="Exists('$(NuGetPackageRoot)avalonia/11.2.1/buildTransitive/Avalonia.props')" />
|
||||
</ImportGroup>
|
||||
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<PkgAvalonia_BuildServices Condition=" '$(PkgAvalonia_BuildServices)' == '' ">/home/gara/.nuget/packages/avalonia.buildservices/0.0.29</PkgAvalonia_BuildServices>
|
||||
<PkgAvalonia Condition=" '$(PkgAvalonia)' == '' ">/home/gara/.nuget/packages/avalonia/11.2.1</PkgAvalonia>
|
||||
</PropertyGroup>
|
||||
</Project>
|
@ -0,0 +1,9 @@
|
||||
<?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)skiasharp.nativeassets.webassembly/2.88.8/buildTransitive/netstandard1.0/SkiaSharp.NativeAssets.WebAssembly.targets" Condition="Exists('$(NuGetPackageRoot)skiasharp.nativeassets.webassembly/2.88.8/buildTransitive/netstandard1.0/SkiaSharp.NativeAssets.WebAssembly.targets')" />
|
||||
<Import Project="$(NuGetPackageRoot)harfbuzzsharp.nativeassets.webassembly/7.3.0.3-preview.2.2/buildTransitive/netstandard1.0/HarfBuzzSharp.NativeAssets.WebAssembly.targets" Condition="Exists('$(NuGetPackageRoot)harfbuzzsharp.nativeassets.webassembly/7.3.0.3-preview.2.2/buildTransitive/netstandard1.0/HarfBuzzSharp.NativeAssets.WebAssembly.targets')" />
|
||||
<Import Project="$(NuGetPackageRoot)avalonia.buildservices/0.0.29/buildTransitive/Avalonia.BuildServices.targets" Condition="Exists('$(NuGetPackageRoot)avalonia.buildservices/0.0.29/buildTransitive/Avalonia.BuildServices.targets')" />
|
||||
<Import Project="$(NuGetPackageRoot)avalonia/11.2.1/buildTransitive/Avalonia.targets" Condition="Exists('$(NuGetPackageRoot)avalonia/11.2.1/buildTransitive/Avalonia.targets')" />
|
||||
</ImportGroup>
|
||||
</Project>
|
1838
Presence.Desktop/obj/project.assets.json
Normal file
1838
Presence.Desktop/obj/project.assets.json
Normal file
File diff suppressed because it is too large
Load Diff
51
Presence.Desktop/obj/project.nuget.cache
Normal file
51
Presence.Desktop/obj/project.nuget.cache
Normal file
@ -0,0 +1,51 @@
|
||||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "ZzTBU9VE+ec=",
|
||||
"success": true,
|
||||
"projectFilePath": "/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/Presence.Desktop.csproj",
|
||||
"expectedPackageFiles": [
|
||||
"/home/gara/.nuget/packages/avalonia/11.2.1/avalonia.11.2.1.nupkg.sha512",
|
||||
"/home/gara/.nuget/packages/avalonia.angle.windows.natives/2.1.22045.20230930/avalonia.angle.windows.natives.2.1.22045.20230930.nupkg.sha512",
|
||||
"/home/gara/.nuget/packages/avalonia.buildservices/0.0.29/avalonia.buildservices.0.0.29.nupkg.sha512",
|
||||
"/home/gara/.nuget/packages/avalonia.controls.colorpicker/11.2.1/avalonia.controls.colorpicker.11.2.1.nupkg.sha512",
|
||||
"/home/gara/.nuget/packages/avalonia.controls.datagrid/11.2.1/avalonia.controls.datagrid.11.2.1.nupkg.sha512",
|
||||
"/home/gara/.nuget/packages/avalonia.desktop/11.2.1/avalonia.desktop.11.2.1.nupkg.sha512",
|
||||
"/home/gara/.nuget/packages/avalonia.diagnostics/11.2.1/avalonia.diagnostics.11.2.1.nupkg.sha512",
|
||||
"/home/gara/.nuget/packages/avalonia.fonts.inter/11.2.1/avalonia.fonts.inter.11.2.1.nupkg.sha512",
|
||||
"/home/gara/.nuget/packages/avalonia.freedesktop/11.2.1/avalonia.freedesktop.11.2.1.nupkg.sha512",
|
||||
"/home/gara/.nuget/packages/avalonia.native/11.2.1/avalonia.native.11.2.1.nupkg.sha512",
|
||||
"/home/gara/.nuget/packages/avalonia.reactiveui/11.2.1/avalonia.reactiveui.11.2.1.nupkg.sha512",
|
||||
"/home/gara/.nuget/packages/avalonia.remote.protocol/11.2.1/avalonia.remote.protocol.11.2.1.nupkg.sha512",
|
||||
"/home/gara/.nuget/packages/avalonia.skia/11.2.1/avalonia.skia.11.2.1.nupkg.sha512",
|
||||
"/home/gara/.nuget/packages/avalonia.themes.fluent/11.2.1/avalonia.themes.fluent.11.2.1.nupkg.sha512",
|
||||
"/home/gara/.nuget/packages/avalonia.themes.simple/11.2.1/avalonia.themes.simple.11.2.1.nupkg.sha512",
|
||||
"/home/gara/.nuget/packages/avalonia.win32/11.2.1/avalonia.win32.11.2.1.nupkg.sha512",
|
||||
"/home/gara/.nuget/packages/avalonia.x11/11.2.1/avalonia.x11.11.2.1.nupkg.sha512",
|
||||
"/home/gara/.nuget/packages/dynamicdata/8.4.1/dynamicdata.8.4.1.nupkg.sha512",
|
||||
"/home/gara/.nuget/packages/harfbuzzsharp/7.3.0.2/harfbuzzsharp.7.3.0.2.nupkg.sha512",
|
||||
"/home/gara/.nuget/packages/harfbuzzsharp.nativeassets.linux/7.3.0.2/harfbuzzsharp.nativeassets.linux.7.3.0.2.nupkg.sha512",
|
||||
"/home/gara/.nuget/packages/harfbuzzsharp.nativeassets.macos/7.3.0.2/harfbuzzsharp.nativeassets.macos.7.3.0.2.nupkg.sha512",
|
||||
"/home/gara/.nuget/packages/harfbuzzsharp.nativeassets.webassembly/7.3.0.3-preview.2.2/harfbuzzsharp.nativeassets.webassembly.7.3.0.3-preview.2.2.nupkg.sha512",
|
||||
"/home/gara/.nuget/packages/harfbuzzsharp.nativeassets.win32/7.3.0.2/harfbuzzsharp.nativeassets.win32.7.3.0.2.nupkg.sha512",
|
||||
"/home/gara/.nuget/packages/microcom.runtime/0.11.0/microcom.runtime.0.11.0.nupkg.sha512",
|
||||
"/home/gara/.nuget/packages/reactiveui/20.1.1/reactiveui.20.1.1.nupkg.sha512",
|
||||
"/home/gara/.nuget/packages/skiasharp/2.88.8/skiasharp.2.88.8.nupkg.sha512",
|
||||
"/home/gara/.nuget/packages/skiasharp.nativeassets.linux/2.88.8/skiasharp.nativeassets.linux.2.88.8.nupkg.sha512",
|
||||
"/home/gara/.nuget/packages/skiasharp.nativeassets.macos/2.88.8/skiasharp.nativeassets.macos.2.88.8.nupkg.sha512",
|
||||
"/home/gara/.nuget/packages/skiasharp.nativeassets.webassembly/2.88.8/skiasharp.nativeassets.webassembly.2.88.8.nupkg.sha512",
|
||||
"/home/gara/.nuget/packages/skiasharp.nativeassets.win32/2.88.8/skiasharp.nativeassets.win32.2.88.8.nupkg.sha512",
|
||||
"/home/gara/.nuget/packages/splat/15.1.1/splat.15.1.1.nupkg.sha512",
|
||||
"/home/gara/.nuget/packages/system.componentmodel.annotations/5.0.0/system.componentmodel.annotations.5.0.0.nupkg.sha512",
|
||||
"/home/gara/.nuget/packages/system.io.pipelines/8.0.0/system.io.pipelines.8.0.0.nupkg.sha512",
|
||||
"/home/gara/.nuget/packages/system.reactive/6.0.1/system.reactive.6.0.1.nupkg.sha512",
|
||||
"/home/gara/.nuget/packages/tmds.dbus.protocol/0.20.0/tmds.dbus.protocol.0.20.0.nupkg.sha512"
|
||||
],
|
||||
"logs": [
|
||||
{
|
||||
"code": "NU1900",
|
||||
"level": "Warning",
|
||||
"warningLevel": 1,
|
||||
"message": "Error occurred while getting package vulnerability data: Unable to load the service index for source https://api.nuget.org/v3/index.json."
|
||||
}
|
||||
]
|
||||
}
|
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
Loading…
Reference in New Issue
Block a user