initial setup

This commit is contained in:
Simon Plüss 2025-10-25 17:13:15 +02:00
commit ce7e815945
103 changed files with 2981 additions and 0 deletions

13
.idea/.idea.SCRUM-Timer/.idea/.gitignore generated vendored Normal file
View File

@ -0,0 +1,13 @@
# Default ignored files
/shelf/
/workspace.xml
# Rider ignored files
/.idea.SCRUM-Timer.iml
/projectSettingsUpdater.xml
/contentModel.xml
/modules.xml
# Editor-based HTTP Client requests
/httpRequests/
# Datasource local storage ignored files
/dataSources/
/dataSources.local.xml

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="AvaloniaProject">
<option name="projectPerEditor">
<map>
<entry key="SCRUM-Timer/Views/MainWindow.axaml" value="SCRUM-Timer/SCRUM-Timer.csproj" />
</map>
</option>
</component>
</project>

View File

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="Encoding" addBOMForNewFiles="with BOM under Windows, with no BOM otherwise" />
</project>

View 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.SCRUM-Timer/.idea/vcs.xml generated Normal file
View 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
SCRUM-Timer.sln Normal file
View File

@ -0,0 +1,16 @@

Microsoft Visual Studio Solution File, Format Version 12.00
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SCRUM-Timer", "SCRUM-Timer\SCRUM-Timer.csproj", "{3AF6FA6C-FC4E-4495-B82B-71771022B682}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{3AF6FA6C-FC4E-4495-B82B-71771022B682}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{3AF6FA6C-FC4E-4495-B82B-71771022B682}.Debug|Any CPU.Build.0 = Debug|Any CPU
{3AF6FA6C-FC4E-4495-B82B-71771022B682}.Release|Any CPU.ActiveCfg = Release|Any CPU
{3AF6FA6C-FC4E-4495-B82B-71771022B682}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal

15
SCRUM-Timer/App.axaml Normal file
View File

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

47
SCRUM-Timer/App.axaml.cs Normal file
View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 172 KiB

21
SCRUM-Timer/Program.cs Normal file
View File

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

View File

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

View File

@ -0,0 +1,30 @@
using System;
using Avalonia.Controls;
using Avalonia.Controls.Templates;
using SCRUM_Timer.ViewModels;
namespace SCRUM_Timer;
public class ViewLocator : IDataTemplate
{
public Control? Build(object? param)
{
if (param is null)
return null;
var name = param.GetType().FullName!.Replace("ViewModel", "View", StringComparison.Ordinal);
var type = Type.GetType(name);
if (type != null)
{
return (Control)Activator.CreateInstance(type)!;
}
return new TextBlock { Text = "Not Found: " + name };
}
public bool Match(object? data)
{
return data is ViewModelBase;
}
}

View File

@ -0,0 +1,6 @@
namespace SCRUM_Timer.ViewModels;
public partial class MainWindowViewModel : ViewModelBase
{
public string Greeting { get; } = "Welcome to Avalonia!";
}

View File

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

View File

@ -0,0 +1,20 @@
<Window xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:vm="using:SCRUM_Timer.ViewModels"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
x:Class="SCRUM_Timer.Views.MainWindow"
x:DataType="vm:MainWindowViewModel"
Icon="/Assets/avalonia-logo.ico"
Title="SCRUM_Timer">
<Design.DataContext>
<!-- This only sets the DataContext for the previewer in an IDE,
to set the actual DataContext for runtime, set the DataContext property in code (look at App.axaml.cs) -->
<vm:MainWindowViewModel/>
</Design.DataContext>
<TextBlock Text="{Binding Greeting}" HorizontalAlignment="Center" VerticalAlignment="Center"/>
</Window>

View File

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

