This commit is contained in:
Chris Bell 2025-01-16 07:37:06 -06:00
commit 07861309cb
117 changed files with 3709 additions and 0 deletions

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
GLTFViewer/bin/
GLTFViewer/obj/
GLTFViewer/.idea/

16
GLTFViewer/GLTFViewer.sln Normal file
View File

@ -0,0 +1,16 @@

Microsoft Visual Studio Solution File, Format Version 12.00
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GLTFViewer", "GLTFViewer\GLTFViewer.csproj", "{7D2A7EDB-62E2-44C5-B996-7A362447653C}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{7D2A7EDB-62E2-44C5-B996-7A362447653C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{7D2A7EDB-62E2-44C5-B996-7A362447653C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{7D2A7EDB-62E2-44C5-B996-7A362447653C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{7D2A7EDB-62E2-44C5-B996-7A362447653C}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal

View File

@ -0,0 +1,2 @@
<wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
<s:String x:Key="/Default/CodeInspection/ExcludedFiles/FilesAndFoldersToSkip2/=7020124F_002D9FFC_002D4AC3_002D8F3D_002DAAB8E0240759_002Ff_003AOpenGlControlBase_002Ecs_002Fl_003A_002E_002E_003F_002E_002E_003F_002E_002E_003F_002E_002E_003F_002E_002E_003F_002Econfig_003FJetBrains_003FRider2024_002E3_003Fresharper_002Dhost_003FSourcesCache_003Fbd52d95392cd166965daf17dd7beae45eca78a7b438a5392e6fd6222cc44aa_003FOpenGlControlBase_002Ecs/@EntryIndexedValue">ForceIncluded</s:String></wpf:ResourceDictionary>

View File

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

View File

@ -0,0 +1,25 @@
using Avalonia;
using Avalonia.Controls.ApplicationLifetimes;
using Avalonia.Markup.Xaml;
namespace GLTFViewer;
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();
}
base.OnFrameworkInitializationCompleted();
}
}

View File

@ -0,0 +1,7 @@
<UserControl xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
x:Class="GLTFViewer.BaseOpenTKControl">
</UserControl>

View File

@ -0,0 +1,42 @@
using System;
using Avalonia;
using Avalonia.Controls;
using Avalonia.Markup.Xaml;
using Avalonia.OpenGL;
using Avalonia.OpenGL.Controls;
using OpenTK;
using OpenTK.Graphics;
using OpenTK.Graphics.OpenGL;
namespace GLTFViewer;
public partial class BaseOpenTKControl : OpenGlControlBase
{
// Events for the renderer to hook into
public event Action<GlInterface> OnInit;
public event Action<GlInterface> OnDeinit;
public event Action<GlInterface, int, int, int> OnRender;
public BaseOpenTKControl()
{
InitializeComponent();
}
protected override void OnOpenGlInit(GlInterface gl)
{
OnInit?.Invoke(gl);
}
protected override void OnOpenGlDeinit(GlInterface gl)
{
OnDeinit?.Invoke(gl);
}
protected override void OnOpenGlRender(GlInterface gl, int fbo)
{
var width = (int)Bounds.Width;
var height = (int)Bounds.Height;
OnRender?.Invoke(gl, width, height, fbo);
}
}

View File

@ -0,0 +1,24 @@
# GLTF Viewer (Avalonia+OpenTK)
## The Goal
A simple application to load GLTF scenes and render the model(s) in a lit scene with full textures.
## Requirements
- Load GLTF scenes
- Will load all the models in the gltf file
- Must render the textures correctly (will eventually get materials working)
- Basic mouse input to rotate the model
- Avalonia used for the UI with a Control to load the OpenTK gl context
- Tree view of meshes
- Inspector with mesh properties
## Development Status
- 01/15/2025 Update 1: Successfully have Avalonia project set up with a BaseOpenTK control rendering the OpenTK context. Also have a Renerer class to seperate out the rendering code from the control, but it's empty for now. There is also some boilerplate UI for the inspector, but its only visual and will need to be filled out.
## Development Environment
- OS: Linux (NixOS)
- IDE: JetBrains Rider 2024
- Dotnet version: net8.0
- Avalonia version: 11.2.1
- OpenTK Version: 5.0.0-pre.13

View File

@ -0,0 +1,8 @@
using GLTFViewer.Rendering;
namespace GLTFViewer;
public static class Engine
{
}

View File

@ -0,0 +1,23 @@
<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>
<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="OpenTK" Version="5.0.0-pre.13" />
</ItemGroup>
</Project>

View File

