diff --git a/Components/Carousel.razor b/Components/Carousel.razor
new file mode 100644
index 0000000..3af50ce
--- /dev/null
+++ b/Components/Carousel.razor
@@ -0,0 +1,95 @@
+@using System.Timers
+@using Frontend.Libs.Generic.Carousel.Components
+
+
+
+ @if (Items != null && Items.Any())
+ {
+ var currentItem = Items[CurrentIndex];
+ var isEven = CurrentIndex % 2 == 0;
+
+
+
+
+
+
+
+
+
+
+ @_displayedText
+
+
+
+
+
+
+
+ }
+
+
+@code {
+ [Parameter] public List Items { get; set; } = new();
+ [Parameter] public int DurationSeconds { get; set; } = 3;
+
+ private int CurrentIndex { get; set; } = 0;
+ private string _displayedText = "";
+ private bool _underlineExpanded = false;
+ private Timer? _timer;
+
+ protected override void OnInitialized()
+ {
+ if (Items.Any())
+ {
+ StartSlideTimer();
+ StartAnimationSequence(Items[CurrentIndex].Text);
+ }
+ }
+
+ private void StartSlideTimer()
+ {
+ _timer = new Timer(DurationSeconds * 1000);
+ _timer.Elapsed += OnSlideTimerElapsed;
+ _timer.AutoReset = true;
+ _timer.Start();
+ }
+
+ private void OnSlideTimerElapsed(object? sender, ElapsedEventArgs e)
+ {
+ InvokeAsync(() =>
+ {
+ CurrentIndex = (CurrentIndex + 1) % Items.Count;
+ StartAnimationSequence(Items[CurrentIndex].Text);
+ StateHasChanged();
+ });
+ }
+
+ private async void StartAnimationSequence(string text)
+ {
+ // Reset state
+ _displayedText = "";
+ _underlineExpanded = false;
+ StateHasChanged();
+
+ // Typing Effect
+ foreach (var c in text)
+ {
+ _displayedText += c;
+ StateHasChanged();
+ await Task.Delay(50); // Typing speed
+ }
+
+ // Expand Underline
+ _underlineExpanded = true;
+ StateHasChanged();
+ }
+
+ public void Dispose()
+ {
+ _timer?.Dispose();
+ }
+}
\ No newline at end of file
diff --git a/Components/CarouselItem.cs b/Components/CarouselItem.cs
new file mode 100644
index 0000000..a3531f3
--- /dev/null
+++ b/Components/CarouselItem.cs
@@ -0,0 +1,7 @@
+namespace Frontend.Libs.Generic.Carousel.Components;
+
+public class CarouselItem
+{
+ public string ImageUrl { get; set; } = string.Empty;
+ public string Text { get; set; } = string.Empty;
+}
diff --git a/_Imports.razor b/_Imports.razor
new file mode 100644
index 0000000..2b9557c
--- /dev/null
+++ b/_Imports.razor
@@ -0,0 +1 @@
+@using Microsoft.AspNetCore.Components.Web
\ No newline at end of file
diff --git a/bin/Debug/net9.0/Carousel.deps.json b/bin/Debug/net9.0/Carousel.deps.json
new file mode 100644
index 0000000..d034916
--- /dev/null
+++ b/bin/Debug/net9.0/Carousel.deps.json
@@ -0,0 +1,228 @@
+{
+ "runtimeTarget": {
+ "name": ".NETCoreApp,Version=v9.0",
+ "signature": ""
+ },
+ "compilationOptions": {},
+ "targets": {
+ ".NETCoreApp,Version=v9.0": {
+ "Carousel/1.0.0": {
+ "dependencies": {
+ "Microsoft.AspNetCore.Components.Web": "9.0.0"
+ },
+ "runtime": {
+ "Carousel.dll": {}
+ }
+ },
+ "Microsoft.AspNetCore.Authorization/9.0.0": {
+ "dependencies": {
+ "Microsoft.AspNetCore.Metadata": "9.0.0",
+ "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
+ "Microsoft.Extensions.Options": "9.0.0"
+ },
+ "runtime": {
+ "lib/net9.0/Microsoft.AspNetCore.Authorization.dll": {
+ "assemblyVersion": "9.0.0.0",
+ "fileVersion": "9.0.24.52903"
+ }
+ }
+ },
+ "Microsoft.AspNetCore.Components/9.0.0": {
+ "dependencies": {
+ "Microsoft.AspNetCore.Authorization": "9.0.0",
+ "Microsoft.AspNetCore.Components.Analyzers": "9.0.0"
+ },
+ "runtime": {
+ "lib/net9.0/Microsoft.AspNetCore.Components.dll": {
+ "assemblyVersion": "9.0.0.0",
+ "fileVersion": "9.0.24.52903"
+ }
+ }
+ },
+ "Microsoft.AspNetCore.Components.Analyzers/9.0.0": {},
+ "Microsoft.AspNetCore.Components.Forms/9.0.0": {
+ "dependencies": {
+ "Microsoft.AspNetCore.Components": "9.0.0"
+ },
+ "runtime": {
+ "lib/net9.0/Microsoft.AspNetCore.Components.Forms.dll": {
+ "assemblyVersion": "9.0.0.0",
+ "fileVersion": "9.0.24.52903"
+ }
+ }
+ },
+ "Microsoft.AspNetCore.Components.Web/9.0.0": {
+ "dependencies": {
+ "Microsoft.AspNetCore.Components": "9.0.0",
+ "Microsoft.AspNetCore.Components.Forms": "9.0.0",
+ "Microsoft.Extensions.DependencyInjection": "9.0.0",
+ "Microsoft.Extensions.Primitives": "9.0.0",
+ "Microsoft.JSInterop": "9.0.0"
+ },
+ "runtime": {
+ "lib/net9.0/Microsoft.AspNetCore.Components.Web.dll": {
+ "assemblyVersion": "9.0.0.0",
+ "fileVersion": "9.0.24.52903"
+ }
+ }
+ },
+ "Microsoft.AspNetCore.Metadata/9.0.0": {
+ "runtime": {
+ "lib/net9.0/Microsoft.AspNetCore.Metadata.dll": {
+ "assemblyVersion": "9.0.0.0",
+ "fileVersion": "9.0.24.52903"
+ }
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection/9.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0"
+ },
+ "runtime": {
+ "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": {
+ "assemblyVersion": "9.0.0.0",
+ "fileVersion": "9.0.24.52809"
+ }
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": {
+ "runtime": {
+ "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
+ "assemblyVersion": "9.0.0.0",
+ "fileVersion": "9.0.24.52809"
+ }
+ }
+ },
+ "Microsoft.Extensions.Logging.Abstractions/9.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0"
+ },
+ "runtime": {
+ "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": {
+ "assemblyVersion": "9.0.0.0",
+ "fileVersion": "9.0.24.52809"
+ }
+ }
+ },
+ "Microsoft.Extensions.Options/9.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
+ "Microsoft.Extensions.Primitives": "9.0.0"
+ },
+ "runtime": {
+ "lib/net9.0/Microsoft.Extensions.Options.dll": {
+ "assemblyVersion": "9.0.0.0",
+ "fileVersion": "9.0.24.52809"
+ }
+ }
+ },
+ "Microsoft.Extensions.Primitives/9.0.0": {
+ "runtime": {
+ "lib/net9.0/Microsoft.Extensions.Primitives.dll": {
+ "assemblyVersion": "9.0.0.0",
+ "fileVersion": "9.0.24.52809"
+ }
+ }
+ },
+ "Microsoft.JSInterop/9.0.0": {
+ "runtime": {
+ "lib/net9.0/Microsoft.JSInterop.dll": {
+ "assemblyVersion": "9.0.0.0",
+ "fileVersion": "9.0.24.52903"
+ }
+ }
+ }
+ }
+ },
+ "libraries": {
+ "Carousel/1.0.0": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Authorization/9.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-qDJlBC5pUQ/3o6/C6Vuo9CGKtV5TAe5AdKeHvDR2bgmw8vwPxsAy3KG5eU0i1C+iAUNbmq+iDTbiKt16f9pRiA==",
+ "path": "microsoft.aspnetcore.authorization/9.0.0",
+ "hashPath": "microsoft.aspnetcore.authorization.9.0.0.nupkg.sha512"
+ },
+ "Microsoft.AspNetCore.Components/9.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-xKzY0LRqWrwuPVzKIF9k1kC21NrLmIE2qPhhKlInEAdYqNe8qcMoPWZy7fo1uScHkz5g73nTqDDra3+aAV7mTQ==",
+ "path": "microsoft.aspnetcore.components/9.0.0",
+ "hashPath": "microsoft.aspnetcore.components.9.0.0.nupkg.sha512"
+ },
+ "Microsoft.AspNetCore.Components.Analyzers/9.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-maOE1qlJ9hf1Fb7PhFLw9bgP9mWckuDOcn1uKNt9/msdJG2YHl3cPRHojYa6CxliGHIXL8Da4qPgeUc4CaOoeg==",
+ "path": "microsoft.aspnetcore.components.analyzers/9.0.0",
+ "hashPath": "microsoft.aspnetcore.components.analyzers.9.0.0.nupkg.sha512"
+ },
+ "Microsoft.AspNetCore.Components.Forms/9.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-orHGxDkbAa9syuaLVtZWOhNC8IddnCsDqpFaKjBj4zxe+B8cd6kcNf/t4Lv5hWBQ7mODiRCzEfKBnpU+GCHvbw==",
+ "path": "microsoft.aspnetcore.components.forms/9.0.0",
+ "hashPath": "microsoft.aspnetcore.components.forms.9.0.0.nupkg.sha512"
+ },
+ "Microsoft.AspNetCore.Components.Web/9.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ZfJwwV05T+268cnJsO6yfi9oXYLe3ATRAEk0VZgBMptA5HVsduIsnFLjhNOYT7+I8NolxDEx1CEW8yKe5xTb6Q==",
+ "path": "microsoft.aspnetcore.components.web/9.0.0",
+ "hashPath": "microsoft.aspnetcore.components.web.9.0.0.nupkg.sha512"
+ },
+ "Microsoft.AspNetCore.Metadata/9.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-X81C891nMuWgzNHyZ0C3s+blSDxRHzQHDFYQoOKtFvFuxGq3BbkLbc5CfiCqIzA/sWIfz6u8sGBgwntQwBJWBw==",
+ "path": "microsoft.aspnetcore.metadata/9.0.0",
+ "hashPath": "microsoft.aspnetcore.metadata.9.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.DependencyInjection/9.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-MCPrg7v3QgNMr0vX4vzRXvkNGgLg8vKWX0nKCWUxu2uPyMsaRgiRc1tHBnbTcfJMhMKj2slE/j2M9oGkd25DNw==",
+ "path": "microsoft.extensions.dependencyinjection/9.0.0",
+ "hashPath": "microsoft.extensions.dependencyinjection.9.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-+6f2qv2a3dLwd5w6JanPIPs47CxRbnk+ZocMJUhv9NxP88VlOcJYZs9jY+MYSjxvady08bUZn6qgiNh7DadGgg==",
+ "path": "microsoft.extensions.dependencyinjection.abstractions/9.0.0",
+ "hashPath": "microsoft.extensions.dependencyinjection.abstractions.9.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Logging.Abstractions/9.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-g0UfujELzlLbHoVG8kPKVBaW470Ewi+jnptGS9KUi6jcb+k2StujtK3m26DFSGGwQ/+bVgZfsWqNzlP6YOejvw==",
+ "path": "microsoft.extensions.logging.abstractions/9.0.0",
+ "hashPath": "microsoft.extensions.logging.abstractions.9.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Options/9.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-y2146b3jrPI3Q0lokKXdKLpmXqakYbDIPDV6r3M8SqvSf45WwOTzkyfDpxnZXJsJQEpAsAqjUq5Pu8RCJMjubg==",
+ "path": "microsoft.extensions.options/9.0.0",
+ "hashPath": "microsoft.extensions.options.9.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Primitives/9.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-N3qEBzmLMYiASUlKxxFIISP4AiwuPTHF5uCh+2CWSwwzAJiIYx0kBJsS30cp1nvhSySFAVi30jecD307jV+8Kg==",
+ "path": "microsoft.extensions.primitives/9.0.0",
+ "hashPath": "microsoft.extensions.primitives.9.0.0.nupkg.sha512"
+ },
+ "Microsoft.JSInterop/9.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-efQKxKUPe8OuH0hRiYsvBJkhhPzIYFNcr9+3wanQ7Bch/wr1JWNd90GYiPLtkSHepE1zMEoaLkAxi5N5/eyC4Q==",
+ "path": "microsoft.jsinterop/9.0.0",
+ "hashPath": "microsoft.jsinterop.9.0.0.nupkg.sha512"
+ }
+ }
+}
\ No newline at end of file
diff --git a/bin/Debug/net9.0/Carousel.dll b/bin/Debug/net9.0/Carousel.dll
new file mode 100644
index 0000000..a687ec8
Binary files /dev/null and b/bin/Debug/net9.0/Carousel.dll differ
diff --git a/bin/Debug/net9.0/Carousel.pdb b/bin/Debug/net9.0/Carousel.pdb
new file mode 100644
index 0000000..fbb5f22
Binary files /dev/null and b/bin/Debug/net9.0/Carousel.pdb differ
diff --git a/bin/Debug/net9.0/Carousel.staticwebassets.endpoints.json b/bin/Debug/net9.0/Carousel.staticwebassets.endpoints.json
new file mode 100644
index 0000000..5576e88
--- /dev/null
+++ b/bin/Debug/net9.0/Carousel.staticwebassets.endpoints.json
@@ -0,0 +1 @@
+{"Version":1,"ManifestType":"Build","Endpoints":[]}
\ No newline at end of file
diff --git a/obj/Carousel.csproj.nuget.dgspec.json b/obj/Carousel.csproj.nuget.dgspec.json
new file mode 100644
index 0000000..5f4c849
--- /dev/null
+++ b/obj/Carousel.csproj.nuget.dgspec.json
@@ -0,0 +1,74 @@
+{
+ "format": 1,
+ "restore": {
+ "/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Carousel/Carousel.csproj": {}
+ },
+ "projects": {
+ "/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Carousel/Carousel.csproj": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Carousel/Carousel.csproj",
+ "projectName": "Carousel",
+ "projectPath": "/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Carousel/Carousel.csproj",
+ "packagesPath": "/home/yla/.nuget/packages/",
+ "outputPath": "/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Carousel/obj/",
+ "projectStyle": "PackageReference",
+ "configFilePaths": [
+ "/home/yla/.nuget/NuGet/NuGet.Config"
+ ],
+ "originalTargetFrameworks": [
+ "net9.0"
+ ],
+ "sources": {
+ "/usr/share/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.300"
+ },
+ "frameworks": {
+ "net9.0": {
+ "targetAlias": "net9.0",
+ "dependencies": {
+ "Microsoft.AspNetCore.Components.Web": {
+ "target": "Package",
+ "version": "[9.0.0, )"
+ }
+ },
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48",
+ "net481"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "frameworkReferences": {
+ "Microsoft.NETCore.App": {
+ "privateAssets": "all"
+ }
+ },
+ "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/9.0.306/PortableRuntimeIdentifierGraph.json"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/obj/Carousel.csproj.nuget.g.props b/obj/Carousel.csproj.nuget.g.props
new file mode 100644
index 0000000..37b7f19
--- /dev/null
+++ b/obj/Carousel.csproj.nuget.g.props
@@ -0,0 +1,15 @@
+
+
+
+ True
+ NuGet
+ $(MSBuildThisFileDirectory)project.assets.json
+ /home/yla/.nuget/packages/
+ /home/yla/.nuget/packages/
+ PackageReference
+ 6.14.0
+
+
+
+
+
\ No newline at end of file
diff --git a/obj/Carousel.csproj.nuget.g.targets b/obj/Carousel.csproj.nuget.g.targets
new file mode 100644
index 0000000..c75e92e
--- /dev/null
+++ b/obj/Carousel.csproj.nuget.g.targets
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/obj/Debug/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs b/obj/Debug/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs
new file mode 100644
index 0000000..9e76325
--- /dev/null
+++ b/obj/Debug/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs
@@ -0,0 +1,4 @@
+//
+using System;
+using System.Reflection;
+[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v9.0", FrameworkDisplayName = ".NET 9.0")]
diff --git a/obj/Debug/net9.0/Carousel.AssemblyInfo.cs b/obj/Debug/net9.0/Carousel.AssemblyInfo.cs
new file mode 100644
index 0000000..01cf2ab
--- /dev/null
+++ b/obj/Debug/net9.0/Carousel.AssemblyInfo.cs
@@ -0,0 +1,22 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Reflection;
+
+[assembly: System.Reflection.AssemblyCompanyAttribute("Carousel")]
+[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+9415c99e159f3b88e9591815d8a027f064570701")]
+[assembly: System.Reflection.AssemblyProductAttribute("Carousel")]
+[assembly: System.Reflection.AssemblyTitleAttribute("Carousel")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
+
+// Generated by the MSBuild WriteCodeFragment class.
+
diff --git a/obj/Debug/net9.0/Carousel.AssemblyInfoInputs.cache b/obj/Debug/net9.0/Carousel.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..f9f0220
--- /dev/null
+++ b/obj/Debug/net9.0/Carousel.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+fb0c3ab09602c2328bdbb35d0105cddf037829167e62139cff56e74c79ca72cc
diff --git a/obj/Debug/net9.0/Carousel.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net9.0/Carousel.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..e57c108
--- /dev/null
+++ b/obj/Debug/net9.0/Carousel.GeneratedMSBuildEditorConfig.editorconfig
@@ -0,0 +1,29 @@
+is_global = 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,browser
+build_property.RootNamespace = Carousel
+build_property.RootNamespace = Carousel
+build_property.ProjectDir = /mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Carousel/
+build_property.EnableComHosting =
+build_property.EnableGeneratedComInterfaceComImportInterop =
+build_property.RazorLangVersion = 9.0
+build_property.SupportLocalizedComponentNames =
+build_property.GenerateRazorMetadataSourceChecksumAttributes =
+build_property.MSBuildProjectDirectory = /mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Carousel
+build_property._RazorSourceGeneratorDebug =
+build_property.EffectiveAnalysisLevelStyle = 9.0
+build_property.EnableCodeStyleSeverity =
+
+[/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Carousel/Components/Carousel.razor]
+build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9DYXJvdXNlbC5yYXpvcg==
+build_metadata.AdditionalFiles.CssScope =
+
+[/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Carousel/_Imports.razor]
+build_metadata.AdditionalFiles.TargetPath = X0ltcG9ydHMucmF6b3I=
+build_metadata.AdditionalFiles.CssScope =
diff --git a/obj/Debug/net9.0/Carousel.GlobalUsings.g.cs b/obj/Debug/net9.0/Carousel.GlobalUsings.g.cs
new file mode 100644
index 0000000..8578f3d
--- /dev/null
+++ b/obj/Debug/net9.0/Carousel.GlobalUsings.g.cs
@@ -0,0 +1,8 @@
+//
+global using global::System;
+global using global::System.Collections.Generic;
+global using global::System.IO;
+global using global::System.Linq;
+global using global::System.Net.Http;
+global using global::System.Threading;
+global using global::System.Threading.Tasks;
diff --git a/obj/Debug/net9.0/Carousel.assets.cache b/obj/Debug/net9.0/Carousel.assets.cache
new file mode 100644
index 0000000..1d6468b
Binary files /dev/null and b/obj/Debug/net9.0/Carousel.assets.cache differ
diff --git a/obj/Debug/net9.0/Carousel.csproj.AssemblyReference.cache b/obj/Debug/net9.0/Carousel.csproj.AssemblyReference.cache
new file mode 100644
index 0000000..ef80a19
Binary files /dev/null and b/obj/Debug/net9.0/Carousel.csproj.AssemblyReference.cache differ
diff --git a/obj/Debug/net9.0/Carousel.csproj.CoreCompileInputs.cache b/obj/Debug/net9.0/Carousel.csproj.CoreCompileInputs.cache
new file mode 100644
index 0000000..f5fc447
--- /dev/null
+++ b/obj/Debug/net9.0/Carousel.csproj.CoreCompileInputs.cache
@@ -0,0 +1 @@
+bff25668c555d1de25fee4b089773b97cfb85db257d9d0f64653fdf63eb9d6af
diff --git a/obj/Debug/net9.0/Carousel.csproj.FileListAbsolute.txt b/obj/Debug/net9.0/Carousel.csproj.FileListAbsolute.txt
new file mode 100644
index 0000000..c98b1db
--- /dev/null
+++ b/obj/Debug/net9.0/Carousel.csproj.FileListAbsolute.txt
@@ -0,0 +1,28 @@
+/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Carousel/bin/Debug/net9.0/Carousel.staticwebassets.endpoints.json
+/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Carousel/bin/Debug/net9.0/Carousel.deps.json
+/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Carousel/bin/Debug/net9.0/Carousel.dll
+/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Carousel/bin/Debug/net9.0/Carousel.pdb
+/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Carousel/obj/Debug/net9.0/Carousel.csproj.AssemblyReference.cache
+/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Carousel/obj/Debug/net9.0/rpswa.dswa.cache.json
+/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Carousel/obj/Debug/net9.0/Carousel.GeneratedMSBuildEditorConfig.editorconfig
+/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Carousel/obj/Debug/net9.0/Carousel.AssemblyInfoInputs.cache
+/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Carousel/obj/Debug/net9.0/Carousel.AssemblyInfo.cs
+/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Carousel/obj/Debug/net9.0/Carousel.csproj.CoreCompileInputs.cache
+/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Carousel/obj/Debug/net9.0/rjimswa.dswa.cache.json
+/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Carousel/obj/Debug/net9.0/rjsmrazor.dswa.cache.json
+/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Carousel/obj/Debug/net9.0/rjsmcshtml.dswa.cache.json
+/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Carousel/obj/Debug/net9.0/scopedcss/bundle/Carousel.styles.css
+/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Carousel/obj/Debug/net9.0/staticwebassets.build.json
+/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Carousel/obj/Debug/net9.0/staticwebassets.build.json.cache
+/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Carousel/obj/Debug/net9.0/staticwebassets.development.json
+/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Carousel/obj/Debug/net9.0/staticwebassets.build.endpoints.json
+/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Carousel/obj/Debug/net9.0/staticwebassets/msbuild.Carousel.Microsoft.AspNetCore.StaticWebAssets.props
+/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Carousel/obj/Debug/net9.0/staticwebassets/msbuild.Carousel.Microsoft.AspNetCore.StaticWebAssetEndpoints.props
+/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Carousel/obj/Debug/net9.0/staticwebassets/msbuild.build.Carousel.props
+/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Carousel/obj/Debug/net9.0/staticwebassets/msbuild.buildMultiTargeting.Carousel.props
+/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Carousel/obj/Debug/net9.0/staticwebassets/msbuild.buildTransitive.Carousel.props
+/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Carousel/obj/Debug/net9.0/staticwebassets.pack.json
+/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Carousel/obj/Debug/net9.0/Carousel.dll
+/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Carousel/obj/Debug/net9.0/refint/Carousel.dll
+/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Carousel/obj/Debug/net9.0/Carousel.pdb
+/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Carousel/obj/Debug/net9.0/ref/Carousel.dll
diff --git a/obj/Debug/net9.0/Carousel.dll b/obj/Debug/net9.0/Carousel.dll
new file mode 100644
index 0000000..a687ec8
Binary files /dev/null and b/obj/Debug/net9.0/Carousel.dll differ
diff --git a/obj/Debug/net9.0/Carousel.pdb b/obj/Debug/net9.0/Carousel.pdb
new file mode 100644
index 0000000..fbb5f22
Binary files /dev/null and b/obj/Debug/net9.0/Carousel.pdb differ
diff --git a/obj/Debug/net9.0/ref/Carousel.dll b/obj/Debug/net9.0/ref/Carousel.dll
new file mode 100644
index 0000000..e84be24
Binary files /dev/null and b/obj/Debug/net9.0/ref/Carousel.dll differ
diff --git a/obj/Debug/net9.0/refint/Carousel.dll b/obj/Debug/net9.0/refint/Carousel.dll
new file mode 100644
index 0000000..e84be24
Binary files /dev/null and b/obj/Debug/net9.0/refint/Carousel.dll differ
diff --git a/obj/Debug/net9.0/rjsmcshtml.dswa.cache.json b/obj/Debug/net9.0/rjsmcshtml.dswa.cache.json
new file mode 100644
index 0000000..a97d74e
--- /dev/null
+++ b/obj/Debug/net9.0/rjsmcshtml.dswa.cache.json
@@ -0,0 +1 @@
+{"GlobalPropertiesHash":"/bRzejLO9gogoc6gDWEjjQjaA1dLrQtluiu7VYinEwg=","FingerprintPatternsHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["WY\u002BoZVt\u002Bcw7Nsx2VciOOgp\u002BQCHMM0tpDBmrjnj6QpZw=","JNzhvcYCk\u002BXtdSz\u002BM6SI3nEWzjkydggkBKyJlz221/g="],"CachedAssets":{},"CachedCopyCandidates":{}}
\ No newline at end of file
diff --git a/obj/Debug/net9.0/rjsmrazor.dswa.cache.json b/obj/Debug/net9.0/rjsmrazor.dswa.cache.json
new file mode 100644
index 0000000..ae78108
--- /dev/null
+++ b/obj/Debug/net9.0/rjsmrazor.dswa.cache.json
@@ -0,0 +1 @@
+{"GlobalPropertiesHash":"qGaGSwHMc6O98JxuYqtyYtGatlZqQlHnVYONW2cMyXI=","FingerprintPatternsHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["WY\u002BoZVt\u002Bcw7Nsx2VciOOgp\u002BQCHMM0tpDBmrjnj6QpZw=","JNzhvcYCk\u002BXtdSz\u002BM6SI3nEWzjkydggkBKyJlz221/g="],"CachedAssets":{},"CachedCopyCandidates":{}}
\ No newline at end of file
diff --git a/obj/Debug/net9.0/rpswa.dswa.cache.json b/obj/Debug/net9.0/rpswa.dswa.cache.json
new file mode 100644
index 0000000..3829a8a
--- /dev/null
+++ b/obj/Debug/net9.0/rpswa.dswa.cache.json
@@ -0,0 +1 @@
+{"GlobalPropertiesHash":"akJ4/t08nyfUPjAy7jjLL6fuJHch7eOSnshATUYDgZc=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["Jt7y05mQaV5Gd2kmtEvHzOuEpXOccU4T7UhW1AdW9Uk=","CSsJ4L3c9aXjE\u002B4Q76Xuq0T6j/XIKfRhSS51He5mpYc="],"CachedAssets":{},"CachedCopyCandidates":{}}
\ No newline at end of file
diff --git a/obj/Debug/net9.0/staticwebassets.build.endpoints.json b/obj/Debug/net9.0/staticwebassets.build.endpoints.json
new file mode 100644
index 0000000..5576e88
--- /dev/null
+++ b/obj/Debug/net9.0/staticwebassets.build.endpoints.json
@@ -0,0 +1 @@
+{"Version":1,"ManifestType":"Build","Endpoints":[]}
\ No newline at end of file
diff --git a/obj/Debug/net9.0/staticwebassets.build.json b/obj/Debug/net9.0/staticwebassets.build.json
new file mode 100644
index 0000000..e4fac02
--- /dev/null
+++ b/obj/Debug/net9.0/staticwebassets.build.json
@@ -0,0 +1 @@
+{"Version":1,"Hash":"3nBEMXwUWPbYuHpGkiQni3YM92PqdgdWM8Y9M4kpgJI=","Source":"Carousel","BasePath":"_content/Carousel","Mode":"Default","ManifestType":"Build","ReferencedProjectsConfiguration":[],"DiscoveryPatterns":[],"Assets":[],"Endpoints":[]}
\ No newline at end of file
diff --git a/obj/Debug/net9.0/staticwebassets.build.json.cache b/obj/Debug/net9.0/staticwebassets.build.json.cache
new file mode 100644
index 0000000..873451e
--- /dev/null
+++ b/obj/Debug/net9.0/staticwebassets.build.json.cache
@@ -0,0 +1 @@
+3nBEMXwUWPbYuHpGkiQni3YM92PqdgdWM8Y9M4kpgJI=
\ No newline at end of file
diff --git a/obj/Debug/net9.0/staticwebassets/msbuild.build.Carousel.props b/obj/Debug/net9.0/staticwebassets/msbuild.build.Carousel.props
new file mode 100644
index 0000000..ddaed44
--- /dev/null
+++ b/obj/Debug/net9.0/staticwebassets/msbuild.build.Carousel.props
@@ -0,0 +1,4 @@
+
+
+
+
\ No newline at end of file
diff --git a/obj/Debug/net9.0/staticwebassets/msbuild.buildMultiTargeting.Carousel.props b/obj/Debug/net9.0/staticwebassets/msbuild.buildMultiTargeting.Carousel.props
new file mode 100644
index 0000000..b3e16be
--- /dev/null
+++ b/obj/Debug/net9.0/staticwebassets/msbuild.buildMultiTargeting.Carousel.props
@@ -0,0 +1,3 @@
+
+
+
\ No newline at end of file
diff --git a/obj/Debug/net9.0/staticwebassets/msbuild.buildTransitive.Carousel.props b/obj/Debug/net9.0/staticwebassets/msbuild.buildTransitive.Carousel.props
new file mode 100644
index 0000000..d812ddb
--- /dev/null
+++ b/obj/Debug/net9.0/staticwebassets/msbuild.buildTransitive.Carousel.props
@@ -0,0 +1,3 @@
+
+
+
\ No newline at end of file
diff --git a/obj/project.assets.json b/obj/project.assets.json
new file mode 100644
index 0000000..ee8bff7
--- /dev/null
+++ b/obj/project.assets.json
@@ -0,0 +1,594 @@
+{
+ "version": 3,
+ "targets": {
+ "net9.0": {
+ "Microsoft.AspNetCore.Authorization/9.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.AspNetCore.Metadata": "9.0.0",
+ "Microsoft.Extensions.Logging.Abstractions": "9.0.0",
+ "Microsoft.Extensions.Options": "9.0.0"
+ },
+ "compile": {
+ "lib/net9.0/Microsoft.AspNetCore.Authorization.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net9.0/Microsoft.AspNetCore.Authorization.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Microsoft.AspNetCore.Components/9.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.AspNetCore.Authorization": "9.0.0",
+ "Microsoft.AspNetCore.Components.Analyzers": "9.0.0"
+ },
+ "compile": {
+ "lib/net9.0/Microsoft.AspNetCore.Components.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net9.0/Microsoft.AspNetCore.Components.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Microsoft.AspNetCore.Components.Analyzers/9.0.0": {
+ "type": "package",
+ "build": {
+ "buildTransitive/netstandard2.0/Microsoft.AspNetCore.Components.Analyzers.targets": {}
+ }
+ },
+ "Microsoft.AspNetCore.Components.Forms/9.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.AspNetCore.Components": "9.0.0"
+ },
+ "compile": {
+ "lib/net9.0/Microsoft.AspNetCore.Components.Forms.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net9.0/Microsoft.AspNetCore.Components.Forms.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Microsoft.AspNetCore.Components.Web/9.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.AspNetCore.Components": "9.0.0",
+ "Microsoft.AspNetCore.Components.Forms": "9.0.0",
+ "Microsoft.Extensions.DependencyInjection": "9.0.0",
+ "Microsoft.Extensions.Primitives": "9.0.0",
+ "Microsoft.JSInterop": "9.0.0"
+ },
+ "compile": {
+ "lib/net9.0/Microsoft.AspNetCore.Components.Web.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net9.0/Microsoft.AspNetCore.Components.Web.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Microsoft.AspNetCore.Metadata/9.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/net9.0/Microsoft.AspNetCore.Metadata.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net9.0/Microsoft.AspNetCore.Metadata.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection/9.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0"
+ },
+ "compile": {
+ "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net8.0/_._": {}
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net8.0/_._": {}
+ }
+ },
+ "Microsoft.Extensions.Logging.Abstractions/9.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0"
+ },
+ "compile": {
+ "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets": {}
+ }
+ },
+ "Microsoft.Extensions.Options/9.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
+ "Microsoft.Extensions.Primitives": "9.0.0"
+ },
+ "compile": {
+ "lib/net9.0/Microsoft.Extensions.Options.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net9.0/Microsoft.Extensions.Options.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net8.0/Microsoft.Extensions.Options.targets": {}
+ }
+ },
+ "Microsoft.Extensions.Primitives/9.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/net9.0/Microsoft.Extensions.Primitives.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net9.0/Microsoft.Extensions.Primitives.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net8.0/_._": {}
+ }
+ },
+ "Microsoft.JSInterop/9.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/net9.0/Microsoft.JSInterop.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net9.0/Microsoft.JSInterop.dll": {
+ "related": ".xml"
+ }
+ }
+ }
+ }
+ },
+ "libraries": {
+ "Microsoft.AspNetCore.Authorization/9.0.0": {
+ "sha512": "qDJlBC5pUQ/3o6/C6Vuo9CGKtV5TAe5AdKeHvDR2bgmw8vwPxsAy3KG5eU0i1C+iAUNbmq+iDTbiKt16f9pRiA==",
+ "type": "package",
+ "path": "microsoft.aspnetcore.authorization/9.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net462/Microsoft.AspNetCore.Authorization.dll",
+ "lib/net462/Microsoft.AspNetCore.Authorization.xml",
+ "lib/net9.0/Microsoft.AspNetCore.Authorization.dll",
+ "lib/net9.0/Microsoft.AspNetCore.Authorization.xml",
+ "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll",
+ "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.xml",
+ "microsoft.aspnetcore.authorization.9.0.0.nupkg.sha512",
+ "microsoft.aspnetcore.authorization.nuspec"
+ ]
+ },
+ "Microsoft.AspNetCore.Components/9.0.0": {
+ "sha512": "xKzY0LRqWrwuPVzKIF9k1kC21NrLmIE2qPhhKlInEAdYqNe8qcMoPWZy7fo1uScHkz5g73nTqDDra3+aAV7mTQ==",
+ "type": "package",
+ "path": "microsoft.aspnetcore.components/9.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "THIRD-PARTY-NOTICES.txt",
+ "lib/net9.0/Microsoft.AspNetCore.Components.dll",
+ "lib/net9.0/Microsoft.AspNetCore.Components.xml",
+ "microsoft.aspnetcore.components.9.0.0.nupkg.sha512",
+ "microsoft.aspnetcore.components.nuspec"
+ ]
+ },
+ "Microsoft.AspNetCore.Components.Analyzers/9.0.0": {
+ "sha512": "maOE1qlJ9hf1Fb7PhFLw9bgP9mWckuDOcn1uKNt9/msdJG2YHl3cPRHojYa6CxliGHIXL8Da4qPgeUc4CaOoeg==",
+ "type": "package",
+ "path": "microsoft.aspnetcore.components.analyzers/9.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "THIRD-PARTY-NOTICES.txt",
+ "analyzers/dotnet/cs/Microsoft.AspNetCore.Components.Analyzers.dll",
+ "build/netstandard2.0/Microsoft.AspNetCore.Components.Analyzers.targets",
+ "buildTransitive/netstandard2.0/Microsoft.AspNetCore.Components.Analyzers.targets",
+ "microsoft.aspnetcore.components.analyzers.9.0.0.nupkg.sha512",
+ "microsoft.aspnetcore.components.analyzers.nuspec"
+ ]
+ },
+ "Microsoft.AspNetCore.Components.Forms/9.0.0": {
+ "sha512": "orHGxDkbAa9syuaLVtZWOhNC8IddnCsDqpFaKjBj4zxe+B8cd6kcNf/t4Lv5hWBQ7mODiRCzEfKBnpU+GCHvbw==",
+ "type": "package",
+ "path": "microsoft.aspnetcore.components.forms/9.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "THIRD-PARTY-NOTICES.txt",
+ "lib/net9.0/Microsoft.AspNetCore.Components.Forms.dll",
+ "lib/net9.0/Microsoft.AspNetCore.Components.Forms.xml",
+ "microsoft.aspnetcore.components.forms.9.0.0.nupkg.sha512",
+ "microsoft.aspnetcore.components.forms.nuspec"
+ ]
+ },
+ "Microsoft.AspNetCore.Components.Web/9.0.0": {
+ "sha512": "ZfJwwV05T+268cnJsO6yfi9oXYLe3ATRAEk0VZgBMptA5HVsduIsnFLjhNOYT7+I8NolxDEx1CEW8yKe5xTb6Q==",
+ "type": "package",
+ "path": "microsoft.aspnetcore.components.web/9.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "THIRD-PARTY-NOTICES.txt",
+ "lib/net9.0/Microsoft.AspNetCore.Components.Web.dll",
+ "lib/net9.0/Microsoft.AspNetCore.Components.Web.xml",
+ "microsoft.aspnetcore.components.web.9.0.0.nupkg.sha512",
+ "microsoft.aspnetcore.components.web.nuspec"
+ ]
+ },
+ "Microsoft.AspNetCore.Metadata/9.0.0": {
+ "sha512": "X81C891nMuWgzNHyZ0C3s+blSDxRHzQHDFYQoOKtFvFuxGq3BbkLbc5CfiCqIzA/sWIfz6u8sGBgwntQwBJWBw==",
+ "type": "package",
+ "path": "microsoft.aspnetcore.metadata/9.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net462/Microsoft.AspNetCore.Metadata.dll",
+ "lib/net462/Microsoft.AspNetCore.Metadata.xml",
+ "lib/net9.0/Microsoft.AspNetCore.Metadata.dll",
+ "lib/net9.0/Microsoft.AspNetCore.Metadata.xml",
+ "lib/netstandard2.0/Microsoft.AspNetCore.Metadata.dll",
+ "lib/netstandard2.0/Microsoft.AspNetCore.Metadata.xml",
+ "microsoft.aspnetcore.metadata.9.0.0.nupkg.sha512",
+ "microsoft.aspnetcore.metadata.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.DependencyInjection/9.0.0": {
+ "sha512": "MCPrg7v3QgNMr0vX4vzRXvkNGgLg8vKWX0nKCWUxu2uPyMsaRgiRc1tHBnbTcfJMhMKj2slE/j2M9oGkd25DNw==",
+ "type": "package",
+ "path": "microsoft.extensions.dependencyinjection/9.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "PACKAGE.md",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net8.0/_._",
+ "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets",
+ "lib/net462/Microsoft.Extensions.DependencyInjection.dll",
+ "lib/net462/Microsoft.Extensions.DependencyInjection.xml",
+ "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll",
+ "lib/net8.0/Microsoft.Extensions.DependencyInjection.xml",
+ "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll",
+ "lib/net9.0/Microsoft.Extensions.DependencyInjection.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
+ "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
+ "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
+ "microsoft.extensions.dependencyinjection.9.0.0.nupkg.sha512",
+ "microsoft.extensions.dependencyinjection.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": {
+ "sha512": "+6f2qv2a3dLwd5w6JanPIPs47CxRbnk+ZocMJUhv9NxP88VlOcJYZs9jY+MYSjxvady08bUZn6qgiNh7DadGgg==",
+ "type": "package",
+ "path": "microsoft.extensions.dependencyinjection.abstractions/9.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "PACKAGE.md",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net8.0/_._",
+ "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
+ "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
+ "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
+ "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
+ "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
+ "microsoft.extensions.dependencyinjection.abstractions.9.0.0.nupkg.sha512",
+ "microsoft.extensions.dependencyinjection.abstractions.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "Microsoft.Extensions.Logging.Abstractions/9.0.0": {
+ "sha512": "g0UfujELzlLbHoVG8kPKVBaW470Ewi+jnptGS9KUi6jcb+k2StujtK3m26DFSGGwQ/+bVgZfsWqNzlP6YOejvw==",
+ "type": "package",
+ "path": "microsoft.extensions.logging.abstractions/9.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "PACKAGE.md",
+ "THIRD-PARTY-NOTICES.TXT",
+ "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll",
+ "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll",
+ "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll",
+ "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets",
+ "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets",
+ "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets",
+ "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets",
+ "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets",
+ "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll",
+ "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml",
+ "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll",
+ "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.xml",
+ "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll",
+ "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
+ "microsoft.extensions.logging.abstractions.9.0.0.nupkg.sha512",
+ "microsoft.extensions.logging.abstractions.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "Microsoft.Extensions.Options/9.0.0": {
+ "sha512": "y2146b3jrPI3Q0lokKXdKLpmXqakYbDIPDV6r3M8SqvSf45WwOTzkyfDpxnZXJsJQEpAsAqjUq5Pu8RCJMjubg==",
+ "type": "package",
+ "path": "microsoft.extensions.options/9.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "PACKAGE.md",
+ "THIRD-PARTY-NOTICES.TXT",
+ "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Options.SourceGeneration.dll",
+ "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
+ "buildTransitive/net461/Microsoft.Extensions.Options.targets",
+ "buildTransitive/net462/Microsoft.Extensions.Options.targets",
+ "buildTransitive/net8.0/Microsoft.Extensions.Options.targets",
+ "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets",
+ "buildTransitive/netstandard2.0/Microsoft.Extensions.Options.targets",
+ "lib/net462/Microsoft.Extensions.Options.dll",
+ "lib/net462/Microsoft.Extensions.Options.xml",
+ "lib/net8.0/Microsoft.Extensions.Options.dll",
+ "lib/net8.0/Microsoft.Extensions.Options.xml",
+ "lib/net9.0/Microsoft.Extensions.Options.dll",
+ "lib/net9.0/Microsoft.Extensions.Options.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
+ "lib/netstandard2.1/Microsoft.Extensions.Options.dll",
+ "lib/netstandard2.1/Microsoft.Extensions.Options.xml",
+ "microsoft.extensions.options.9.0.0.nupkg.sha512",
+ "microsoft.extensions.options.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "Microsoft.Extensions.Primitives/9.0.0": {
+ "sha512": "N3qEBzmLMYiASUlKxxFIISP4AiwuPTHF5uCh+2CWSwwzAJiIYx0kBJsS30cp1nvhSySFAVi30jecD307jV+8Kg==",
+ "type": "package",
+ "path": "microsoft.extensions.primitives/9.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "PACKAGE.md",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/Microsoft.Extensions.Primitives.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net8.0/_._",
+ "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets",
+ "lib/net462/Microsoft.Extensions.Primitives.dll",
+ "lib/net462/Microsoft.Extensions.Primitives.xml",
+ "lib/net8.0/Microsoft.Extensions.Primitives.dll",
+ "lib/net8.0/Microsoft.Extensions.Primitives.xml",
+ "lib/net9.0/Microsoft.Extensions.Primitives.dll",
+ "lib/net9.0/Microsoft.Extensions.Primitives.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
+ "microsoft.extensions.primitives.9.0.0.nupkg.sha512",
+ "microsoft.extensions.primitives.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "Microsoft.JSInterop/9.0.0": {
+ "sha512": "efQKxKUPe8OuH0hRiYsvBJkhhPzIYFNcr9+3wanQ7Bch/wr1JWNd90GYiPLtkSHepE1zMEoaLkAxi5N5/eyC4Q==",
+ "type": "package",
+ "path": "microsoft.jsinterop/9.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net9.0/Microsoft.JSInterop.dll",
+ "lib/net9.0/Microsoft.JSInterop.xml",
+ "microsoft.jsinterop.9.0.0.nupkg.sha512",
+ "microsoft.jsinterop.nuspec"
+ ]
+ }
+ },
+ "projectFileDependencyGroups": {
+ "net9.0": [
+ "Microsoft.AspNetCore.Components.Web >= 9.0.0"
+ ]
+ },
+ "packageFolders": {
+ "/home/yla/.nuget/packages/": {}
+ },
+ "project": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Carousel/Carousel.csproj",
+ "projectName": "Carousel",
+ "projectPath": "/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Carousel/Carousel.csproj",
+ "packagesPath": "/home/yla/.nuget/packages/",
+ "outputPath": "/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Carousel/obj/",
+ "projectStyle": "PackageReference",
+ "configFilePaths": [
+ "/home/yla/.nuget/NuGet/NuGet.Config"
+ ],
+ "originalTargetFrameworks": [
+ "net9.0"
+ ],
+ "sources": {
+ "/usr/share/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.300"
+ },
+ "frameworks": {
+ "net9.0": {
+ "targetAlias": "net9.0",
+ "dependencies": {
+ "Microsoft.AspNetCore.Components.Web": {
+ "target": "Package",
+ "version": "[9.0.0, )"
+ }
+ },
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48",
+ "net481"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "frameworkReferences": {
+ "Microsoft.NETCore.App": {
+ "privateAssets": "all"
+ }
+ },
+ "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/9.0.306/PortableRuntimeIdentifierGraph.json"
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/obj/project.nuget.cache b/obj/project.nuget.cache
new file mode 100644
index 0000000..3168172
--- /dev/null
+++ b/obj/project.nuget.cache
@@ -0,0 +1,21 @@
+{
+ "version": 2,
+ "dgSpecHash": "YbAHlAbPEkU=",
+ "success": true,
+ "projectFilePath": "/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Carousel/Carousel.csproj",
+ "expectedPackageFiles": [
+ "/home/yla/.nuget/packages/microsoft.aspnetcore.authorization/9.0.0/microsoft.aspnetcore.authorization.9.0.0.nupkg.sha512",
+ "/home/yla/.nuget/packages/microsoft.aspnetcore.components/9.0.0/microsoft.aspnetcore.components.9.0.0.nupkg.sha512",
+ "/home/yla/.nuget/packages/microsoft.aspnetcore.components.analyzers/9.0.0/microsoft.aspnetcore.components.analyzers.9.0.0.nupkg.sha512",
+ "/home/yla/.nuget/packages/microsoft.aspnetcore.components.forms/9.0.0/microsoft.aspnetcore.components.forms.9.0.0.nupkg.sha512",
+ "/home/yla/.nuget/packages/microsoft.aspnetcore.components.web/9.0.0/microsoft.aspnetcore.components.web.9.0.0.nupkg.sha512",
+ "/home/yla/.nuget/packages/microsoft.aspnetcore.metadata/9.0.0/microsoft.aspnetcore.metadata.9.0.0.nupkg.sha512",
+ "/home/yla/.nuget/packages/microsoft.extensions.dependencyinjection/9.0.0/microsoft.extensions.dependencyinjection.9.0.0.nupkg.sha512",
+ "/home/yla/.nuget/packages/microsoft.extensions.dependencyinjection.abstractions/9.0.0/microsoft.extensions.dependencyinjection.abstractions.9.0.0.nupkg.sha512",
+ "/home/yla/.nuget/packages/microsoft.extensions.logging.abstractions/9.0.0/microsoft.extensions.logging.abstractions.9.0.0.nupkg.sha512",
+ "/home/yla/.nuget/packages/microsoft.extensions.options/9.0.0/microsoft.extensions.options.9.0.0.nupkg.sha512",
+ "/home/yla/.nuget/packages/microsoft.extensions.primitives/9.0.0/microsoft.extensions.primitives.9.0.0.nupkg.sha512",
+ "/home/yla/.nuget/packages/microsoft.jsinterop/9.0.0/microsoft.jsinterop.9.0.0.nupkg.sha512"
+ ],
+ "logs": []
+}
\ No newline at end of file