18
SCRUM-Timer/app.manifest Normal file
View File

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

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,660 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v9.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v9.0": {
"SCRUM-Timer/1.0.0": {
"dependencies": {
"Avalonia": "11.3.6",
"Avalonia.Desktop": "11.3.6",
"Avalonia.Diagnostics": "11.3.6",
"Avalonia.Fonts.Inter": "11.3.6",
"Avalonia.Themes.Fluent": "11.3.6",
"CommunityToolkit.Mvvm": "8.2.1"
},
"runtime": {
"SCRUM-Timer.dll": {}
}
},
"Avalonia/11.3.6": {
"dependencies": {
"Avalonia.BuildServices": "0.0.31",
"Avalonia.Remote.Protocol": "11.3.6",
"MicroCom.Runtime": "0.11.0"
},
"runtime": {
"lib/net8.0/Avalonia.Base.dll": {
"assemblyVersion": "11.3.6.0",
"fileVersion": "11.3.6.0"
},
"lib/net8.0/Avalonia.Controls.dll": {
"assemblyVersion": "11.3.6.0",
"fileVersion": "11.3.6.0"
},
"lib/net8.0/Avalonia.DesignerSupport.dll": {
"assemblyVersion": "0.7.0.0",
"fileVersion": "0.7.0.0"
},
"lib/net8.0/Avalonia.Dialogs.dll": {
"assemblyVersion": "11.3.6.0",
"fileVersion": "11.3.6.0"
},
"lib/net8.0/Avalonia.Markup.Xaml.dll": {
"assemblyVersion": "11.3.6.0",
"fileVersion": "11.3.6.0"
},
"lib/net8.0/Avalonia.Markup.dll": {
"assemblyVersion": "11.3.6.0",
"fileVersion": "11.3.6.0"
},
"lib/net8.0/Avalonia.Metal.dll": {
"assemblyVersion": "11.3.6.0",
"fileVersion": "11.3.6.0"
},
"lib/net8.0/Avalonia.MicroCom.dll": {
"assemblyVersion": "11.3.6.0",
"fileVersion": "11.3.6.0"
},
"lib/net8.0/Avalonia.OpenGL.dll": {
"assemblyVersion": "11.3.6.0",
"fileVersion": "11.3.6.0"
},
"lib/net8.0/Avalonia.Vulkan.dll": {
"assemblyVersion": "11.3.6.0",
"fileVersion": "11.3.6.0"
},
"lib/net8.0/Avalonia.dll": {
"assemblyVersion": "11.3.6.0",
"fileVersion": "11.3.6.0"
}
}
},
"Avalonia.Angle.Windows.Natives/2.1.25547.20250602": {
"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.31": {},
"Avalonia.Controls.ColorPicker/11.3.6": {
"dependencies": {
"Avalonia": "11.3.6",
"Avalonia.Remote.Protocol": "11.3.6"
},
"runtime": {
"lib/net8.0/Avalonia.Controls.ColorPicker.dll": {
"assemblyVersion": "11.3.6.0",
"fileVersion": "11.3.6.0"
}
}
},
"Avalonia.Desktop/11.3.6": {
"dependencies": {
"Avalonia": "11.3.6",
"Avalonia.Native": "11.3.6",
"Avalonia.Skia": "11.3.6",
"Avalonia.Win32": "11.3.6",
"Avalonia.X11": "11.3.6"
},
"runtime": {
"lib/net8.0/Avalonia.Desktop.dll": {
"assemblyVersion": "11.3.6.0",
"fileVersion": "11.3.6.0"
}
}
},
"Avalonia.Diagnostics/11.3.6": {
"dependencies": {
"Avalonia": "11.3.6",
"Avalonia.Controls.ColorPicker": "11.3.6",
"Avalonia.Themes.Simple": "11.3.6"
},
"runtime": {
"lib/net8.0/Avalonia.Diagnostics.dll": {
"assemblyVersion": "11.3.6.0",
"fileVersion": "11.3.6.0"
}
}
},
"Avalonia.Fonts.Inter/11.3.6": {
"dependencies": {
"Avalonia": "11.3.6"
},
"runtime": {
"lib/net8.0/Avalonia.Fonts.Inter.dll": {
"assemblyVersion": "11.3.6.0",
"fileVersion": "11.3.6.0"
}
}
},
"Avalonia.FreeDesktop/11.3.6": {
"dependencies": {
"Avalonia": "11.3.6",
"Tmds.DBus.Protocol": "0.21.2"
},
"runtime": {
"lib/net8.0/Avalonia.FreeDesktop.dll": {
"assemblyVersion": "11.3.6.0",
"fileVersion": "11.3.6.0"
}
}
},
"Avalonia.Native/11.3.6": {
"dependencies": {
"Avalonia": "11.3.6"
},
"runtime": {
"lib/net8.0/Avalonia.Native.dll": {
"assemblyVersion": "11.3.6.0",
"fileVersion": "11.3.6.0"
}
},
"runtimeTargets": {
"runtimes/osx/native/libAvaloniaNative.dylib": {
"rid": "osx",
"assetType": "native",
"fileVersion": "0.0.0.0"
}
}
},
"Avalonia.Remote.Protocol/11.3.6": {
"runtime": {
"lib/net8.0/Avalonia.Remote.Protocol.dll": {
"assemblyVersion": "11.3.6.0",
"fileVersion": "11.3.6.0"
}
}
},
"Avalonia.Skia/11.3.6": {
"dependencies": {
"Avalonia": "11.3.6",
"HarfBuzzSharp": "8.3.1.1",
"HarfBuzzSharp.NativeAssets.Linux": "8.3.1.1",
"HarfBuzzSharp.NativeAssets.WebAssembly": "8.3.1.1",
"SkiaSharp": "2.88.9",
"SkiaSharp.NativeAssets.Linux": "2.88.9",
"SkiaSharp.NativeAssets.WebAssembly": "2.88.9"
},
"runtime": {
"lib/net8.0/Avalonia.Skia.dll": {
"assemblyVersion": "11.3.6.0",
"fileVersion": "11.3.6.0"
}
}
},
"Avalonia.Themes.Fluent/11.3.6": {
"dependencies": {
"Avalonia": "11.3.6"
},
"runtime": {
"lib/net8.0/Avalonia.Themes.Fluent.dll": {
"assemblyVersion": "11.3.6.0",
"fileVersion": "11.3.6.0"
}
}
},
"Avalonia.Themes.Simple/11.3.6": {
"dependencies": {
"Avalonia": "11.3.6"
},
"runtime": {
"lib/net8.0/Avalonia.Themes.Simple.dll": {
"assemblyVersion": "11.3.6.0",
"fileVersion": "11.3.6.0"
}
}
},
"Avalonia.Win32/11.3.6": {
"dependencies": {
"Avalonia": "11.3.6",
"Avalonia.Angle.Windows.Natives": "2.1.25547.20250602"
},
"runtime": {
"lib/net8.0/Avalonia.Win32.Automation.dll": {
"assemblyVersion": "11.3.6.0",
"fileVersion": "11.3.6.0"
},
"lib/net8.0/Avalonia.Win32.dll": {
"assemblyVersion": "11.3.6.0",
"fileVersion": "11.3.6.0"
}
}
},
"Avalonia.X11/11.3.6": {
"dependencies": {
"Avalonia": "11.3.6",
"Avalonia.FreeDesktop": "11.3.6",
"Avalonia.Skia": "11.3.6"
},
"runtime": {
"lib/net8.0/Avalonia.X11.dll": {
"assemblyVersion": "11.3.6.0",
"fileVersion": "11.3.6.0"
}
}
},
"CommunityToolkit.Mvvm/8.2.1": {
"runtime": {
"lib/net6.0/CommunityToolkit.Mvvm.dll": {
"assemblyVersion": "8.2.0.0",
"fileVersion": "8.2.1.1"
}
}
},
"HarfBuzzSharp/8.3.1.1": {
"dependencies": {
"HarfBuzzSharp.NativeAssets.Win32": "8.3.1.1",
"HarfBuzzSharp.NativeAssets.macOS": "8.3.1.1"
},
"runtime": {
"lib/net8.0/HarfBuzzSharp.dll": {
"assemblyVersion": "1.0.0.0",
"fileVersion": "8.3.1.1"
}
}
},
"HarfBuzzSharp.NativeAssets.Linux/8.3.1.1": {
"runtimeTargets": {
"runtimes/linux-arm/native/libHarfBuzzSharp.so": {
"rid": "linux-arm",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/linux-arm64/native/libHarfBuzzSharp.so": {
"rid": "linux-arm64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/linux-loongarch64/native/libHarfBuzzSharp.so": {
"rid": "linux-loongarch64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/linux-musl-arm/native/libHarfBuzzSharp.so": {
"rid": "linux-musl-arm",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/linux-musl-arm64/native/libHarfBuzzSharp.so": {
"rid": "linux-musl-arm64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/linux-musl-loongarch64/native/libHarfBuzzSharp.so": {
"rid": "linux-musl-loongarch64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/linux-musl-riscv64/native/libHarfBuzzSharp.so": {
"rid": "linux-musl-riscv64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/linux-musl-x64/native/libHarfBuzzSharp.so": {
"rid": "linux-musl-x64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/linux-riscv64/native/libHarfBuzzSharp.so": {
"rid": "linux-riscv64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/linux-x64/native/libHarfBuzzSharp.so": {
"rid": "linux-x64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/linux-x86/native/libHarfBuzzSharp.so": {
"rid": "linux-x86",
"assetType": "native",
"fileVersion": "0.0.0.0"
}
}
},
"HarfBuzzSharp.NativeAssets.macOS/8.3.1.1": {
"runtimeTargets": {
"runtimes/osx/native/libHarfBuzzSharp.dylib": {
"rid": "osx",
"assetType": "native",
"fileVersion": "0.0.0.0"
}
}
},
"HarfBuzzSharp.NativeAssets.WebAssembly/8.3.1.1": {},
"HarfBuzzSharp.NativeAssets.Win32/8.3.1.1": {
"runtimeTargets": {
"runtimes/win-arm64/native/libHarfBuzzSharp.dll": {
"rid": "win-arm64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/win-x64/native/libHarfBuzzSharp.dll": {
"rid": "win-x64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/win-x86/native/libHarfBuzzSharp.dll": {
"rid": "win-x86",
"assetType": "native",
"fileVersion": "0.0.0.0"
}
}
},
"MicroCom.Runtime/0.11.0": {
"runtime": {
"lib/net5.0/MicroCom.Runtime.dll": {
"assemblyVersion": "0.11.0.0",
"fileVersion": "0.11.0.0"
}
}
},
"SkiaSharp/2.88.9": {
"dependencies": {
"SkiaSharp.NativeAssets.Win32": "2.88.9",
"SkiaSharp.NativeAssets.macOS": "2.88.9"
},
"runtime": {
"lib/net6.0/SkiaSharp.dll": {
"assemblyVersion": "2.88.0.0",
"fileVersion": "2.88.9.0"
}
}
},
"SkiaSharp.NativeAssets.Linux/2.88.9": {
"dependencies": {
"SkiaSharp": "2.88.9"
},
"runtimeTargets": {
"runtimes/linux-arm/native/libSkiaSharp.so": {
"rid": "linux-arm",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/linux-arm64/native/libSkiaSharp.so": {
"rid": "linux-arm64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/linux-musl-x64/native/libSkiaSharp.so": {
"rid": "linux-musl-x64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/linux-x64/native/libSkiaSharp.so": {
"rid": "linux-x64",
"assetType": "native",
"fileVersion": "0.0.0.0"
}
}
},
"SkiaSharp.NativeAssets.macOS/2.88.9": {
"runtimeTargets": {
"runtimes/osx/native/libSkiaSharp.dylib": {
"rid": "osx",
"assetType": "native",
"fileVersion": "0.0.0.0"
}
}
},
"SkiaSharp.NativeAssets.WebAssembly/2.88.9": {},
"SkiaSharp.NativeAssets.Win32/2.88.9": {
"runtimeTargets": {
"runtimes/win-arm64/native/libSkiaSharp.dll": {
"rid": "win-arm64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/win-x64/native/libSkiaSharp.dll": {
"rid": "win-x64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/win-x86/native/libSkiaSharp.dll": {
"rid": "win-x86",
"assetType": "native",
"fileVersion": "0.0.0.0"
}
}
},
"System.IO.Pipelines/8.0.0": {},
"Tmds.DBus.Protocol/0.21.2": {
"dependencies": {
"System.IO.Pipelines": "8.0.0"
},
"runtime": {
"lib/net8.0/Tmds.DBus.Protocol.dll": {
"assemblyVersion": "0.21.2.0",
"fileVersion": "0.21.2.0"
}
}
}
}
},
"libraries": {
"SCRUM-Timer/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"Avalonia/11.3.6": {
"type": "package",
"serviceable": true,
"sha512": "sha512-h8V6Cmklaak2h+WVp5gcsprwmrCLQylfNmIQnOQyiETzOazKGmFhlcf+K9zoupxfkhOQXsbSJpb/elyCkrjlig==",
"path": "avalonia/11.3.6",
"hashPath": "avalonia.11.3.6.nupkg.sha512"
},
"Avalonia.Angle.Windows.Natives/2.1.25547.20250602": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ZL0VLc4s9rvNNFt19Pxm5UNAkmKNylugAwJPX9ulXZ6JWs/l6XZihPWWTyezaoNOVyEPU8YbURtW7XMAtqXH5A==",
"path": "avalonia.angle.windows.natives/2.1.25547.20250602",
"hashPath": "avalonia.angle.windows.natives.2.1.25547.20250602.nupkg.sha512"
},
"Avalonia.BuildServices/0.0.31": {
"type": "package",
"serviceable": true,
"sha512": "sha512-KmCN6Hc+45q4OnF10ge450yVUvWuxU6bdQiyKqiSvrHKpahNrEdk0kG6Ip6GHk2SKOCttGQuA206JVdkldEENg==",
"path": "avalonia.buildservices/0.0.31",
"hashPath": "avalonia.buildservices.0.0.31.nupkg.sha512"
},
"Avalonia.Controls.ColorPicker/11.3.6": {
"type": "package",
"serviceable": true,
"sha512": "sha512-zgJFM7P7hOS9qcuSUqL2tjBFIsi03qiwAztYjtjtKjfBvLBOrVcmL5qHwjfjeLRLtjHprjMraAHtu3O2vi+51g==",
"path": "avalonia.controls.colorpicker/11.3.6",
"hashPath": "avalonia.controls.colorpicker.11.3.6.nupkg.sha512"
},
"Avalonia.Desktop/11.3.6": {
"type": "package",
"serviceable": true,
"sha512": "sha512-+r/3tPkf2E7rxbKYYd5bRq9vdaPCvuhf+PAKFmKqdQrzjWPSP4/Dg0VDIcgPsv+A2Tq82x67ZUJGQyhiLfsMVQ==",
"path": "avalonia.desktop/11.3.6",
"hashPath": "avalonia.desktop.11.3.6.nupkg.sha512"
},
"Avalonia.Diagnostics/11.3.6": {
"type": "package",
"serviceable": true,
"sha512": "sha512-iOGrfU/0TudsfHARpsreVt5V1oaer838IghYdgZjlOvGKmh5J1uc5GOSBmBodUpuPDE78wmdVrJZLC57qsndzg==",
"path": "avalonia.diagnostics/11.3.6",
"hashPath": "avalonia.diagnostics.11.3.6.nupkg.sha512"
},
"Avalonia.Fonts.Inter/11.3.6": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ASuCuosS8elNsRxNpdZE/UrmMSh1wtwoqRDEgpdcbVuMRUH/8ElCur5PdyWhJSwIit/YXaS+xb2xQAGOnvT45w==",
"path": "avalonia.fonts.inter/11.3.6",
"hashPath": "avalonia.fonts.inter.11.3.6.nupkg.sha512"
},
"Avalonia.FreeDesktop/11.3.6": {
"type": "package",
"serviceable": true,
"sha512": "sha512-vI+m3r5GRoF0CS1EpMG+gx9qCQVkCwlsHyW6+UWxNNpL2IZ9S3zPt/GNgG6vFrhZpBTsoG+OZnZ9XPRT+KkqUw==",
"path": "avalonia.freedesktop/11.3.6",
"hashPath": "avalonia.freedesktop.11.3.6.nupkg.sha512"
},
"Avalonia.Native/11.3.6": {
"type": "package",
"serviceable": true,
"sha512": "sha512-QaIKZLfquJ12Rpwo9pQ2V24TfpJI2tQJeYe235G4cJnI3d699DvMUcntQA1VLDCwAK3xHOSTyoN737oU3f9ErQ==",
"path": "avalonia.native/11.3.6",
"hashPath": "avalonia.native.11.3.6.nupkg.sha512"
},
"Avalonia.Remote.Protocol/11.3.6": {
"type": "package",
"serviceable": true,
"sha512": "sha512-i1lW1ZA5Ghe19kbPiC2pMq48P/9CcOWi8hFj0Y8UZr/czCQok3YJRwU5z8vKsJ5xsMvzpPf+GO/6Qu9Dy2yLvg==",
"path": "avalonia.remote.protocol/11.3.6",
"hashPath": "avalonia.remote.protocol.11.3.6.nupkg.sha512"
},
"Avalonia.Skia/11.3.6": {
"type": "package",
"serviceable": true,
"sha512": "sha512-qM1qGCUxPpheLwQ6gr+I4h2dhFz3L9Apa1MhiUsUELzSI6FqfzX2+67M8f/6gOHAtrjwxkjpanNW6eF9zW+g7Q==",
"path": "avalonia.skia/11.3.6",
"hashPath": "avalonia.skia.11.3.6.nupkg.sha512"
},
"Avalonia.Themes.Fluent/11.3.6": {
"type": "package",
"serviceable": true,
"sha512": "sha512-YQ3x66qgMqDxbQoLTqYKGA7yXnxi8fzDL9+CITPrXrVZimlemWmjYqE0NWgd2c78gpp7dNEV4eYzwbbr8bH+9A==",
"path": "avalonia.themes.fluent/11.3.6",
"hashPath": "avalonia.themes.fluent.11.3.6.nupkg.sha512"
},
"Avalonia.Themes.Simple/11.3.6": {
"type": "package",
"serviceable": true,
"sha512": "sha512-MuwYjUI9qMdu7TYyJbBntWlZRJWi6QmAYhMEBEdDgiEO0yUpTiKNLpYSn+MS8Xh9Jm9N4krclBigW7FYJkqLOA==",
"path": "avalonia.themes.simple/11.3.6",
"hashPath": "avalonia.themes.simple.11.3.6.nupkg.sha512"
},
"Avalonia.Win32/11.3.6": {
"type": "package",
"serviceable": true,
"sha512": "sha512-KHft8utwz5ktcwHdEAwAPfNGdwqoE0qrwVmPjGYggqJAI4PuaiATkdSObSCXfxRVs2H9aqVB8hiEVB+9rvkxYw==",
"path": "avalonia.win32/11.3.6",
"hashPath": "avalonia.win32.11.3.6.nupkg.sha512"
},
"Avalonia.X11/11.3.6": {
"type": "package",
"serviceable": true,
"sha512": "sha512-6NKE1py4zbkMJg++2rMJHyjEXNo2JU0Nj9nEMnXh2gyHyfclhULIGIqmpsLvJ7Ljv1+6iLDqArCFRn+mi1hANw==",
"path": "avalonia.x11/11.3.6",
"hashPath": "avalonia.x11.11.3.6.nupkg.sha512"
},
"CommunityToolkit.Mvvm/8.2.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-I24ofWVEdplxYjUez9/bljv/qb8r8Ccj6cvYXHexNBegLaD3iDy3QrzAAOYVMmfGWIXxlU1ZtECQNfU07+6hXQ==",
"path": "communitytoolkit.mvvm/8.2.1",
"hashPath": "communitytoolkit.mvvm.8.2.1.nupkg.sha512"
},
"HarfBuzzSharp/8.3.1.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-tLZN66oe/uiRPTZfrCU4i8ScVGwqHNh5MHrXj0yVf4l7Mz0FhTGnQ71RGySROTmdognAs0JtluHkL41pIabWuQ==",
"path": "harfbuzzsharp/8.3.1.1",
"hashPath": "harfbuzzsharp.8.3.1.1.nupkg.sha512"
},
"HarfBuzzSharp.NativeAssets.Linux/8.3.1.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-3EZ1mpIiKWRLL5hUYA82ZHteeDIVaEA/Z0rA/wU6tjx6crcAkJnBPwDXZugBSfo8+J3EznvRJf49uMsqYfKrHg==",
"path": "harfbuzzsharp.nativeassets.linux/8.3.1.1",
"hashPath": "harfbuzzsharp.nativeassets.linux.8.3.1.1.nupkg.sha512"
},
"HarfBuzzSharp.NativeAssets.macOS/8.3.1.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-jbtCsgftcaFLCA13tVKo5iWdElJScrulLTKJre36O4YQTIlwDtPPqhRZNk+Y0vv4D1gxbscasGRucUDfS44ofQ==",
"path": "harfbuzzsharp.nativeassets.macos/8.3.1.1",
"hashPath": "harfbuzzsharp.nativeassets.macos.8.3.1.1.nupkg.sha512"
},
"HarfBuzzSharp.NativeAssets.WebAssembly/8.3.1.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-loJweK2u/mH/3C2zBa0ggJlITIszOkK64HLAZB7FUT670dTg965whLFYHDQo69NmC4+d9UN0icLC9VHidXaVCA==",
"path": "harfbuzzsharp.nativeassets.webassembly/8.3.1.1",
"hashPath": "harfbuzzsharp.nativeassets.webassembly.8.3.1.1.nupkg.sha512"
},
"HarfBuzzSharp.NativeAssets.Win32/8.3.1.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-UsJtQsfAJoFDZrXc4hCUfRPMqccfKZ0iumJ/upcUjz/cmsTgVFGNEL5yaJWmkqsuFYdMWbj/En5/kS4PFl9hBA==",
"path": "harfbuzzsharp.nativeassets.win32/8.3.1.1",
"hashPath": "harfbuzzsharp.nativeassets.win32.8.3.1.1.nupkg.sha512"
},
"MicroCom.Runtime/0.11.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-MEnrZ3UIiH40hjzMDsxrTyi8dtqB5ziv3iBeeU4bXsL/7NLSal9F1lZKpK+tfBRnUoDSdtcW3KufE4yhATOMCA==",
"path": "microcom.runtime/0.11.0",
"hashPath": "microcom.runtime.0.11.0.nupkg.sha512"
},
"SkiaSharp/2.88.9": {
"type": "package",
"serviceable": true,
"sha512": "sha512-3MD5VHjXXieSHCleRLuaTXmL2pD0mB7CcOB1x2kA1I4bhptf4e3R27iM93264ZYuAq6mkUyX5XbcxnZvMJYc1Q==",
"path": "skiasharp/2.88.9",
"hashPath": "skiasharp.2.88.9.nupkg.sha512"
},
"SkiaSharp.NativeAssets.Linux/2.88.9": {
"type": "package",
"serviceable": true,
"sha512": "sha512-cWSaJKVPWAaT/WIn9c8T5uT/l4ETwHxNJTkEOtNKjphNo8AW6TF9O32aRkxqw3l8GUdUo66Bu7EiqtFh/XG0Zg==",
"path": "skiasharp.nativeassets.linux/2.88.9",
"hashPath": "skiasharp.nativeassets.linux.2.88.9.nupkg.sha512"
},
"SkiaSharp.NativeAssets.macOS/2.88.9": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Nv5spmKc4505Ep7oUoJ5vp3KweFpeNqxpyGDWyeEPTX2uR6S6syXIm3gj75dM0YJz7NPvcix48mR5laqs8dPuA==",
"path": "skiasharp.nativeassets.macos/2.88.9",
"hashPath": "skiasharp.nativeassets.macos.2.88.9.nupkg.sha512"
},
"SkiaSharp.NativeAssets.WebAssembly/2.88.9": {
"type": "package",
"serviceable": true,
"sha512": "sha512-kt06RccBHSnAs2wDYdBSfsjIDbY3EpsOVqnlDgKdgvyuRA8ZFDaHRdWNx1VHjGgYzmnFCGiTJBnXFl5BqGwGnA==",
"path": "skiasharp.nativeassets.webassembly/2.88.9",
"hashPath": "skiasharp.nativeassets.webassembly.2.88.9.nupkg.sha512"
},
"SkiaSharp.NativeAssets.Win32/2.88.9": {
"type": "package",
"serviceable": true,
"sha512": "sha512-wb2kYgU7iy84nQLYZwMeJXixvK++GoIuECjU4ECaUKNuflyRlJKyiRhN1MAHswvlvzuvkrjRWlK0Za6+kYQK7w==",
"path": "skiasharp.nativeassets.win32/2.88.9",
"hashPath": "skiasharp.nativeassets.win32.2.88.9.nupkg.sha512"
},
"System.IO.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.21.2": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ScSMrUrrw8px4kK1Glh0fZv/HQUlg1078bNXNPfRPKQ3WbRzV9HpsydYEOgSoMK5LWICMf2bMwIFH0pGjxjcMA==",
"path": "tmds.dbus.protocol/0.21.2",
"hashPath": "tmds.dbus.protocol.0.21.2.nupkg.sha512"
}
}
}

