git init
This commit is contained in:
commit
bc8b4e9c29
13
.idea/.idea.demo1/.idea/.gitignore
vendored
Normal file
13
.idea/.idea.demo1/.idea/.gitignore
vendored
Normal file
@ -0,0 +1,13 @@
|
||||
# Default ignored files
|
||||
/shelf/
|
||||
/workspace.xml
|
||||
# Rider ignored files
|
||||
/modules.xml
|
||||
/contentModel.xml
|
||||
/.idea.demo1.iml
|
||||
/projectSettingsUpdater.xml
|
||||
# Editor-based HTTP Client requests
|
||||
/httpRequests/
|
||||
# Datasource local storage ignored files
|
||||
/dataSources/
|
||||
/dataSources.local.xml
|
12
.idea/.idea.demo1/.idea/avalonia.xml
Normal file
12
.idea/.idea.demo1/.idea/avalonia.xml
Normal file
@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="AvaloniaProject">
|
||||
<option name="projectPerEditor">
|
||||
<map>
|
||||
<entry key="demo1/AddAndEditProduct.axaml" value="demo1/demo1.csproj" />
|
||||
<entry key="demo1/MainWindow.axaml" value="demo1/demo1.csproj" />
|
||||
<entry key="demo1/OrderHistory.axaml" value="demo1/demo1.csproj" />
|
||||
</map>
|
||||
</option>
|
||||
</component>
|
||||
</project>
|
8
.idea/.idea.demo1/.idea/indexLayout.xml
Normal file
8
.idea/.idea.demo1/.idea/indexLayout.xml
Normal file
@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="UserContentModel">
|
||||
<attachedFolders />
|
||||
<explicitIncludes />
|
||||
<explicitExcludes />
|
||||
</component>
|
||||
</project>
|
6
.idea/.idea.demo1/.idea/vcs.xml
Normal file
6
.idea/.idea.demo1/.idea/vcs.xml
Normal file
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="VcsDirectoryMappings">
|
||||
<mapping directory="$PROJECT_DIR$" vcs="Git" />
|
||||
</component>
|
||||
</project>
|
16
demo1.sln
Normal file
16
demo1.sln
Normal file
@ -0,0 +1,16 @@
|
||||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "demo1", "demo1\demo1.csproj", "{8B96DD6E-7ED7-4B72-9FDC-D457B84EAD08}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
Release|Any CPU = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{8B96DD6E-7ED7-4B72-9FDC-D457B84EAD08}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{8B96DD6E-7ED7-4B72-9FDC-D457B84EAD08}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{8B96DD6E-7ED7-4B72-9FDC-D457B84EAD08}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{8B96DD6E-7ED7-4B72-9FDC-D457B84EAD08}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
EndGlobal
|
20
demo1/AddAndEditProduct.axaml
Normal file
20
demo1/AddAndEditProduct.axaml
Normal file
@ -0,0 +1,20 @@
|
||||
<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"
|
||||
mc:Ignorable="d" d:DesignWidth="400" d:DesignHeight="450"
|
||||
x:Class="demo1.AddAndEditProduct"
|
||||
Title="AddAndEditProduct">
|
||||
<StackPanel Spacing="5" VerticalAlignment="Center" HorizontalAlignment="Center">
|
||||
<TextBox Width="200" x:Name="ProductIdTextBox"/>
|
||||
<TextBox x:Name="ProductNameTextBox"/>
|
||||
<Image Width="60" Height="60"/>
|
||||
<Button Width="100" x:Name="SelectImageButton" Content="SelectImage"/>
|
||||
<TextBox Width="200" x:Name="ProductDescTextBox"/>
|
||||
<TextBox Width="200" x:Name="ProductCostTextBox"/>
|
||||
<ComboBox Width="200" x:Name="ManafacturesComboBox"/>
|
||||
<Button Width="100" x:Name="SaveButton" Content="Save"/>
|
||||
<Button Width="100" x:Name="AddButton" Content="Add"/>
|
||||
|
||||
</StackPanel>
|
||||
</Window>
|
13
demo1/AddAndEditProduct.axaml.cs
Normal file
13
demo1/AddAndEditProduct.axaml.cs
Normal file
@ -0,0 +1,13 @@
|
||||
using Avalonia;
|
||||
using Avalonia.Controls;
|
||||
using Avalonia.Markup.Xaml;
|
||||
|
||||
namespace demo1;
|
||||
|
||||
public partial class AddAndEditProduct : Window
|
||||
{
|
||||
public AddAndEditProduct()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
}
|
10
demo1/App.axaml
Normal file
10
demo1/App.axaml
Normal file
@ -0,0 +1,10 @@
|
||||
<Application xmlns="https://github.com/avaloniaui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
x:Class="demo1.App"
|
||||
RequestedThemeVariant="Default">
|
||||
<!-- "Default" ThemeVariant follows system theme variant. "Dark" or "Light" are other available options. -->
|
||||
|
||||
<Application.Styles>
|
||||
<FluentTheme />
|
||||
</Application.Styles>
|
||||
</Application>
|
23
demo1/App.axaml.cs
Normal file
23
demo1/App.axaml.cs
Normal file
@ -0,0 +1,23 @@
|
||||
using Avalonia;
|
||||
using Avalonia.Controls.ApplicationLifetimes;
|
||||
using Avalonia.Markup.Xaml;
|
||||
|
||||
namespace demo1;
|
||||
|
||||
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();
|
||||
}
|
||||
}
|
51
demo1/MainWindow.axaml
Normal file
51
demo1/MainWindow.axaml
Normal file
@ -0,0 +1,51 @@
|
||||
<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"
|
||||
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
|
||||
x:Class="demo1.MainWindow"
|
||||
Title="demo1">
|
||||
<DockPanel>
|
||||
<StackPanel
|
||||
HorizontalAlignment="Center"
|
||||
Orientation="Horizontal"
|
||||
DockPanel.Dock="Top"
|
||||
Spacing="10"
|
||||
Height="50">
|
||||
<TextBox Width="200" x:Name="SearchTextBox"/>
|
||||
<ComboBox VerticalAlignment="Center" Width="100" x:Name="SortComboBox"/>
|
||||
<ComboBox VerticalAlignment="Center" Width="100" x:Name="FilterCombobox"/>
|
||||
<TextBlock VerticalAlignment="Center" x:Name="CountRowTextBlock"/>
|
||||
<Button x:Name="AddProductButton" Click="AddProductButton_OnClick" Content="Создать продукт"/>
|
||||
</StackPanel>
|
||||
<StackPanel
|
||||
HorizontalAlignment="Center"
|
||||
Orientation="Horizontal"
|
||||
DockPanel.Dock="Bottom" Height="40">
|
||||
<Button Click="OpenOrderHistory_OnClick" x:Name="OpenOrderHistory" Content="Открыть историю заказов"/>
|
||||
</StackPanel>
|
||||
<ListBox x:Name="ProductListBox">
|
||||
<ListBox.ItemsPanel>
|
||||
<ItemsPanelTemplate>
|
||||
<UniformGrid Columns="6"></UniformGrid>
|
||||
</ItemsPanelTemplate>
|
||||
</ListBox.ItemsPanel>
|
||||
<ListBox.ItemTemplate>
|
||||
<DataTemplate>
|
||||
<Border BorderBrush="Gray" BorderThickness="1">
|
||||
<StackPanel
|
||||
HorizontalAlignment="Center"
|
||||
VerticalAlignment="Center">
|
||||
<Image Width="50" Height="50"/>
|
||||
<StackPanel Orientation="Horizontal">
|
||||
<TextBlock TextWrapping="Wrap"/>
|
||||
<TextBlock/>
|
||||
</StackPanel>
|
||||
<TextBlock/>
|
||||
</StackPanel>
|
||||
</Border>
|
||||
</DataTemplate>
|
||||
</ListBox.ItemTemplate>
|
||||
</ListBox>
|
||||
</DockPanel>
|
||||
</Window>
|
24
demo1/MainWindow.axaml.cs
Normal file
24
demo1/MainWindow.axaml.cs
Normal file
@ -0,0 +1,24 @@
|
||||
using Avalonia.Controls;
|
||||
using Avalonia.Interactivity;
|
||||
|
||||
namespace demo1;
|
||||
|
||||
public partial class MainWindow : Window
|
||||
{
|
||||
public MainWindow()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
private void AddProductButton_OnClick(object? sender, RoutedEventArgs e)
|
||||
{
|
||||
AddAndEditProduct addAndEditProduct = new AddAndEditProduct();
|
||||
addAndEditProduct.ShowDialog(this);
|
||||
}
|
||||
|
||||
private void OpenOrderHistory_OnClick(object? sender, RoutedEventArgs e)
|
||||
{
|
||||
OrderHistory orderHistory = new OrderHistory();
|
||||
orderHistory.ShowDialog(this);
|
||||
}
|
||||
}
|
25
demo1/OrderHistory.axaml
Normal file
25
demo1/OrderHistory.axaml
Normal file
@ -0,0 +1,25 @@
|
||||
<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"
|
||||
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
|
||||
x:Class="demo1.OrderHistory"
|
||||
Title="OrderHistory">
|
||||
<DockPanel>
|
||||
<StackPanel Spacing="5" HorizontalAlignment="Center" Orientation="Horizontal" DockPanel.Dock="Top">
|
||||
<ComboBox Width="200" x:Name="ProductComboBox"/>
|
||||
<Button Content="Back"/>
|
||||
</StackPanel>
|
||||
<ListBox>
|
||||
<ListBox.ItemTemplate>
|
||||
<DataTemplate>
|
||||
<StackPanel Spacing="5" Orientation="Horizontal">
|
||||
<TextBlock/>
|
||||
<TextBlock/>
|
||||
<TextBlock/>
|
||||
</StackPanel>
|
||||
</DataTemplate>
|
||||
</ListBox.ItemTemplate>
|
||||
</ListBox>
|
||||
</DockPanel>
|
||||
</Window>
|
13
demo1/OrderHistory.axaml.cs
Normal file
13
demo1/OrderHistory.axaml.cs
Normal file
@ -0,0 +1,13 @@
|
||||
using Avalonia;
|
||||
using Avalonia.Controls;
|
||||
using Avalonia.Markup.Xaml;
|
||||
|
||||
namespace demo1;
|
||||
|
||||
public partial class OrderHistory : Window
|
||||
{
|
||||
public OrderHistory()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
}
|
21
demo1/Program.cs
Normal file
21
demo1/Program.cs
Normal file
@ -0,0 +1,21 @@
|
||||
using Avalonia;
|
||||
using System;
|
||||
|
||||
namespace demo1;
|
||||
|
||||
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();
|
||||
}
|
18
demo1/app.manifest
Normal file
18
demo1/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="demo1.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
demo1/bin/Debug/net8.0/Avalonia.Base.dll
Executable file
BIN
demo1/bin/Debug/net8.0/Avalonia.Base.dll
Executable file
Binary file not shown.
BIN
demo1/bin/Debug/net8.0/Avalonia.Controls.ColorPicker.dll
Executable file
BIN
demo1/bin/Debug/net8.0/Avalonia.Controls.ColorPicker.dll
Executable file
Binary file not shown.
BIN
demo1/bin/Debug/net8.0/Avalonia.Controls.DataGrid.dll
Executable file
BIN
demo1/bin/Debug/net8.0/Avalonia.Controls.DataGrid.dll
Executable file
Binary file not shown.
BIN
demo1/bin/Debug/net8.0/Avalonia.Controls.dll
Executable file
BIN
demo1/bin/Debug/net8.0/Avalonia.Controls.dll
Executable file
Binary file not shown.
BIN
demo1/bin/Debug/net8.0/Avalonia.DesignerSupport.dll
Executable file
BIN
demo1/bin/Debug/net8.0/Avalonia.DesignerSupport.dll
Executable file
Binary file not shown.
BIN
demo1/bin/Debug/net8.0/Avalonia.Desktop.dll
Executable file
BIN
demo1/bin/Debug/net8.0/Avalonia.Desktop.dll
Executable file
Binary file not shown.
BIN
demo1/bin/Debug/net8.0/Avalonia.Diagnostics.dll
Executable file
BIN
demo1/bin/Debug/net8.0/Avalonia.Diagnostics.dll
Executable file
Binary file not shown.
BIN
demo1/bin/Debug/net8.0/Avalonia.Dialogs.dll
Executable file
BIN
demo1/bin/Debug/net8.0/Avalonia.Dialogs.dll
Executable file
Binary file not shown.
BIN
demo1/bin/Debug/net8.0/Avalonia.Fonts.Inter.dll
Executable file
BIN
demo1/bin/Debug/net8.0/Avalonia.Fonts.Inter.dll
Executable file
Binary file not shown.
BIN
demo1/bin/Debug/net8.0/Avalonia.FreeDesktop.dll
Executable file
BIN
demo1/bin/Debug/net8.0/Avalonia.FreeDesktop.dll
Executable file
Binary file not shown.
BIN
demo1/bin/Debug/net8.0/Avalonia.Markup.Xaml.dll
Executable file
BIN
demo1/bin/Debug/net8.0/Avalonia.Markup.Xaml.dll
Executable file
Binary file not shown.
BIN
demo1/bin/Debug/net8.0/Avalonia.Markup.dll
Executable file
BIN
demo1/bin/Debug/net8.0/Avalonia.Markup.dll
Executable file
Binary file not shown.
BIN
demo1/bin/Debug/net8.0/Avalonia.Metal.dll
Executable file
BIN
demo1/bin/Debug/net8.0/Avalonia.Metal.dll
Executable file
Binary file not shown.
BIN
demo1/bin/Debug/net8.0/Avalonia.MicroCom.dll
Executable file
BIN
demo1/bin/Debug/net8.0/Avalonia.MicroCom.dll
Executable file
Binary file not shown.
BIN
demo1/bin/Debug/net8.0/Avalonia.Native.dll
Executable file
BIN
demo1/bin/Debug/net8.0/Avalonia.Native.dll
Executable file
Binary file not shown.
BIN
demo1/bin/Debug/net8.0/Avalonia.OpenGL.dll
Executable file
BIN
demo1/bin/Debug/net8.0/Avalonia.OpenGL.dll
Executable file
Binary file not shown.
BIN
demo1/bin/Debug/net8.0/Avalonia.Remote.Protocol.dll
Executable file
BIN
demo1/bin/Debug/net8.0/Avalonia.Remote.Protocol.dll
Executable file
Binary file not shown.
BIN
demo1/bin/Debug/net8.0/Avalonia.Skia.dll
Executable file
BIN
demo1/bin/Debug/net8.0/Avalonia.Skia.dll
Executable file
Binary file not shown.
BIN
demo1/bin/Debug/net8.0/Avalonia.Themes.Fluent.dll
Executable file
BIN
demo1/bin/Debug/net8.0/Avalonia.Themes.Fluent.dll
Executable file
Binary file not shown.
BIN
demo1/bin/Debug/net8.0/Avalonia.Themes.Simple.dll
Executable file
BIN
demo1/bin/Debug/net8.0/Avalonia.Themes.Simple.dll
Executable file
Binary file not shown.
BIN
demo1/bin/Debug/net8.0/Avalonia.Vulkan.dll
Executable file
BIN
demo1/bin/Debug/net8.0/Avalonia.Vulkan.dll
Executable file
Binary file not shown.
BIN
demo1/bin/Debug/net8.0/Avalonia.Win32.dll
Executable file
BIN
demo1/bin/Debug/net8.0/Avalonia.Win32.dll
Executable file
Binary file not shown.
BIN
demo1/bin/Debug/net8.0/Avalonia.X11.dll
Executable file
BIN
demo1/bin/Debug/net8.0/Avalonia.X11.dll
Executable file
Binary file not shown.
BIN
demo1/bin/Debug/net8.0/Avalonia.dll
Executable file
BIN
demo1/bin/Debug/net8.0/Avalonia.dll
Executable file
Binary file not shown.
BIN
demo1/bin/Debug/net8.0/HarfBuzzSharp.dll
Executable file
BIN
demo1/bin/Debug/net8.0/HarfBuzzSharp.dll
Executable file
Binary file not shown.
BIN
demo1/bin/Debug/net8.0/MicroCom.Runtime.dll
Executable file
BIN
demo1/bin/Debug/net8.0/MicroCom.Runtime.dll
Executable file
Binary file not shown.
BIN
demo1/bin/Debug/net8.0/SkiaSharp.dll
Executable file
BIN
demo1/bin/Debug/net8.0/SkiaSharp.dll
Executable file
Binary file not shown.
BIN
demo1/bin/Debug/net8.0/System.IO.Pipelines.dll
Executable file
BIN
demo1/bin/Debug/net8.0/System.IO.Pipelines.dll
Executable file
Binary file not shown.
BIN
demo1/bin/Debug/net8.0/Tmds.DBus.Protocol.dll
Executable file
BIN
demo1/bin/Debug/net8.0/Tmds.DBus.Protocol.dll
Executable file
Binary file not shown.
BIN
demo1/bin/Debug/net8.0/demo1
Executable file
BIN
demo1/bin/Debug/net8.0/demo1
Executable file
Binary file not shown.
635
demo1/bin/Debug/net8.0/demo1.deps.json
Normal file
635
demo1/bin/Debug/net8.0/demo1.deps.json
Normal file
@ -0,0 +1,635 @@
|
||||
{
|
||||
"runtimeTarget": {
|
||||
"name": ".NETCoreApp,Version=v8.0",
|
||||
"signature": ""
|
||||
},
|
||||
"compilationOptions": {},
|
||||
"targets": {
|
||||
".NETCoreApp,Version=v8.0": {
|
||||
"demo1/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"
|
||||
},
|
||||
"runtime": {
|
||||
"demo1.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"
|
||||
}
|
||||
}
|
||||
},
|
||||
"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"
|
||||
}
|
||||
}
|
||||
},
|
||||
"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": {
|
||||
"demo1/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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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
demo1/bin/Debug/net8.0/demo1.dll
Normal file
BIN
demo1/bin/Debug/net8.0/demo1.dll
Normal file
Binary file not shown.
BIN
demo1/bin/Debug/net8.0/demo1.pdb
Normal file
BIN
demo1/bin/Debug/net8.0/demo1.pdb
Normal file
Binary file not shown.
13
demo1/bin/Debug/net8.0/demo1.runtimeconfig.json
Normal file
13
demo1/bin/Debug/net8.0/demo1.runtimeconfig.json
Normal 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
|
||||
}
|
||||
}
|
||||
}
|
BIN
demo1/bin/Debug/net8.0/runtimes/linux-arm/native/libHarfBuzzSharp.so
Executable file
BIN
demo1/bin/Debug/net8.0/runtimes/linux-arm/native/libHarfBuzzSharp.so
Executable file
Binary file not shown.
BIN
demo1/bin/Debug/net8.0/runtimes/linux-arm/native/libSkiaSharp.so
Executable file
BIN
demo1/bin/Debug/net8.0/runtimes/linux-arm/native/libSkiaSharp.so
Executable file
Binary file not shown.
BIN
demo1/bin/Debug/net8.0/runtimes/linux-arm64/native/libHarfBuzzSharp.so
Executable file
BIN
demo1/bin/Debug/net8.0/runtimes/linux-arm64/native/libHarfBuzzSharp.so
Executable file
Binary file not shown.
BIN
demo1/bin/Debug/net8.0/runtimes/linux-arm64/native/libSkiaSharp.so
Executable file
BIN
demo1/bin/Debug/net8.0/runtimes/linux-arm64/native/libSkiaSharp.so
Executable file
Binary file not shown.
BIN
demo1/bin/Debug/net8.0/runtimes/linux-musl-x64/native/libHarfBuzzSharp.so
Executable file
BIN
demo1/bin/Debug/net8.0/runtimes/linux-musl-x64/native/libHarfBuzzSharp.so
Executable file
Binary file not shown.
BIN
demo1/bin/Debug/net8.0/runtimes/linux-musl-x64/native/libSkiaSharp.so
Executable file
BIN
demo1/bin/Debug/net8.0/runtimes/linux-musl-x64/native/libSkiaSharp.so
Executable file
Binary file not shown.
BIN
demo1/bin/Debug/net8.0/runtimes/linux-x64/native/libHarfBuzzSharp.so
Executable file
BIN
demo1/bin/Debug/net8.0/runtimes/linux-x64/native/libHarfBuzzSharp.so
Executable file
Binary file not shown.
BIN
demo1/bin/Debug/net8.0/runtimes/linux-x64/native/libSkiaSharp.so
Executable file
BIN
demo1/bin/Debug/net8.0/runtimes/linux-x64/native/libSkiaSharp.so
Executable file
Binary file not shown.
BIN
demo1/bin/Debug/net8.0/runtimes/osx/native/libAvaloniaNative.dylib
Executable file
BIN
demo1/bin/Debug/net8.0/runtimes/osx/native/libAvaloniaNative.dylib
Executable file
Binary file not shown.
BIN
demo1/bin/Debug/net8.0/runtimes/osx/native/libHarfBuzzSharp.dylib
Executable file
BIN
demo1/bin/Debug/net8.0/runtimes/osx/native/libHarfBuzzSharp.dylib
Executable file
Binary file not shown.
BIN
demo1/bin/Debug/net8.0/runtimes/osx/native/libSkiaSharp.dylib
Executable file
BIN
demo1/bin/Debug/net8.0/runtimes/osx/native/libSkiaSharp.dylib
Executable file
Binary file not shown.
BIN
demo1/bin/Debug/net8.0/runtimes/win-arm64/native/av_libglesv2.dll
Executable file
BIN
demo1/bin/Debug/net8.0/runtimes/win-arm64/native/av_libglesv2.dll
Executable file
Binary file not shown.
BIN
demo1/bin/Debug/net8.0/runtimes/win-arm64/native/libHarfBuzzSharp.dll
Executable file
BIN
demo1/bin/Debug/net8.0/runtimes/win-arm64/native/libHarfBuzzSharp.dll
Executable file
Binary file not shown.
BIN
demo1/bin/Debug/net8.0/runtimes/win-arm64/native/libSkiaSharp.dll
Executable file
BIN
demo1/bin/Debug/net8.0/runtimes/win-arm64/native/libSkiaSharp.dll
Executable file
Binary file not shown.
BIN
demo1/bin/Debug/net8.0/runtimes/win-x64/native/av_libglesv2.dll
Executable file
BIN
demo1/bin/Debug/net8.0/runtimes/win-x64/native/av_libglesv2.dll
Executable file
Binary file not shown.
BIN
demo1/bin/Debug/net8.0/runtimes/win-x64/native/libHarfBuzzSharp.dll
Executable file
BIN
demo1/bin/Debug/net8.0/runtimes/win-x64/native/libHarfBuzzSharp.dll
Executable file
Binary file not shown.
BIN
demo1/bin/Debug/net8.0/runtimes/win-x64/native/libSkiaSharp.dll
Executable file
BIN
demo1/bin/Debug/net8.0/runtimes/win-x64/native/libSkiaSharp.dll
Executable file
Binary file not shown.
BIN
demo1/bin/Debug/net8.0/runtimes/win-x86/native/av_libglesv2.dll
Executable file
BIN
demo1/bin/Debug/net8.0/runtimes/win-x86/native/av_libglesv2.dll
Executable file
Binary file not shown.
BIN
demo1/bin/Debug/net8.0/runtimes/win-x86/native/libHarfBuzzSharp.dll
Executable file
BIN
demo1/bin/Debug/net8.0/runtimes/win-x86/native/libHarfBuzzSharp.dll
Executable file
Binary file not shown.
BIN
demo1/bin/Debug/net8.0/runtimes/win-x86/native/libSkiaSharp.dll
Executable file
BIN
demo1/bin/Debug/net8.0/runtimes/win-x86/native/libSkiaSharp.dll
Executable file
Binary file not shown.
22
demo1/demo1.csproj
Normal file
22
demo1/demo1.csproj
Normal file
@ -0,0 +1,22 @@
|
||||
<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>
|
||||
</ItemGroup>
|
||||
</Project>
|
@ -0,0 +1,4 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")]
|
1
demo1/obj/Debug/net8.0/Avalonia/Resources.Inputs.cache
Normal file
1
demo1/obj/Debug/net8.0/Avalonia/Resources.Inputs.cache
Normal file
@ -0,0 +1 @@
|
||||
1e85430b9113e928e60cba31626f4b23a293a7629bbcf53bdaf00dd940dbdfaa
|
BIN
demo1/obj/Debug/net8.0/Avalonia/demo1.dll
Normal file
BIN
demo1/obj/Debug/net8.0/Avalonia/demo1.dll
Normal file
Binary file not shown.
BIN
demo1/obj/Debug/net8.0/Avalonia/demo1.pdb
Normal file
BIN
demo1/obj/Debug/net8.0/Avalonia/demo1.pdb
Normal file
Binary file not shown.
192
demo1/obj/Debug/net8.0/Avalonia/references
Normal file
192
demo1/obj/Debug/net8.0/Avalonia/references
Normal file
@ -0,0 +1,192 @@
|
||||
/home/laptop/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.Base.dll
|
||||
/home/laptop/.nuget/packages/avalonia.controls.colorpicker/11.2.1/lib/net8.0/Avalonia.Controls.ColorPicker.dll
|
||||
/home/laptop/.nuget/packages/avalonia.controls.datagrid/11.2.1/lib/net8.0/Avalonia.Controls.DataGrid.dll
|
||||
/home/laptop/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.Controls.dll
|
||||
/home/laptop/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.DesignerSupport.dll
|
||||
/home/laptop/.nuget/packages/avalonia.desktop/11.2.1/lib/net8.0/Avalonia.Desktop.dll
|
||||
/home/laptop/.nuget/packages/avalonia.diagnostics/11.2.1/lib/net8.0/Avalonia.Diagnostics.dll
|
||||
/home/laptop/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.Dialogs.dll
|
||||
/home/laptop/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.dll
|
||||
/home/laptop/.nuget/packages/avalonia.fonts.inter/11.2.1/lib/net8.0/Avalonia.Fonts.Inter.dll
|
||||
/home/laptop/.nuget/packages/avalonia.freedesktop/11.2.1/lib/net8.0/Avalonia.FreeDesktop.dll
|
||||
/home/laptop/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.Markup.dll
|
||||
/home/laptop/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.Markup.Xaml.dll
|
||||
/home/laptop/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.Metal.dll
|
||||
/home/laptop/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.MicroCom.dll
|
||||
/home/laptop/.nuget/packages/avalonia.native/11.2.1/lib/net8.0/Avalonia.Native.dll
|
||||
/home/laptop/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.OpenGL.dll
|
||||
/home/laptop/.nuget/packages/avalonia.remote.protocol/11.2.1/lib/net8.0/Avalonia.Remote.Protocol.dll
|
||||
/home/laptop/.nuget/packages/avalonia.skia/11.2.1/lib/net8.0/Avalonia.Skia.dll
|
||||
/home/laptop/.nuget/packages/avalonia.themes.fluent/11.2.1/lib/net8.0/Avalonia.Themes.Fluent.dll
|
||||
/home/laptop/.nuget/packages/avalonia.themes.simple/11.2.1/lib/net8.0/Avalonia.Themes.Simple.dll
|
||||
/home/laptop/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.Vulkan.dll
|
||||
/home/laptop/.nuget/packages/avalonia.win32/11.2.1/lib/net8.0/Avalonia.Win32.dll
|
||||
/home/laptop/.nuget/packages/avalonia.x11/11.2.1/lib/net8.0/Avalonia.X11.dll
|
||||
/home/laptop/.nuget/packages/harfbuzzsharp/7.3.0.2/lib/net6.0/HarfBuzzSharp.dll
|
||||
/home/laptop/.nuget/packages/microcom.runtime/0.11.0/lib/net5.0/MicroCom.Runtime.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/Microsoft.CSharp.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/Microsoft.VisualBasic.Core.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/Microsoft.VisualBasic.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/Microsoft.Win32.Primitives.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/Microsoft.Win32.Registry.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/mscorlib.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/netstandard.dll
|
||||
/home/laptop/.nuget/packages/skiasharp/2.88.8/lib/net6.0/SkiaSharp.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.AppContext.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Buffers.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Collections.Concurrent.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Collections.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Collections.Immutable.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Collections.NonGeneric.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Collections.Specialized.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.ComponentModel.Annotations.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.ComponentModel.DataAnnotations.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.ComponentModel.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.ComponentModel.EventBasedAsync.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.ComponentModel.Primitives.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.ComponentModel.TypeConverter.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Configuration.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Console.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Core.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Data.Common.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Data.DataSetExtensions.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Data.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Diagnostics.Contracts.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Diagnostics.Debug.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Diagnostics.DiagnosticSource.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Diagnostics.FileVersionInfo.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Diagnostics.Process.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Diagnostics.StackTrace.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Diagnostics.TextWriterTraceListener.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Diagnostics.Tools.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Diagnostics.TraceSource.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Diagnostics.Tracing.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Drawing.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Drawing.Primitives.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Dynamic.Runtime.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Formats.Asn1.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Formats.Tar.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Globalization.Calendars.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Globalization.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Globalization.Extensions.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.IO.Compression.Brotli.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.IO.Compression.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.IO.Compression.FileSystem.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.IO.Compression.ZipFile.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.IO.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.IO.FileSystem.AccessControl.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.IO.FileSystem.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.IO.FileSystem.DriveInfo.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.IO.FileSystem.Primitives.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.IO.FileSystem.Watcher.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.IO.IsolatedStorage.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.IO.MemoryMappedFiles.dll
|
||||
/home/laptop/.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.10/ref/net8.0/System.IO.Pipes.AccessControl.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.IO.Pipes.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.IO.UnmanagedMemoryStream.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Linq.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Linq.Expressions.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Linq.Parallel.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Linq.Queryable.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Memory.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Net.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Net.Http.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Net.Http.Json.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Net.HttpListener.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Net.Mail.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Net.NameResolution.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Net.NetworkInformation.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Net.Ping.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Net.Primitives.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Net.Quic.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Net.Requests.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Net.Security.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Net.ServicePoint.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Net.Sockets.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Net.WebClient.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Net.WebHeaderCollection.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Net.WebProxy.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Net.WebSockets.Client.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Net.WebSockets.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Numerics.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Numerics.Vectors.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.ObjectModel.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Reflection.DispatchProxy.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Reflection.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Reflection.Emit.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Reflection.Emit.ILGeneration.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Reflection.Emit.Lightweight.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Reflection.Extensions.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Reflection.Metadata.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Reflection.Primitives.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Reflection.TypeExtensions.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Resources.Reader.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Resources.ResourceManager.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Resources.Writer.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Runtime.CompilerServices.Unsafe.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Runtime.CompilerServices.VisualC.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Runtime.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Runtime.Extensions.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Runtime.Handles.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Runtime.InteropServices.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Runtime.InteropServices.JavaScript.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Runtime.InteropServices.RuntimeInformation.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Runtime.Intrinsics.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Runtime.Loader.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Runtime.Numerics.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Runtime.Serialization.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Runtime.Serialization.Formatters.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Runtime.Serialization.Json.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Runtime.Serialization.Primitives.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Runtime.Serialization.Xml.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Security.AccessControl.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Security.Claims.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Security.Cryptography.Algorithms.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Security.Cryptography.Cng.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Security.Cryptography.Csp.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Security.Cryptography.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Security.Cryptography.Encoding.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Security.Cryptography.OpenSsl.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Security.Cryptography.Primitives.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Security.Cryptography.X509Certificates.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Security.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Security.Principal.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Security.Principal.Windows.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Security.SecureString.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.ServiceModel.Web.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.ServiceProcess.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Text.Encoding.CodePages.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Text.Encoding.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Text.Encoding.Extensions.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Text.Encodings.Web.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Text.Json.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Text.RegularExpressions.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Threading.Channels.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Threading.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Threading.Overlapped.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Threading.Tasks.Dataflow.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Threading.Tasks.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Threading.Tasks.Extensions.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Threading.Tasks.Parallel.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Threading.Thread.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Threading.ThreadPool.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Threading.Timer.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Transactions.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Transactions.Local.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.ValueTuple.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Web.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Web.HttpUtility.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Windows.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Xml.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Xml.Linq.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Xml.ReaderWriter.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Xml.Serialization.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Xml.XDocument.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Xml.XmlDocument.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Xml.XmlSerializer.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Xml.XPath.dll
|
||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.10/ref/net8.0/System.Xml.XPath.XDocument.dll
|
||||
/home/laptop/.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.10/ref/net8.0/WindowsBase.dll
|
BIN
demo1/obj/Debug/net8.0/Avalonia/resources
Normal file
BIN
demo1/obj/Debug/net8.0/Avalonia/resources
Normal file
Binary file not shown.
BIN
demo1/obj/Debug/net8.0/apphost
Executable file
BIN
demo1/obj/Debug/net8.0/apphost
Executable file
Binary file not shown.
22
demo1/obj/Debug/net8.0/demo1.AssemblyInfo.cs
Normal file
22
demo1/obj/Debug/net8.0/demo1.AssemblyInfo.cs
Normal 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("demo1")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("demo1")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("demo1")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
||||
// Generated by the MSBuild WriteCodeFragment class.
|
||||
|
1
demo1/obj/Debug/net8.0/demo1.AssemblyInfoInputs.cache
Normal file
1
demo1/obj/Debug/net8.0/demo1.AssemblyInfoInputs.cache
Normal file
@ -0,0 +1 @@
|
||||
3b6ca69fab131253f16138e203c6f346b6cc16bd4f6264b40d810250107fec1b
|
@ -0,0 +1,32 @@
|
||||
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 = demo1
|
||||
build_property.ProjectDir = /home/laptop/RiderProjects/demo1/demo1/
|
||||
build_property.EnableComHosting =
|
||||
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||
|
||||
[/home/laptop/RiderProjects/demo1/demo1/AddAndEditProduct.axaml]
|
||||
build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml
|
||||
|
||||
[/home/laptop/RiderProjects/demo1/demo1/App.axaml]
|
||||
build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml
|
||||
|
||||
[/home/laptop/RiderProjects/demo1/demo1/MainWindow.axaml]
|
||||
build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml
|
||||
|
||||
[/home/laptop/RiderProjects/demo1/demo1/OrderHistory.axaml]
|
||||
build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml
|
BIN
demo1/obj/Debug/net8.0/demo1.assets.cache
Normal file
BIN
demo1/obj/Debug/net8.0/demo1.assets.cache
Normal file
Binary file not shown.
BIN
demo1/obj/Debug/net8.0/demo1.csproj.AssemblyReference.cache
Normal file
BIN
demo1/obj/Debug/net8.0/demo1.csproj.AssemblyReference.cache
Normal file
Binary file not shown.
@ -0,0 +1 @@
|
||||
8c68f845e4cd2a9b323c0fb2110790a5ee2a9aac63058cc1c8c9139b41c5d2fb
|
67
demo1/obj/Debug/net8.0/demo1.csproj.FileListAbsolute.txt
Normal file
67
demo1/obj/Debug/net8.0/demo1.csproj.FileListAbsolute.txt
Normal file
@ -0,0 +1,67 @@
|
||||
/home/laptop/RiderProjects/demo1/demo1/bin/Debug/net8.0/demo1
|
||||
/home/laptop/RiderProjects/demo1/demo1/bin/Debug/net8.0/demo1.deps.json
|
||||
/home/laptop/RiderProjects/demo1/demo1/bin/Debug/net8.0/demo1.runtimeconfig.json
|
||||
/home/laptop/RiderProjects/demo1/demo1/bin/Debug/net8.0/demo1.dll
|
||||
/home/laptop/RiderProjects/demo1/demo1/bin/Debug/net8.0/demo1.pdb
|
||||
/home/laptop/RiderProjects/demo1/demo1/bin/Debug/net8.0/Avalonia.Base.dll
|
||||
/home/laptop/RiderProjects/demo1/demo1/bin/Debug/net8.0/Avalonia.Controls.dll
|
||||
/home/laptop/RiderProjects/demo1/demo1/bin/Debug/net8.0/Avalonia.DesignerSupport.dll
|
||||
/home/laptop/RiderProjects/demo1/demo1/bin/Debug/net8.0/Avalonia.Dialogs.dll
|
||||
/home/laptop/RiderProjects/demo1/demo1/bin/Debug/net8.0/Avalonia.Markup.Xaml.dll
|
||||
/home/laptop/RiderProjects/demo1/demo1/bin/Debug/net8.0/Avalonia.Markup.dll
|
||||
/home/laptop/RiderProjects/demo1/demo1/bin/Debug/net8.0/Avalonia.Metal.dll
|
||||
/home/laptop/RiderProjects/demo1/demo1/bin/Debug/net8.0/Avalonia.MicroCom.dll
|
||||
/home/laptop/RiderProjects/demo1/demo1/bin/Debug/net8.0/Avalonia.OpenGL.dll
|
||||
/home/laptop/RiderProjects/demo1/demo1/bin/Debug/net8.0/Avalonia.Vulkan.dll
|
||||
/home/laptop/RiderProjects/demo1/demo1/bin/Debug/net8.0/Avalonia.dll
|
||||
/home/laptop/RiderProjects/demo1/demo1/bin/Debug/net8.0/Avalonia.Controls.ColorPicker.dll
|
||||
/home/laptop/RiderProjects/demo1/demo1/bin/Debug/net8.0/Avalonia.Controls.DataGrid.dll
|
||||
/home/laptop/RiderProjects/demo1/demo1/bin/Debug/net8.0/Avalonia.Desktop.dll
|
||||
/home/laptop/RiderProjects/demo1/demo1/bin/Debug/net8.0/Avalonia.Diagnostics.dll
|
||||
/home/laptop/RiderProjects/demo1/demo1/bin/Debug/net8.0/Avalonia.Fonts.Inter.dll
|
||||
/home/laptop/RiderProjects/demo1/demo1/bin/Debug/net8.0/Avalonia.FreeDesktop.dll
|
||||
/home/laptop/RiderProjects/demo1/demo1/bin/Debug/net8.0/Avalonia.Native.dll
|
||||
/home/laptop/RiderProjects/demo1/demo1/bin/Debug/net8.0/Avalonia.Remote.Protocol.dll
|
||||
/home/laptop/RiderProjects/demo1/demo1/bin/Debug/net8.0/Avalonia.Skia.dll
|
||||
/home/laptop/RiderProjects/demo1/demo1/bin/Debug/net8.0/Avalonia.Themes.Fluent.dll
|
||||
/home/laptop/RiderProjects/demo1/demo1/bin/Debug/net8.0/Avalonia.Themes.Simple.dll
|
||||
/home/laptop/RiderProjects/demo1/demo1/bin/Debug/net8.0/Avalonia.Win32.dll
|
||||
/home/laptop/RiderProjects/demo1/demo1/bin/Debug/net8.0/Avalonia.X11.dll
|
||||
/home/laptop/RiderProjects/demo1/demo1/bin/Debug/net8.0/HarfBuzzSharp.dll
|
||||
/home/laptop/RiderProjects/demo1/demo1/bin/Debug/net8.0/MicroCom.Runtime.dll
|
||||
/home/laptop/RiderProjects/demo1/demo1/bin/Debug/net8.0/SkiaSharp.dll
|
||||
/home/laptop/RiderProjects/demo1/demo1/bin/Debug/net8.0/System.IO.Pipelines.dll
|
||||
/home/laptop/RiderProjects/demo1/demo1/bin/Debug/net8.0/Tmds.DBus.Protocol.dll
|
||||
/home/laptop/RiderProjects/demo1/demo1/bin/Debug/net8.0/runtimes/win-arm64/native/av_libglesv2.dll
|
||||
/home/laptop/RiderProjects/demo1/demo1/bin/Debug/net8.0/runtimes/win-x64/native/av_libglesv2.dll
|
||||
/home/laptop/RiderProjects/demo1/demo1/bin/Debug/net8.0/runtimes/win-x86/native/av_libglesv2.dll
|
||||
/home/laptop/RiderProjects/demo1/demo1/bin/Debug/net8.0/runtimes/osx/native/libAvaloniaNative.dylib
|
||||
/home/laptop/RiderProjects/demo1/demo1/bin/Debug/net8.0/runtimes/linux-arm/native/libHarfBuzzSharp.so
|
||||
/home/laptop/RiderProjects/demo1/demo1/bin/Debug/net8.0/runtimes/linux-arm64/native/libHarfBuzzSharp.so
|
||||
/home/laptop/RiderProjects/demo1/demo1/bin/Debug/net8.0/runtimes/linux-musl-x64/native/libHarfBuzzSharp.so
|
||||
/home/laptop/RiderProjects/demo1/demo1/bin/Debug/net8.0/runtimes/linux-x64/native/libHarfBuzzSharp.so
|
||||
/home/laptop/RiderProjects/demo1/demo1/bin/Debug/net8.0/runtimes/osx/native/libHarfBuzzSharp.dylib
|
||||
/home/laptop/RiderProjects/demo1/demo1/bin/Debug/net8.0/runtimes/win-arm64/native/libHarfBuzzSharp.dll
|
||||
/home/laptop/RiderProjects/demo1/demo1/bin/Debug/net8.0/runtimes/win-x64/native/libHarfBuzzSharp.dll
|
||||
/home/laptop/RiderProjects/demo1/demo1/bin/Debug/net8.0/runtimes/win-x86/native/libHarfBuzzSharp.dll
|
||||
/home/laptop/RiderProjects/demo1/demo1/bin/Debug/net8.0/runtimes/linux-arm/native/libSkiaSharp.so
|
||||
/home/laptop/RiderProjects/demo1/demo1/bin/Debug/net8.0/runtimes/linux-arm64/native/libSkiaSharp.so
|
||||
/home/laptop/RiderProjects/demo1/demo1/bin/Debug/net8.0/runtimes/linux-musl-x64/native/libSkiaSharp.so
|
||||
/home/laptop/RiderProjects/demo1/demo1/bin/Debug/net8.0/runtimes/linux-x64/native/libSkiaSharp.so
|
||||
/home/laptop/RiderProjects/demo1/demo1/bin/Debug/net8.0/runtimes/osx/native/libSkiaSharp.dylib
|
||||
/home/laptop/RiderProjects/demo1/demo1/bin/Debug/net8.0/runtimes/win-arm64/native/libSkiaSharp.dll
|
||||
/home/laptop/RiderProjects/demo1/demo1/bin/Debug/net8.0/runtimes/win-x64/native/libSkiaSharp.dll
|
||||
/home/laptop/RiderProjects/demo1/demo1/bin/Debug/net8.0/runtimes/win-x86/native/libSkiaSharp.dll
|
||||
/home/laptop/RiderProjects/demo1/demo1/obj/Debug/net8.0/demo1.csproj.AssemblyReference.cache
|
||||
/home/laptop/RiderProjects/demo1/demo1/obj/Debug/net8.0/Avalonia/Resources.Inputs.cache
|
||||
/home/laptop/RiderProjects/demo1/demo1/obj/Debug/net8.0/Avalonia/resources
|
||||
/home/laptop/RiderProjects/demo1/demo1/obj/Debug/net8.0/demo1.GeneratedMSBuildEditorConfig.editorconfig
|
||||
/home/laptop/RiderProjects/demo1/demo1/obj/Debug/net8.0/demo1.AssemblyInfoInputs.cache
|
||||
/home/laptop/RiderProjects/demo1/demo1/obj/Debug/net8.0/demo1.AssemblyInfo.cs
|
||||
/home/laptop/RiderProjects/demo1/demo1/obj/Debug/net8.0/demo1.csproj.CoreCompileInputs.cache
|
||||
/home/laptop/RiderProjects/demo1/demo1/obj/Debug/net8.0/Avalonia/demo1.dll
|
||||
/home/laptop/RiderProjects/demo1/demo1/obj/Debug/net8.0/Avalonia/demo1.pdb
|
||||
/home/laptop/RiderProjects/demo1/demo1/obj/Debug/net8.0/refint/Avalonia/demo1.dll
|
||||
/home/laptop/RiderProjects/demo1/demo1/obj/Debug/net8.0/demo1.csproj.Up2Date
|
||||
/home/laptop/RiderProjects/demo1/demo1/obj/Debug/net8.0/demo1.genruntimeconfig.cache
|
||||
/home/laptop/RiderProjects/demo1/demo1/obj/Debug/net8.0/ref/demo1.dll
|
0
demo1/obj/Debug/net8.0/demo1.csproj.Up2Date
Normal file
0
demo1/obj/Debug/net8.0/demo1.csproj.Up2Date
Normal file
BIN
demo1/obj/Debug/net8.0/demo1.dll
Normal file
BIN
demo1/obj/Debug/net8.0/demo1.dll
Normal file
Binary file not shown.
1
demo1/obj/Debug/net8.0/demo1.genruntimeconfig.cache
Normal file
1
demo1/obj/Debug/net8.0/demo1.genruntimeconfig.cache
Normal file
@ -0,0 +1 @@
|
||||
e18a2265021b41a7261766e0b0cbd0124b55b9b091339c6411c8171672d1a82a
|
BIN
demo1/obj/Debug/net8.0/demo1.pdb
Normal file
BIN
demo1/obj/Debug/net8.0/demo1.pdb
Normal file
Binary file not shown.
BIN
demo1/obj/Debug/net8.0/ref/demo1.dll
Normal file
BIN
demo1/obj/Debug/net8.0/ref/demo1.dll
Normal file
Binary file not shown.
BIN
demo1/obj/Debug/net8.0/refint/Avalonia/demo1.dll
Normal file
BIN
demo1/obj/Debug/net8.0/refint/Avalonia/demo1.dll
Normal file
Binary file not shown.
BIN
demo1/obj/Debug/net8.0/refint/demo1.dll
Normal file
BIN
demo1/obj/Debug/net8.0/refint/demo1.dll
Normal file
Binary file not shown.
89
demo1/obj/demo1.csproj.nuget.dgspec.json
Normal file
89
demo1/obj/demo1.csproj.nuget.dgspec.json
Normal file
@ -0,0 +1,89 @@
|
||||
{
|
||||
"format": 1,
|
||||
"restore": {
|
||||
"/home/laptop/RiderProjects/demo1/demo1/demo1.csproj": {}
|
||||
},
|
||||
"projects": {
|
||||
"/home/laptop/RiderProjects/demo1/demo1/demo1.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "/home/laptop/RiderProjects/demo1/demo1/demo1.csproj",
|
||||
"projectName": "demo1",
|
||||
"projectPath": "/home/laptop/RiderProjects/demo1/demo1/demo1.csproj",
|
||||
"packagesPath": "/home/laptop/.nuget/packages/",
|
||||
"outputPath": "/home/laptop/RiderProjects/demo1/demo1/obj/",
|
||||
"projectStyle": "PackageReference",
|
||||
"UsingMicrosoftNETSdk": false,
|
||||
"configFilePaths": [
|
||||
"/home/laptop/.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.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.403/PortableRuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
24
demo1/obj/demo1.csproj.nuget.g.props
Normal file
24
demo1/obj/demo1.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/laptop/.nuget/packages/</NuGetPackageRoot>
|
||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/home/laptop/.nuget/packages/</NuGetPackageFolders>
|
||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.12.0</NuGetToolVersion>
|
||||
</PropertyGroup>
|
||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<SourceRoot Include="/home/laptop/.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/laptop/.nuget/packages/avalonia.buildservices/0.0.29</PkgAvalonia_BuildServices>
|
||||
<PkgAvalonia Condition=" '$(PkgAvalonia)' == '' ">/home/laptop/.nuget/packages/avalonia/11.2.1</PkgAvalonia>
|
||||
</PropertyGroup>
|
||||
</Project>
|
9
demo1/obj/demo1.csproj.nuget.g.targets
Normal file
9
demo1/obj/demo1.csproj.nuget.g.targets
Normal file
@ -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>
|
1512
demo1/obj/project.assets.json
Normal file
1512
demo1/obj/project.assets.json
Normal file
File diff suppressed because it is too large
Load Diff
38
demo1/obj/project.nuget.cache
Normal file
38
demo1/obj/project.nuget.cache
Normal file
@ -0,0 +1,38 @@
|
||||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "YCtVZ4ALUVc=",
|
||||
"success": true,
|
||||
"projectFilePath": "/home/laptop/RiderProjects/demo1/demo1/demo1.csproj",
|
||||
"expectedPackageFiles": [
|
||||
"/home/laptop/.nuget/packages/avalonia/11.2.1/avalonia.11.2.1.nupkg.sha512",
|
||||
"/home/laptop/.nuget/packages/avalonia.angle.windows.natives/2.1.22045.20230930/avalonia.angle.windows.natives.2.1.22045.20230930.nupkg.sha512",
|
||||
"/home/laptop/.nuget/packages/avalonia.buildservices/0.0.29/avalonia.buildservices.0.0.29.nupkg.sha512",
|
||||
"/home/laptop/.nuget/packages/avalonia.controls.colorpicker/11.2.1/avalonia.controls.colorpicker.11.2.1.nupkg.sha512",
|
||||
"/home/laptop/.nuget/packages/avalonia.controls.datagrid/11.2.1/avalonia.controls.datagrid.11.2.1.nupkg.sha512",
|
||||
"/home/laptop/.nuget/packages/avalonia.desktop/11.2.1/avalonia.desktop.11.2.1.nupkg.sha512",
|
||||
"/home/laptop/.nuget/packages/avalonia.diagnostics/11.2.1/avalonia.diagnostics.11.2.1.nupkg.sha512",
|
||||
"/home/laptop/.nuget/packages/avalonia.fonts.inter/11.2.1/avalonia.fonts.inter.11.2.1.nupkg.sha512",
|
||||
"/home/laptop/.nuget/packages/avalonia.freedesktop/11.2.1/avalonia.freedesktop.11.2.1.nupkg.sha512",
|
||||
"/home/laptop/.nuget/packages/avalonia.native/11.2.1/avalonia.native.11.2.1.nupkg.sha512",
|
||||
"/home/laptop/.nuget/packages/avalonia.remote.protocol/11.2.1/avalonia.remote.protocol.11.2.1.nupkg.sha512",
|
||||
"/home/laptop/.nuget/packages/avalonia.skia/11.2.1/avalonia.skia.11.2.1.nupkg.sha512",
|
||||
"/home/laptop/.nuget/packages/avalonia.themes.fluent/11.2.1/avalonia.themes.fluent.11.2.1.nupkg.sha512",
|
||||
"/home/laptop/.nuget/packages/avalonia.themes.simple/11.2.1/avalonia.themes.simple.11.2.1.nupkg.sha512",
|
||||
"/home/laptop/.nuget/packages/avalonia.win32/11.2.1/avalonia.win32.11.2.1.nupkg.sha512",
|
||||
"/home/laptop/.nuget/packages/avalonia.x11/11.2.1/avalonia.x11.11.2.1.nupkg.sha512",
|
||||
"/home/laptop/.nuget/packages/harfbuzzsharp/7.3.0.2/harfbuzzsharp.7.3.0.2.nupkg.sha512",
|
||||
"/home/laptop/.nuget/packages/harfbuzzsharp.nativeassets.linux/7.3.0.2/harfbuzzsharp.nativeassets.linux.7.3.0.2.nupkg.sha512",
|
||||
"/home/laptop/.nuget/packages/harfbuzzsharp.nativeassets.macos/7.3.0.2/harfbuzzsharp.nativeassets.macos.7.3.0.2.nupkg.sha512",
|
||||
"/home/laptop/.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/laptop/.nuget/packages/harfbuzzsharp.nativeassets.win32/7.3.0.2/harfbuzzsharp.nativeassets.win32.7.3.0.2.nupkg.sha512",
|
||||
"/home/laptop/.nuget/packages/microcom.runtime/0.11.0/microcom.runtime.0.11.0.nupkg.sha512",
|
||||
"/home/laptop/.nuget/packages/skiasharp/2.88.8/skiasharp.2.88.8.nupkg.sha512",
|
||||
"/home/laptop/.nuget/packages/skiasharp.nativeassets.linux/2.88.8/skiasharp.nativeassets.linux.2.88.8.nupkg.sha512",
|
||||
"/home/laptop/.nuget/packages/skiasharp.nativeassets.macos/2.88.8/skiasharp.nativeassets.macos.2.88.8.nupkg.sha512",
|
||||
"/home/laptop/.nuget/packages/skiasharp.nativeassets.webassembly/2.88.8/skiasharp.nativeassets.webassembly.2.88.8.nupkg.sha512",
|
||||
"/home/laptop/.nuget/packages/skiasharp.nativeassets.win32/2.88.8/skiasharp.nativeassets.win32.2.88.8.nupkg.sha512",
|
||||
"/home/laptop/.nuget/packages/system.io.pipelines/8.0.0/system.io.pipelines.8.0.0.nupkg.sha512",
|
||||
"/home/laptop/.nuget/packages/tmds.dbus.protocol/0.20.0/tmds.dbus.protocol.0.20.0.nupkg.sha512"
|
||||
],
|
||||
"logs": []
|
||||
}
|
1
demo1/obj/project.packagespec.json
Normal file
1
demo1/obj/project.packagespec.json
Normal file
@ -0,0 +1 @@
|
||||
"restore":{"projectUniqueName":"/home/laptop/RiderProjects/demo1/demo1/demo1.csproj","projectName":"demo1","projectPath":"/home/laptop/RiderProjects/demo1/demo1/demo1.csproj","outputPath":"/home/laptop/RiderProjects/demo1/demo1/obj/","projectStyle":"PackageReference","UsingMicrosoftNETSdk":false,"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.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.403/PortableRuntimeIdentifierGraph.json"}}
|
1
demo1/obj/rider.project.model.nuget.info
Normal file
1
demo1/obj/rider.project.model.nuget.info
Normal file
@ -0,0 +1 @@
|
||||
17350236360519824
|
1
demo1/obj/rider.project.restore.info
Normal file
1
demo1/obj/rider.project.restore.info
Normal file
@ -0,0 +1 @@
|
||||
17350236360519824
|
Loading…
Reference in New Issue
Block a user