@ -0,0 +1,21 @@
<UserControl xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
x:Class="GLTFViewer.MainUI">
<StackPanel VerticalAlignment="Stretch" HorizontalAlignment="Stretch" Background="DimGray">
<StackPanel HorizontalAlignment="Stretch" Height="200">
<Border BorderThickness="2" BorderBrush="Black" Padding="0 10">
<TextBlock Text="Inspector" TextAlignment="Center"/>
</Border>
</StackPanel>
<Border BorderThickness="2" BorderBrush="Black" Padding="0 10">
<TextBlock Text="Tree" TextAlignment="Center"/>
</Border>
<TreeView HorizontalAlignment="Stretch">
<TreeViewItem></TreeViewItem>
</TreeView>
</StackPanel>
</UserControl>

View File

@ -0,0 +1,13 @@
using Avalonia;
using Avalonia.Controls;
using Avalonia.Markup.Xaml;
namespace GLTFViewer;
public partial class MainUI : UserControl
{
public MainUI()
{
InitializeComponent();
}
}

View File

@ -0,0 +1,19 @@
<Window xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:gltfViewer="clr-namespace:GLTFViewer"
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
x:Class="GLTFViewer.MainWindow"
Title="GLTFViewer">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="300"/>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
<gltfViewer:MainUI x:Name="MainUiControl" Grid.Column="0"/>
<gltfViewer:BaseOpenTKControl x:Name="OpenTkControl" Grid.Column="1" />
</Grid>
</Window>

View File

@ -0,0 +1,28 @@
using Avalonia.Controls;
using Avalonia.Layout;
using Avalonia.Media;
using GLTFViewer.Rendering;
namespace GLTFViewer;
public partial class MainWindow : Window
{
private Renderer _renderer;
private BaseOpenTKControl _openTkControl;
private MainUI _mainUI;
public MainWindow()
{
InitializeComponent();
_renderer = new Renderer();
_mainUI = MainUiControl;
_openTkControl = OpenTkControl;
_openTkControl.OnInit += _renderer.Initialize;
_openTkControl.OnRender += _renderer.Render;
_openTkControl.OnDeinit += _renderer.Deinitialize;
}
}

View File

@ -0,0 +1,43 @@
using Avalonia;
using System;
using System.Collections.ObjectModel;
namespace GLTFViewer;
class Program
{
// Platform-specific options to be passed to AppBuilder.Configure.
private static Win32PlatformOptions _win32PlatformOptions = new()
{
RenderingMode = new Collection<Win32RenderingMode>() { Win32RenderingMode.Wgl }
};
private static X11PlatformOptions _x11PlatformOptions = new()
{
RenderingMode = new Collection<X11RenderingMode>() { X11RenderingMode.Egl },
WmClass = "AvaloniaOpenTKApp"
};
private static MacOSPlatformOptions _macOSPlatformOptions = new()
{
ShowInDock = true
};
// 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()
.UseSkia()
.With(_win32PlatformOptions)
.With(_x11PlatformOptions)
.With(_macOSPlatformOptions)
.LogToTrace();
}

View File

@ -0,0 +1,43 @@
using System;
using Avalonia.OpenGL;
using OpenTK;
using OpenTK.Graphics;
using OpenTK.Graphics.OpenGL;
namespace GLTFViewer.Rendering;
public class Renderer
{
public void Initialize(GlInterface gl)
{
GLLoader.LoadBindings(new AvaloniaBindingsContext(gl));
GL.ClearColor(0,0,1,1);
}
public void Render(GlInterface gl, int width, int height, int fbo)
{
GL.Viewport(0, 0, width, height);
GL.Clear(ClearBufferMask.ColorBufferBit | ClearBufferMask.DepthBufferBit);
}
public void Deinitialize(GlInterface gl)
{
}
private class AvaloniaBindingsContext : IBindingsContext
{
private readonly GlInterface _gl;
public AvaloniaBindingsContext(GlInterface gl)
{
_gl = gl;
}
public IntPtr GetProcAddress(string procName)
{
return _gl.GetProcAddress(procName);
}
}
}

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="GLTFViewer.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.

View File