Binary file not shown.

Binary file not shown.

View File

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

Binary file not shown.

Binary file not shown.

View File

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

View File

@ -0,0 +1 @@
7be804fb4c4d70c07cd355df37f44682e49fb02c91ec4b5bac1a97c2ec4aa8f6

View File

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

Binary file not shown.

View File

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

View File

@ -0,0 +1 @@
ff027bd6251e3898e8c6b6d1b563f0800d4547e86a10a206ac851d04b86fa3c9

View File

@ -0,0 +1,28 @@
is_global = true
build_property.AvaloniaNameGeneratorIsEnabled = true
build_property.AvaloniaNameGeneratorBehavior = InitializeComponent
build_property.AvaloniaNameGeneratorDefaultFieldModifier = internal
build_property.AvaloniaNameGeneratorFilterByPath = *
build_property.AvaloniaNameGeneratorFilterByNamespace = *
build_property.AvaloniaNameGeneratorViewFileNamingStrategy = NamespaceAndClassName
build_property.AvaloniaNameGeneratorAttachDevTools = true
build_property.TargetFramework = net9.0
build_property.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 = SCRUM-Timer
build_property.ProjectDir = /home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/
build_property.EnableComHosting =
build_property.EnableGeneratedComInterfaceComImportInterop =
build_property.EffectiveAnalysisLevelStyle = 9.0
build_property.EnableCodeStyleSeverity =
[/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/App.axaml]
build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml
[/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/Views/MainWindow.axaml]
build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml

