first
This commit is contained in:
commit
20ee451026
13
.idea/.idea.BuggyCalculator/.idea/.gitignore
vendored
Normal file
13
.idea/.idea.BuggyCalculator/.idea/.gitignore
vendored
Normal file
@ -0,0 +1,13 @@
|
||||
# Default ignored files
|
||||
/shelf/
|
||||
/workspace.xml
|
||||
# Rider ignored files
|
||||
/.idea.BuggyCalculator.iml
|
||||
/projectSettingsUpdater.xml
|
||||
/modules.xml
|
||||
/contentModel.xml
|
||||
# Editor-based HTTP Client requests
|
||||
/httpRequests/
|
||||
# Datasource local storage ignored files
|
||||
/dataSources/
|
||||
/dataSources.local.xml
|
1
.idea/.idea.BuggyCalculator/.idea/.name
Normal file
1
.idea/.idea.BuggyCalculator/.idea/.name
Normal file
@ -0,0 +1 @@
|
||||
BuggyCalculator
|
11
.idea/.idea.BuggyCalculator/.idea/avalonia.xml
Normal file
11
.idea/.idea.BuggyCalculator/.idea/avalonia.xml
Normal file
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="AvaloniaProject">
|
||||
<option name="projectPerEditor">
|
||||
<map>
|
||||
<entry key="BuggyCalculator/App.axaml" value="BuggyCalculator/BuggyCalculator.csproj" />
|
||||
<entry key="BuggyCalculator/MainWindow.axaml" value="BuggyCalculator/BuggyCalculator.csproj" />
|
||||
</map>
|
||||
</option>
|
||||
</component>
|
||||
</project>
|
8
.idea/.idea.BuggyCalculator/.idea/indexLayout.xml
Normal file
8
.idea/.idea.BuggyCalculator/.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.BuggyCalculator/.idea/vcs.xml
Normal file
6
.idea/.idea.BuggyCalculator/.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
BuggyCalculator.sln
Normal file
16
BuggyCalculator.sln
Normal file
@ -0,0 +1,16 @@
|
||||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BuggyCalculator", "BuggyCalculator\BuggyCalculator.csproj", "{35EBFF1E-0DD0-4484-8A24-2D1B94744F34}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
Release|Any CPU = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{35EBFF1E-0DD0-4484-8A24-2D1B94744F34}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{35EBFF1E-0DD0-4484-8A24-2D1B94744F34}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{35EBFF1E-0DD0-4484-8A24-2D1B94744F34}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{35EBFF1E-0DD0-4484-8A24-2D1B94744F34}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
EndGlobal
|
10
BuggyCalculator/App.axaml
Normal file
10
BuggyCalculator/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="BuggyCalculator.App"
|
||||
RequestedThemeVariant="Default">
|
||||
<!-- "Default" ThemeVariant follows system theme variant. "Dark" or "Light" are other available options. -->
|
||||
|
||||
<Application.Styles>
|
||||
<FluentTheme />
|
||||
</Application.Styles>
|
||||
</Application>
|
23
BuggyCalculator/App.axaml.cs
Normal file
23
BuggyCalculator/App.axaml.cs
Normal file
@ -0,0 +1,23 @@
|
||||
using Avalonia;
|
||||
using Avalonia.Controls.ApplicationLifetimes;
|
||||
using Avalonia.Markup.Xaml;
|
||||
|
||||
namespace BuggyCalculator;
|
||||
|
||||
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();
|
||||
}
|
||||
}
|
19
BuggyCalculator/BuggyCalculator.csproj
Normal file
19
BuggyCalculator/BuggyCalculator.csproj
Normal file
@ -0,0 +1,19 @@
|
||||
<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.1.0"/>
|
||||
<PackageReference Include="Avalonia.Desktop" Version="11.1.0"/>
|
||||
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.1.0"/>
|
||||
<PackageReference Include="Avalonia.Fonts.Inter" Version="11.1.0"/>
|
||||
<!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
|
||||
<PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Avalonia.Diagnostics" Version="11.1.0"/>
|
||||
</ItemGroup>
|
||||
</Project>
|
43
BuggyCalculator/MainWindow.axaml
Normal file
43
BuggyCalculator/MainWindow.axaml
Normal file
@ -0,0 +1,43 @@
|
||||
<Window
|
||||
Height="400"
|
||||
Title="Buggy Calculator"
|
||||
Width="500"
|
||||
x:Class="BuggyCalculator.MainWindow"
|
||||
xmlns="https://github.com/avaloniaui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
||||
<StackPanel Margin="20">
|
||||
<TextBlock
|
||||
FontSize="18"
|
||||
HorizontalAlignment="Center"
|
||||
Margin="0,0,0,20"
|
||||
Text="Расширенный калькулятор" />
|
||||
<TextBlock Text="Введите первое число" />
|
||||
<TextBox Margin="0,0,0,10" x:Name="Input1" />
|
||||
<TextBlock Text="Введите второе число (если нужно)" />
|
||||
<TextBox Margin="0,0,0,10" x:Name="Input2" />
|
||||
<ComboBox Margin="0,0,0,10" x:Name="Operation">
|
||||
<ComboBoxItem>Сложение</ComboBoxItem>
|
||||
<ComboBoxItem>Вычитание</ComboBoxItem>
|
||||
<ComboBoxItem>Умножение</ComboBoxItem>
|
||||
<ComboBoxItem>Деление</ComboBoxItem>
|
||||
<ComboBoxItem>Возведение в степень</ComboBoxItem>
|
||||
<ComboBoxItem>Квадратный корень</ComboBoxItem>
|
||||
<ComboBoxItem>Логарифм</ComboBoxItem>
|
||||
<ComboBoxItem>Синус</ComboBoxItem>
|
||||
<ComboBoxItem>Косинус</ComboBoxItem>
|
||||
<ComboBoxItem>Тангенс</ComboBoxItem>
|
||||
</ComboBox>
|
||||
<Button
|
||||
Content="Вычислить"
|
||||
HorizontalAlignment="Center"
|
||||
Margin="0,10,0,10"
|
||||
Width="120"
|
||||
x:Name="CalculateButton" />
|
||||
<TextBlock
|
||||
FontSize="14"
|
||||
Foreground="Gray"
|
||||
Margin="0,10,0,0"
|
||||
Text="Результат будет здесь"
|
||||
x:Name="Result" />
|
||||
</StackPanel>
|
||||
</Window>
|
91
BuggyCalculator/MainWindow.axaml.cs
Normal file
91
BuggyCalculator/MainWindow.axaml.cs
Normal file
@ -0,0 +1,91 @@
|
||||
using System;
|
||||
using Avalonia;
|
||||
using Avalonia.Controls;
|
||||
using Avalonia.Markup.Xaml;
|
||||
|
||||
namespace BuggyCalculator
|
||||
{
|
||||
public partial class MainWindow : Window
|
||||
{
|
||||
private TextBox _input1;
|
||||
private TextBox _input2;
|
||||
private ComboBox _operation;
|
||||
private TextBlock _result;
|
||||
private Button _calculateButton;
|
||||
|
||||
public MainWindow()
|
||||
{
|
||||
InitializeComponent();
|
||||
|
||||
_input1 = this.FindControl<TextBox>("Input1") ?? throw new InvalidOperationException("Input1 not found");
|
||||
_input2 = this.FindControl<TextBox>("Input2") ?? throw new InvalidOperationException("Input2 not found");
|
||||
_operation = this.FindControl<ComboBox>("Operation") ?? throw new InvalidOperationException("Operation not found");
|
||||
_result = this.FindControl<TextBlock>("Result") ?? throw new InvalidOperationException("Result not found");
|
||||
_calculateButton = this.FindControl<Button>("CalculateButton") ?? throw new InvalidOperationException("CalculateButton not found");
|
||||
|
||||
_calculateButton.Click += Calculate;
|
||||
}
|
||||
|
||||
private void InitializeComponent()
|
||||
{
|
||||
AvaloniaXamlLoader.Load(this);
|
||||
}
|
||||
|
||||
private void Calculate(object? sender, EventArgs e)
|
||||
{
|
||||
try
|
||||
{
|
||||
if (string.IsNullOrWhiteSpace(_input1.Text))
|
||||
{
|
||||
_result.Text = "Ошибка: Первое поле пустое.";
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
if (!double.TryParse(_input1.Text, out double num1))
|
||||
{
|
||||
throw new FormatException("Ошибка: Некорректный ввод");
|
||||
}
|
||||
double num2 = string.IsNullOrWhiteSpace(_input2.Text) ? 0 : double.Parse(_input2.Text);
|
||||
|
||||
if (_operation.SelectedItem is ComboBoxItem selectedItem)
|
||||
{
|
||||
string operation = selectedItem.Content.ToString();
|
||||
|
||||
double result = operation switch
|
||||
{
|
||||
"Сложение" => num1 + num2,
|
||||
"Вычитание" => num1 - num2,
|
||||
"Умножение" => num1 * num2,
|
||||
"Деление" => num2 != 0 ? num1 / num2 : throw new DivideByZeroException(),
|
||||
"Возведение в степень" => num2 < 0 ? throw new InvalidOperationException("Возведение в отрицательную степень запрещено") : Math.Pow(num1, num2),
|
||||
"Квадратный корень" => num1 >= 0 ? Math.Sqrt(num1) : throw new InvalidOperationException("Квадратный корень из отрицательного числа невозможен"),
|
||||
"Логарифм" => num1 > 0 && num2 > 0 && num2 != 1 ? Math.Log(num1, num2) : throw new InvalidOperationException("Основание логарифма должно быть > 0 и != 1"),
|
||||
"Синус" => Math.Sin(num1),
|
||||
"Косинус" => Math.Cos(num1),
|
||||
"Тангенс" => Math.Tan(num1),
|
||||
_ => throw new InvalidOperationException("Неизвестная операция")
|
||||
};
|
||||
|
||||
_result.Text = $"Результат: {result}";
|
||||
}
|
||||
else
|
||||
{
|
||||
_result.Text = "Ошибка: Не выбрана операция.";
|
||||
}
|
||||
}
|
||||
catch (FormatException)
|
||||
{
|
||||
_result.Text = "Ошибка: Неверный формат числа.";
|
||||
}
|
||||
catch (DivideByZeroException)
|
||||
{
|
||||
_result.Text = "Ошибка: Деление на ноль.";
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
Environment.FailFast(ex.Message);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
21
BuggyCalculator/Program.cs
Normal file
21
BuggyCalculator/Program.cs
Normal file
@ -0,0 +1,21 @@
|
||||
using Avalonia;
|
||||
using System;
|
||||
|
||||
namespace BuggyCalculator;
|
||||
|
||||
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
BuggyCalculator/app.manifest
Normal file
18
BuggyCalculator/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="BuggyCalculator.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
BuggyCalculator/bin/Debug/net8.0/Avalonia.Base.dll
Executable file
BIN
BuggyCalculator/bin/Debug/net8.0/Avalonia.Base.dll
Executable file
Binary file not shown.
BIN
BuggyCalculator/bin/Debug/net8.0/Avalonia.Controls.ColorPicker.dll
Executable file
BIN
BuggyCalculator/bin/Debug/net8.0/Avalonia.Controls.ColorPicker.dll
Executable file
Binary file not shown.
BIN
BuggyCalculator/bin/Debug/net8.0/Avalonia.Controls.DataGrid.dll
Executable file
BIN
BuggyCalculator/bin/Debug/net8.0/Avalonia.Controls.DataGrid.dll
Executable file
Binary file not shown.
BIN
BuggyCalculator/bin/Debug/net8.0/Avalonia.Controls.dll
Executable file
BIN
BuggyCalculator/bin/Debug/net8.0/Avalonia.Controls.dll
Executable file
Binary file not shown.
BIN
BuggyCalculator/bin/Debug/net8.0/Avalonia.DesignerSupport.dll
Executable file
BIN
BuggyCalculator/bin/Debug/net8.0/Avalonia.DesignerSupport.dll
Executable file
Binary file not shown.
BIN
BuggyCalculator/bin/Debug/net8.0/Avalonia.Desktop.dll
Executable file
BIN
BuggyCalculator/bin/Debug/net8.0/Avalonia.Desktop.dll
Executable file
Binary file not shown.
BIN
BuggyCalculator/bin/Debug/net8.0/Avalonia.Diagnostics.dll
Executable file
BIN
BuggyCalculator/bin/Debug/net8.0/Avalonia.Diagnostics.dll
Executable file
Binary file not shown.
BIN
BuggyCalculator/bin/Debug/net8.0/Avalonia.Dialogs.dll
Executable file
BIN
BuggyCalculator/bin/Debug/net8.0/Avalonia.Dialogs.dll
Executable file
Binary file not shown.
BIN
BuggyCalculator/bin/Debug/net8.0/Avalonia.Fonts.Inter.dll
Executable file
BIN
BuggyCalculator/bin/Debug/net8.0/Avalonia.Fonts.Inter.dll
Executable file
Binary file not shown.
BIN
BuggyCalculator/bin/Debug/net8.0/Avalonia.FreeDesktop.dll
Executable file
BIN
BuggyCalculator/bin/Debug/net8.0/Avalonia.FreeDesktop.dll
Executable file
Binary file not shown.
BIN
BuggyCalculator/bin/Debug/net8.0/Avalonia.Markup.Xaml.dll
Executable file
BIN
BuggyCalculator/bin/Debug/net8.0/Avalonia.Markup.Xaml.dll
Executable file
Binary file not shown.
BIN
BuggyCalculator/bin/Debug/net8.0/Avalonia.Markup.dll
Executable file
BIN
BuggyCalculator/bin/Debug/net8.0/Avalonia.Markup.dll
Executable file
Binary file not shown.
BIN
BuggyCalculator/bin/Debug/net8.0/Avalonia.Metal.dll
Executable file
BIN
BuggyCalculator/bin/Debug/net8.0/Avalonia.Metal.dll
Executable file
Binary file not shown.
BIN
BuggyCalculator/bin/Debug/net8.0/Avalonia.MicroCom.dll
Executable file
BIN
BuggyCalculator/bin/Debug/net8.0/Avalonia.MicroCom.dll
Executable file
Binary file not shown.
BIN
BuggyCalculator/bin/Debug/net8.0/Avalonia.Native.dll
Executable file
BIN
BuggyCalculator/bin/Debug/net8.0/Avalonia.Native.dll
Executable file
Binary file not shown.
BIN
BuggyCalculator/bin/Debug/net8.0/Avalonia.OpenGL.dll
Executable file
BIN
BuggyCalculator/bin/Debug/net8.0/Avalonia.OpenGL.dll
Executable file
Binary file not shown.
BIN
BuggyCalculator/bin/Debug/net8.0/Avalonia.Remote.Protocol.dll
Executable file
BIN
BuggyCalculator/bin/Debug/net8.0/Avalonia.Remote.Protocol.dll
Executable file
Binary file not shown.
BIN
BuggyCalculator/bin/Debug/net8.0/Avalonia.Skia.dll
Executable file
BIN
BuggyCalculator/bin/Debug/net8.0/Avalonia.Skia.dll
Executable file
Binary file not shown.
BIN
BuggyCalculator/bin/Debug/net8.0/Avalonia.Themes.Fluent.dll
Executable file
BIN
BuggyCalculator/bin/Debug/net8.0/Avalonia.Themes.Fluent.dll
Executable file
Binary file not shown.
BIN
BuggyCalculator/bin/Debug/net8.0/Avalonia.Themes.Simple.dll
Executable file
BIN
BuggyCalculator/bin/Debug/net8.0/Avalonia.Themes.Simple.dll
Executable file
Binary file not shown.
BIN
BuggyCalculator/bin/Debug/net8.0/Avalonia.Vulkan.dll
Executable file
BIN
BuggyCalculator/bin/Debug/net8.0/Avalonia.Vulkan.dll
Executable file
Binary file not shown.
BIN
BuggyCalculator/bin/Debug/net8.0/Avalonia.Win32.dll
Executable file
BIN
BuggyCalculator/bin/Debug/net8.0/Avalonia.Win32.dll
Executable file
Binary file not shown.
BIN
BuggyCalculator/bin/Debug/net8.0/Avalonia.X11.dll
Executable file
BIN
BuggyCalculator/bin/Debug/net8.0/Avalonia.X11.dll
Executable file
Binary file not shown.
BIN
BuggyCalculator/bin/Debug/net8.0/Avalonia.dll
Executable file
BIN
BuggyCalculator/bin/Debug/net8.0/Avalonia.dll
Executable file
Binary file not shown.
BIN
BuggyCalculator/bin/Debug/net8.0/BuggyCalculator
Executable file
BIN
BuggyCalculator/bin/Debug/net8.0/BuggyCalculator
Executable file
Binary file not shown.
644
BuggyCalculator/bin/Debug/net8.0/BuggyCalculator.deps.json
Normal file
644
BuggyCalculator/bin/Debug/net8.0/BuggyCalculator.deps.json
Normal file
@ -0,0 +1,644 @@
|
||||
{
|
||||
"runtimeTarget": {
|
||||
"name": ".NETCoreApp,Version=v8.0",
|
||||
"signature": ""
|
||||
},
|
||||
"compilationOptions": {},
|
||||
"targets": {
|
||||
".NETCoreApp,Version=v8.0": {
|
||||
"BuggyCalculator/1.0.0": {
|
||||
"dependencies": {
|
||||
"Avalonia": "11.1.0",
|
||||
"Avalonia.Desktop": "11.1.0",
|
||||
"Avalonia.Diagnostics": "11.1.0",
|
||||
"Avalonia.Fonts.Inter": "11.1.0",
|
||||
"Avalonia.Themes.Fluent": "11.1.0"
|
||||
},
|
||||
"runtime": {
|
||||
"BuggyCalculator.dll": {}
|
||||
}
|
||||
},
|
||||
"Avalonia/11.1.0": {
|
||||
"dependencies": {
|
||||
"Avalonia.BuildServices": "0.0.29",
|
||||
"Avalonia.Remote.Protocol": "11.1.0",
|
||||
"MicroCom.Runtime": "0.11.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/Avalonia.Base.dll": {
|
||||
"assemblyVersion": "11.1.0.0",
|
||||
"fileVersion": "11.1.0.0"
|
||||
},
|
||||
"lib/net8.0/Avalonia.Controls.dll": {
|
||||
"assemblyVersion": "11.1.0.0",
|
||||
"fileVersion": "11.1.0.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.1.0.0",
|
||||
"fileVersion": "11.1.0.0"
|
||||
},
|
||||
"lib/net8.0/Avalonia.Markup.Xaml.dll": {
|
||||
"assemblyVersion": "11.1.0.0",
|
||||
"fileVersion": "11.1.0.0"
|
||||
},
|
||||
"lib/net8.0/Avalonia.Markup.dll": {
|
||||
"assemblyVersion": "11.1.0.0",
|
||||
"fileVersion": "11.1.0.0"
|
||||
},
|
||||
"lib/net8.0/Avalonia.Metal.dll": {
|
||||
"assemblyVersion": "11.1.0.0",
|
||||
"fileVersion": "11.1.0.0"
|
||||
},
|
||||
"lib/net8.0/Avalonia.MicroCom.dll": {
|
||||
"assemblyVersion": "11.1.0.0",
|
||||
"fileVersion": "11.1.0.0"
|
||||
},
|
||||
"lib/net8.0/Avalonia.OpenGL.dll": {
|
||||
"assemblyVersion": "11.1.0.0",
|
||||
"fileVersion": "11.1.0.0"
|
||||
},
|
||||
"lib/net8.0/Avalonia.Vulkan.dll": {
|
||||
"assemblyVersion": "11.1.0.0",
|
||||
"fileVersion": "11.1.0.0"
|
||||
},
|
||||
"lib/net8.0/Avalonia.dll": {
|
||||
"assemblyVersion": "11.1.0.0",
|
||||
"fileVersion": "11.1.0.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.1.0": {
|
||||
"dependencies": {
|
||||
"Avalonia": "11.1.0",
|
||||
"Avalonia.Remote.Protocol": "11.1.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/Avalonia.Controls.ColorPicker.dll": {
|
||||
"assemblyVersion": "11.1.0.0",
|
||||
"fileVersion": "11.1.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Avalonia.Controls.DataGrid/11.1.0": {
|
||||
"dependencies": {
|
||||
"Avalonia": "11.1.0",
|
||||
"Avalonia.Remote.Protocol": "11.1.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/Avalonia.Controls.DataGrid.dll": {
|
||||
"assemblyVersion": "11.1.0.0",
|
||||
"fileVersion": "11.1.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Avalonia.Desktop/11.1.0": {
|
||||
"dependencies": {
|
||||
"Avalonia": "11.1.0",
|
||||
"Avalonia.Native": "11.1.0",
|
||||
"Avalonia.Skia": "11.1.0",
|
||||
"Avalonia.Win32": "11.1.0",
|
||||
"Avalonia.X11": "11.1.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/Avalonia.Desktop.dll": {
|
||||
"assemblyVersion": "11.1.0.0",
|
||||
"fileVersion": "11.1.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Avalonia.Diagnostics/11.1.0": {
|
||||
"dependencies": {
|
||||
"Avalonia": "11.1.0",
|
||||
"Avalonia.Controls.ColorPicker": "11.1.0",
|
||||
"Avalonia.Controls.DataGrid": "11.1.0",
|
||||
"Avalonia.Themes.Simple": "11.1.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/Avalonia.Diagnostics.dll": {
|
||||
"assemblyVersion": "11.1.0.0",
|
||||
"fileVersion": "11.1.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Avalonia.Fonts.Inter/11.1.0": {
|
||||
"dependencies": {
|
||||
"Avalonia": "11.1.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/Avalonia.Fonts.Inter.dll": {
|
||||
"assemblyVersion": "11.1.0.0",
|
||||
"fileVersion": "11.1.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Avalonia.FreeDesktop/11.1.0": {
|
||||
"dependencies": {
|
||||
"Avalonia": "11.1.0",
|
||||
"Tmds.DBus.Protocol": "0.16.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/Avalonia.FreeDesktop.dll": {
|
||||
"assemblyVersion": "11.1.0.0",
|
||||
"fileVersion": "11.1.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Avalonia.Native/11.1.0": {
|
||||
"dependencies": {
|
||||
"Avalonia": "11.1.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/Avalonia.Native.dll": {
|
||||
"assemblyVersion": "11.1.0.0",
|
||||
"fileVersion": "11.1.0.0"
|
||||
}
|
||||
},
|
||||
"runtimeTargets": {
|
||||
"runtimes/osx/native/libAvaloniaNative.dylib": {
|
||||
"rid": "osx",
|
||||
"assetType": "native",
|
||||
"fileVersion": "0.0.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Avalonia.Remote.Protocol/11.1.0": {
|
||||
"runtime": {
|
||||
"lib/net8.0/Avalonia.Remote.Protocol.dll": {
|
||||
"assemblyVersion": "11.1.0.0",
|
||||
"fileVersion": "11.1.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Avalonia.Skia/11.1.0": {
|
||||
"dependencies": {
|
||||
"Avalonia": "11.1.0",
|
||||
"HarfBuzzSharp": "7.3.0.2",
|
||||
"HarfBuzzSharp.NativeAssets.Linux": "7.3.0.2",
|
||||
"HarfBuzzSharp.NativeAssets.WebAssembly": "7.3.0.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.1.0.0",
|
||||
"fileVersion": "11.1.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Avalonia.Themes.Fluent/11.1.0": {
|
||||
"dependencies": {
|
||||
"Avalonia": "11.1.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/Avalonia.Themes.Fluent.dll": {
|
||||
"assemblyVersion": "11.1.0.0",
|
||||
"fileVersion": "11.1.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Avalonia.Themes.Simple/11.1.0": {
|
||||
"dependencies": {
|
||||
"Avalonia": "11.1.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/Avalonia.Themes.Simple.dll": {
|
||||
"assemblyVersion": "11.1.0.0",
|
||||
"fileVersion": "11.1.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Avalonia.Win32/11.1.0": {
|
||||
"dependencies": {
|
||||
"Avalonia": "11.1.0",
|
||||
"Avalonia.Angle.Windows.Natives": "2.1.22045.20230930",
|
||||
"System.Numerics.Vectors": "4.5.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/Avalonia.Win32.dll": {
|
||||
"assemblyVersion": "11.1.0.0",
|
||||
"fileVersion": "11.1.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Avalonia.X11/11.1.0": {
|
||||
"dependencies": {
|
||||
"Avalonia": "11.1.0",
|
||||
"Avalonia.FreeDesktop": "11.1.0",
|
||||
"Avalonia.Skia": "11.1.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/Avalonia.X11.dll": {
|
||||
"assemblyVersion": "11.1.0.0",
|
||||
"fileVersion": "11.1.0.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.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/6.0.0": {
|
||||
"runtime": {
|
||||
"lib/net6.0/System.IO.Pipelines.dll": {
|
||||
"assemblyVersion": "6.0.0.0",
|
||||
"fileVersion": "6.0.21.52210"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Numerics.Vectors/4.5.0": {},
|
||||
"Tmds.DBus.Protocol/0.16.0": {
|
||||
"dependencies": {
|
||||
"System.IO.Pipelines": "6.0.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net6.0/Tmds.DBus.Protocol.dll": {
|
||||
"assemblyVersion": "0.16.0.0",
|
||||
"fileVersion": "0.16.0.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"BuggyCalculator/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
},
|
||||
"Avalonia/11.1.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-tqD4Az6xnEa5INS0bduGuv0VFIWCxQ/kJT+yBT+KI8TsofJUYMFjc617rBoObEZoTNyIHiV58LBn6sRw/ht65g==",
|
||||
"path": "avalonia/11.1.0",
|
||||
"hashPath": "avalonia.11.1.0.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.1.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-g0y7izkcrE/HlzyzymRCvKIh0PRMlsjd4wyAV1/8GkiK2KXRbiJkcUzU6JlnOml+5FSzurAKoFyuK16zEORqzg==",
|
||||
"path": "avalonia.controls.colorpicker/11.1.0",
|
||||
"hashPath": "avalonia.controls.colorpicker.11.1.0.nupkg.sha512"
|
||||
},
|
||||
"Avalonia.Controls.DataGrid/11.1.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-0EcjyIzQ2USDkabhi8A06JLZYc0DEvc7SYvGZ+y8pb6zAH9b3CYTm8U2o06pZ7JxX5bmopjbykcleCoPgyWcKQ==",
|
||||
"path": "avalonia.controls.datagrid/11.1.0",
|
||||
"hashPath": "avalonia.controls.datagrid.11.1.0.nupkg.sha512"
|
||||
},
|
||||
"Avalonia.Desktop/11.1.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-HROfSizLEI6XoFIRrlpOTvEkXO1VER67jroUCMMGh9WpqZt81SeQkooAUpCiKXKzuWnjjHAlEw8pNy0eLdlSwQ==",
|
||||
"path": "avalonia.desktop/11.1.0",
|
||||
"hashPath": "avalonia.desktop.11.1.0.nupkg.sha512"
|
||||
},
|
||||
"Avalonia.Diagnostics/11.1.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-9A2iYzqAA7TNreaftI0a9hn2oUPJn7xCqhTdswzsONGFqNvoPzrajCAedIXKh7cIi5ecO5Bug8UvHtM/xY3rBw==",
|
||||
"path": "avalonia.diagnostics/11.1.0",
|
||||
"hashPath": "avalonia.diagnostics.11.1.0.nupkg.sha512"
|
||||
},
|
||||
"Avalonia.Fonts.Inter/11.1.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-iWI6xD6hZIrBOrwqRnoBTSLFARqyQTvuyyrQH6oKAg5JYlYRdiBJHUbQSbvvHCovt8QCqZuGQvb/sc6CqI3EaA==",
|
||||
"path": "avalonia.fonts.inter/11.1.0",
|
||||
"hashPath": "avalonia.fonts.inter.11.1.0.nupkg.sha512"
|
||||
},
|
||||
"Avalonia.FreeDesktop/11.1.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-FY7QFmsMcmlMIDejSGCQeqYOUbK2NizLFAZ6tLRt223HLdUPicKjce5o2HNuAgP1J2kfpFG4CgbXu9bjv5gmfQ==",
|
||||
"path": "avalonia.freedesktop/11.1.0",
|
||||
"hashPath": "avalonia.freedesktop.11.1.0.nupkg.sha512"
|
||||
},
|
||||
"Avalonia.Native/11.1.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-HVe1HwOfwL7GG8UaUTUYqTP7007Ja6WxP65DG46q7j60kWkg5oomeRHW+Xm4mGd+H1ye5Q9fi1okg+sG24PgFQ==",
|
||||
"path": "avalonia.native/11.1.0",
|
||||
"hashPath": "avalonia.native.11.1.0.nupkg.sha512"
|
||||
},
|
||||
"Avalonia.Remote.Protocol/11.1.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-Jgv470tVeZRwLwivNGdcdEyQdWhe3bsDF0931L1PvvnLGotMaUPh6cvVZDRwLv7BVues+EA8e5wsicVATl6vMQ==",
|
||||
"path": "avalonia.remote.protocol/11.1.0",
|
||||
"hashPath": "avalonia.remote.protocol.11.1.0.nupkg.sha512"
|
||||
},
|
||||
"Avalonia.Skia/11.1.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-vmcQx2o3u4kbjtjx9KL+eyB42TwtX46PXNZvxjOwgPQgmL/jSv4CJsRySMDCIGxMLih2qKOJXOjcKXnp2+pDeg==",
|
||||
"path": "avalonia.skia/11.1.0",
|
||||
"hashPath": "avalonia.skia.11.1.0.nupkg.sha512"
|
||||
},
|
||||
"Avalonia.Themes.Fluent/11.1.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-GL8sOjDajxZANeZfyP3oCAepy1FfXSVc5L3PtWvCDPyrA9YeNonZuOtWy8TPT+iK8i3UzLUgmCsTTpHENB3WDQ==",
|
||||
"path": "avalonia.themes.fluent/11.1.0",
|
||||
"hashPath": "avalonia.themes.fluent.11.1.0.nupkg.sha512"
|
||||
},
|
||||
"Avalonia.Themes.Simple/11.1.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-+BLhY8qPBztf6BtNWrVoSVz8UxA7FM6xEldF83jPMQ7CZXQ0lvWMLLrcMCN+HKjIfIaQhVSNSkji2h/ijIz4ug==",
|
||||
"path": "avalonia.themes.simple/11.1.0",
|
||||
"hashPath": "avalonia.themes.simple.11.1.0.nupkg.sha512"
|
||||
},
|
||||
"Avalonia.Win32/11.1.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-M2TZaijlaZrxqVVr6IfIZ20pOJc3Ng/4KaXeMnyWCWw2g0xNW1HMo4wICt9YIGf3b6aCw9EcSW1p22Caa20uZQ==",
|
||||
"path": "avalonia.win32/11.1.0",
|
||||
"hashPath": "avalonia.win32.11.1.0.nupkg.sha512"
|
||||
},
|
||||
"Avalonia.X11/11.1.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-LaDcOYi/JiXHq6cfwP2+sFknu7dBJcE9QGWniHVwC69gieRgtsw1L4Kd0beYJO873zVFzWYAp06H+m6zcqoTQw==",
|
||||
"path": "avalonia.x11/11.1.0",
|
||||
"hashPath": "avalonia.x11.11.1.0.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.2": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-pR6H16NOAjIhfXomYsgN5anGbOHSfIA8z0RoWEVx8vgLySxz9Jie4DnQ/paWTh5MTtBC8XKkTUI7uKMXcq/Pxw==",
|
||||
"path": "harfbuzzsharp.nativeassets.webassembly/7.3.0.2",
|
||||
"hashPath": "harfbuzzsharp.nativeassets.webassembly.7.3.0.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/6.0.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-mXX66shZ4xLlI3vNLaJ0lt8OIZdmXTvIqXRdQX5HLVGSkLhINLsVhyZuX2UdRFnOGkqnwmMUs40pIIQ7mna4+A==",
|
||||
"path": "system.io.pipelines/6.0.0",
|
||||
"hashPath": "system.io.pipelines.6.0.0.nupkg.sha512"
|
||||
},
|
||||
"System.Numerics.Vectors/4.5.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==",
|
||||
"path": "system.numerics.vectors/4.5.0",
|
||||
"hashPath": "system.numerics.vectors.4.5.0.nupkg.sha512"
|
||||
},
|
||||
"Tmds.DBus.Protocol/0.16.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-9Ne9AvrRWrDQvzbMcbTz3EaGRE1vQmkeeu0Xp7Ii0Wdlhwfjst8FDRas+RBslU5kdPWs2aeMLErzyT1DwH9zeA==",
|
||||
"path": "tmds.dbus.protocol/0.16.0",
|
||||
"hashPath": "tmds.dbus.protocol.0.16.0.nupkg.sha512"
|
||||
}
|
||||
}
|
||||
}
|
BIN
BuggyCalculator/bin/Debug/net8.0/BuggyCalculator.dll
Normal file
BIN
BuggyCalculator/bin/Debug/net8.0/BuggyCalculator.dll
Normal file
Binary file not shown.
BIN
BuggyCalculator/bin/Debug/net8.0/BuggyCalculator.pdb
Normal file
BIN
BuggyCalculator/bin/Debug/net8.0/BuggyCalculator.pdb
Normal file
Binary file not shown.
@ -0,0 +1,13 @@
|
||||
{
|
||||
"runtimeOptions": {
|
||||
"tfm": "net8.0",
|
||||
"framework": {
|
||||
"name": "Microsoft.NETCore.App",
|
||||
"version": "8.0.0"
|
||||
},
|
||||
"configProperties": {
|
||||
"System.Runtime.InteropServices.BuiltInComInterop.IsSupported": true,
|
||||
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
|
||||
}
|
||||
}
|
||||
}
|
BIN
BuggyCalculator/bin/Debug/net8.0/HarfBuzzSharp.dll
Executable file
BIN
BuggyCalculator/bin/Debug/net8.0/HarfBuzzSharp.dll
Executable file
Binary file not shown.
BIN
BuggyCalculator/bin/Debug/net8.0/MicroCom.Runtime.dll
Executable file
BIN
BuggyCalculator/bin/Debug/net8.0/MicroCom.Runtime.dll
Executable file
Binary file not shown.
BIN
BuggyCalculator/bin/Debug/net8.0/SkiaSharp.dll
Executable file
BIN
BuggyCalculator/bin/Debug/net8.0/SkiaSharp.dll
Executable file
Binary file not shown.
BIN
BuggyCalculator/bin/Debug/net8.0/System.IO.Pipelines.dll
Executable file
BIN
BuggyCalculator/bin/Debug/net8.0/System.IO.Pipelines.dll
Executable file
Binary file not shown.
BIN
BuggyCalculator/bin/Debug/net8.0/Tmds.DBus.Protocol.dll
Executable file
BIN
BuggyCalculator/bin/Debug/net8.0/Tmds.DBus.Protocol.dll
Executable file
Binary file not shown.
BIN
BuggyCalculator/bin/Debug/net8.0/runtimes/linux-arm/native/libHarfBuzzSharp.so
Executable file
BIN
BuggyCalculator/bin/Debug/net8.0/runtimes/linux-arm/native/libHarfBuzzSharp.so
Executable file
Binary file not shown.
BIN
BuggyCalculator/bin/Debug/net8.0/runtimes/linux-arm/native/libSkiaSharp.so
Executable file
BIN
BuggyCalculator/bin/Debug/net8.0/runtimes/linux-arm/native/libSkiaSharp.so
Executable file
Binary file not shown.
BIN
BuggyCalculator/bin/Debug/net8.0/runtimes/linux-arm64/native/libHarfBuzzSharp.so
Executable file
BIN
BuggyCalculator/bin/Debug/net8.0/runtimes/linux-arm64/native/libHarfBuzzSharp.so
Executable file
Binary file not shown.
BIN
BuggyCalculator/bin/Debug/net8.0/runtimes/linux-arm64/native/libSkiaSharp.so
Executable file
BIN
BuggyCalculator/bin/Debug/net8.0/runtimes/linux-arm64/native/libSkiaSharp.so
Executable file
Binary file not shown.
Binary file not shown.
BIN
BuggyCalculator/bin/Debug/net8.0/runtimes/linux-musl-x64/native/libSkiaSharp.so
Executable file
BIN
BuggyCalculator/bin/Debug/net8.0/runtimes/linux-musl-x64/native/libSkiaSharp.so
Executable file
Binary file not shown.
BIN
BuggyCalculator/bin/Debug/net8.0/runtimes/linux-x64/native/libHarfBuzzSharp.so
Executable file
BIN
BuggyCalculator/bin/Debug/net8.0/runtimes/linux-x64/native/libHarfBuzzSharp.so
Executable file
Binary file not shown.
BIN
BuggyCalculator/bin/Debug/net8.0/runtimes/linux-x64/native/libSkiaSharp.so
Executable file
BIN
BuggyCalculator/bin/Debug/net8.0/runtimes/linux-x64/native/libSkiaSharp.so
Executable file
Binary file not shown.
BIN
BuggyCalculator/bin/Debug/net8.0/runtimes/osx/native/libAvaloniaNative.dylib
Executable file
BIN
BuggyCalculator/bin/Debug/net8.0/runtimes/osx/native/libAvaloniaNative.dylib
Executable file
Binary file not shown.
BIN
BuggyCalculator/bin/Debug/net8.0/runtimes/osx/native/libHarfBuzzSharp.dylib
Executable file
BIN
BuggyCalculator/bin/Debug/net8.0/runtimes/osx/native/libHarfBuzzSharp.dylib
Executable file
Binary file not shown.
BIN
BuggyCalculator/bin/Debug/net8.0/runtimes/osx/native/libSkiaSharp.dylib
Executable file
BIN
BuggyCalculator/bin/Debug/net8.0/runtimes/osx/native/libSkiaSharp.dylib
Executable file
Binary file not shown.
BIN
BuggyCalculator/bin/Debug/net8.0/runtimes/win-arm64/native/av_libglesv2.dll
Executable file
BIN
BuggyCalculator/bin/Debug/net8.0/runtimes/win-arm64/native/av_libglesv2.dll
Executable file
Binary file not shown.
BIN
BuggyCalculator/bin/Debug/net8.0/runtimes/win-arm64/native/libHarfBuzzSharp.dll
Executable file
BIN
BuggyCalculator/bin/Debug/net8.0/runtimes/win-arm64/native/libHarfBuzzSharp.dll
Executable file
Binary file not shown.
BIN
BuggyCalculator/bin/Debug/net8.0/runtimes/win-arm64/native/libSkiaSharp.dll
Executable file
BIN
BuggyCalculator/bin/Debug/net8.0/runtimes/win-arm64/native/libSkiaSharp.dll
Executable file
Binary file not shown.
BIN
BuggyCalculator/bin/Debug/net8.0/runtimes/win-x64/native/av_libglesv2.dll
Executable file
BIN
BuggyCalculator/bin/Debug/net8.0/runtimes/win-x64/native/av_libglesv2.dll
Executable file
Binary file not shown.
BIN
BuggyCalculator/bin/Debug/net8.0/runtimes/win-x64/native/libHarfBuzzSharp.dll
Executable file
BIN
BuggyCalculator/bin/Debug/net8.0/runtimes/win-x64/native/libHarfBuzzSharp.dll
Executable file
Binary file not shown.
BIN
BuggyCalculator/bin/Debug/net8.0/runtimes/win-x64/native/libSkiaSharp.dll
Executable file
BIN
BuggyCalculator/bin/Debug/net8.0/runtimes/win-x64/native/libSkiaSharp.dll
Executable file
Binary file not shown.
BIN
BuggyCalculator/bin/Debug/net8.0/runtimes/win-x86/native/av_libglesv2.dll
Executable file
BIN
BuggyCalculator/bin/Debug/net8.0/runtimes/win-x86/native/av_libglesv2.dll
Executable file
Binary file not shown.
BIN
BuggyCalculator/bin/Debug/net8.0/runtimes/win-x86/native/libHarfBuzzSharp.dll
Executable file
BIN
BuggyCalculator/bin/Debug/net8.0/runtimes/win-x86/native/libHarfBuzzSharp.dll
Executable file
Binary file not shown.
BIN
BuggyCalculator/bin/Debug/net8.0/runtimes/win-x86/native/libSkiaSharp.dll
Executable file
BIN
BuggyCalculator/bin/Debug/net8.0/runtimes/win-x86/native/libSkiaSharp.dll
Executable file
Binary file not shown.
88
BuggyCalculator/obj/BuggyCalculator.csproj.nuget.dgspec.json
Normal file
88
BuggyCalculator/obj/BuggyCalculator.csproj.nuget.dgspec.json
Normal file
@ -0,0 +1,88 @@
|
||||
{
|
||||
"format": 1,
|
||||
"restore": {
|
||||
"/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/BuggyCalculator.csproj": {}
|
||||
},
|
||||
"projects": {
|
||||
"/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/BuggyCalculator.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/BuggyCalculator.csproj",
|
||||
"projectName": "BuggyCalculator",
|
||||
"projectPath": "/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/BuggyCalculator.csproj",
|
||||
"packagesPath": "/Users/rinchi/.nuget/packages/",
|
||||
"outputPath": "/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/obj/",
|
||||
"projectStyle": "PackageReference",
|
||||
"configFilePaths": [
|
||||
"/Users/rinchi/.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.1.0, )"
|
||||
},
|
||||
"Avalonia.Desktop": {
|
||||
"target": "Package",
|
||||
"version": "[11.1.0, )"
|
||||
},
|
||||
"Avalonia.Diagnostics": {
|
||||
"target": "Package",
|
||||
"version": "[11.1.0, )"
|
||||
},
|
||||
"Avalonia.Fonts.Inter": {
|
||||
"target": "Package",
|
||||
"version": "[11.1.0, )"
|
||||
},
|
||||
"Avalonia.Themes.Fluent": {
|
||||
"target": "Package",
|
||||
"version": "[11.1.0, )"
|
||||
}
|
||||
},
|
||||
"imports": [
|
||||
"net461",
|
||||
"net462",
|
||||
"net47",
|
||||
"net471",
|
||||
"net472",
|
||||
"net48",
|
||||
"net481"
|
||||
],
|
||||
"assetTargetFallback": true,
|
||||
"warn": true,
|
||||
"frameworkReferences": {
|
||||
"Microsoft.NETCore.App": {
|
||||
"privateAssets": "all"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/8.0.402/PortableRuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
24
BuggyCalculator/obj/BuggyCalculator.csproj.nuget.g.props
Normal file
24
BuggyCalculator/obj/BuggyCalculator.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)' == '' ">/Users/rinchi/.nuget/packages/</NuGetPackageRoot>
|
||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/Users/rinchi/.nuget/packages/</NuGetPackageFolders>
|
||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.12.0</NuGetToolVersion>
|
||||
</PropertyGroup>
|
||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<SourceRoot Include="/Users/rinchi/.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.2/buildTransitive/netstandard1.0/HarfBuzzSharp.NativeAssets.WebAssembly.props" Condition="Exists('$(NuGetPackageRoot)harfbuzzsharp.nativeassets.webassembly/7.3.0.2/buildTransitive/netstandard1.0/HarfBuzzSharp.NativeAssets.WebAssembly.props')" />
|
||||
<Import Project="$(NuGetPackageRoot)avalonia/11.1.0/buildTransitive/Avalonia.props" Condition="Exists('$(NuGetPackageRoot)avalonia/11.1.0/buildTransitive/Avalonia.props')" />
|
||||
</ImportGroup>
|
||||
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<PkgAvalonia_BuildServices Condition=" '$(PkgAvalonia_BuildServices)' == '' ">/Users/rinchi/.nuget/packages/avalonia.buildservices/0.0.29</PkgAvalonia_BuildServices>
|
||||
<PkgAvalonia Condition=" '$(PkgAvalonia)' == '' ">/Users/rinchi/.nuget/packages/avalonia/11.1.0</PkgAvalonia>
|
||||
</PropertyGroup>
|
||||
</Project>
|
@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<Import Project="$(NuGetPackageRoot)skiasharp.nativeassets.webassembly/2.88.8/buildTransitive/netstandard1.0/SkiaSharp.NativeAssets.WebAssembly.targets" Condition="Exists('$(NuGetPackageRoot)skiasharp.nativeassets.webassembly/2.88.8/buildTransitive/netstandard1.0/SkiaSharp.NativeAssets.WebAssembly.targets')" />
|
||||
<Import Project="$(NuGetPackageRoot)harfbuzzsharp.nativeassets.webassembly/7.3.0.2/buildTransitive/netstandard1.0/HarfBuzzSharp.NativeAssets.WebAssembly.targets" Condition="Exists('$(NuGetPackageRoot)harfbuzzsharp.nativeassets.webassembly/7.3.0.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.1.0/buildTransitive/Avalonia.targets" Condition="Exists('$(NuGetPackageRoot)avalonia/11.1.0/buildTransitive/Avalonia.targets')" />
|
||||
</ImportGroup>
|
||||
</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")]
|
BIN
BuggyCalculator/obj/Debug/net8.0/Avalonia/BuggyCalculator.dll
Normal file
BIN
BuggyCalculator/obj/Debug/net8.0/Avalonia/BuggyCalculator.dll
Normal file
Binary file not shown.
BIN
BuggyCalculator/obj/Debug/net8.0/Avalonia/BuggyCalculator.pdb
Normal file
BIN
BuggyCalculator/obj/Debug/net8.0/Avalonia/BuggyCalculator.pdb
Normal file
Binary file not shown.
@ -0,0 +1 @@
|
||||
2c91461125986fc833bb11065c436b39dff7de43abc707331d39d3459f4b94c8
|
BIN
BuggyCalculator/obj/Debug/net8.0/Avalonia/resources
Normal file
BIN
BuggyCalculator/obj/Debug/net8.0/Avalonia/resources
Normal file
Binary file not shown.
@ -0,0 +1,22 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("BuggyCalculator")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("BuggyCalculator")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("BuggyCalculator")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
||||
// Generated by the MSBuild WriteCodeFragment class.
|
||||
|
@ -0,0 +1 @@
|
||||
9e72c17d7388cfbf58a30aefa6bec52a1913efa21fb689cb32cbf6d52d4cd826
|
@ -0,0 +1,26 @@
|
||||
is_global = true
|
||||
build_property.AvaloniaNameGeneratorIsEnabled = true
|
||||
build_property.AvaloniaNameGeneratorBehavior = InitializeComponent
|
||||
build_property.AvaloniaNameGeneratorDefaultFieldModifier = internal
|
||||
build_property.AvaloniaNameGeneratorFilterByPath = *
|
||||
build_property.AvaloniaNameGeneratorFilterByNamespace = *
|
||||
build_property.AvaloniaNameGeneratorViewFileNamingStrategy = NamespaceAndClassName
|
||||
build_property.AvaloniaNameGeneratorAttachDevTools = true
|
||||
build_property.TargetFramework = net8.0
|
||||
build_property.TargetPlatformMinVersion =
|
||||
build_property.UsingMicrosoftNETSdkWeb =
|
||||
build_property.ProjectTypeGuids =
|
||||
build_property.InvariantGlobalization =
|
||||
build_property.PlatformNeutralAssembly =
|
||||
build_property.EnforceExtendedAnalyzerRules =
|
||||
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||
build_property.RootNamespace = BuggyCalculator
|
||||
build_property.ProjectDir = /Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/
|
||||
build_property.EnableComHosting =
|
||||
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||
|
||||
[/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/App.axaml]
|
||||
build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml
|
||||
|
||||
[/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/MainWindow.axaml]
|
||||
build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml
|
BIN
BuggyCalculator/obj/Debug/net8.0/BuggyCalculator.assets.cache
Normal file
BIN
BuggyCalculator/obj/Debug/net8.0/BuggyCalculator.assets.cache
Normal file
Binary file not shown.
Binary file not shown.
@ -0,0 +1 @@
|
||||
f831df38eb60946b5ed036aa2adbda7fb8708bf2ebb133e5ebe01113d25f32d9
|
@ -0,0 +1,134 @@
|
||||
/Users/vladislavperfilev/RiderProjects/BuggyCalculator/BuggyCalculator/bin/Debug/net8.0/BuggyCalculator
|
||||
/Users/vladislavperfilev/RiderProjects/BuggyCalculator/BuggyCalculator/bin/Debug/net8.0/BuggyCalculator.deps.json
|
||||
/Users/vladislavperfilev/RiderProjects/BuggyCalculator/BuggyCalculator/bin/Debug/net8.0/BuggyCalculator.runtimeconfig.json
|
||||
/Users/vladislavperfilev/RiderProjects/BuggyCalculator/BuggyCalculator/bin/Debug/net8.0/BuggyCalculator.dll
|
||||
/Users/vladislavperfilev/RiderProjects/BuggyCalculator/BuggyCalculator/bin/Debug/net8.0/BuggyCalculator.pdb
|
||||
/Users/vladislavperfilev/RiderProjects/BuggyCalculator/BuggyCalculator/bin/Debug/net8.0/Avalonia.Base.dll
|
||||
/Users/vladislavperfilev/RiderProjects/BuggyCalculator/BuggyCalculator/bin/Debug/net8.0/Avalonia.Controls.dll
|
||||
/Users/vladislavperfilev/RiderProjects/BuggyCalculator/BuggyCalculator/bin/Debug/net8.0/Avalonia.DesignerSupport.dll
|
||||
/Users/vladislavperfilev/RiderProjects/BuggyCalculator/BuggyCalculator/bin/Debug/net8.0/Avalonia.Dialogs.dll
|
||||
/Users/vladislavperfilev/RiderProjects/BuggyCalculator/BuggyCalculator/bin/Debug/net8.0/Avalonia.Markup.Xaml.dll
|
||||
/Users/vladislavperfilev/RiderProjects/BuggyCalculator/BuggyCalculator/bin/Debug/net8.0/Avalonia.Markup.dll
|
||||
/Users/vladislavperfilev/RiderProjects/BuggyCalculator/BuggyCalculator/bin/Debug/net8.0/Avalonia.Metal.dll
|
||||
/Users/vladislavperfilev/RiderProjects/BuggyCalculator/BuggyCalculator/bin/Debug/net8.0/Avalonia.MicroCom.dll
|
||||
/Users/vladislavperfilev/RiderProjects/BuggyCalculator/BuggyCalculator/bin/Debug/net8.0/Avalonia.OpenGL.dll
|
||||
/Users/vladislavperfilev/RiderProjects/BuggyCalculator/BuggyCalculator/bin/Debug/net8.0/Avalonia.Vulkan.dll
|
||||
/Users/vladislavperfilev/RiderProjects/BuggyCalculator/BuggyCalculator/bin/Debug/net8.0/Avalonia.dll
|
||||
/Users/vladislavperfilev/RiderProjects/BuggyCalculator/BuggyCalculator/bin/Debug/net8.0/Avalonia.Controls.ColorPicker.dll
|
||||
/Users/vladislavperfilev/RiderProjects/BuggyCalculator/BuggyCalculator/bin/Debug/net8.0/Avalonia.Controls.DataGrid.dll
|
||||
/Users/vladislavperfilev/RiderProjects/BuggyCalculator/BuggyCalculator/bin/Debug/net8.0/Avalonia.Desktop.dll
|
||||
/Users/vladislavperfilev/RiderProjects/BuggyCalculator/BuggyCalculator/bin/Debug/net8.0/Avalonia.Diagnostics.dll
|
||||
/Users/vladislavperfilev/RiderProjects/BuggyCalculator/BuggyCalculator/bin/Debug/net8.0/Avalonia.Fonts.Inter.dll
|
||||
/Users/vladislavperfilev/RiderProjects/BuggyCalculator/BuggyCalculator/bin/Debug/net8.0/Avalonia.FreeDesktop.dll
|
||||
/Users/vladislavperfilev/RiderProjects/BuggyCalculator/BuggyCalculator/bin/Debug/net8.0/Avalonia.Native.dll
|
||||
/Users/vladislavperfilev/RiderProjects/BuggyCalculator/BuggyCalculator/bin/Debug/net8.0/Avalonia.Remote.Protocol.dll
|
||||
/Users/vladislavperfilev/RiderProjects/BuggyCalculator/BuggyCalculator/bin/Debug/net8.0/Avalonia.Skia.dll
|
||||
/Users/vladislavperfilev/RiderProjects/BuggyCalculator/BuggyCalculator/bin/Debug/net8.0/Avalonia.Themes.Fluent.dll
|
||||
/Users/vladislavperfilev/RiderProjects/BuggyCalculator/BuggyCalculator/bin/Debug/net8.0/Avalonia.Themes.Simple.dll
|
||||
/Users/vladislavperfilev/RiderProjects/BuggyCalculator/BuggyCalculator/bin/Debug/net8.0/Avalonia.Win32.dll
|
||||
/Users/vladislavperfilev/RiderProjects/BuggyCalculator/BuggyCalculator/bin/Debug/net8.0/Avalonia.X11.dll
|
||||
/Users/vladislavperfilev/RiderProjects/BuggyCalculator/BuggyCalculator/bin/Debug/net8.0/HarfBuzzSharp.dll
|
||||
/Users/vladislavperfilev/RiderProjects/BuggyCalculator/BuggyCalculator/bin/Debug/net8.0/MicroCom.Runtime.dll
|
||||
/Users/vladislavperfilev/RiderProjects/BuggyCalculator/BuggyCalculator/bin/Debug/net8.0/SkiaSharp.dll
|
||||
/Users/vladislavperfilev/RiderProjects/BuggyCalculator/BuggyCalculator/bin/Debug/net8.0/System.IO.Pipelines.dll
|
||||
/Users/vladislavperfilev/RiderProjects/BuggyCalculator/BuggyCalculator/bin/Debug/net8.0/Tmds.DBus.Protocol.dll
|
||||
/Users/vladislavperfilev/RiderProjects/BuggyCalculator/BuggyCalculator/bin/Debug/net8.0/runtimes/win-arm64/native/av_libglesv2.dll
|
||||
/Users/vladislavperfilev/RiderProjects/BuggyCalculator/BuggyCalculator/bin/Debug/net8.0/runtimes/win-x64/native/av_libglesv2.dll
|
||||
/Users/vladislavperfilev/RiderProjects/BuggyCalculator/BuggyCalculator/bin/Debug/net8.0/runtimes/win-x86/native/av_libglesv2.dll
|
||||
/Users/vladislavperfilev/RiderProjects/BuggyCalculator/BuggyCalculator/bin/Debug/net8.0/runtimes/osx/native/libAvaloniaNative.dylib
|
||||
/Users/vladislavperfilev/RiderProjects/BuggyCalculator/BuggyCalculator/bin/Debug/net8.0/runtimes/linux-arm/native/libHarfBuzzSharp.so
|
||||
/Users/vladislavperfilev/RiderProjects/BuggyCalculator/BuggyCalculator/bin/Debug/net8.0/runtimes/linux-arm64/native/libHarfBuzzSharp.so
|
||||
/Users/vladislavperfilev/RiderProjects/BuggyCalculator/BuggyCalculator/bin/Debug/net8.0/runtimes/linux-musl-x64/native/libHarfBuzzSharp.so
|
||||
/Users/vladislavperfilev/RiderProjects/BuggyCalculator/BuggyCalculator/bin/Debug/net8.0/runtimes/linux-x64/native/libHarfBuzzSharp.so
|
||||
/Users/vladislavperfilev/RiderProjects/BuggyCalculator/BuggyCalculator/bin/Debug/net8.0/runtimes/osx/native/libHarfBuzzSharp.dylib
|
||||
/Users/vladislavperfilev/RiderProjects/BuggyCalculator/BuggyCalculator/bin/Debug/net8.0/runtimes/win-arm64/native/libHarfBuzzSharp.dll
|
||||
/Users/vladislavperfilev/RiderProjects/BuggyCalculator/BuggyCalculator/bin/Debug/net8.0/runtimes/win-x64/native/libHarfBuzzSharp.dll
|
||||
/Users/vladislavperfilev/RiderProjects/BuggyCalculator/BuggyCalculator/bin/Debug/net8.0/runtimes/win-x86/native/libHarfBuzzSharp.dll
|
||||
/Users/vladislavperfilev/RiderProjects/BuggyCalculator/BuggyCalculator/bin/Debug/net8.0/runtimes/linux-arm/native/libSkiaSharp.so
|
||||
/Users/vladislavperfilev/RiderProjects/BuggyCalculator/BuggyCalculator/bin/Debug/net8.0/runtimes/linux-arm64/native/libSkiaSharp.so
|
||||
/Users/vladislavperfilev/RiderProjects/BuggyCalculator/BuggyCalculator/bin/Debug/net8.0/runtimes/linux-musl-x64/native/libSkiaSharp.so
|
||||
/Users/vladislavperfilev/RiderProjects/BuggyCalculator/BuggyCalculator/bin/Debug/net8.0/runtimes/linux-x64/native/libSkiaSharp.so
|
||||
/Users/vladislavperfilev/RiderProjects/BuggyCalculator/BuggyCalculator/bin/Debug/net8.0/runtimes/osx/native/libSkiaSharp.dylib
|
||||
/Users/vladislavperfilev/RiderProjects/BuggyCalculator/BuggyCalculator/bin/Debug/net8.0/runtimes/win-arm64/native/libSkiaSharp.dll
|
||||
/Users/vladislavperfilev/RiderProjects/BuggyCalculator/BuggyCalculator/bin/Debug/net8.0/runtimes/win-x64/native/libSkiaSharp.dll
|
||||
/Users/vladislavperfilev/RiderProjects/BuggyCalculator/BuggyCalculator/bin/Debug/net8.0/runtimes/win-x86/native/libSkiaSharp.dll
|
||||
/Users/vladislavperfilev/RiderProjects/BuggyCalculator/BuggyCalculator/obj/Debug/net8.0/BuggyCalculator.csproj.AssemblyReference.cache
|
||||
/Users/vladislavperfilev/RiderProjects/BuggyCalculator/BuggyCalculator/obj/Debug/net8.0/Avalonia/Resources.Inputs.cache
|
||||
/Users/vladislavperfilev/RiderProjects/BuggyCalculator/BuggyCalculator/obj/Debug/net8.0/Avalonia/resources
|
||||
/Users/vladislavperfilev/RiderProjects/BuggyCalculator/BuggyCalculator/obj/Debug/net8.0/BuggyCalculator.GeneratedMSBuildEditorConfig.editorconfig
|
||||
/Users/vladislavperfilev/RiderProjects/BuggyCalculator/BuggyCalculator/obj/Debug/net8.0/BuggyCalculator.AssemblyInfoInputs.cache
|
||||
/Users/vladislavperfilev/RiderProjects/BuggyCalculator/BuggyCalculator/obj/Debug/net8.0/BuggyCalculator.AssemblyInfo.cs
|
||||
/Users/vladislavperfilev/RiderProjects/BuggyCalculator/BuggyCalculator/obj/Debug/net8.0/BuggyCalculator.csproj.CoreCompileInputs.cache
|
||||
/Users/vladislavperfilev/RiderProjects/BuggyCalculator/BuggyCalculator/obj/Debug/net8.0/Avalonia/BuggyCalculator.dll
|
||||
/Users/vladislavperfilev/RiderProjects/BuggyCalculator/BuggyCalculator/obj/Debug/net8.0/Avalonia/BuggyCalculator.pdb
|
||||
/Users/vladislavperfilev/RiderProjects/BuggyCalculator/BuggyCalculator/obj/Debug/net8.0/refint/Avalonia/BuggyCalculator.dll
|
||||
/Users/vladislavperfilev/RiderProjects/BuggyCalculator/BuggyCalculator/obj/Debug/net8.0/BuggyCal.429E98AD.Up2Date
|
||||
/Users/vladislavperfilev/RiderProjects/BuggyCalculator/BuggyCalculator/obj/Debug/net8.0/BuggyCalculator.genruntimeconfig.cache
|
||||
/Users/vladislavperfilev/RiderProjects/BuggyCalculator/BuggyCalculator/obj/Debug/net8.0/ref/BuggyCalculator.dll
|
||||
/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/bin/Debug/net8.0/BuggyCalculator
|
||||
/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/bin/Debug/net8.0/BuggyCalculator.deps.json
|
||||
/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/bin/Debug/net8.0/BuggyCalculator.runtimeconfig.json
|
||||
/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/bin/Debug/net8.0/BuggyCalculator.dll
|
||||
/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/bin/Debug/net8.0/BuggyCalculator.pdb
|
||||
/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/bin/Debug/net8.0/Avalonia.Base.dll
|
||||
/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/bin/Debug/net8.0/Avalonia.Controls.dll
|
||||
/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/bin/Debug/net8.0/Avalonia.DesignerSupport.dll
|
||||
/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/bin/Debug/net8.0/Avalonia.Dialogs.dll
|
||||
/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/bin/Debug/net8.0/Avalonia.Markup.Xaml.dll
|
||||
/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/bin/Debug/net8.0/Avalonia.Markup.dll
|
||||
/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/bin/Debug/net8.0/Avalonia.Metal.dll
|
||||
/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/bin/Debug/net8.0/Avalonia.MicroCom.dll
|
||||
/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/bin/Debug/net8.0/Avalonia.OpenGL.dll
|
||||
/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/bin/Debug/net8.0/Avalonia.Vulkan.dll
|
||||
/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/bin/Debug/net8.0/Avalonia.dll
|
||||
/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/bin/Debug/net8.0/Avalonia.Controls.ColorPicker.dll
|
||||
/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/bin/Debug/net8.0/Avalonia.Controls.DataGrid.dll
|
||||
/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/bin/Debug/net8.0/Avalonia.Desktop.dll
|
||||
/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/bin/Debug/net8.0/Avalonia.Diagnostics.dll
|
||||
/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/bin/Debug/net8.0/Avalonia.Fonts.Inter.dll
|
||||
/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/bin/Debug/net8.0/Avalonia.FreeDesktop.dll
|
||||
/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/bin/Debug/net8.0/Avalonia.Native.dll
|
||||
/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/bin/Debug/net8.0/Avalonia.Remote.Protocol.dll
|
||||
/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/bin/Debug/net8.0/Avalonia.Skia.dll
|
||||
/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/bin/Debug/net8.0/Avalonia.Themes.Fluent.dll
|
||||
/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/bin/Debug/net8.0/Avalonia.Themes.Simple.dll
|
||||
/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/bin/Debug/net8.0/Avalonia.Win32.dll
|
||||
/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/bin/Debug/net8.0/Avalonia.X11.dll
|
||||
/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/bin/Debug/net8.0/HarfBuzzSharp.dll
|
||||
/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/bin/Debug/net8.0/MicroCom.Runtime.dll
|
||||
/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/bin/Debug/net8.0/SkiaSharp.dll
|
||||
/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/bin/Debug/net8.0/System.IO.Pipelines.dll
|
||||
/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/bin/Debug/net8.0/Tmds.DBus.Protocol.dll
|
||||
/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/bin/Debug/net8.0/runtimes/win-arm64/native/av_libglesv2.dll
|
||||
/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/bin/Debug/net8.0/runtimes/win-x64/native/av_libglesv2.dll
|
||||
/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/bin/Debug/net8.0/runtimes/win-x86/native/av_libglesv2.dll
|
||||
/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/bin/Debug/net8.0/runtimes/osx/native/libAvaloniaNative.dylib
|
||||
/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/bin/Debug/net8.0/runtimes/linux-arm/native/libHarfBuzzSharp.so
|
||||
/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/bin/Debug/net8.0/runtimes/linux-arm64/native/libHarfBuzzSharp.so
|
||||
/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/bin/Debug/net8.0/runtimes/linux-musl-x64/native/libHarfBuzzSharp.so
|
||||
/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/bin/Debug/net8.0/runtimes/linux-x64/native/libHarfBuzzSharp.so
|
||||
/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/bin/Debug/net8.0/runtimes/osx/native/libHarfBuzzSharp.dylib
|
||||
/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/bin/Debug/net8.0/runtimes/win-arm64/native/libHarfBuzzSharp.dll
|
||||
/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/bin/Debug/net8.0/runtimes/win-x64/native/libHarfBuzzSharp.dll
|
||||
/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/bin/Debug/net8.0/runtimes/win-x86/native/libHarfBuzzSharp.dll
|
||||
/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/bin/Debug/net8.0/runtimes/linux-arm/native/libSkiaSharp.so
|
||||
/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/bin/Debug/net8.0/runtimes/linux-arm64/native/libSkiaSharp.so
|
||||
/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/bin/Debug/net8.0/runtimes/linux-musl-x64/native/libSkiaSharp.so
|
||||
/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/bin/Debug/net8.0/runtimes/linux-x64/native/libSkiaSharp.so
|
||||
/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/bin/Debug/net8.0/runtimes/osx/native/libSkiaSharp.dylib
|
||||
/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/bin/Debug/net8.0/runtimes/win-arm64/native/libSkiaSharp.dll
|
||||
/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/bin/Debug/net8.0/runtimes/win-x64/native/libSkiaSharp.dll
|
||||
/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/bin/Debug/net8.0/runtimes/win-x86/native/libSkiaSharp.dll
|
||||
/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/obj/Debug/net8.0/BuggyCalculator.csproj.AssemblyReference.cache
|
||||
/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/obj/Debug/net8.0/Avalonia/Resources.Inputs.cache
|
||||
/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/obj/Debug/net8.0/Avalonia/resources
|
||||
/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/obj/Debug/net8.0/BuggyCalculator.GeneratedMSBuildEditorConfig.editorconfig
|
||||
/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/obj/Debug/net8.0/BuggyCalculator.AssemblyInfoInputs.cache
|
||||
/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/obj/Debug/net8.0/BuggyCalculator.AssemblyInfo.cs
|
||||
/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/obj/Debug/net8.0/BuggyCalculator.csproj.CoreCompileInputs.cache
|
||||
/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/obj/Debug/net8.0/Avalonia/BuggyCalculator.dll
|
||||
/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/obj/Debug/net8.0/Avalonia/BuggyCalculator.pdb
|
||||
/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/obj/Debug/net8.0/refint/Avalonia/BuggyCalculator.dll
|
||||
/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/obj/Debug/net8.0/BuggyCal.429E98AD.Up2Date
|
||||
/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/obj/Debug/net8.0/BuggyCalculator.genruntimeconfig.cache
|
||||
/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/obj/Debug/net8.0/ref/BuggyCalculator.dll
|
BIN
BuggyCalculator/obj/Debug/net8.0/BuggyCalculator.dll
Normal file
BIN
BuggyCalculator/obj/Debug/net8.0/BuggyCalculator.dll
Normal file
Binary file not shown.
@ -0,0 +1 @@
|
||||
200fb2e8ddcc7afc6a5e13227ad0aa5e62dce672f507bfb5bb5c793fcb528832
|
BIN
BuggyCalculator/obj/Debug/net8.0/BuggyCalculator.pdb
Normal file
BIN
BuggyCalculator/obj/Debug/net8.0/BuggyCalculator.pdb
Normal file
Binary file not shown.
BIN
BuggyCalculator/obj/Debug/net8.0/apphost
Executable file
BIN
BuggyCalculator/obj/Debug/net8.0/apphost
Executable file
Binary file not shown.
BIN
BuggyCalculator/obj/Debug/net8.0/ref/BuggyCalculator.dll
Normal file
BIN
BuggyCalculator/obj/Debug/net8.0/ref/BuggyCalculator.dll
Normal file
Binary file not shown.
Binary file not shown.
BIN
BuggyCalculator/obj/Debug/net8.0/refint/BuggyCalculator.dll
Normal file
BIN
BuggyCalculator/obj/Debug/net8.0/refint/BuggyCalculator.dll
Normal file
Binary file not shown.
1557
BuggyCalculator/obj/project.assets.json
Normal file
1557
BuggyCalculator/obj/project.assets.json
Normal file
File diff suppressed because it is too large
Load Diff
39
BuggyCalculator/obj/project.nuget.cache
Normal file
39
BuggyCalculator/obj/project.nuget.cache
Normal file
@ -0,0 +1,39 @@
|
||||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "TM4OyopHt0s=",
|
||||
"success": true,
|
||||
"projectFilePath": "/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/BuggyCalculator.csproj",
|
||||
"expectedPackageFiles": [
|
||||
"/Users/rinchi/.nuget/packages/avalonia/11.1.0/avalonia.11.1.0.nupkg.sha512",
|
||||
"/Users/rinchi/.nuget/packages/avalonia.angle.windows.natives/2.1.22045.20230930/avalonia.angle.windows.natives.2.1.22045.20230930.nupkg.sha512",
|
||||
"/Users/rinchi/.nuget/packages/avalonia.buildservices/0.0.29/avalonia.buildservices.0.0.29.nupkg.sha512",
|
||||
"/Users/rinchi/.nuget/packages/avalonia.controls.colorpicker/11.1.0/avalonia.controls.colorpicker.11.1.0.nupkg.sha512",
|
||||
"/Users/rinchi/.nuget/packages/avalonia.controls.datagrid/11.1.0/avalonia.controls.datagrid.11.1.0.nupkg.sha512",
|
||||
"/Users/rinchi/.nuget/packages/avalonia.desktop/11.1.0/avalonia.desktop.11.1.0.nupkg.sha512",
|
||||
"/Users/rinchi/.nuget/packages/avalonia.diagnostics/11.1.0/avalonia.diagnostics.11.1.0.nupkg.sha512",
|
||||
"/Users/rinchi/.nuget/packages/avalonia.fonts.inter/11.1.0/avalonia.fonts.inter.11.1.0.nupkg.sha512",
|
||||
"/Users/rinchi/.nuget/packages/avalonia.freedesktop/11.1.0/avalonia.freedesktop.11.1.0.nupkg.sha512",
|
||||
"/Users/rinchi/.nuget/packages/avalonia.native/11.1.0/avalonia.native.11.1.0.nupkg.sha512",
|
||||
"/Users/rinchi/.nuget/packages/avalonia.remote.protocol/11.1.0/avalonia.remote.protocol.11.1.0.nupkg.sha512",
|
||||
"/Users/rinchi/.nuget/packages/avalonia.skia/11.1.0/avalonia.skia.11.1.0.nupkg.sha512",
|
||||
"/Users/rinchi/.nuget/packages/avalonia.themes.fluent/11.1.0/avalonia.themes.fluent.11.1.0.nupkg.sha512",
|
||||
"/Users/rinchi/.nuget/packages/avalonia.themes.simple/11.1.0/avalonia.themes.simple.11.1.0.nupkg.sha512",
|
||||
"/Users/rinchi/.nuget/packages/avalonia.win32/11.1.0/avalonia.win32.11.1.0.nupkg.sha512",
|
||||
"/Users/rinchi/.nuget/packages/avalonia.x11/11.1.0/avalonia.x11.11.1.0.nupkg.sha512",
|
||||
"/Users/rinchi/.nuget/packages/harfbuzzsharp/7.3.0.2/harfbuzzsharp.7.3.0.2.nupkg.sha512",
|
||||
"/Users/rinchi/.nuget/packages/harfbuzzsharp.nativeassets.linux/7.3.0.2/harfbuzzsharp.nativeassets.linux.7.3.0.2.nupkg.sha512",
|
||||
"/Users/rinchi/.nuget/packages/harfbuzzsharp.nativeassets.macos/7.3.0.2/harfbuzzsharp.nativeassets.macos.7.3.0.2.nupkg.sha512",
|
||||
"/Users/rinchi/.nuget/packages/harfbuzzsharp.nativeassets.webassembly/7.3.0.2/harfbuzzsharp.nativeassets.webassembly.7.3.0.2.nupkg.sha512",
|
||||
"/Users/rinchi/.nuget/packages/harfbuzzsharp.nativeassets.win32/7.3.0.2/harfbuzzsharp.nativeassets.win32.7.3.0.2.nupkg.sha512",
|
||||
"/Users/rinchi/.nuget/packages/microcom.runtime/0.11.0/microcom.runtime.0.11.0.nupkg.sha512",
|
||||
"/Users/rinchi/.nuget/packages/skiasharp/2.88.8/skiasharp.2.88.8.nupkg.sha512",
|
||||
"/Users/rinchi/.nuget/packages/skiasharp.nativeassets.linux/2.88.8/skiasharp.nativeassets.linux.2.88.8.nupkg.sha512",
|
||||
"/Users/rinchi/.nuget/packages/skiasharp.nativeassets.macos/2.88.8/skiasharp.nativeassets.macos.2.88.8.nupkg.sha512",
|
||||
"/Users/rinchi/.nuget/packages/skiasharp.nativeassets.webassembly/2.88.8/skiasharp.nativeassets.webassembly.2.88.8.nupkg.sha512",
|
||||
"/Users/rinchi/.nuget/packages/skiasharp.nativeassets.win32/2.88.8/skiasharp.nativeassets.win32.2.88.8.nupkg.sha512",
|
||||
"/Users/rinchi/.nuget/packages/system.io.pipelines/6.0.0/system.io.pipelines.6.0.0.nupkg.sha512",
|
||||
"/Users/rinchi/.nuget/packages/system.numerics.vectors/4.5.0/system.numerics.vectors.4.5.0.nupkg.sha512",
|
||||
"/Users/rinchi/.nuget/packages/tmds.dbus.protocol/0.16.0/tmds.dbus.protocol.0.16.0.nupkg.sha512"
|
||||
],
|
||||
"logs": []
|
||||
}
|
1
BuggyCalculator/obj/project.packagespec.json
Normal file
1
BuggyCalculator/obj/project.packagespec.json
Normal file
@ -0,0 +1 @@
|
||||
"restore":{"projectUniqueName":"/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/BuggyCalculator.csproj","projectName":"BuggyCalculator","projectPath":"/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/BuggyCalculator.csproj","outputPath":"/Users/rinchi/RiderProjects/bbcalk/BuggyCalculator/obj/","projectStyle":"PackageReference","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.1.0, )"},"Avalonia.Desktop":{"target":"Package","version":"[11.1.0, )"},"Avalonia.Diagnostics":{"target":"Package","version":"[11.1.0, )"},"Avalonia.Fonts.Inter":{"target":"Package","version":"[11.1.0, )"},"Avalonia.Themes.Fluent":{"target":"Package","version":"[11.1.0, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"/usr/local/share/dotnet/sdk/8.0.402/PortableRuntimeIdentifierGraph.json"}}
|
1
BuggyCalculator/obj/rider.project.model.nuget.info
Normal file
1
BuggyCalculator/obj/rider.project.model.nuget.info
Normal file
@ -0,0 +1 @@
|
||||
17387388457249053
|
1
BuggyCalculator/obj/rider.project.restore.info
Normal file
1
BuggyCalculator/obj/rider.project.restore.info
Normal file
@ -0,0 +1 @@
|
||||
17387388457249053
|
Loading…
Reference in New Issue
Block a user