@ -0,0 +1,881 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v8.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v8.0": {
"GLTFViewer/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.Themes.Fluent": "11.2.1",
"OpenTK": "5.0.0-pre.13"
},
"runtime": {
"GLTFViewer.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.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"
}
}
},
"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"
}
}
},
"OpenTK/5.0.0-pre.13": {
"dependencies": {
"OpenTK.Audio.OpenAL": "5.0.0-pre.13",
"OpenTK.Compute": "5.0.0-pre.13",
"OpenTK.Core": "5.0.0-pre.13",
"OpenTK.Graphics": "5.0.0-pre.13",
"OpenTK.Input": "5.0.0-pre.13",
"OpenTK.Mathematics": "5.0.0-pre.13",
"OpenTK.Platform": "5.0.0-pre.13",
"OpenTK.Windowing.Common": "5.0.0-pre.13",
"OpenTK.Windowing.Desktop": "5.0.0-pre.13",
"OpenTK.Windowing.GraphicsLibraryFramework": "5.0.0-pre.13"
}
},
"OpenTK.Audio.OpenAL/5.0.0-pre.13": {
"dependencies": {
"OpenTK.Core": "5.0.0-pre.13",
"OpenTK.Mathematics": "5.0.0-pre.13"
},
"runtime": {
"lib/net8.0/OpenTK.Audio.OpenAL.dll": {
"assemblyVersion": "4.0.0.0",
"fileVersion": "4.0.0.0"
}
}
},
"OpenTK.Compute/5.0.0-pre.13": {
"runtime": {
"lib/net8.0/OpenTK.Compute.dll": {
"assemblyVersion": "4.0.0.0",
"fileVersion": "4.0.0.0"
}
}
},
"OpenTK.Core/5.0.0-pre.13": {
"runtime": {
"lib/net8.0/OpenTK.Core.dll": {
"assemblyVersion": "4.0.0.0",
"fileVersion": "4.0.0.0"
}
}
},
"OpenTK.Graphics/5.0.0-pre.13": {
"dependencies": {
"OpenTK.Core": "5.0.0-pre.13",
"OpenTK.Mathematics": "5.0.0-pre.13"
},
"runtime": {
"lib/net8.0/OpenTK.Graphics.dll": {
"assemblyVersion": "4.0.0.0",
"fileVersion": "4.0.0.0"
}
}
},
"OpenTK.Input/5.0.0-pre.13": {
"runtime": {
"lib/net8.0/OpenTK.Input.dll": {
"assemblyVersion": "4.0.0.0",
"fileVersion": "4.0.0.0"
}
}
},
"OpenTK.Mathematics/5.0.0-pre.13": {
"dependencies": {
"System.Runtime.CompilerServices.Unsafe": "5.0.0"
},
"runtime": {
"lib/net8.0/OpenTK.Mathematics.dll": {
"assemblyVersion": "4.0.0.0",
"fileVersion": "4.0.0.0"
}
}
},
"OpenTK.Platform/5.0.0-pre.13": {
"runtime": {
"lib/net8.0/OpenTK.Platform.dll": {
"assemblyVersion": "4.0.0.0",
"fileVersion": "4.0.0.0"
}
}
},
"OpenTK.redist.glfw/3.3.8.39": {
"runtimeTargets": {
"runtimes/linux-x64/native/libglfw-wayland.so.3.3": {
"rid": "linux-x64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/linux-x64/native/libglfw.so.3.3": {
"rid": "linux-x64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/osx-arm64/native/libglfw.3.dylib": {
"rid": "osx-arm64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/osx-x64/native/libglfw.3.dylib": {
"rid": "osx-x64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/win-x64/native/glfw3.dll": {
"rid": "win-x64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/win-x86/native/glfw3.dll": {
"rid": "win-x86",
"assetType": "native",
"fileVersion": "0.0.0.0"
}
}
},
"OpenTK.Windowing.Common/5.0.0-pre.13": {
"dependencies": {
"OpenTK.Core": "5.0.0-pre.13",
"OpenTK.Mathematics": "5.0.0-pre.13"
},
"runtime": {
"lib/net8.0/OpenTK.Windowing.Common.dll": {
"assemblyVersion": "4.0.0.0",
"fileVersion": "4.0.0.0"
}
}
},
"OpenTK.Windowing.Desktop/5.0.0-pre.13": {
"dependencies": {
"OpenTK.Core": "5.0.0-pre.13",
"OpenTK.Mathematics": "5.0.0-pre.13",
"OpenTK.Windowing.Common": "5.0.0-pre.13",
"OpenTK.Windowing.GraphicsLibraryFramework": "5.0.0-pre.13"
},
"runtime": {
"lib/net8.0/OpenTK.Windowing.Desktop.dll": {
"assemblyVersion": "4.0.0.0",
"fileVersion": "4.0.0.0"
}
}
},
"OpenTK.Windowing.GraphicsLibraryFramework/5.0.0-pre.13": {
"dependencies": {
"OpenTK.Core": "5.0.0-pre.13",
"OpenTK.redist.glfw": "3.3.8.39"
},
"runtime": {
"lib/net8.0/OpenTK.Windowing.GraphicsLibraryFramework.dll": {
"assemblyVersion": "4.0.0.0",
"fileVersion": "4.0.0.0"
}
}
},
"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"
}
}
},
"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.Runtime.CompilerServices.Unsafe/5.0.0": {},
"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": {
"GLTFViewer/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.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"
},
"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"
},
"OpenTK/5.0.0-pre.13": {
"type": "package",
"serviceable": true,
"sha512": "sha512-+Zwcxfviwag6C9oDxnMr1Tulr0jV484x8suYCJlZ5luDeJdsAMI7UfPCIDEP9CUh2AJfT0Jv+81eDaggyVGotQ==",
"path": "opentk/5.0.0-pre.13",
"hashPath": "opentk.5.0.0-pre.13.nupkg.sha512"
},
"OpenTK.Audio.OpenAL/5.0.0-pre.13": {
"type": "package",
"serviceable": true,
"sha512": "sha512-q+YYwBHlP54/wjlapXRmv8Wy6IiCfoL8nz/+laMKXrlCxIBQ807dh2GowOc5Z6Sllr9I45GRQlqL8xbeniqrIQ==",
"path": "opentk.audio.openal/5.0.0-pre.13",
"hashPath": "opentk.audio.openal.5.0.0-pre.13.nupkg.sha512"
},
"OpenTK.Compute/5.0.0-pre.13": {
"type": "package",
"serviceable": true,
"sha512": "sha512-qwQ2s2iXeb/NlbavnNSMUjCxxPCZrGDrhGBm2TysTeJpchICYzIgrIleY8kbuchSzAO8P/yTKm3sSF+yG1tEUA==",
"path": "opentk.compute/5.0.0-pre.13",
"hashPath": "opentk.compute.5.0.0-pre.13.nupkg.sha512"
},
"OpenTK.Core/5.0.0-pre.13": {
"type": "package",
"serviceable": true,
"sha512": "sha512-NohlYrmuR/H8dMMFzTEdTD7GgWa+mLpXzgnVa1Wixp8tzojdoalO+HYW/ixG1lzzYyBSMoENrZyRgt6njZxnkw==",
"path": "opentk.core/5.0.0-pre.13",
"hashPath": "opentk.core.5.0.0-pre.13.nupkg.sha512"
},
"OpenTK.Graphics/5.0.0-pre.13": {
"type": "package",
"serviceable": true,
"sha512": "sha512-oEbjB/r4EbhRKP9piOoklO8pseHK9mO7Bv4LQUyzFltdZ3tf+yD+L0l9Bf7lax7vHvYDB6bBqzMEp2/H0ucm+Q==",
"path": "opentk.graphics/5.0.0-pre.13",
"hashPath": "opentk.graphics.5.0.0-pre.13.nupkg.sha512"
},
"OpenTK.Input/5.0.0-pre.13": {
"type": "package",
"serviceable": true,
"sha512": "sha512-TztSEwPrGAgUcGGiqXlWzP9QSSOci4B3XmuNpjkL8WvHRPxbYeIqfb/fFodxViCk6j9K68egPxFuQl70rL9ZKA==",
"path": "opentk.input/5.0.0-pre.13",
"hashPath": "opentk.input.5.0.0-pre.13.nupkg.sha512"
},
"OpenTK.Mathematics/5.0.0-pre.13": {
"type": "package",
"serviceable": true,
"sha512": "sha512-65qbZS49AfrTM6jtZ2RDTWAzLe13ywCXIiSP5QrAJLmZT6sQqHGd1LfFXLhx8Ccp77qy7qh/LHsxpUOlkgZTCg==",
"path": "opentk.mathematics/5.0.0-pre.13",
"hashPath": "opentk.mathematics.5.0.0-pre.13.nupkg.sha512"
},
"OpenTK.Platform/5.0.0-pre.13": {
"type": "package",
"serviceable": true,
"sha512": "sha512-OKCXd2/vjl3RRTzhcRTZdKWpmgEt7MI2cSs/9wEWB+z/lsddGA0uBchE3u8NG5V5ZvjyRiA9q7HvkFxPgJnt3A==",
"path": "opentk.platform/5.0.0-pre.13",
"hashPath": "opentk.platform.5.0.0-pre.13.nupkg.sha512"
},
"OpenTK.redist.glfw/3.3.8.39": {
"type": "package",
"serviceable": true,
"sha512": "sha512-JzjaBzHTyKenUk9CXOYIqA/v7VMnjFnqmd3SKR3I1YpuOTu/H3ohyy3o+ZfMCQ6IRKs7CLfSPXMarKLvwD0WgQ==",
"path": "opentk.redist.glfw/3.3.8.39",
"hashPath": "opentk.redist.glfw.3.3.8.39.nupkg.sha512"
},
"OpenTK.Windowing.Common/5.0.0-pre.13": {
"type": "package",
"serviceable": true,
"sha512": "sha512-RlEz7Boqalx38eCDYGA/YjN/KjwhJiR5nKWD0obMpVxnTDjmKk93kyJL0iT8n/9tIJxKgUHh1pEDs3Jr/cRH2Q==",
"path": "opentk.windowing.common/5.0.0-pre.13",
"hashPath": "opentk.windowing.common.5.0.0-pre.13.nupkg.sha512"
},
"OpenTK.Windowing.Desktop/5.0.0-pre.13": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Rx7LMx3n+Dz87qwSWYEk8qEhOsQ8w7lCOwzbsJZmGqcEfn4oyIGGbPvsxlEauHrUUF6Q99biN8jNmm8FGY4ITQ==",
"path": "opentk.windowing.desktop/5.0.0-pre.13",
"hashPath": "opentk.windowing.desktop.5.0.0-pre.13.nupkg.sha512"
},
"OpenTK.Windowing.GraphicsLibraryFramework/5.0.0-pre.13": {
"type": "package",
"serviceable": true,
"sha512": "sha512-2VIh8AFWpGPo6oe5f+TGq4aUNjCXxyOnGNPTuIOt5pxWnwlvdC8YcBTRYfW3X73NHNdSr1K9Z6C8R265tDQOCQ==",
"path": "opentk.windowing.graphicslibraryframework/5.0.0-pre.13",
"hashPath": "opentk.windowing.graphicslibraryframework.5.0.0-pre.13.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"
},
"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.Runtime.CompilerServices.Unsafe/5.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==",
"path": "system.runtime.compilerservices.unsafe/5.0.0",
"hashPath": "system.runtime.compilerservices.unsafe.5.0.0.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"
}
}
}