Binary file not shown.

View File

@ -0,0 +1 @@
ed5e419401851bc07d88b265880a1f775762ecb24292737dbe7e3e15fcd238fa

View File

@ -0,0 +1,74 @@
/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/bin/Debug/net9.0/SCRUM-Timer
/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/bin/Debug/net9.0/SCRUM-Timer.deps.json
/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/bin/Debug/net9.0/SCRUM-Timer.runtimeconfig.json
/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/bin/Debug/net9.0/SCRUM-Timer.dll
/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/bin/Debug/net9.0/SCRUM-Timer.pdb
/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/bin/Debug/net9.0/Avalonia.Base.dll
/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/bin/Debug/net9.0/Avalonia.Controls.dll
/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/bin/Debug/net9.0/Avalonia.DesignerSupport.dll
/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/bin/Debug/net9.0/Avalonia.Dialogs.dll
/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/bin/Debug/net9.0/Avalonia.Markup.Xaml.dll
/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/bin/Debug/net9.0/Avalonia.Markup.dll
/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/bin/Debug/net9.0/Avalonia.Metal.dll
/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/bin/Debug/net9.0/Avalonia.MicroCom.dll
/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/bin/Debug/net9.0/Avalonia.OpenGL.dll
/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/bin/Debug/net9.0/Avalonia.Vulkan.dll
/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/bin/Debug/net9.0/Avalonia.dll
/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/bin/Debug/net9.0/Avalonia.Controls.ColorPicker.dll
/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/bin/Debug/net9.0/Avalonia.Desktop.dll
/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/bin/Debug/net9.0/Avalonia.Diagnostics.dll
/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/bin/Debug/net9.0/Avalonia.Fonts.Inter.dll
/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/bin/Debug/net9.0/Avalonia.FreeDesktop.dll
/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/bin/Debug/net9.0/Avalonia.Native.dll
/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/bin/Debug/net9.0/Avalonia.Remote.Protocol.dll
/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/bin/Debug/net9.0/Avalonia.Skia.dll
/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/bin/Debug/net9.0/Avalonia.Themes.Fluent.dll
/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/bin/Debug/net9.0/Avalonia.Themes.Simple.dll
/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/bin/Debug/net9.0/Avalonia.Win32.Automation.dll
/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/bin/Debug/net9.0/Avalonia.Win32.dll
/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/bin/Debug/net9.0/Avalonia.X11.dll
/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/bin/Debug/net9.0/CommunityToolkit.Mvvm.dll
/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/bin/Debug/net9.0/HarfBuzzSharp.dll
/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/bin/Debug/net9.0/MicroCom.Runtime.dll
/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/bin/Debug/net9.0/SkiaSharp.dll
/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/bin/Debug/net9.0/Tmds.DBus.Protocol.dll
/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/bin/Debug/net9.0/runtimes/win-arm64/native/av_libglesv2.dll
/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/bin/Debug/net9.0/runtimes/win-x64/native/av_libglesv2.dll
/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/bin/Debug/net9.0/runtimes/win-x86/native/av_libglesv2.dll
/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/bin/Debug/net9.0/runtimes/osx/native/libAvaloniaNative.dylib
/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/bin/Debug/net9.0/runtimes/linux-arm/native/libHarfBuzzSharp.so
/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/bin/Debug/net9.0/runtimes/linux-arm64/native/libHarfBuzzSharp.so
/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/bin/Debug/net9.0/runtimes/linux-loongarch64/native/libHarfBuzzSharp.so
/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/bin/Debug/net9.0/runtimes/linux-musl-arm/native/libHarfBuzzSharp.so
/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/bin/Debug/net9.0/runtimes/linux-musl-arm64/native/libHarfBuzzSharp.so
/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/bin/Debug/net9.0/runtimes/linux-musl-loongarch64/native/libHarfBuzzSharp.so
/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/bin/Debug/net9.0/runtimes/linux-musl-riscv64/native/libHarfBuzzSharp.so
/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/bin/Debug/net9.0/runtimes/linux-musl-x64/native/libHarfBuzzSharp.so
/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/bin/Debug/net9.0/runtimes/linux-riscv64/native/libHarfBuzzSharp.so
/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/bin/Debug/net9.0/runtimes/linux-x64/native/libHarfBuzzSharp.so
/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/bin/Debug/net9.0/runtimes/linux-x86/native/libHarfBuzzSharp.so
/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/bin/Debug/net9.0/runtimes/osx/native/libHarfBuzzSharp.dylib
/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/bin/Debug/net9.0/runtimes/win-arm64/native/libHarfBuzzSharp.dll
/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/bin/Debug/net9.0/runtimes/win-x64/native/libHarfBuzzSharp.dll
/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/bin/Debug/net9.0/runtimes/win-x86/native/libHarfBuzzSharp.dll
/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/bin/Debug/net9.0/runtimes/linux-arm/native/libSkiaSharp.so
/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/bin/Debug/net9.0/runtimes/linux-arm64/native/libSkiaSharp.so
/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/bin/Debug/net9.0/runtimes/linux-musl-x64/native/libSkiaSharp.so
/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/bin/Debug/net9.0/runtimes/linux-x64/native/libSkiaSharp.so
/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/bin/Debug/net9.0/runtimes/osx/native/libSkiaSharp.dylib
/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/bin/Debug/net9.0/runtimes/win-arm64/native/libSkiaSharp.dll
/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/bin/Debug/net9.0/runtimes/win-x64/native/libSkiaSharp.dll
/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/bin/Debug/net9.0/runtimes/win-x86/native/libSkiaSharp.dll
/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/obj/Debug/net9.0/SCRUM-Timer.csproj.AssemblyReference.cache
/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/obj/Debug/net9.0/Avalonia/Resources.Inputs.cache
/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/obj/Debug/net9.0/Avalonia/resources
/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/obj/Debug/net9.0/SCRUM-Timer.GeneratedMSBuildEditorConfig.editorconfig
/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/obj/Debug/net9.0/SCRUM-Timer.AssemblyInfoInputs.cache
/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/obj/Debug/net9.0/SCRUM-Timer.AssemblyInfo.cs
/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/obj/Debug/net9.0/SCRUM-Timer.csproj.CoreCompileInputs.cache
/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/obj/Debug/net9.0/SCRUM-Ti.B56B89DD.Up2Date
/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/obj/Debug/net9.0/SCRUM-Timer.dll
/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/obj/Debug/net9.0/refint/SCRUM-Timer.dll
/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/obj/Debug/net9.0/SCRUM-Timer.pdb
/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/obj/Debug/net9.0/SCRUM-Timer.genruntimeconfig.cache
/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/obj/Debug/net9.0/ref/SCRUM-Timer.dll

Binary file not shown.

View File

@ -0,0 +1 @@
4bb17a8975b8090cab8a308bb6212ec107f6e407f79f13da8eb4d570c5d66078

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,94 @@
{
"format": 1,
"restore": {
"/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer.csproj": {}
},
"projects": {
"/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer.csproj",
"projectName": "SCRUM-Timer",
"projectPath": "/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer.csproj",
"packagesPath": "/home/simon/.nuget/packages/",
"outputPath": "/home/simon/Programming/Schule/IM_K2 Agile Vorgehensweisen/SCRUM-Timer/SCRUM-Timer/SCRUM-Timer/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
"/home/simon/.nuget/NuGet/NuGet.Config"
],
"originalTargetFrameworks": [
"net9.0"
],
"sources": {
"/usr/lib/dotnet/library-packs": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net9.0": {
"targetAlias": "net9.0",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
},
"restoreAuditProperties": {
"enableAudit": "true",
"auditLevel": "low",
"auditMode": "direct"
},
"SdkAnalysisLevel": "9.0.100"
},
"frameworks": {
"net9.0": {
"targetAlias": "net9.0",
"dependencies": {
"Avalonia": {
"target": "Package",
"version": "[11.3.6, )"
},
"Avalonia.Desktop": {
"target": "Package",
"version": "[11.3.6, )"
},
"Avalonia.Diagnostics": {
"target": "Package",
"version": "[11.3.6, )"
},
"Avalonia.Fonts.Inter": {
"target": "Package",
"version": "[11.3.6, )"
},
"Avalonia.Themes.Fluent": {
"target": "Package",
"version": "[11.3.6, )"
},
"CommunityToolkit.Mvvm": {
"target": "Package",
"version": "[8.2.1, )"
}
},
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48",
"net481"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "/usr/lib/dotnet/sdk/9.0.111/PortableRuntimeIdentifierGraph.json"
}
}
}
}
}