Binary file not shown.

Binary file not shown.

View File

@ -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
}
}
}

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,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")]

View File

@ -0,0 +1 @@
ed319a84132e63d4580b66e4415ab14d84417d6486e6850b0892893b35c84e2f

View File

@ -0,0 +1,202 @@
/home/chris/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.Base.dll
/home/chris/.nuget/packages/avalonia.controls.colorpicker/11.2.1/lib/net8.0/Avalonia.Controls.ColorPicker.dll
/home/chris/.nuget/packages/avalonia.controls.datagrid/11.2.1/lib/net8.0/Avalonia.Controls.DataGrid.dll
/home/chris/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.Controls.dll
/home/chris/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.DesignerSupport.dll
/home/chris/.nuget/packages/avalonia.desktop/11.2.1/lib/net8.0/Avalonia.Desktop.dll
/home/chris/.nuget/packages/avalonia.diagnostics/11.2.1/lib/net8.0/Avalonia.Diagnostics.dll
/home/chris/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.Dialogs.dll
/home/chris/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.dll
/home/chris/.nuget/packages/avalonia.fonts.inter/11.2.1/lib/net8.0/Avalonia.Fonts.Inter.dll
/home/chris/.nuget/packages/avalonia.freedesktop/11.2.1/lib/net8.0/Avalonia.FreeDesktop.dll
/home/chris/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.Markup.dll
/home/chris/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.Markup.Xaml.dll
/home/chris/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.Metal.dll
/home/chris/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.MicroCom.dll
/home/chris/.nuget/packages/avalonia.native/11.2.1/lib/net8.0/Avalonia.Native.dll
/home/chris/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.OpenGL.dll
/home/chris/.nuget/packages/avalonia.remote.protocol/11.2.1/lib/net8.0/Avalonia.Remote.Protocol.dll
/home/chris/.nuget/packages/avalonia.skia/11.2.1/lib/net8.0/Avalonia.Skia.dll
/home/chris/.nuget/packages/avalonia.themes.fluent/11.2.1/lib/net8.0/Avalonia.Themes.Fluent.dll
/home/chris/.nuget/packages/avalonia.themes.simple/11.2.1/lib/net8.0/Avalonia.Themes.Simple.dll
/home/chris/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.Vulkan.dll
/home/chris/.nuget/packages/avalonia.win32/11.2.1/lib/net8.0/Avalonia.Win32.dll
/home/chris/.nuget/packages/avalonia.x11/11.2.1/lib/net8.0/Avalonia.X11.dll
/home/chris/.nuget/packages/harfbuzzsharp/7.3.0.2/lib/net6.0/HarfBuzzSharp.dll
/home/chris/.nuget/packages/microcom.runtime/0.11.0/lib/net5.0/MicroCom.Runtime.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/Microsoft.CSharp.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/Microsoft.VisualBasic.Core.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/Microsoft.VisualBasic.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/Microsoft.Win32.Primitives.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/Microsoft.Win32.Registry.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/mscorlib.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/netstandard.dll
/home/chris/.nuget/packages/opentk.audio.openal/5.0.0-pre.13/lib/net8.0/OpenTK.Audio.OpenAL.dll
/home/chris/.nuget/packages/opentk.compute/5.0.0-pre.13/lib/net8.0/OpenTK.Compute.dll
/home/chris/.nuget/packages/opentk.core/5.0.0-pre.13/lib/net8.0/OpenTK.Core.dll
/home/chris/.nuget/packages/opentk.graphics/5.0.0-pre.13/lib/net8.0/OpenTK.Graphics.dll
/home/chris/.nuget/packages/opentk.input/5.0.0-pre.13/lib/net8.0/OpenTK.Input.dll
/home/chris/.nuget/packages/opentk.mathematics/5.0.0-pre.13/lib/net8.0/OpenTK.Mathematics.dll
/home/chris/.nuget/packages/opentk.platform/5.0.0-pre.13/lib/net8.0/OpenTK.Platform.dll
/home/chris/.nuget/packages/opentk.windowing.common/5.0.0-pre.13/lib/net8.0/OpenTK.Windowing.Common.dll
/home/chris/.nuget/packages/opentk.windowing.desktop/5.0.0-pre.13/lib/net8.0/OpenTK.Windowing.Desktop.dll
/home/chris/.nuget/packages/opentk.windowing.graphicslibraryframework/5.0.0-pre.13/lib/net8.0/OpenTK.Windowing.GraphicsLibraryFramework.dll
/home/chris/.nuget/packages/skiasharp/2.88.8/lib/net6.0/SkiaSharp.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.AppContext.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Buffers.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Collections.Concurrent.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Collections.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Collections.Immutable.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Collections.NonGeneric.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Collections.Specialized.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.ComponentModel.Annotations.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.ComponentModel.DataAnnotations.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.ComponentModel.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.ComponentModel.EventBasedAsync.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.ComponentModel.Primitives.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.ComponentModel.TypeConverter.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Configuration.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Console.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Core.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Data.Common.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Data.DataSetExtensions.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Data.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Diagnostics.Contracts.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Diagnostics.Debug.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Diagnostics.DiagnosticSource.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Diagnostics.FileVersionInfo.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Diagnostics.Process.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Diagnostics.StackTrace.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Diagnostics.TextWriterTraceListener.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Diagnostics.Tools.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Diagnostics.TraceSource.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Diagnostics.Tracing.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Drawing.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Drawing.Primitives.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Dynamic.Runtime.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Formats.Asn1.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Formats.Tar.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Globalization.Calendars.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Globalization.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Globalization.Extensions.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.IO.Compression.Brotli.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.IO.Compression.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.IO.Compression.FileSystem.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.IO.Compression.ZipFile.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.IO.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.IO.FileSystem.AccessControl.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.IO.FileSystem.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.IO.FileSystem.DriveInfo.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.IO.FileSystem.Primitives.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.IO.FileSystem.Watcher.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.IO.IsolatedStorage.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.IO.MemoryMappedFiles.dll
/home/chris/.nuget/packages/system.io.pipelines/8.0.0/lib/net8.0/System.IO.Pipelines.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.IO.Pipes.AccessControl.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.IO.Pipes.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.IO.UnmanagedMemoryStream.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Linq.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Linq.Expressions.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Linq.Parallel.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Linq.Queryable.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Memory.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Net.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Net.Http.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Net.Http.Json.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Net.HttpListener.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Net.Mail.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Net.NameResolution.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Net.NetworkInformation.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Net.Ping.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Net.Primitives.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Net.Quic.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Net.Requests.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Net.Security.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Net.ServicePoint.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Net.Sockets.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Net.WebClient.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Net.WebHeaderCollection.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Net.WebProxy.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Net.WebSockets.Client.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Net.WebSockets.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Numerics.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Numerics.Vectors.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.ObjectModel.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Reflection.DispatchProxy.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Reflection.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Reflection.Emit.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Reflection.Emit.ILGeneration.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Reflection.Emit.Lightweight.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Reflection.Extensions.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Reflection.Metadata.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Reflection.Primitives.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Reflection.TypeExtensions.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Resources.Reader.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Resources.ResourceManager.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Resources.Writer.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Runtime.CompilerServices.Unsafe.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Runtime.CompilerServices.VisualC.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Runtime.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Runtime.Extensions.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Runtime.Handles.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Runtime.InteropServices.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Runtime.InteropServices.JavaScript.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Runtime.InteropServices.RuntimeInformation.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Runtime.Intrinsics.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Runtime.Loader.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Runtime.Numerics.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Runtime.Serialization.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Runtime.Serialization.Formatters.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Runtime.Serialization.Json.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Runtime.Serialization.Primitives.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Runtime.Serialization.Xml.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Security.AccessControl.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Security.Claims.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Security.Cryptography.Algorithms.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Security.Cryptography.Cng.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Security.Cryptography.Csp.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Security.Cryptography.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Security.Cryptography.Encoding.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Security.Cryptography.OpenSsl.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Security.Cryptography.Primitives.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Security.Cryptography.X509Certificates.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Security.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Security.Principal.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Security.Principal.Windows.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Security.SecureString.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.ServiceModel.Web.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.ServiceProcess.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Text.Encoding.CodePages.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Text.Encoding.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Text.Encoding.Extensions.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Text.Encodings.Web.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Text.Json.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Text.RegularExpressions.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Threading.Channels.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Threading.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Threading.Overlapped.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Threading.Tasks.Dataflow.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Threading.Tasks.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Threading.Tasks.Extensions.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Threading.Tasks.Parallel.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Threading.Thread.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Threading.ThreadPool.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Threading.Timer.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Transactions.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Transactions.Local.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.ValueTuple.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Web.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Web.HttpUtility.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Windows.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Xml.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Xml.Linq.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Xml.ReaderWriter.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Xml.Serialization.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Xml.XDocument.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Xml.XmlDocument.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Xml.XmlSerializer.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Xml.XPath.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Xml.XPath.XDocument.dll
/home/chris/.nuget/packages/tmds.dbus.protocol/0.20.0/lib/net8.0/Tmds.DBus.Protocol.dll
/nix/store/ns9ra9380pg1ibdsvwn5mq1s9hpy8lgv-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/WindowsBase.dll

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("GLTFViewer")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("GLTFViewer")]
[assembly: System.Reflection.AssemblyTitleAttribute("GLTFViewer")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Generated by the MSBuild WriteCodeFragment class.

View File

@ -0,0 +1 @@
624d9c90127f7d4713bd66a3c7248de30c8a9f3260f23ede4e9f8e1b6aaec598

View File

@ -0,0 +1,34 @@
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 = GLTFViewer
build_property.ProjectDir = /home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/
build_property.EnableComHosting =
build_property.EnableGeneratedComInterfaceComImportInterop =
build_property.EffectiveAnalysisLevelStyle = 8.0
build_property.EnableCodeStyleSeverity =
[/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/App.axaml]
build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml
[/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/BaseOpenTKControl.axaml]
build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml
[/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/MainUI.axaml]
build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml
[/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/MainWindow.axaml]
build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml

View File

@ -0,0 +1 @@
f2d0c10a2c2495dff356a695cee23ea43e7aedd72629694b71ee28942f36ada6

View File

@ -0,0 +1,83 @@
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/bin/Debug/net8.0/GLTFViewer
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/bin/Debug/net8.0/GLTFViewer.deps.json
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/bin/Debug/net8.0/GLTFViewer.runtimeconfig.json
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/bin/Debug/net8.0/GLTFViewer.dll
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/bin/Debug/net8.0/GLTFViewer.pdb
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/bin/Debug/net8.0/Avalonia.Base.dll
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/bin/Debug/net8.0/Avalonia.Controls.dll
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/bin/Debug/net8.0/Avalonia.DesignerSupport.dll
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/bin/Debug/net8.0/Avalonia.Dialogs.dll
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/bin/Debug/net8.0/Avalonia.Markup.Xaml.dll
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/bin/Debug/net8.0/Avalonia.Markup.dll
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/bin/Debug/net8.0/Avalonia.Metal.dll
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/bin/Debug/net8.0/Avalonia.MicroCom.dll
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/bin/Debug/net8.0/Avalonia.OpenGL.dll
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/bin/Debug/net8.0/Avalonia.Vulkan.dll
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/bin/Debug/net8.0/Avalonia.dll
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/bin/Debug/net8.0/Avalonia.Controls.ColorPicker.dll
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/bin/Debug/net8.0/Avalonia.Controls.DataGrid.dll
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/bin/Debug/net8.0/Avalonia.Desktop.dll
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/bin/Debug/net8.0/Avalonia.Diagnostics.dll
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/bin/Debug/net8.0/Avalonia.Fonts.Inter.dll
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/bin/Debug/net8.0/Avalonia.FreeDesktop.dll
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/bin/Debug/net8.0/Avalonia.Native.dll
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/bin/Debug/net8.0/Avalonia.Remote.Protocol.dll
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/bin/Debug/net8.0/Avalonia.Skia.dll
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/bin/Debug/net8.0/Avalonia.Themes.Fluent.dll
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/bin/Debug/net8.0/Avalonia.Themes.Simple.dll
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/bin/Debug/net8.0/Avalonia.Win32.dll
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/bin/Debug/net8.0/Avalonia.X11.dll
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/bin/Debug/net8.0/HarfBuzzSharp.dll
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/bin/Debug/net8.0/MicroCom.Runtime.dll
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/bin/Debug/net8.0/OpenTK.Audio.OpenAL.dll
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/bin/Debug/net8.0/OpenTK.Compute.dll
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/bin/Debug/net8.0/OpenTK.Core.dll
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/bin/Debug/net8.0/OpenTK.Graphics.dll
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/bin/Debug/net8.0/OpenTK.Input.dll
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/bin/Debug/net8.0/OpenTK.Mathematics.dll
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/bin/Debug/net8.0/OpenTK.Platform.dll
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/bin/Debug/net8.0/OpenTK.Windowing.Common.dll
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/bin/Debug/net8.0/OpenTK.Windowing.Desktop.dll
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/bin/Debug/net8.0/OpenTK.Windowing.GraphicsLibraryFramework.dll
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/bin/Debug/net8.0/SkiaSharp.dll
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/bin/Debug/net8.0/System.IO.Pipelines.dll
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/bin/Debug/net8.0/Tmds.DBus.Protocol.dll
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/bin/Debug/net8.0/runtimes/win-arm64/native/av_libglesv2.dll
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/bin/Debug/net8.0/runtimes/win-x64/native/av_libglesv2.dll
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/bin/Debug/net8.0/runtimes/win-x86/native/av_libglesv2.dll
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/bin/Debug/net8.0/runtimes/osx/native/libAvaloniaNative.dylib
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/bin/Debug/net8.0/runtimes/linux-arm/native/libHarfBuzzSharp.so
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/bin/Debug/net8.0/runtimes/linux-arm64/native/libHarfBuzzSharp.so
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/bin/Debug/net8.0/runtimes/linux-musl-x64/native/libHarfBuzzSharp.so
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/bin/Debug/net8.0/runtimes/linux-x64/native/libHarfBuzzSharp.so
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/bin/Debug/net8.0/runtimes/osx/native/libHarfBuzzSharp.dylib
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/bin/Debug/net8.0/runtimes/win-arm64/native/libHarfBuzzSharp.dll
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/bin/Debug/net8.0/runtimes/win-x64/native/libHarfBuzzSharp.dll
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/bin/Debug/net8.0/runtimes/win-x86/native/libHarfBuzzSharp.dll
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/bin/Debug/net8.0/runtimes/linux-x64/native/libglfw-wayland.so.3.3
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/bin/Debug/net8.0/runtimes/linux-x64/native/libglfw.so.3.3
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/bin/Debug/net8.0/runtimes/osx-arm64/native/libglfw.3.dylib
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/bin/Debug/net8.0/runtimes/osx-x64/native/libglfw.3.dylib
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/bin/Debug/net8.0/runtimes/win-x64/native/glfw3.dll
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/bin/Debug/net8.0/runtimes/win-x86/native/glfw3.dll
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/bin/Debug/net8.0/runtimes/linux-arm/native/libSkiaSharp.so
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/bin/Debug/net8.0/runtimes/linux-arm64/native/libSkiaSharp.so
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/bin/Debug/net8.0/runtimes/linux-musl-x64/native/libSkiaSharp.so
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/bin/Debug/net8.0/runtimes/linux-x64/native/libSkiaSharp.so
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/bin/Debug/net8.0/runtimes/osx/native/libSkiaSharp.dylib
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/bin/Debug/net8.0/runtimes/win-arm64/native/libSkiaSharp.dll
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/bin/Debug/net8.0/runtimes/win-x64/native/libSkiaSharp.dll
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/bin/Debug/net8.0/runtimes/win-x86/native/libSkiaSharp.dll
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/obj/Debug/net8.0/GLTFViewer.csproj.AssemblyReference.cache
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/obj/Debug/net8.0/Avalonia/Resources.Inputs.cache
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/obj/Debug/net8.0/Avalonia/resources
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/obj/Debug/net8.0/GLTFViewer.GeneratedMSBuildEditorConfig.editorconfig
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/obj/Debug/net8.0/GLTFViewer.AssemblyInfoInputs.cache
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/obj/Debug/net8.0/GLTFViewer.AssemblyInfo.cs
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/obj/Debug/net8.0/GLTFViewer.csproj.CoreCompileInputs.cache
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/obj/Debug/net8.0/Avalonia/GLTFViewer.dll
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/obj/Debug/net8.0/Avalonia/GLTFViewer.pdb
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/obj/Debug/net8.0/refint/Avalonia/GLTFViewer.dll
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/obj/Debug/net8.0/GLTFViewer.csproj.Up2Date
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/obj/Debug/net8.0/GLTFViewer.genruntimeconfig.cache
/home/chris/mnt/data/Projects/GLTFViewer/GLTFViewer/GLTFViewer/obj/Debug/net8.0/ref/GLTFViewer.dll

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