View 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/simon/.nuget/packages/</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/home/simon/.nuget/packages/</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.14.0</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="/home/simon/.nuget/packages/" />
</ItemGroup>
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<Import Project="$(NuGetPackageRoot)skiasharp.nativeassets.webassembly/2.88.9/buildTransitive/netstandard1.0/SkiaSharp.NativeAssets.WebAssembly.props" Condition="Exists('$(NuGetPackageRoot)skiasharp.nativeassets.webassembly/2.88.9/buildTransitive/netstandard1.0/SkiaSharp.NativeAssets.WebAssembly.props')" />
<Import Project="$(NuGetPackageRoot)harfbuzzsharp.nativeassets.webassembly/8.3.1.1/buildTransitive/netstandard1.0/HarfBuzzSharp.NativeAssets.WebAssembly.props" Condition="Exists('$(NuGetPackageRoot)harfbuzzsharp.nativeassets.webassembly/8.3.1.1/buildTransitive/netstandard1.0/HarfBuzzSharp.NativeAssets.WebAssembly.props')" />
<Import Project="$(NuGetPackageRoot)avalonia/11.3.6/buildTransitive/Avalonia.props" Condition="Exists('$(NuGetPackageRoot)avalonia/11.3.6/buildTransitive/Avalonia.props')" />
</ImportGroup>
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<PkgAvalonia_BuildServices Condition=" '$(PkgAvalonia_BuildServices)' == '' ">/home/simon/.nuget/packages/avalonia.buildservices/0.0.31</PkgAvalonia_BuildServices>
<PkgAvalonia Condition=" '$(PkgAvalonia)' == '' ">/home/simon/.nuget/packages/avalonia/11.3.6</PkgAvalonia>
</PropertyGroup>
</Project>

View File

@ -0,0 +1,10 @@
<?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.9/buildTransitive/netstandard1.0/SkiaSharp.NativeAssets.WebAssembly.targets" Condition="Exists('$(NuGetPackageRoot)skiasharp.nativeassets.webassembly/2.88.9/buildTransitive/netstandard1.0/SkiaSharp.NativeAssets.WebAssembly.targets')" />
<Import Project="$(NuGetPackageRoot)harfbuzzsharp.nativeassets.webassembly/8.3.1.1/buildTransitive/netstandard1.0/HarfBuzzSharp.NativeAssets.WebAssembly.targets" Condition="Exists('$(NuGetPackageRoot)harfbuzzsharp.nativeassets.webassembly/8.3.1.1/buildTransitive/netstandard1.0/HarfBuzzSharp.NativeAssets.WebAssembly.targets')" />
<Import Project="$(NuGetPackageRoot)communitytoolkit.mvvm/8.2.1/buildTransitive/netstandard2.1/CommunityToolkit.Mvvm.targets" Condition="Exists('$(NuGetPackageRoot)communitytoolkit.mvvm/8.2.1/buildTransitive/netstandard2.1/CommunityToolkit.Mvvm.targets')" />
<Import Project="$(NuGetPackageRoot)avalonia.buildservices/0.0.31/buildTransitive/Avalonia.BuildServices.targets" Condition="Exists('$(NuGetPackageRoot)avalonia.buildservices/0.0.31/buildTransitive/Avalonia.BuildServices.targets')" />
<Import Project="$(NuGetPackageRoot)avalonia/11.3.6/buildTransitive/Avalonia.targets" Condition="Exists('$(NuGetPackageRoot)avalonia/11.3.6/buildTransitive/Avalonia.targets')" />
</ImportGroup>
</Project>

File diff suppressed because it is too large Load Diff

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