commit c6b8aea5430fb50c51cdfe93b4f0ac4070363949 Author: Said Date: Wed Aug 5 21:16:11 2026 +0300 Initial commit - Common.RCL diff --git a/Common.RCL.csproj b/Common.RCL.csproj new file mode 100644 index 0000000..d0dc7bf --- /dev/null +++ b/Common.RCL.csproj @@ -0,0 +1,20 @@ + + + + net10.0 + enable + enable + + + + + + + + + + + + + + diff --git a/Common/Carousal.razor b/Common/Carousal.razor new file mode 100644 index 0000000..3dc241b --- /dev/null +++ b/Common/Carousal.razor @@ -0,0 +1,82 @@ +@inject IJSRuntime JS + +@* Hidden div to ensure Tailwind JIT generates classes used in carousal.js *@ + + +
+ + +
+
+ + + + +
+
+ +
+ + +
+
+ + + +@code { + + [Parameter] + public List<(string Text, string ImageUrl)>? Data { get; set; } + + [Parameter] + public List? Images { get; set; } + + protected override async Task OnAfterRenderAsync(bool firstRender) + { + if (firstRender) + { + var dataToPass = new List(); + + if (Data != null && Data.Any()) + { + foreach (var item in Data) + { + dataToPass.Add(new[] { item.Text, item.ImageUrl }); + } + } + else if (Images != null && Images.Any()) + { + foreach (var img in Images) + { + dataToPass.Add(new[] { "", img }); + } + } + + if (dataToPass.Any()) + { + await JS.InvokeVoidAsync("animate", dataToPass); + } + } + } +} \ No newline at end of file diff --git a/Common/Chip.razor b/Common/Chip.razor new file mode 100644 index 0000000..e69de29 diff --git a/Common/ConflictProductsDialog.razor b/Common/ConflictProductsDialog.razor new file mode 100644 index 0000000..13eb912 --- /dev/null +++ b/Common/ConflictProductsDialog.razor @@ -0,0 +1,54 @@ +@* @if(ShowDialog) +{ +
+
+

@TitleName

+
+ @Body +
+ @if(WithButtons) + { +
+ + +
+ } +
+ +
+ + +} + + + + +@code{ + + [Parameter] + public bool ShowDialog { get; set; } = false; + + [Parameter] + public RenderFragment TitleName { get; set; } + + [Parameter] + public RenderFragment Body { get; set; } + + + [Parameter] + public bool WithButtons { get; set; } = false; + + [Parameter] + public EventCallback ActionMade { get; set; } + + + [Parameter] + public List Products { get; set; } + + + async Task MakeAction(bool action) + { + await ActionMade.InvokeAsync(action); + } + +} *@ \ No newline at end of file diff --git a/Common/Cropper.razor b/Common/Cropper.razor new file mode 100644 index 0000000..1206263 --- /dev/null +++ b/Common/Cropper.razor @@ -0,0 +1,48 @@ +@inject IJSRuntime js + + +
+
+ + + + +
+ + +@code { + + [Parameter] + public string UploadLink { get; set; } + + protected override async Task OnInitializedAsync() + { + + } + + protected override async Task OnAfterRenderAsync(bool firstRender) + { + if (firstRender) + { + await js.InvokeVoidAsync("startCropper"); + } + } + + async Task RemoveCropped() + { + await js.InvokeVoidAsync("removeCropped"); + } + + public async Task UploadPhoto() + { + var photoLink = ""; + + return photoLink; + } + +} \ No newline at end of file diff --git a/Common/DropZone.razor b/Common/DropZone.razor new file mode 100644 index 0000000..6cb1afb --- /dev/null +++ b/Common/DropZone.razor @@ -0,0 +1,12 @@ + + + +
+
+ +
+
+ +
+ +
\ No newline at end of file diff --git a/Common/FileUpload.razor b/Common/FileUpload.razor new file mode 100644 index 0000000..22d8ef4 --- /dev/null +++ b/Common/FileUpload.razor @@ -0,0 +1,142 @@ +@inject HttpClient httpClient + + + +

Multiple File Selection

+ + + +@if (ReadyToUpload.Any() || AlreadyUploaded.Any()) +{ +
+

Selected Files:

+
    + @foreach (var file in AlreadyUploaded) + { +
    +
  • @file
  • + +
    + } + + @foreach (var file in ReadyToUpload) + { +
    +
  • @file.Name
  • + +
    + } +
+ @* *@ +
+} + +@if (!string.IsNullOrEmpty(message)) +{ +

@message

+} + +@code { + + [Parameter] + public string UploadLink { get; set; } + + [Parameter] + public string DeleteLink { get; set; } + + + [Parameter] + public string AcceptedFileTypes { get; set; } = "*"; + + + + [Parameter] + public List AlreadyUploaded { get; set; } + + List ReadyToDeleteFromDB { get; set; } + + private List ReadyToUpload = new(); + + + private const long MaxFileSize = 1024 * 1024 * 10; // 10MB + + private string message = string.Empty; + + public async Task> UpdateFiles() + { + var updatedImages = new List(); + await DeleteFromServer(); + var uploadedImages = await UploadToServer(); + + + updatedImages.AddRange(uploadedImages); + updatedImages.AddRange(AlreadyUploaded); + return updatedImages; + } + + async Task> UploadToServer() + { + var uploadedImages = new List(); + + + try + { + foreach (var file in ReadyToUpload) + { + var content = new MultipartFormDataContent(); + var fileContent = new StreamContent(file.OpenReadStream(MaxFileSize)); + fileContent.Headers.ContentType = new System.Net.Http.Headers.MediaTypeHeaderValue(file.ContentType); + content.Add(fileContent, "file", file.Name); + + var response = await httpClient.PostAsync($"{UploadLink}", content); + uploadedImages.Add(await response.Content.ReadAsStringAsync()); + } + + message = $"Successfully processed {ReadyToUpload.Count} file(s)"; + return uploadedImages; + // Optional: Clear selection after upload + // selectedFiles.Clear(); + } + catch (Exception ex) + { + message = $"Error uploading files: {ex.Message}"; + return uploadedImages; + } + } + + async Task DeleteFromServer() + { + try + { + foreach (var name in ReadyToDeleteFromDB) + { + await httpClient.DeleteAsync($"{name.Split("/")[-1]}"); + } + + } + catch + { + + } + } + + private void HandleFilesSelected(InputFileChangeEventArgs e) + { + ReadyToUpload.Clear(); + + // Get all selected files + foreach (var file in e.GetMultipleFiles()) + { + // Optional: Add file size limit (e.g., 5MB) + if (file.Size <= 5 * 1024 * 1024) + { + ReadyToUpload.Add(file); + } + } + + message = $"Selected {ReadyToUpload.Count} file(s)"; + } + + +} \ No newline at end of file diff --git a/Common/GenericTable.razor b/Common/GenericTable.razor new file mode 100644 index 0000000..76ec8dd --- /dev/null +++ b/Common/GenericTable.razor @@ -0,0 +1,40 @@ +@* @using System.Reflection +@typeparam TModel + + + + +@foreach (var model in models) +{ +@foreach (var property in Properties.Where(x => )) +{ +property.GetValue(model); +} + + +@foreach (var member in model.GetProperties()) +{ +member.GetValue(memb); +} + +} + + +@code { + + +[Parameter] +public List Exclude { get; set; } + +[Parameter] public Func>> GetDataFunc { get; set; } + +IEnumerable models; + +PropertyInfo[] Properties = typeof(TModel).GetProperties(); + +protected override async Task OnInitializedAsync() +{ +models = await GetDataFunc(); +} + +} *@ \ No newline at end of file diff --git a/Common/ImageViewer.razor b/Common/ImageViewer.razor new file mode 100644 index 0000000..2acf073 --- /dev/null +++ b/Common/ImageViewer.razor @@ -0,0 +1,3 @@ +@*
+ +
*@ \ No newline at end of file diff --git a/Common/LanguageSwitcher.razor b/Common/LanguageSwitcher.razor new file mode 100644 index 0000000..2b39d2c --- /dev/null +++ b/Common/LanguageSwitcher.razor @@ -0,0 +1,39 @@ +@* Components/CultureSwitcher.razor *@ +@inject IJSRuntime JSRuntime +@inject NavigationManager Navigation + +
+ +
+ +@code { + [Parameter] + public string[] SupportedCultures { get; set; } = new[] + { + "en", + "ar", + "es", + "de" + }; + + private string SelectedCulture + { + get => CultureInfo.CurrentUICulture.Name; + set + { + if (CultureInfo.CurrentUICulture.Name != value) + { + // Persist selection + JSRuntime.InvokeVoidAsync("cultureInfo.set", value); + + // Reload to apply new culture + Navigation.NavigateTo(Navigation.Uri, forceLoad: true); + } + } + } +} \ No newline at end of file diff --git a/Common/PaginationComp.razor b/Common/PaginationComp.razor new file mode 100644 index 0000000..0d60175 --- /dev/null +++ b/Common/PaginationComp.razor @@ -0,0 +1,48 @@ +
+
+ + + @if (PaginationModel.TotalPages.HasValue) + { + var currentPage = PaginationModel.CurrentPage ?? 1; + var totalPages = PaginationModel.TotalPages ?? 0; + + @for (int i = Math.Max(1, currentPage - 2); i <= Math.Min(totalPages, currentPage + 2); i++) + { + var x = i; + + } + } + + +
+
+ +@code { + [Parameter] public Pagination PaginationModel { get; set; } = new(); + [Parameter] public EventCallback OnSearch { get; set; } + + async Task ChangePage(int pageNumber) + { + if (pageNumber < 1 || pageNumber > (PaginationModel.TotalPages ?? 0)) return; + await OnSearch.InvokeAsync(pageNumber); + } +} \ No newline at end of file diff --git a/Common/SingleFileUpload.razor b/Common/SingleFileUpload.razor new file mode 100644 index 0000000..ab9f0da --- /dev/null +++ b/Common/SingleFileUpload.razor @@ -0,0 +1,104 @@ +@inject HttpClient Http + + + +
+ @if (!string.IsNullOrEmpty(Image)) + { +
+ +
+ + + } + + +
+ + +@code { + + [Parameter] + public string? Image { get; set; } + + [Parameter] + public string? UploadLink { get; set; } + + [Parameter] + public string? Accept { get; set; } + + + + IBrowserFile selectedFile; + + private CancellationTokenSource? _cancellationTokenSource; + + + protected override async Task OnInitializedAsync() + { + + } + + void RemovePhoto() + { + Image = ""; + selectedFile = null; + } + + + async Task FileChanged(InputFileChangeEventArgs e) + { + selectedFile = e.File; + await GenerateBase64Preview(selectedFile); + } + + + public async Task UploadFile() + { + var multipartContent = new MultipartFormDataContent(); + if (selectedFile != null) + { + var fileContent = new StreamContent(selectedFile.OpenReadStream()); + + fileContent.Headers.ContentType = new MediaTypeHeaderValue(selectedFile.ContentType); + + multipartContent.Add(fileContent, "file", selectedFile.Name); + + var response = await Http.PostAsync(UploadLink, multipartContent); + + return await response.Content.ReadFromJsonAsync(); + @* new ProgressMessageHandler(progress => +{ +_uploadProgress = progress; +StateHasChanged(); +}) *@ + } + return ""; + } + + + private async Task GenerateBase64Preview(IBrowserFile file) + { + try + { + // Resize image for preview (optional) + var resizedImage = await file.RequestImageFileAsync( + file.ContentType, + maxWidth: 800, + maxHeight: 800); + + // Convert to base64 + using var stream = resizedImage.OpenReadStream(maxAllowedSize: file.Size); + using var memoryStream = new MemoryStream(); + await stream.CopyToAsync(memoryStream); + Image = $"data:{file.ContentType};base64,{Convert.ToBase64String(memoryStream.ToArray())}"; + @* ImageContentType = file.ContentType; *@ + StateHasChanged(); + } + catch (Exception ex) + { + Console.WriteLine($"Error generating preview: {ex.Message}"); + } + } + +} \ No newline at end of file diff --git a/Component1.razor b/Component1.razor new file mode 100644 index 0000000..9e73218 --- /dev/null +++ b/Component1.razor @@ -0,0 +1,3 @@ +
+ This component is defined in the Common library. +
diff --git a/Component1.razor.css b/Component1.razor.css new file mode 100644 index 0000000..c6afca4 --- /dev/null +++ b/Component1.razor.css @@ -0,0 +1,6 @@ +.my-component { + border: 2px dashed red; + padding: 1em; + margin: 1em 0; + background-image: url('background.png'); +} diff --git a/Components/DaisyToastContainer.razor b/Components/DaisyToastContainer.razor new file mode 100644 index 0000000..d03ac8a --- /dev/null +++ b/Components/DaisyToastContainer.razor @@ -0,0 +1,68 @@ +@using global::Common.Services +@implements IDisposable +@inject IToastService ToastService + +
+ @foreach (var toast in ToastService.Toasts) + { +
+
+ @switch (toast.Level) + { + case ToastLevel.Success: + + + + break; + case ToastLevel.Error: + + + + break; + case ToastLevel.Warning: + + + + break; + default: + + + + break; + } + @toast.Message +
+ +
+ } +
+ +@code { + protected override void OnInitialized() + { + ToastService.OnChange += StateHasChanged; + } + + private string GetAlertClass(ToastLevel level) => level switch + { + ToastLevel.Success => "alert-success", + ToastLevel.Error => "alert-error", + ToastLevel.Warning => "alert-warning", + _ => "alert-info" + }; + + public void Dispose() + { + ToastService.OnChange -= StateHasChanged; + } +} \ No newline at end of file diff --git a/ExampleJsInterop.cs b/ExampleJsInterop.cs new file mode 100644 index 0000000..8f9fe3b --- /dev/null +++ b/ExampleJsInterop.cs @@ -0,0 +1,36 @@ +using Microsoft.JSInterop; + +namespace Common; + +// This class provides an example of how JavaScript functionality can be wrapped +// in a .NET class for easy consumption. The associated JavaScript module is +// loaded on demand when first needed. +// +// This class can be registered as scoped DI service and then injected into Blazor +// components for use. + +public class ExampleJsInterop : IAsyncDisposable +{ + private readonly Lazy> moduleTask; + + public ExampleJsInterop(IJSRuntime jsRuntime) + { + moduleTask = new (() => jsRuntime.InvokeAsync( + "import", "./_content/Common/exampleJsInterop.js").AsTask()); + } + + public async ValueTask Prompt(string message) + { + var module = await moduleTask.Value; + return await module.InvokeAsync("showPrompt", message); + } + + public async ValueTask DisposeAsync() + { + if (moduleTask.IsValueCreated) + { + var module = await moduleTask.Value; + await module.DisposeAsync(); + } + } +} diff --git a/Services/ToastService.cs b/Services/ToastService.cs new file mode 100644 index 0000000..0fd5542 --- /dev/null +++ b/Services/ToastService.cs @@ -0,0 +1,59 @@ +namespace Common.Services; + +public enum ToastLevel +{ + Info, + Success, + Warning, + Error +} + +public class ToastMessage +{ + public Guid Id { get; } = Guid.NewGuid(); + public string Message { get; set; } = string.Empty; + public ToastLevel Level { get; set; } = ToastLevel.Info; + public DateTime Created { get; } = DateTime.Now; +} + +public interface IToastService +{ + event Action OnChange; + List Toasts { get; } + void ShowToast(string message, ToastLevel level = ToastLevel.Info); + void RemoveToast(Guid id); +} + +public class ToastService : IToastService +{ + public event Action? OnChange; + public List Toasts { get; } = new(); + + public void ShowToast(string message, ToastLevel level = ToastLevel.Info) + { + var toast = new ToastMessage { Message = message, Level = level }; + Toasts.Add(toast); + NotifyStateChanged(); + + // Auto remove after 5 seconds + _ = RemoveAfterDelay(toast.Id); + } + + public void RemoveToast(Guid id) + { + var toast = Toasts.FirstOrDefault(t => t.Id == id); + if (toast != null) + { + Toasts.Remove(toast); + NotifyStateChanged(); + } + } + + private async Task RemoveAfterDelay(Guid id) + { + await Task.Delay(5000); + RemoveToast(id); + } + + private void NotifyStateChanged() => OnChange?.Invoke(); +} diff --git a/_Imports.razor b/_Imports.razor new file mode 100644 index 0000000..8b09f8c --- /dev/null +++ b/_Imports.razor @@ -0,0 +1,8 @@ +@using Microsoft.AspNetCore.Components.Web +@using System.Globalization +@using Microsoft.JSInterop +@using Microsoft.AspNetCore.Components.Forms +@using System.Net.Http.Json +@using Generic.Contracts.Generics +@using Generic.Services +@using System.Net.Http.Headers \ No newline at end of file diff --git a/bin/Debug/net10.0/Common.RCL.deps.json b/bin/Debug/net10.0/Common.RCL.deps.json new file mode 100644 index 0000000..39aa86b --- /dev/null +++ b/bin/Debug/net10.0/Common.RCL.deps.json @@ -0,0 +1,371 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v10.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v10.0": { + "Common.RCL/1.0.0": { + "dependencies": { + "Generic.CL": "1.0.0", + "Microsoft.AspNetCore.Components.Web": "10.0.1" + }, + "runtime": { + "Common.RCL.dll": {} + } + }, + "Microsoft.AspNetCore.Authorization/10.0.1": { + "dependencies": { + "Microsoft.AspNetCore.Metadata": "10.0.1", + "Microsoft.Extensions.Diagnostics": "10.0.1", + "Microsoft.Extensions.Logging.Abstractions": "10.0.1", + "Microsoft.Extensions.Options": "10.0.1" + }, + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.Authorization.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.125.57005" + } + } + }, + "Microsoft.AspNetCore.Components/10.0.1": { + "dependencies": { + "Microsoft.AspNetCore.Authorization": "10.0.1" + }, + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.Components.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.125.57005" + } + } + }, + "Microsoft.AspNetCore.Components.Forms/10.0.1": { + "dependencies": { + "Microsoft.AspNetCore.Components": "10.0.1", + "Microsoft.Extensions.Validation": "10.0.1" + }, + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.Components.Forms.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.125.57005" + } + } + }, + "Microsoft.AspNetCore.Components.Web/10.0.1": { + "dependencies": { + "Microsoft.AspNetCore.Components": "10.0.1", + "Microsoft.AspNetCore.Components.Forms": "10.0.1", + "Microsoft.Extensions.DependencyInjection": "10.0.1", + "Microsoft.Extensions.Primitives": "10.0.1", + "Microsoft.JSInterop": "10.0.1" + }, + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.Components.Web.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.125.57005" + } + } + }, + "Microsoft.AspNetCore.Metadata/10.0.1": { + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.Metadata.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.125.57005" + } + } + }, + "Microsoft.Extensions.Configuration/10.0.1": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "10.0.1", + "Microsoft.Extensions.Primitives": "10.0.1" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Configuration.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.125.57005" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/10.0.1": { + "dependencies": { + "Microsoft.Extensions.Primitives": "10.0.1" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.125.57005" + } + } + }, + "Microsoft.Extensions.Configuration.Binder/10.0.1": { + "dependencies": { + "Microsoft.Extensions.Configuration": "10.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "10.0.1" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Configuration.Binder.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.125.57005" + } + } + }, + "Microsoft.Extensions.DependencyInjection/10.0.1": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.1" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.DependencyInjection.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.125.57005" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.1": { + "runtime": { + "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.125.57005" + } + } + }, + "Microsoft.Extensions.Diagnostics/10.0.1": { + "dependencies": { + "Microsoft.Extensions.Configuration": "10.0.1", + "Microsoft.Extensions.Diagnostics.Abstractions": "10.0.1", + "Microsoft.Extensions.Options.ConfigurationExtensions": "10.0.1" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Diagnostics.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.125.57005" + } + } + }, + "Microsoft.Extensions.Diagnostics.Abstractions/10.0.1": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.1", + "Microsoft.Extensions.Options": "10.0.1" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.125.57005" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/10.0.1": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.1" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.125.57005" + } + } + }, + "Microsoft.Extensions.Options/10.0.1": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.1", + "Microsoft.Extensions.Primitives": "10.0.1" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.125.57005" + } + } + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/10.0.1": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "10.0.1", + "Microsoft.Extensions.Configuration.Binder": "10.0.1", + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.1", + "Microsoft.Extensions.Options": "10.0.1", + "Microsoft.Extensions.Primitives": "10.0.1" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.125.57005" + } + } + }, + "Microsoft.Extensions.Primitives/10.0.1": { + "runtime": { + "lib/net10.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.125.57005" + } + } + }, + "Microsoft.Extensions.Validation/10.0.1": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.1", + "Microsoft.Extensions.Options": "10.0.1" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Validation.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.125.57005" + } + } + }, + "Microsoft.JSInterop/10.0.1": { + "runtime": { + "lib/net10.0/Microsoft.JSInterop.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.125.57005" + } + } + }, + "Generic.CL/1.0.0": { + "runtime": { + "Generic.CL.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + } + } + }, + "libraries": { + "Common.RCL/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authorization/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Y9QE0gH4Q4cR7ZRToFju47c1MoeqxaLHdpzOviqD2TmnGGAeDMT9AV56j2BOVm5CsJAVyI/USxLYrkk2NVinZA==", + "path": "microsoft.aspnetcore.authorization/10.0.1", + "hashPath": "microsoft.aspnetcore.authorization.10.0.1.nupkg.sha512" + }, + "Microsoft.AspNetCore.Components/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SbABcQ7soM9jC/HvPKrg/smQxsMD2gW9iHBRFtBiYTMSs5Vqh7+i47BTOe3OM3IGzly2FiOmeNHJhMYK7YFGWA==", + "path": "microsoft.aspnetcore.components/10.0.1", + "hashPath": "microsoft.aspnetcore.components.10.0.1.nupkg.sha512" + }, + "Microsoft.AspNetCore.Components.Forms/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aWUpLOz749gwMMaKe81tet+INC8nfskbauF2VO5Qr3lspj/l8S24zNLr95Bl8EwAizvBCNqwb8fPFU1dnn3WbA==", + "path": "microsoft.aspnetcore.components.forms/10.0.1", + "hashPath": "microsoft.aspnetcore.components.forms.10.0.1.nupkg.sha512" + }, + "Microsoft.AspNetCore.Components.Web/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hX74ijqAiUfIo6WpvLWignGYp7tkrRR3KRVBErwFSAcsiHeaCxGM81fYRXd9rf+gkFUNoKvcSxYyVZc2vFJVXg==", + "path": "microsoft.aspnetcore.components.web/10.0.1", + "hashPath": "microsoft.aspnetcore.components.web.10.0.1.nupkg.sha512" + }, + "Microsoft.AspNetCore.Metadata/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6JrG03xROuR4mQIHGcT8OnaKVBoPLLbto5RicKQIUV3JIU7cZYKIWDAnk0SQcl7ziQr6R327D6QBOo+PbYnnrw==", + "path": "microsoft.aspnetcore.metadata/10.0.1", + "hashPath": "microsoft.aspnetcore.metadata.10.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-njoRekyMIK+smav8B6KL2YgIfUtlsRNuT7wvurpLW+m/hoRKVnoELk2YxnUnWRGScCd1rukLMxShwLqEOKowDg==", + "path": "microsoft.extensions.configuration/10.0.1", + "hashPath": "microsoft.extensions.configuration.10.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kPlU11hql+L9RjrN2N9/0GcRcRcZrNFlLLjadasFWeBORT6pL6OE+RYRk90GGCyVGSxTK+e1/f3dsMj5zpFFiQ==", + "path": "microsoft.extensions.configuration.abstractions/10.0.1", + "hashPath": "microsoft.extensions.configuration.abstractions.10.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Binder/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Lp4CZIuTVXtlvkAnTq6QvMSW7+H62gX2cU2vdFxHQUxvrWTpi7LwYI3X+YAyIS0r12/p7gaosco7efIxL4yFNw==", + "path": "microsoft.extensions.configuration.binder/10.0.1", + "hashPath": "microsoft.extensions.configuration.binder.10.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zerXV0GAR9LCSXoSIApbWn+Dq1/T+6vbXMHGduq1LoVQRHT0BXsGQEau0jeLUBUcsoF/NaUT8ADPu8b+eNcIyg==", + "path": "microsoft.extensions.dependencyinjection/10.0.1", + "hashPath": "microsoft.extensions.dependencyinjection.10.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oIy8fQxxbUsSrrOvgBqlVgOeCtDmrcynnTG+FQufcUWBrwyPfwlUkCDB2vaiBeYPyT+20u9/HeuHeBf+H4F/8g==", + "path": "microsoft.extensions.dependencyinjection.abstractions/10.0.1", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.10.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Diagnostics/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YaocqxscJLxLit0F5yq2XyB+9C7rSRfeTL7MJIl7XwaOoUO3i0EqfO2kmtjiRduYWw7yjcSINEApYZbzjau2gQ==", + "path": "microsoft.extensions.diagnostics/10.0.1", + "hashPath": "microsoft.extensions.diagnostics.10.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Diagnostics.Abstractions/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QMoMrkNpnQym5mpfdxfxpRDuqLpsOuztguFvzH9p+Ex+do+uLFoi7UkAsBO4e9/tNR3eMFraFf2fOAi2cp3jjA==", + "path": "microsoft.extensions.diagnostics.abstractions/10.0.1", + "hashPath": "microsoft.extensions.diagnostics.abstractions.10.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YkmyiPIWAXVb+lPIrM0LE5bbtLOJkCiRTFiHpkVOvhI7uTvCfoOHLEN0LcsY56GpSD7NqX3gJNpsaDe87/B3zg==", + "path": "microsoft.extensions.logging.abstractions/10.0.1", + "hashPath": "microsoft.extensions.logging.abstractions.10.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Options/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-G6VVwywpJI4XIobetGHwg7wDOYC2L2XBYdtskxLaKF/Ynb5QBwLl7Q//wxAR2aVCLkMpoQrjSP9VoORkyddsNQ==", + "path": "microsoft.extensions.options/10.0.1", + "hashPath": "microsoft.extensions.options.10.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pL78/Im7O3WmxHzlKUsWTYchKL881udU7E26gCD3T0+/tPhWVfjPwMzfN/MRKU7aoFYcOiqcG2k1QTlH5woWow==", + "path": "microsoft.extensions.options.configurationextensions/10.0.1", + "hashPath": "microsoft.extensions.options.configurationextensions.10.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DO8XrJkp5x4PddDuc/CH37yDBCs9BYN6ijlKyR3vMb55BP1Vwh90vOX8bNfnKxr5B2qEI3D8bvbY1fFbDveDHQ==", + "path": "microsoft.extensions.primitives/10.0.1", + "hashPath": "microsoft.extensions.primitives.10.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Validation/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5bcu9zWhgY8AZUN1ERNH0BQKFh10xlx4UrCh+0cDn7wB01QkrK4S6Jh45fCgEqmWJWVGqBS2g8MN0Lu/99Zgdg==", + "path": "microsoft.extensions.validation/10.0.1", + "hashPath": "microsoft.extensions.validation.10.0.1.nupkg.sha512" + }, + "Microsoft.JSInterop/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pTfoYBjs7HKmTEk9cNWcSySdTKT8USjviLgmMaSs/YA0+oONufKy9hqqZ5EE4CNy9y24SDDc9lerXfV7aiVfWA==", + "path": "microsoft.jsinterop/10.0.1", + "hashPath": "microsoft.jsinterop.10.0.1.nupkg.sha512" + }, + "Generic.CL/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/bin/Debug/net10.0/Common.RCL.dll b/bin/Debug/net10.0/Common.RCL.dll new file mode 100644 index 0000000..2957858 Binary files /dev/null and b/bin/Debug/net10.0/Common.RCL.dll differ diff --git a/bin/Debug/net10.0/Common.RCL.pdb b/bin/Debug/net10.0/Common.RCL.pdb new file mode 100644 index 0000000..ecc1fde Binary files /dev/null and b/bin/Debug/net10.0/Common.RCL.pdb differ diff --git a/bin/Debug/net10.0/Common.RCL.staticwebassets.endpoints.json b/bin/Debug/net10.0/Common.RCL.staticwebassets.endpoints.json new file mode 100644 index 0000000..e05f4a8 --- /dev/null +++ b/bin/Debug/net10.0/Common.RCL.staticwebassets.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[{"Route":"Common.RCL.dph6jvottp.styles.css","AssetFile":"Common.RCL.styles.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005813953488"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"171"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"cfLCvUj1+1Kj9mHSstSqTaP1iX3bHcciSjzZjdnjlA0=\""},{"Name":"Last-Modified","Value":"Tue, 12 May 2026 13:20:55 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dph6jvottp"},{"Name":"integrity","Value":"sha256-39HSQ0beua7Rm023Y8jQXdOfC8uQtgVch+LyDUsB8bo="},{"Name":"label","Value":"Common.RCL.styles.css"},{"Name":"original-resource","Value":"\"39HSQ0beua7Rm023Y8jQXdOfC8uQtgVch+LyDUsB8bo=\""}]},{"Route":"Common.RCL.dph6jvottp.styles.css","AssetFile":"Common.RCL.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"196"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"39HSQ0beua7Rm023Y8jQXdOfC8uQtgVch+LyDUsB8bo=\""},{"Name":"Last-Modified","Value":"Tue, 12 May 2026 13:20:55 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dph6jvottp"},{"Name":"integrity","Value":"sha256-39HSQ0beua7Rm023Y8jQXdOfC8uQtgVch+LyDUsB8bo="},{"Name":"label","Value":"Common.RCL.styles.css"}]},{"Route":"Common.RCL.dph6jvottp.styles.css.gz","AssetFile":"Common.RCL.styles.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"171"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"cfLCvUj1+1Kj9mHSstSqTaP1iX3bHcciSjzZjdnjlA0=\""},{"Name":"Last-Modified","Value":"Tue, 12 May 2026 13:20:55 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dph6jvottp"},{"Name":"integrity","Value":"sha256-cfLCvUj1+1Kj9mHSstSqTaP1iX3bHcciSjzZjdnjlA0="},{"Name":"label","Value":"Common.RCL.styles.css.gz"}]},{"Route":"Common.RCL.styles.css","AssetFile":"Common.RCL.styles.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005813953488"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"171"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"cfLCvUj1+1Kj9mHSstSqTaP1iX3bHcciSjzZjdnjlA0=\""},{"Name":"Last-Modified","Value":"Tue, 12 May 2026 13:20:55 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-39HSQ0beua7Rm023Y8jQXdOfC8uQtgVch+LyDUsB8bo="},{"Name":"original-resource","Value":"\"39HSQ0beua7Rm023Y8jQXdOfC8uQtgVch+LyDUsB8bo=\""}]},{"Route":"Common.RCL.styles.css","AssetFile":"Common.RCL.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"196"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"39HSQ0beua7Rm023Y8jQXdOfC8uQtgVch+LyDUsB8bo=\""},{"Name":"Last-Modified","Value":"Tue, 12 May 2026 13:20:55 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-39HSQ0beua7Rm023Y8jQXdOfC8uQtgVch+LyDUsB8bo="}]},{"Route":"Common.RCL.styles.css.gz","AssetFile":"Common.RCL.styles.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"171"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"cfLCvUj1+1Kj9mHSstSqTaP1iX3bHcciSjzZjdnjlA0=\""},{"Name":"Last-Modified","Value":"Tue, 12 May 2026 13:20:55 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-cfLCvUj1+1Kj9mHSstSqTaP1iX3bHcciSjzZjdnjlA0="}]},{"Route":"background.png","AssetFile":"background.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"378"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY=\""},{"Name":"Last-Modified","Value":"Sat, 23 Aug 2025 11:32:56 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY="}]},{"Route":"background.x2rx4ajns0.png","AssetFile":"background.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"378"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY=\""},{"Name":"Last-Modified","Value":"Sat, 23 Aug 2025 11:32:56 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x2rx4ajns0"},{"Name":"integrity","Value":"sha256-WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY="},{"Name":"label","Value":"background.png"}]},{"Route":"css/carousal.js","AssetFile":"css/carousal.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000865051903"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1155"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"J94ETb6bgoBQU+vsGNRFiGXzZwXBR/LTfFKi8K4Mo+4=\""},{"Name":"Last-Modified","Value":"Tue, 12 May 2026 13:20:55 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ="},{"Name":"original-resource","Value":"\"K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ=\""}]},{"Route":"css/carousal.js","AssetFile":"css/carousal.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"3499"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ=\""},{"Name":"Last-Modified","Value":"Wed, 14 Jan 2026 15:07:36 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ="}]},{"Route":"css/carousal.js.gz","AssetFile":"css/carousal.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1155"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"J94ETb6bgoBQU+vsGNRFiGXzZwXBR/LTfFKi8K4Mo+4=\""},{"Name":"Last-Modified","Value":"Tue, 12 May 2026 13:20:55 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-J94ETb6bgoBQU+vsGNRFiGXzZwXBR/LTfFKi8K4Mo+4="}]},{"Route":"css/carousal.vnhftjewbd.js","AssetFile":"css/carousal.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000865051903"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1155"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"J94ETb6bgoBQU+vsGNRFiGXzZwXBR/LTfFKi8K4Mo+4=\""},{"Name":"Last-Modified","Value":"Tue, 12 May 2026 13:20:55 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vnhftjewbd"},{"Name":"integrity","Value":"sha256-K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ="},{"Name":"label","Value":"css/carousal.js"},{"Name":"original-resource","Value":"\"K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ=\""}]},{"Route":"css/carousal.vnhftjewbd.js","AssetFile":"css/carousal.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3499"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ=\""},{"Name":"Last-Modified","Value":"Wed, 14 Jan 2026 15:07:36 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vnhftjewbd"},{"Name":"integrity","Value":"sha256-K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ="},{"Name":"label","Value":"css/carousal.js"}]},{"Route":"css/carousal.vnhftjewbd.js.gz","AssetFile":"css/carousal.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1155"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"J94ETb6bgoBQU+vsGNRFiGXzZwXBR/LTfFKi8K4Mo+4=\""},{"Name":"Last-Modified","Value":"Tue, 12 May 2026 13:20:55 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vnhftjewbd"},{"Name":"integrity","Value":"sha256-J94ETb6bgoBQU+vsGNRFiGXzZwXBR/LTfFKi8K4Mo+4="},{"Name":"label","Value":"css/carousal.js.gz"}]},{"Route":"exampleJsInterop.js","AssetFile":"exampleJsInterop.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005434782609"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"183"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=\""},{"Name":"Last-Modified","Value":"Tue, 12 May 2026 13:20:55 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk="},{"Name":"original-resource","Value":"\"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=\""}]},{"Route":"exampleJsInterop.js","AssetFile":"exampleJsInterop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"241"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=\""},{"Name":"Last-Modified","Value":"Sat, 23 Aug 2025 11:32:56 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk="}]},{"Route":"exampleJsInterop.js.gz","AssetFile":"exampleJsInterop.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"183"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=\""},{"Name":"Last-Modified","Value":"Tue, 12 May 2026 13:20:55 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o="}]},{"Route":"exampleJsInterop.luzdqbu196.js","AssetFile":"exampleJsInterop.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005434782609"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"183"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=\""},{"Name":"Last-Modified","Value":"Tue, 12 May 2026 13:20:55 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"luzdqbu196"},{"Name":"integrity","Value":"sha256-Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk="},{"Name":"label","Value":"exampleJsInterop.js"},{"Name":"original-resource","Value":"\"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=\""}]},{"Route":"exampleJsInterop.luzdqbu196.js","AssetFile":"exampleJsInterop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"241"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=\""},{"Name":"Last-Modified","Value":"Sat, 23 Aug 2025 11:32:56 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"luzdqbu196"},{"Name":"integrity","Value":"sha256-Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk="},{"Name":"label","Value":"exampleJsInterop.js"}]},{"Route":"exampleJsInterop.luzdqbu196.js.gz","AssetFile":"exampleJsInterop.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"183"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=\""},{"Name":"Last-Modified","Value":"Tue, 12 May 2026 13:20:55 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"luzdqbu196"},{"Name":"integrity","Value":"sha256-rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o="},{"Name":"label","Value":"exampleJsInterop.js.gz"}]}]} \ No newline at end of file diff --git a/bin/Debug/net10.0/Common.RCL.staticwebassets.runtime.json b/bin/Debug/net10.0/Common.RCL.staticwebassets.runtime.json new file mode 100644 index 0000000..30281a7 --- /dev/null +++ b/bin/Debug/net10.0/Common.RCL.staticwebassets.runtime.json @@ -0,0 +1 @@ +{"ContentRoots":["/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/wwwroot/","/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/scopedcss/bundle/","/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/compressed/"],"Root":{"Children":{"background.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"background.png"},"Patterns":null},"Common.RCL.styles.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"Common.RCL.styles.css"},"Patterns":null},"Common.RCL.styles.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"fy9rjyaakk-{0}-dph6jvottp-dph6jvottp.gz"},"Patterns":null},"exampleJsInterop.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"exampleJsInterop.js"},"Patterns":null},"exampleJsInterop.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"fiwgk79u47-{0}-luzdqbu196-luzdqbu196.gz"},"Patterns":null},"css":{"Children":{"carousal.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/carousal.js"},"Patterns":null},"carousal.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"32onbuj1wh-{0}-vnhftjewbd-vnhftjewbd.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}} \ No newline at end of file diff --git a/bin/Debug/net10.0/Common.deps.json b/bin/Debug/net10.0/Common.deps.json new file mode 100644 index 0000000..990ab34 --- /dev/null +++ b/bin/Debug/net10.0/Common.deps.json @@ -0,0 +1,371 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v10.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v10.0": { + "Common/1.0.0": { + "dependencies": { + "Generic": "1.0.0", + "Microsoft.AspNetCore.Components.Web": "10.0.1" + }, + "runtime": { + "Common.dll": {} + } + }, + "Microsoft.AspNetCore.Authorization/10.0.1": { + "dependencies": { + "Microsoft.AspNetCore.Metadata": "10.0.1", + "Microsoft.Extensions.Diagnostics": "10.0.1", + "Microsoft.Extensions.Logging.Abstractions": "10.0.1", + "Microsoft.Extensions.Options": "10.0.1" + }, + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.Authorization.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.125.57005" + } + } + }, + "Microsoft.AspNetCore.Components/10.0.1": { + "dependencies": { + "Microsoft.AspNetCore.Authorization": "10.0.1" + }, + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.Components.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.125.57005" + } + } + }, + "Microsoft.AspNetCore.Components.Forms/10.0.1": { + "dependencies": { + "Microsoft.AspNetCore.Components": "10.0.1", + "Microsoft.Extensions.Validation": "10.0.1" + }, + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.Components.Forms.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.125.57005" + } + } + }, + "Microsoft.AspNetCore.Components.Web/10.0.1": { + "dependencies": { + "Microsoft.AspNetCore.Components": "10.0.1", + "Microsoft.AspNetCore.Components.Forms": "10.0.1", + "Microsoft.Extensions.DependencyInjection": "10.0.1", + "Microsoft.Extensions.Primitives": "10.0.1", + "Microsoft.JSInterop": "10.0.1" + }, + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.Components.Web.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.125.57005" + } + } + }, + "Microsoft.AspNetCore.Metadata/10.0.1": { + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.Metadata.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.125.57005" + } + } + }, + "Microsoft.Extensions.Configuration/10.0.1": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "10.0.1", + "Microsoft.Extensions.Primitives": "10.0.1" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Configuration.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.125.57005" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/10.0.1": { + "dependencies": { + "Microsoft.Extensions.Primitives": "10.0.1" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.125.57005" + } + } + }, + "Microsoft.Extensions.Configuration.Binder/10.0.1": { + "dependencies": { + "Microsoft.Extensions.Configuration": "10.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "10.0.1" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Configuration.Binder.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.125.57005" + } + } + }, + "Microsoft.Extensions.DependencyInjection/10.0.1": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.1" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.DependencyInjection.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.125.57005" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.1": { + "runtime": { + "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.125.57005" + } + } + }, + "Microsoft.Extensions.Diagnostics/10.0.1": { + "dependencies": { + "Microsoft.Extensions.Configuration": "10.0.1", + "Microsoft.Extensions.Diagnostics.Abstractions": "10.0.1", + "Microsoft.Extensions.Options.ConfigurationExtensions": "10.0.1" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Diagnostics.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.125.57005" + } + } + }, + "Microsoft.Extensions.Diagnostics.Abstractions/10.0.1": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.1", + "Microsoft.Extensions.Options": "10.0.1" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.125.57005" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/10.0.1": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.1" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.125.57005" + } + } + }, + "Microsoft.Extensions.Options/10.0.1": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.1", + "Microsoft.Extensions.Primitives": "10.0.1" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.125.57005" + } + } + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/10.0.1": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "10.0.1", + "Microsoft.Extensions.Configuration.Binder": "10.0.1", + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.1", + "Microsoft.Extensions.Options": "10.0.1", + "Microsoft.Extensions.Primitives": "10.0.1" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.125.57005" + } + } + }, + "Microsoft.Extensions.Primitives/10.0.1": { + "runtime": { + "lib/net10.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.125.57005" + } + } + }, + "Microsoft.Extensions.Validation/10.0.1": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.1", + "Microsoft.Extensions.Options": "10.0.1" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Validation.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.125.57005" + } + } + }, + "Microsoft.JSInterop/10.0.1": { + "runtime": { + "lib/net10.0/Microsoft.JSInterop.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.125.57005" + } + } + }, + "Generic/1.0.0": { + "runtime": { + "Generic.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + } + } + }, + "libraries": { + "Common/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authorization/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Y9QE0gH4Q4cR7ZRToFju47c1MoeqxaLHdpzOviqD2TmnGGAeDMT9AV56j2BOVm5CsJAVyI/USxLYrkk2NVinZA==", + "path": "microsoft.aspnetcore.authorization/10.0.1", + "hashPath": "microsoft.aspnetcore.authorization.10.0.1.nupkg.sha512" + }, + "Microsoft.AspNetCore.Components/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SbABcQ7soM9jC/HvPKrg/smQxsMD2gW9iHBRFtBiYTMSs5Vqh7+i47BTOe3OM3IGzly2FiOmeNHJhMYK7YFGWA==", + "path": "microsoft.aspnetcore.components/10.0.1", + "hashPath": "microsoft.aspnetcore.components.10.0.1.nupkg.sha512" + }, + "Microsoft.AspNetCore.Components.Forms/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aWUpLOz749gwMMaKe81tet+INC8nfskbauF2VO5Qr3lspj/l8S24zNLr95Bl8EwAizvBCNqwb8fPFU1dnn3WbA==", + "path": "microsoft.aspnetcore.components.forms/10.0.1", + "hashPath": "microsoft.aspnetcore.components.forms.10.0.1.nupkg.sha512" + }, + "Microsoft.AspNetCore.Components.Web/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hX74ijqAiUfIo6WpvLWignGYp7tkrRR3KRVBErwFSAcsiHeaCxGM81fYRXd9rf+gkFUNoKvcSxYyVZc2vFJVXg==", + "path": "microsoft.aspnetcore.components.web/10.0.1", + "hashPath": "microsoft.aspnetcore.components.web.10.0.1.nupkg.sha512" + }, + "Microsoft.AspNetCore.Metadata/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6JrG03xROuR4mQIHGcT8OnaKVBoPLLbto5RicKQIUV3JIU7cZYKIWDAnk0SQcl7ziQr6R327D6QBOo+PbYnnrw==", + "path": "microsoft.aspnetcore.metadata/10.0.1", + "hashPath": "microsoft.aspnetcore.metadata.10.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-njoRekyMIK+smav8B6KL2YgIfUtlsRNuT7wvurpLW+m/hoRKVnoELk2YxnUnWRGScCd1rukLMxShwLqEOKowDg==", + "path": "microsoft.extensions.configuration/10.0.1", + "hashPath": "microsoft.extensions.configuration.10.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kPlU11hql+L9RjrN2N9/0GcRcRcZrNFlLLjadasFWeBORT6pL6OE+RYRk90GGCyVGSxTK+e1/f3dsMj5zpFFiQ==", + "path": "microsoft.extensions.configuration.abstractions/10.0.1", + "hashPath": "microsoft.extensions.configuration.abstractions.10.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Binder/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Lp4CZIuTVXtlvkAnTq6QvMSW7+H62gX2cU2vdFxHQUxvrWTpi7LwYI3X+YAyIS0r12/p7gaosco7efIxL4yFNw==", + "path": "microsoft.extensions.configuration.binder/10.0.1", + "hashPath": "microsoft.extensions.configuration.binder.10.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zerXV0GAR9LCSXoSIApbWn+Dq1/T+6vbXMHGduq1LoVQRHT0BXsGQEau0jeLUBUcsoF/NaUT8ADPu8b+eNcIyg==", + "path": "microsoft.extensions.dependencyinjection/10.0.1", + "hashPath": "microsoft.extensions.dependencyinjection.10.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oIy8fQxxbUsSrrOvgBqlVgOeCtDmrcynnTG+FQufcUWBrwyPfwlUkCDB2vaiBeYPyT+20u9/HeuHeBf+H4F/8g==", + "path": "microsoft.extensions.dependencyinjection.abstractions/10.0.1", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.10.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Diagnostics/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YaocqxscJLxLit0F5yq2XyB+9C7rSRfeTL7MJIl7XwaOoUO3i0EqfO2kmtjiRduYWw7yjcSINEApYZbzjau2gQ==", + "path": "microsoft.extensions.diagnostics/10.0.1", + "hashPath": "microsoft.extensions.diagnostics.10.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Diagnostics.Abstractions/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QMoMrkNpnQym5mpfdxfxpRDuqLpsOuztguFvzH9p+Ex+do+uLFoi7UkAsBO4e9/tNR3eMFraFf2fOAi2cp3jjA==", + "path": "microsoft.extensions.diagnostics.abstractions/10.0.1", + "hashPath": "microsoft.extensions.diagnostics.abstractions.10.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YkmyiPIWAXVb+lPIrM0LE5bbtLOJkCiRTFiHpkVOvhI7uTvCfoOHLEN0LcsY56GpSD7NqX3gJNpsaDe87/B3zg==", + "path": "microsoft.extensions.logging.abstractions/10.0.1", + "hashPath": "microsoft.extensions.logging.abstractions.10.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Options/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-G6VVwywpJI4XIobetGHwg7wDOYC2L2XBYdtskxLaKF/Ynb5QBwLl7Q//wxAR2aVCLkMpoQrjSP9VoORkyddsNQ==", + "path": "microsoft.extensions.options/10.0.1", + "hashPath": "microsoft.extensions.options.10.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pL78/Im7O3WmxHzlKUsWTYchKL881udU7E26gCD3T0+/tPhWVfjPwMzfN/MRKU7aoFYcOiqcG2k1QTlH5woWow==", + "path": "microsoft.extensions.options.configurationextensions/10.0.1", + "hashPath": "microsoft.extensions.options.configurationextensions.10.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DO8XrJkp5x4PddDuc/CH37yDBCs9BYN6ijlKyR3vMb55BP1Vwh90vOX8bNfnKxr5B2qEI3D8bvbY1fFbDveDHQ==", + "path": "microsoft.extensions.primitives/10.0.1", + "hashPath": "microsoft.extensions.primitives.10.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Validation/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5bcu9zWhgY8AZUN1ERNH0BQKFh10xlx4UrCh+0cDn7wB01QkrK4S6Jh45fCgEqmWJWVGqBS2g8MN0Lu/99Zgdg==", + "path": "microsoft.extensions.validation/10.0.1", + "hashPath": "microsoft.extensions.validation.10.0.1.nupkg.sha512" + }, + "Microsoft.JSInterop/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pTfoYBjs7HKmTEk9cNWcSySdTKT8USjviLgmMaSs/YA0+oONufKy9hqqZ5EE4CNy9y24SDDc9lerXfV7aiVfWA==", + "path": "microsoft.jsinterop/10.0.1", + "hashPath": "microsoft.jsinterop.10.0.1.nupkg.sha512" + }, + "Generic/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/bin/Debug/net10.0/Common.dll b/bin/Debug/net10.0/Common.dll new file mode 100644 index 0000000..f77f062 Binary files /dev/null and b/bin/Debug/net10.0/Common.dll differ diff --git a/bin/Debug/net10.0/Common.pdb b/bin/Debug/net10.0/Common.pdb new file mode 100644 index 0000000..da13bb3 Binary files /dev/null and b/bin/Debug/net10.0/Common.pdb differ diff --git a/bin/Debug/net10.0/Common.staticwebassets.endpoints.json b/bin/Debug/net10.0/Common.staticwebassets.endpoints.json new file mode 100644 index 0000000..e305568 --- /dev/null +++ b/bin/Debug/net10.0/Common.staticwebassets.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[{"Route":"Common.dyev8wf6eo.styles.css","AssetFile":"Common.styles.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.006024096386"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"165"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"xl3SnRiiVvqCLLcEfwCtOinPCzK0m/+NQ5glcmoUhKs=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dyev8wf6eo"},{"Name":"integrity","Value":"sha256-i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI="},{"Name":"label","Value":"Common.styles.css"},{"Name":"original-resource","Value":"\"i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI=\""}]},{"Route":"Common.dyev8wf6eo.styles.css","AssetFile":"Common.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"192"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dyev8wf6eo"},{"Name":"integrity","Value":"sha256-i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI="},{"Name":"label","Value":"Common.styles.css"}]},{"Route":"Common.dyev8wf6eo.styles.css.gz","AssetFile":"Common.styles.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"165"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"xl3SnRiiVvqCLLcEfwCtOinPCzK0m/+NQ5glcmoUhKs=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dyev8wf6eo"},{"Name":"integrity","Value":"sha256-xl3SnRiiVvqCLLcEfwCtOinPCzK0m/+NQ5glcmoUhKs="},{"Name":"label","Value":"Common.styles.css.gz"}]},{"Route":"Common.styles.css","AssetFile":"Common.styles.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.006024096386"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"165"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"xl3SnRiiVvqCLLcEfwCtOinPCzK0m/+NQ5glcmoUhKs=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI="},{"Name":"original-resource","Value":"\"i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI=\""}]},{"Route":"Common.styles.css","AssetFile":"Common.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"192"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI="}]},{"Route":"Common.styles.css.gz","AssetFile":"Common.styles.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"165"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"xl3SnRiiVvqCLLcEfwCtOinPCzK0m/+NQ5glcmoUhKs=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xl3SnRiiVvqCLLcEfwCtOinPCzK0m/+NQ5glcmoUhKs="}]},{"Route":"background.png","AssetFile":"background.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"378"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY=\""},{"Name":"Last-Modified","Value":"Sat, 23 Aug 2025 11:32:56 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY="}]},{"Route":"background.x2rx4ajns0.png","AssetFile":"background.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"378"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY=\""},{"Name":"Last-Modified","Value":"Sat, 23 Aug 2025 11:32:56 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x2rx4ajns0"},{"Name":"integrity","Value":"sha256-WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY="},{"Name":"label","Value":"background.png"}]},{"Route":"css/carousal.js","AssetFile":"css/carousal.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000865051903"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1155"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"J94ETb6bgoBQU+vsGNRFiGXzZwXBR/LTfFKi8K4Mo+4=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ="},{"Name":"original-resource","Value":"\"K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ=\""}]},{"Route":"css/carousal.js","AssetFile":"css/carousal.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"3499"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ=\""},{"Name":"Last-Modified","Value":"Wed, 14 Jan 2026 15:07:36 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ="}]},{"Route":"css/carousal.js.gz","AssetFile":"css/carousal.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1155"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"J94ETb6bgoBQU+vsGNRFiGXzZwXBR/LTfFKi8K4Mo+4=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-J94ETb6bgoBQU+vsGNRFiGXzZwXBR/LTfFKi8K4Mo+4="}]},{"Route":"css/carousal.vnhftjewbd.js","AssetFile":"css/carousal.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000865051903"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1155"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"J94ETb6bgoBQU+vsGNRFiGXzZwXBR/LTfFKi8K4Mo+4=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vnhftjewbd"},{"Name":"integrity","Value":"sha256-K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ="},{"Name":"label","Value":"css/carousal.js"},{"Name":"original-resource","Value":"\"K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ=\""}]},{"Route":"css/carousal.vnhftjewbd.js","AssetFile":"css/carousal.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3499"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ=\""},{"Name":"Last-Modified","Value":"Wed, 14 Jan 2026 15:07:36 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vnhftjewbd"},{"Name":"integrity","Value":"sha256-K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ="},{"Name":"label","Value":"css/carousal.js"}]},{"Route":"css/carousal.vnhftjewbd.js.gz","AssetFile":"css/carousal.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1155"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"J94ETb6bgoBQU+vsGNRFiGXzZwXBR/LTfFKi8K4Mo+4=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vnhftjewbd"},{"Name":"integrity","Value":"sha256-J94ETb6bgoBQU+vsGNRFiGXzZwXBR/LTfFKi8K4Mo+4="},{"Name":"label","Value":"css/carousal.js.gz"}]},{"Route":"exampleJsInterop.js","AssetFile":"exampleJsInterop.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005434782609"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"183"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk="},{"Name":"original-resource","Value":"\"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=\""}]},{"Route":"exampleJsInterop.js","AssetFile":"exampleJsInterop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"241"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=\""},{"Name":"Last-Modified","Value":"Sat, 23 Aug 2025 11:32:56 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk="}]},{"Route":"exampleJsInterop.js.gz","AssetFile":"exampleJsInterop.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"183"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o="}]},{"Route":"exampleJsInterop.luzdqbu196.js","AssetFile":"exampleJsInterop.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005434782609"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"183"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"luzdqbu196"},{"Name":"integrity","Value":"sha256-Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk="},{"Name":"label","Value":"exampleJsInterop.js"},{"Name":"original-resource","Value":"\"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=\""}]},{"Route":"exampleJsInterop.luzdqbu196.js","AssetFile":"exampleJsInterop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"241"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=\""},{"Name":"Last-Modified","Value":"Sat, 23 Aug 2025 11:32:56 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"luzdqbu196"},{"Name":"integrity","Value":"sha256-Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk="},{"Name":"label","Value":"exampleJsInterop.js"}]},{"Route":"exampleJsInterop.luzdqbu196.js.gz","AssetFile":"exampleJsInterop.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"183"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"luzdqbu196"},{"Name":"integrity","Value":"sha256-rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o="},{"Name":"label","Value":"exampleJsInterop.js.gz"}]}]} \ No newline at end of file diff --git a/bin/Debug/net10.0/Common.staticwebassets.runtime.json b/bin/Debug/net10.0/Common.staticwebassets.runtime.json new file mode 100644 index 0000000..47e92e3 --- /dev/null +++ b/bin/Debug/net10.0/Common.staticwebassets.runtime.json @@ -0,0 +1 @@ +{"ContentRoots":["/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/wwwroot/","/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/scopedcss/bundle/","/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/compressed/"],"Root":{"Children":{"background.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"background.png"},"Patterns":null},"Common.styles.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"Common.styles.css"},"Patterns":null},"Common.styles.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"8adx25x7bv-{0}-dyev8wf6eo-dyev8wf6eo.gz"},"Patterns":null},"exampleJsInterop.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"exampleJsInterop.js"},"Patterns":null},"exampleJsInterop.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"2lk3dd1lz9-{0}-luzdqbu196-luzdqbu196.gz"},"Patterns":null},"css":{"Children":{"carousal.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/carousal.js"},"Patterns":null},"carousal.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ywk08q3juw-{0}-vnhftjewbd-vnhftjewbd.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}} \ No newline at end of file diff --git a/bin/Debug/net10.0/Generic.CL.dll b/bin/Debug/net10.0/Generic.CL.dll new file mode 100644 index 0000000..5cf10b6 Binary files /dev/null and b/bin/Debug/net10.0/Generic.CL.dll differ diff --git a/bin/Debug/net10.0/Generic.CL.pdb b/bin/Debug/net10.0/Generic.CL.pdb new file mode 100644 index 0000000..efa19eb Binary files /dev/null and b/bin/Debug/net10.0/Generic.CL.pdb differ diff --git a/bin/Debug/net10.0/Generic.dll b/bin/Debug/net10.0/Generic.dll new file mode 100644 index 0000000..3eae051 Binary files /dev/null and b/bin/Debug/net10.0/Generic.dll differ diff --git a/bin/Debug/net10.0/Generic.pdb b/bin/Debug/net10.0/Generic.pdb new file mode 100644 index 0000000..a71b682 Binary files /dev/null and b/bin/Debug/net10.0/Generic.pdb differ diff --git a/bin/Debug/net9.0/Common.deps.json b/bin/Debug/net9.0/Common.deps.json new file mode 100644 index 0000000..7622b39 --- /dev/null +++ b/bin/Debug/net9.0/Common.deps.json @@ -0,0 +1,233 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v9.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v9.0": { + "Common/1.0.0": { + "dependencies": { + "Generic": "1.0.0", + "Microsoft.AspNetCore.Components.Web": "9.0.5" + }, + "runtime": { + "Common.dll": {} + } + }, + "Microsoft.AspNetCore.Authorization/9.0.5": { + "dependencies": { + "Microsoft.AspNetCore.Metadata": "9.0.5", + "Microsoft.Extensions.Logging.Abstractions": "9.0.5", + "Microsoft.Extensions.Options": "9.0.5" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Authorization.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.525.22904" + } + } + }, + "Microsoft.AspNetCore.Components/9.0.5": { + "dependencies": { + "Microsoft.AspNetCore.Authorization": "9.0.5" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Components.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.525.22904" + } + } + }, + "Microsoft.AspNetCore.Components.Forms/9.0.5": { + "dependencies": { + "Microsoft.AspNetCore.Components": "9.0.5" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Components.Forms.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.525.22904" + } + } + }, + "Microsoft.AspNetCore.Components.Web/9.0.5": { + "dependencies": { + "Microsoft.AspNetCore.Components": "9.0.5", + "Microsoft.AspNetCore.Components.Forms": "9.0.5", + "Microsoft.Extensions.DependencyInjection": "9.0.5", + "Microsoft.Extensions.Primitives": "9.0.5", + "Microsoft.JSInterop": "9.0.5" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Components.Web.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.525.22904" + } + } + }, + "Microsoft.AspNetCore.Metadata/9.0.5": { + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Metadata.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.525.22904" + } + } + }, + "Microsoft.Extensions.DependencyInjection/9.0.5": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.5" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.525.21509" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.5": { + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.525.21509" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.5": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.5" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.525.21509" + } + } + }, + "Microsoft.Extensions.Options/9.0.5": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.5", + "Microsoft.Extensions.Primitives": "9.0.5" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.525.21509" + } + } + }, + "Microsoft.Extensions.Primitives/9.0.5": { + "runtime": { + "lib/net9.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.525.21509" + } + } + }, + "Microsoft.JSInterop/9.0.5": { + "runtime": { + "lib/net9.0/Microsoft.JSInterop.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.525.22904" + } + } + }, + "Generic/1.0.0": { + "runtime": { + "Generic.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + } + } + }, + "libraries": { + "Common/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authorization/9.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HPd+7PG+nMZSP13bTJuM5+q0vdzoBtjoBUMP9iuUGwG/kFHkeBOZ9QrZuSHHGmz/IgYdLbqbdJGEykSI5biIPw==", + "path": "microsoft.aspnetcore.authorization/9.0.5", + "hashPath": "microsoft.aspnetcore.authorization.9.0.5.nupkg.sha512" + }, + "Microsoft.AspNetCore.Components/9.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qwA9bx7nWayh1ogWe1H13vyGL64pNjHrukHmnZ9WZbQPtHeY9QTuXkvF/Uue0tzGbxChBf9v2LH5+KeVaRJIqw==", + "path": "microsoft.aspnetcore.components/9.0.5", + "hashPath": "microsoft.aspnetcore.components.9.0.5.nupkg.sha512" + }, + "Microsoft.AspNetCore.Components.Forms/9.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KsAPGDQIa3SpP9yaIDrlETHpqprtmbbotdbGfGJ9aVvn/vi72cCTUVzpWOXIXgstVCb0ZQ940o/wfHKxBZEQMg==", + "path": "microsoft.aspnetcore.components.forms/9.0.5", + "hashPath": "microsoft.aspnetcore.components.forms.9.0.5.nupkg.sha512" + }, + "Microsoft.AspNetCore.Components.Web/9.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-llh2dh9rR9JcnAMqvbijc9BzEnVhloQwKF8Kvfw73N2tJMnUJoxF3C9Ln1sao+nkZo3IpUuUu3k2czLOpS3NRQ==", + "path": "microsoft.aspnetcore.components.web/9.0.5", + "hashPath": "microsoft.aspnetcore.components.web.9.0.5.nupkg.sha512" + }, + "Microsoft.AspNetCore.Metadata/9.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-E4lbYlraZfZLvWgliUEtrqKt42++Yh9mpGKLyGHPGo1FpbZrXF/x+fOg5dbe22bnuosgWn3cj30566XKdwiodw==", + "path": "microsoft.aspnetcore.metadata/9.0.5", + "hashPath": "microsoft.aspnetcore.metadata.9.0.5.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/9.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-N1Mn0T/tUBPoLL+Fzsp+VCEtneUhhxc1//Dx3BeuQ8AX+XrMlYCfnp2zgpEXnTCB7053CLdiqVWPZ7mEX6MPjg==", + "path": "microsoft.extensions.dependencyinjection/9.0.5", + "hashPath": "microsoft.extensions.dependencyinjection.9.0.5.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cjnRtsEAzU73aN6W7vkWy8Phj5t3Xm78HSqgrbh/O4Q9SK/yN73wZVa21QQY6amSLQRQ/M8N+koGnY6PuvKQsw==", + "path": "microsoft.extensions.dependencyinjection.abstractions/9.0.5", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.9.0.5.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pP1PADCrIxMYJXxFmTVbAgEU7GVpjK5i0/tyfU9DiE0oXQy3JWQaOVgCkrCiePLgS8b5sghM3Fau3EeHiVWbCg==", + "path": "microsoft.extensions.logging.abstractions/9.0.5", + "hashPath": "microsoft.extensions.logging.abstractions.9.0.5.nupkg.sha512" + }, + "Microsoft.Extensions.Options/9.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vPdJQU8YLOUSSK8NL0RmwcXJr2E0w8xH559PGQl4JYsglgilZr9LZnqV2zdgk+XR05+kuvhBEZKoDVd46o7NqA==", + "path": "microsoft.extensions.options/9.0.5", + "hashPath": "microsoft.extensions.options.9.0.5.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/9.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b4OAv1qE1C9aM+ShWJu3rlo/WjDwa/I30aIPXqDWSKXTtKl1Wwh6BZn+glH5HndGVVn3C6ZAPQj5nv7/7HJNBQ==", + "path": "microsoft.extensions.primitives/9.0.5", + "hashPath": "microsoft.extensions.primitives.9.0.5.nupkg.sha512" + }, + "Microsoft.JSInterop/9.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ji4fQKbUUZiq3lmzVBMvp15VgBtEyfR51NrmEjo6qnD97Jf1R6C6QkSMjwUO8bw5NZIDRtmPCYurypB3W5AMEg==", + "path": "microsoft.jsinterop/9.0.5", + "hashPath": "microsoft.jsinterop.9.0.5.nupkg.sha512" + }, + "Generic/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/bin/Debug/net9.0/Common.dll b/bin/Debug/net9.0/Common.dll new file mode 100644 index 0000000..c6b8d48 Binary files /dev/null and b/bin/Debug/net9.0/Common.dll differ diff --git a/bin/Debug/net9.0/Common.pdb b/bin/Debug/net9.0/Common.pdb new file mode 100644 index 0000000..773dae6 Binary files /dev/null and b/bin/Debug/net9.0/Common.pdb differ diff --git a/bin/Debug/net9.0/Common.staticwebassets.endpoints.json b/bin/Debug/net9.0/Common.staticwebassets.endpoints.json new file mode 100644 index 0000000..b75adb0 --- /dev/null +++ b/bin/Debug/net9.0/Common.staticwebassets.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[{"Route":"Common.dyev8wf6eo.styles.css","AssetFile":"Common.styles.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.006024096386"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"165"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"xl3SnRiiVvqCLLcEfwCtOinPCzK0m/+NQ5glcmoUhKs=\""},{"Name":"ETag","Value":"W/\"i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dyev8wf6eo"},{"Name":"integrity","Value":"sha256-i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI="},{"Name":"label","Value":"Common.styles.css"}]},{"Route":"Common.dyev8wf6eo.styles.css","AssetFile":"Common.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"192"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI=\""},{"Name":"Last-Modified","Value":"Sun, 21 Dec 2025 08:53:33 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dyev8wf6eo"},{"Name":"integrity","Value":"sha256-i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI="},{"Name":"label","Value":"Common.styles.css"}]},{"Route":"Common.dyev8wf6eo.styles.css.gz","AssetFile":"Common.styles.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"165"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"xl3SnRiiVvqCLLcEfwCtOinPCzK0m/+NQ5glcmoUhKs=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dyev8wf6eo"},{"Name":"integrity","Value":"sha256-xl3SnRiiVvqCLLcEfwCtOinPCzK0m/+NQ5glcmoUhKs="},{"Name":"label","Value":"Common.styles.css.gz"}]},{"Route":"Common.styles.css","AssetFile":"Common.styles.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.006024096386"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"165"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"xl3SnRiiVvqCLLcEfwCtOinPCzK0m/+NQ5glcmoUhKs=\""},{"Name":"ETag","Value":"W/\"i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI="}]},{"Route":"Common.styles.css","AssetFile":"Common.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"192"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI=\""},{"Name":"Last-Modified","Value":"Sun, 21 Dec 2025 08:53:33 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI="}]},{"Route":"Common.styles.css.gz","AssetFile":"Common.styles.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"165"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"xl3SnRiiVvqCLLcEfwCtOinPCzK0m/+NQ5glcmoUhKs=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xl3SnRiiVvqCLLcEfwCtOinPCzK0m/+NQ5glcmoUhKs="}]},{"Route":"background.png","AssetFile":"background.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"378"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY=\""},{"Name":"Last-Modified","Value":"Sat, 23 Aug 2025 11:32:56 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY="}]},{"Route":"background.x2rx4ajns0.png","AssetFile":"background.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"378"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY=\""},{"Name":"Last-Modified","Value":"Sat, 23 Aug 2025 11:32:56 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x2rx4ajns0"},{"Name":"integrity","Value":"sha256-WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY="},{"Name":"label","Value":"background.png"}]},{"Route":"css/carousal.js","AssetFile":"css/carousal.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000865051903"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1155"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"J94ETb6bgoBQU+vsGNRFiGXzZwXBR/LTfFKi8K4Mo+4=\""},{"Name":"ETag","Value":"W/\"K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ="}]},{"Route":"css/carousal.js","AssetFile":"css/carousal.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"3499"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ=\""},{"Name":"Last-Modified","Value":"Wed, 14 Jan 2026 15:07:36 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ="}]},{"Route":"css/carousal.js.gz","AssetFile":"css/carousal.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1155"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"J94ETb6bgoBQU+vsGNRFiGXzZwXBR/LTfFKi8K4Mo+4=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-J94ETb6bgoBQU+vsGNRFiGXzZwXBR/LTfFKi8K4Mo+4="}]},{"Route":"css/carousal.vnhftjewbd.js","AssetFile":"css/carousal.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000865051903"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1155"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"J94ETb6bgoBQU+vsGNRFiGXzZwXBR/LTfFKi8K4Mo+4=\""},{"Name":"ETag","Value":"W/\"K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vnhftjewbd"},{"Name":"integrity","Value":"sha256-K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ="},{"Name":"label","Value":"css/carousal.js"}]},{"Route":"css/carousal.vnhftjewbd.js","AssetFile":"css/carousal.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3499"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ=\""},{"Name":"Last-Modified","Value":"Wed, 14 Jan 2026 15:07:36 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vnhftjewbd"},{"Name":"integrity","Value":"sha256-K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ="},{"Name":"label","Value":"css/carousal.js"}]},{"Route":"css/carousal.vnhftjewbd.js.gz","AssetFile":"css/carousal.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1155"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"J94ETb6bgoBQU+vsGNRFiGXzZwXBR/LTfFKi8K4Mo+4=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vnhftjewbd"},{"Name":"integrity","Value":"sha256-J94ETb6bgoBQU+vsGNRFiGXzZwXBR/LTfFKi8K4Mo+4="},{"Name":"label","Value":"css/carousal.js.gz"}]},{"Route":"exampleJsInterop.js","AssetFile":"exampleJsInterop.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005434782609"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"183"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=\""},{"Name":"ETag","Value":"W/\"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk="}]},{"Route":"exampleJsInterop.js","AssetFile":"exampleJsInterop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"241"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=\""},{"Name":"Last-Modified","Value":"Sat, 23 Aug 2025 11:32:56 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk="}]},{"Route":"exampleJsInterop.js.gz","AssetFile":"exampleJsInterop.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"183"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o="}]},{"Route":"exampleJsInterop.luzdqbu196.js","AssetFile":"exampleJsInterop.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005434782609"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"183"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=\""},{"Name":"ETag","Value":"W/\"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"luzdqbu196"},{"Name":"integrity","Value":"sha256-Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk="},{"Name":"label","Value":"exampleJsInterop.js"}]},{"Route":"exampleJsInterop.luzdqbu196.js","AssetFile":"exampleJsInterop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"241"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=\""},{"Name":"Last-Modified","Value":"Sat, 23 Aug 2025 11:32:56 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"luzdqbu196"},{"Name":"integrity","Value":"sha256-Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk="},{"Name":"label","Value":"exampleJsInterop.js"}]},{"Route":"exampleJsInterop.luzdqbu196.js.gz","AssetFile":"exampleJsInterop.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"183"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"luzdqbu196"},{"Name":"integrity","Value":"sha256-rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o="},{"Name":"label","Value":"exampleJsInterop.js.gz"}]}]} \ No newline at end of file diff --git a/bin/Debug/net9.0/Common.staticwebassets.runtime.json b/bin/Debug/net9.0/Common.staticwebassets.runtime.json new file mode 100644 index 0000000..ce1d358 --- /dev/null +++ b/bin/Debug/net9.0/Common.staticwebassets.runtime.json @@ -0,0 +1 @@ +{"ContentRoots":["/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/wwwroot/","/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/scopedcss/bundle/","/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/compressed/"],"Root":{"Children":{"background.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"background.png"},"Patterns":null},"Common.styles.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"Common.styles.css"},"Patterns":null},"Common.styles.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"8adx25x7bv-{0}-dyev8wf6eo-dyev8wf6eo.gz"},"Patterns":null},"exampleJsInterop.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"exampleJsInterop.js"},"Patterns":null},"exampleJsInterop.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"2lk3dd1lz9-{0}-luzdqbu196-luzdqbu196.gz"},"Patterns":null},"css":{"Children":{"carousal.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/carousal.js"},"Patterns":null},"carousal.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ywk08q3juw-{0}-vnhftjewbd-vnhftjewbd.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}} \ No newline at end of file diff --git a/bin/Debug/net9.0/Generic.dll b/bin/Debug/net9.0/Generic.dll new file mode 100644 index 0000000..aba60d7 Binary files /dev/null and b/bin/Debug/net9.0/Generic.dll differ diff --git a/bin/Debug/net9.0/Generic.pdb b/bin/Debug/net9.0/Generic.pdb new file mode 100644 index 0000000..4801578 Binary files /dev/null and b/bin/Debug/net9.0/Generic.pdb differ diff --git a/obj/Common.RCL.csproj.nuget.dgspec.json b/obj/Common.RCL.csproj.nuget.dgspec.json new file mode 100644 index 0000000..cc68a82 --- /dev/null +++ b/obj/Common.RCL.csproj.nuget.dgspec.json @@ -0,0 +1,684 @@ +{ + "format": 1, + "restore": { + "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/Common.RCL.csproj": {} + }, + "projects": { + "/mnt/data/Work/Programming/MainProgram/Backend/SharedLogic/Generic/Generic.CL/Generic.CL.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/mnt/data/Work/Programming/MainProgram/Backend/SharedLogic/Generic/Generic.CL/Generic.CL.csproj", + "projectName": "Generic.CL", + "projectPath": "/mnt/data/Work/Programming/MainProgram/Backend/SharedLogic/Generic/Generic.CL/Generic.CL.csproj", + "packagesPath": "/home/yla/.nuget/packages/", + "outputPath": "/mnt/data/Work/Programming/MainProgram/Backend/SharedLogic/Generic/Generic.CL/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/yla/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/10.0.102/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + }, + "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/Common.RCL.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/Common.RCL.csproj", + "projectName": "Common.RCL", + "projectPath": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/Common.RCL.csproj", + "packagesPath": "/home/yla/.nuget/packages/", + "outputPath": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/yla/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": { + "/mnt/data/Work/Programming/MainProgram/Backend/SharedLogic/Generic/Generic.CL/Generic.CL.csproj": { + "projectPath": "/mnt/data/Work/Programming/MainProgram/Backend/SharedLogic/Generic/Generic.CL/Generic.CL.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "dependencies": { + "Microsoft.AspNetCore.Components.Web": { + "target": "Package", + "version": "[10.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/10.0.102/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + } + } +} \ No newline at end of file diff --git a/obj/Common.RCL.csproj.nuget.g.props b/obj/Common.RCL.csproj.nuget.g.props new file mode 100644 index 0000000..ac65a2f --- /dev/null +++ b/obj/Common.RCL.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + /home/yla/.nuget/packages/ + /home/yla/.nuget/packages/ + PackageReference + 7.0.0 + + + + + \ No newline at end of file diff --git a/obj/Common.RCL.csproj.nuget.g.targets b/obj/Common.RCL.csproj.nuget.g.targets new file mode 100644 index 0000000..7e0826c --- /dev/null +++ b/obj/Common.RCL.csproj.nuget.g.targets @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/obj/Common.csproj.nuget.dgspec.json b/obj/Common.csproj.nuget.dgspec.json new file mode 100644 index 0000000..4c72124 --- /dev/null +++ b/obj/Common.csproj.nuget.dgspec.json @@ -0,0 +1,684 @@ +{ + "format": 1, + "restore": { + "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.csproj": {} + }, + "projects": { + "/mnt/data/Work/Programming/MainProgram/Backend/SharedLogic/Generic/Generic.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/mnt/data/Work/Programming/MainProgram/Backend/SharedLogic/Generic/Generic.csproj", + "projectName": "Generic", + "projectPath": "/mnt/data/Work/Programming/MainProgram/Backend/SharedLogic/Generic/Generic.csproj", + "packagesPath": "/home/yla/.nuget/packages/", + "outputPath": "/mnt/data/Work/Programming/MainProgram/Backend/SharedLogic/Generic/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/yla/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/10.0.102/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + }, + "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.csproj", + "projectName": "Common", + "projectPath": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.csproj", + "packagesPath": "/home/yla/.nuget/packages/", + "outputPath": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/yla/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": { + "/mnt/data/Work/Programming/MainProgram/Backend/SharedLogic/Generic/Generic.csproj": { + "projectPath": "/mnt/data/Work/Programming/MainProgram/Backend/SharedLogic/Generic/Generic.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "dependencies": { + "Microsoft.AspNetCore.Components.Web": { + "target": "Package", + "version": "[10.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/10.0.102/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + } + } +} \ No newline at end of file diff --git a/obj/Common.csproj.nuget.g.props b/obj/Common.csproj.nuget.g.props new file mode 100644 index 0000000..ac65a2f --- /dev/null +++ b/obj/Common.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + /home/yla/.nuget/packages/ + /home/yla/.nuget/packages/ + PackageReference + 7.0.0 + + + + + \ No newline at end of file diff --git a/obj/Common.csproj.nuget.g.targets b/obj/Common.csproj.nuget.g.targets new file mode 100644 index 0000000..7e0826c --- /dev/null +++ b/obj/Common.csproj.nuget.g.targets @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs b/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs new file mode 100644 index 0000000..925b135 --- /dev/null +++ b/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v10.0", FrameworkDisplayName = ".NET 10.0")] diff --git a/obj/Debug/net10.0/Common.AssemblyInfo.cs b/obj/Debug/net10.0/Common.AssemblyInfo.cs new file mode 100644 index 0000000..1709229 --- /dev/null +++ b/obj/Debug/net10.0/Common.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("Common")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+89d8c7f2868cdc25655d2a003c6dc8ab9e106e46")] +[assembly: System.Reflection.AssemblyProductAttribute("Common")] +[assembly: System.Reflection.AssemblyTitleAttribute("Common")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/obj/Debug/net10.0/Common.AssemblyInfoInputs.cache b/obj/Debug/net10.0/Common.AssemblyInfoInputs.cache new file mode 100644 index 0000000..5eb6787 --- /dev/null +++ b/obj/Debug/net10.0/Common.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +5edb640da685f506b186920b7ecbe5e5c08a4f84e23711eb8fc6307a2d772c41 diff --git a/obj/Debug/net10.0/Common.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net10.0/Common.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..2680dc7 --- /dev/null +++ b/obj/Debug/net10.0/Common.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,79 @@ +is_global = true +build_property.TargetFramework = net10.0 +build_property.TargetFrameworkIdentifier = .NETCoreApp +build_property.TargetFrameworkVersion = v10.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 = Common +build_property.RootNamespace = Common +build_property.ProjectDir = /mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.RazorLangVersion = 9.0 +build_property.SupportLocalizedComponentNames = +build_property.GenerateRazorMetadataSourceChecksumAttributes = +build_property.MSBuildProjectDirectory = /mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common +build_property._RazorSourceGeneratorDebug = +build_property.EffectiveAnalysisLevelStyle = 10.0 +build_property.EnableCodeStyleSeverity = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common/Carousal.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tbW9uL0Nhcm91c2FsLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common/Chip.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tbW9uL0NoaXAucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common/ConflictProductsDialog.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tbW9uL0NvbmZsaWN0UHJvZHVjdHNEaWFsb2cucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common/Cropper.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tbW9uL0Nyb3BwZXIucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common/DropZone.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tbW9uL0Ryb3Bab25lLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common/FileUpload.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tbW9uL0ZpbGVVcGxvYWQucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common/GenericTable.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tbW9uL0dlbmVyaWNUYWJsZS5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common/ImageViewer.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tbW9uL0ltYWdlVmlld2VyLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common/LanguageSwitcher.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tbW9uL0xhbmd1YWdlU3dpdGNoZXIucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common/PaginationComp.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tbW9uL1BhZ2luYXRpb25Db21wLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common/SingleFileUpload.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tbW9uL1NpbmdsZUZpbGVVcGxvYWQucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Components/DaisyToastContainer.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9EYWlzeVRvYXN0Q29udGFpbmVyLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/_Imports.razor] +build_metadata.AdditionalFiles.TargetPath = X0ltcG9ydHMucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Component1.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50MS5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = b-zsln377zdo diff --git a/obj/Debug/net10.0/Common.GlobalUsings.g.cs b/obj/Debug/net10.0/Common.GlobalUsings.g.cs new file mode 100644 index 0000000..a32ec4a --- /dev/null +++ b/obj/Debug/net10.0/Common.GlobalUsings.g.cs @@ -0,0 +1,9 @@ +// +global using Microsoft.Extensions.Validation.Embedded; +global using System; +global using System.Collections.Generic; +global using System.IO; +global using System.Linq; +global using System.Net.Http; +global using System.Threading; +global using System.Threading.Tasks; diff --git a/obj/Debug/net10.0/Common.RCL.AssemblyInfo.cs b/obj/Debug/net10.0/Common.RCL.AssemblyInfo.cs new file mode 100644 index 0000000..1ef5a90 --- /dev/null +++ b/obj/Debug/net10.0/Common.RCL.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("Common.RCL")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+206dfeabd74212fb6442b2ac195b5904b0472cb7")] +[assembly: System.Reflection.AssemblyProductAttribute("Common.RCL")] +[assembly: System.Reflection.AssemblyTitleAttribute("Common.RCL")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/obj/Debug/net10.0/Common.RCL.AssemblyInfoInputs.cache b/obj/Debug/net10.0/Common.RCL.AssemblyInfoInputs.cache new file mode 100644 index 0000000..427aee7 --- /dev/null +++ b/obj/Debug/net10.0/Common.RCL.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +a8a16323e6df608825b6df2d80decd1786430ef9504dad94424644537a6196c2 diff --git a/obj/Debug/net10.0/Common.RCL.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net10.0/Common.RCL.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..45e36af --- /dev/null +++ b/obj/Debug/net10.0/Common.RCL.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,79 @@ +is_global = true +build_property.TargetFramework = net10.0 +build_property.TargetFrameworkIdentifier = .NETCoreApp +build_property.TargetFrameworkVersion = v10.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 = Common.RCL +build_property.RootNamespace = Common.RCL +build_property.ProjectDir = /mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.RazorLangVersion = 9.0 +build_property.SupportLocalizedComponentNames = +build_property.GenerateRazorMetadataSourceChecksumAttributes = +build_property.MSBuildProjectDirectory = /mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL +build_property._RazorSourceGeneratorDebug = +build_property.EffectiveAnalysisLevelStyle = 10.0 +build_property.EnableCodeStyleSeverity = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/Common/Carousal.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tbW9uL0Nhcm91c2FsLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/Common/Chip.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tbW9uL0NoaXAucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/Common/ConflictProductsDialog.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tbW9uL0NvbmZsaWN0UHJvZHVjdHNEaWFsb2cucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/Common/Cropper.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tbW9uL0Nyb3BwZXIucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/Common/DropZone.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tbW9uL0Ryb3Bab25lLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/Common/FileUpload.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tbW9uL0ZpbGVVcGxvYWQucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/Common/GenericTable.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tbW9uL0dlbmVyaWNUYWJsZS5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/Common/ImageViewer.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tbW9uL0ltYWdlVmlld2VyLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/Common/LanguageSwitcher.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tbW9uL0xhbmd1YWdlU3dpdGNoZXIucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/Common/PaginationComp.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tbW9uL1BhZ2luYXRpb25Db21wLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/Common/SingleFileUpload.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tbW9uL1NpbmdsZUZpbGVVcGxvYWQucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/Components/DaisyToastContainer.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9EYWlzeVRvYXN0Q29udGFpbmVyLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/_Imports.razor] +build_metadata.AdditionalFiles.TargetPath = X0ltcG9ydHMucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/Component1.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50MS5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = b-2yzl685lju diff --git a/obj/Debug/net10.0/Common.RCL.GlobalUsings.g.cs b/obj/Debug/net10.0/Common.RCL.GlobalUsings.g.cs new file mode 100644 index 0000000..a32ec4a --- /dev/null +++ b/obj/Debug/net10.0/Common.RCL.GlobalUsings.g.cs @@ -0,0 +1,9 @@ +// +global using Microsoft.Extensions.Validation.Embedded; +global using System; +global using System.Collections.Generic; +global using System.IO; +global using System.Linq; +global using System.Net.Http; +global using System.Threading; +global using System.Threading.Tasks; diff --git a/obj/Debug/net10.0/Common.RCL.assets.cache b/obj/Debug/net10.0/Common.RCL.assets.cache new file mode 100644 index 0000000..c1318c6 Binary files /dev/null and b/obj/Debug/net10.0/Common.RCL.assets.cache differ diff --git a/obj/Debug/net10.0/Common.RCL.csproj.AssemblyReference.cache b/obj/Debug/net10.0/Common.RCL.csproj.AssemblyReference.cache new file mode 100644 index 0000000..4f3640e Binary files /dev/null and b/obj/Debug/net10.0/Common.RCL.csproj.AssemblyReference.cache differ diff --git a/obj/Debug/net10.0/Common.RCL.csproj.CoreCompileInputs.cache b/obj/Debug/net10.0/Common.RCL.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..92df2b7 --- /dev/null +++ b/obj/Debug/net10.0/Common.RCL.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +a33496b284ae6a1a775d78a350a75485499833af831e4dabbb6c8b70dca22eaa diff --git a/obj/Debug/net10.0/Common.RCL.csproj.FileListAbsolute.txt b/obj/Debug/net10.0/Common.RCL.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..f09aaa0 --- /dev/null +++ b/obj/Debug/net10.0/Common.RCL.csproj.FileListAbsolute.txt @@ -0,0 +1,41 @@ +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/bin/Debug/net10.0/Common.RCL.staticwebassets.runtime.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/bin/Debug/net10.0/Common.RCL.staticwebassets.endpoints.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/bin/Debug/net10.0/Common.RCL.deps.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/bin/Debug/net10.0/Common.RCL.dll +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/bin/Debug/net10.0/Common.RCL.pdb +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/bin/Debug/net10.0/Generic.CL.dll +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/bin/Debug/net10.0/Generic.CL.pdb +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/EmbeddedAttribute.cs +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/ValidatableTypeAttribute.cs +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/Common.RCL.csproj.AssemblyReference.cache +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/rpswa.dswa.cache.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/Common.RCL.GeneratedMSBuildEditorConfig.editorconfig +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/Common.RCL.AssemblyInfoInputs.cache +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/Common.RCL.AssemblyInfo.cs +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/Common.RCL.csproj.CoreCompileInputs.cache +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/rjimswa.dswa.cache.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/rjsmrazor.dswa.cache.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/scopedcss/Component1.razor.rz.scp.css +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/scopedcss/bundle/Common.RCL.styles.css +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/scopedcss/projectbundle/Common.RCL.bundle.scp.css +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/compressed/32onbuj1wh-{0}-vnhftjewbd-vnhftjewbd.gz +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/compressed/fiwgk79u47-{0}-luzdqbu196-luzdqbu196.gz +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/compressed/fy9rjyaakk-{0}-dph6jvottp-dph6jvottp.gz +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/compressed/nyiqsnbdqh-{0}-dph6jvottp-dph6jvottp.gz +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/staticwebassets.build.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/staticwebassets.build.json.cache +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/staticwebassets.development.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/staticwebassets.build.endpoints.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/swae.build.ex.cache +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/staticwebassets/msbuild.Common.RCL.Microsoft.AspNetCore.StaticWebAssets.props +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/staticwebassets/msbuild.Common.RCL.Microsoft.AspNetCore.StaticWebAssetEndpoints.props +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/staticwebassets/msbuild.build.Common.RCL.props +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/staticwebassets/msbuild.buildMultiTargeting.Common.RCL.props +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/staticwebassets/msbuild.buildTransitive.Common.RCL.props +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/staticwebassets.pack.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/Common.RCL.csproj.Up2Date +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/Common.RCL.dll +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/refint/Common.RCL.dll +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/Common.RCL.pdb +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/ref/Common.RCL.dll diff --git a/obj/Debug/net10.0/Common.RCL.csproj.Up2Date b/obj/Debug/net10.0/Common.RCL.csproj.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/obj/Debug/net10.0/Common.RCL.dll b/obj/Debug/net10.0/Common.RCL.dll new file mode 100644 index 0000000..2957858 Binary files /dev/null and b/obj/Debug/net10.0/Common.RCL.dll differ diff --git a/obj/Debug/net10.0/Common.RCL.pdb b/obj/Debug/net10.0/Common.RCL.pdb new file mode 100644 index 0000000..ecc1fde Binary files /dev/null and b/obj/Debug/net10.0/Common.RCL.pdb differ diff --git a/obj/Debug/net10.0/Common.assets.cache b/obj/Debug/net10.0/Common.assets.cache new file mode 100644 index 0000000..48fa4f7 Binary files /dev/null and b/obj/Debug/net10.0/Common.assets.cache differ diff --git a/obj/Debug/net10.0/Common.csproj.AssemblyReference.cache b/obj/Debug/net10.0/Common.csproj.AssemblyReference.cache new file mode 100644 index 0000000..9919309 Binary files /dev/null and b/obj/Debug/net10.0/Common.csproj.AssemblyReference.cache differ diff --git a/obj/Debug/net10.0/Common.csproj.CoreCompileInputs.cache b/obj/Debug/net10.0/Common.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..c0f288b --- /dev/null +++ b/obj/Debug/net10.0/Common.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +970668185c94cc78e8bff9f937627963e18d2d45b1ff7eb5095736dc4da0355a diff --git a/obj/Debug/net10.0/Common.csproj.FileListAbsolute.txt b/obj/Debug/net10.0/Common.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..d8a3c86 --- /dev/null +++ b/obj/Debug/net10.0/Common.csproj.FileListAbsolute.txt @@ -0,0 +1,82 @@ +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/bin/Debug/net10.0/Common.staticwebassets.runtime.json +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/bin/Debug/net10.0/Common.staticwebassets.endpoints.json +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/bin/Debug/net10.0/Common.deps.json +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/bin/Debug/net10.0/Common.dll +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/bin/Debug/net10.0/Common.pdb +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/bin/Debug/net10.0/Generic.dll +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/bin/Debug/net10.0/Generic.pdb +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/EmbeddedAttribute.cs +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/ValidatableTypeAttribute.cs +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/Common.csproj.AssemblyReference.cache +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/rpswa.dswa.cache.json +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/Common.GeneratedMSBuildEditorConfig.editorconfig +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/Common.AssemblyInfoInputs.cache +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/Common.AssemblyInfo.cs +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/Common.csproj.CoreCompileInputs.cache +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/rjimswa.dswa.cache.json +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/rjsmrazor.dswa.cache.json +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/scopedcss/Component1.razor.rz.scp.css +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/scopedcss/bundle/Common.styles.css +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/scopedcss/projectbundle/Common.bundle.scp.css +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/compressed/ywk08q3juw-{0}-vnhftjewbd-vnhftjewbd.gz +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/compressed/2lk3dd1lz9-{0}-luzdqbu196-luzdqbu196.gz +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/compressed/8adx25x7bv-{0}-dyev8wf6eo-dyev8wf6eo.gz +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/compressed/4dziwjilcl-{0}-dyev8wf6eo-dyev8wf6eo.gz +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/staticwebassets.build.json +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/staticwebassets.build.json.cache +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/staticwebassets.development.json +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/staticwebassets.build.endpoints.json +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/swae.build.ex.cache +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/staticwebassets/msbuild.Common.Microsoft.AspNetCore.StaticWebAssets.props +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/staticwebassets/msbuild.Common.Microsoft.AspNetCore.StaticWebAssetEndpoints.props +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/staticwebassets/msbuild.build.Common.props +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/staticwebassets/msbuild.buildMultiTargeting.Common.props +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/staticwebassets/msbuild.buildTransitive.Common.props +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/staticwebassets.pack.json +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/Common.csproj.Up2Date +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/Common.dll +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/refint/Common.dll +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/Common.pdb +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/ref/Common.dll +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/bin/Debug/net10.0/Common.staticwebassets.runtime.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/bin/Debug/net10.0/Common.staticwebassets.endpoints.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/bin/Debug/net10.0/Common.deps.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/bin/Debug/net10.0/Common.dll +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/bin/Debug/net10.0/Common.pdb +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/bin/Debug/net10.0/Generic.dll +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/bin/Debug/net10.0/Generic.pdb +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/EmbeddedAttribute.cs +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/ValidatableTypeAttribute.cs +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/Common.csproj.AssemblyReference.cache +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/rpswa.dswa.cache.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/Common.GeneratedMSBuildEditorConfig.editorconfig +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/Common.AssemblyInfoInputs.cache +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/Common.AssemblyInfo.cs +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/Common.csproj.CoreCompileInputs.cache +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/rjimswa.dswa.cache.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/rjsmrazor.dswa.cache.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/scopedcss/Component1.razor.rz.scp.css +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/scopedcss/bundle/Common.styles.css +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/scopedcss/projectbundle/Common.bundle.scp.css +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/compressed/ywk08q3juw-{0}-vnhftjewbd-vnhftjewbd.gz +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/compressed/2lk3dd1lz9-{0}-luzdqbu196-luzdqbu196.gz +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/compressed/8adx25x7bv-{0}-dyev8wf6eo-dyev8wf6eo.gz +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/compressed/4dziwjilcl-{0}-dyev8wf6eo-dyev8wf6eo.gz +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/staticwebassets.build.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/staticwebassets.build.json.cache +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/staticwebassets.development.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/staticwebassets.build.endpoints.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/swae.build.ex.cache +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/staticwebassets/msbuild.Common.Microsoft.AspNetCore.StaticWebAssets.props +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/staticwebassets/msbuild.Common.Microsoft.AspNetCore.StaticWebAssetEndpoints.props +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/staticwebassets/msbuild.build.Common.props +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/staticwebassets/msbuild.buildMultiTargeting.Common.props +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/staticwebassets/msbuild.buildTransitive.Common.props +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/staticwebassets.pack.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/Common.csproj.Up2Date +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/Common.dll +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/refint/Common.dll +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/Common.pdb +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net10.0/ref/Common.dll diff --git a/obj/Debug/net10.0/Common.csproj.Up2Date b/obj/Debug/net10.0/Common.csproj.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/obj/Debug/net10.0/Common.dll b/obj/Debug/net10.0/Common.dll new file mode 100644 index 0000000..f77f062 Binary files /dev/null and b/obj/Debug/net10.0/Common.dll differ diff --git a/obj/Debug/net10.0/Common.pdb b/obj/Debug/net10.0/Common.pdb new file mode 100644 index 0000000..da13bb3 Binary files /dev/null and b/obj/Debug/net10.0/Common.pdb differ diff --git a/obj/Debug/net10.0/EmbeddedAttribute.cs b/obj/Debug/net10.0/EmbeddedAttribute.cs new file mode 100644 index 0000000..1931537 --- /dev/null +++ b/obj/Debug/net10.0/EmbeddedAttribute.cs @@ -0,0 +1,7 @@ +// +namespace Microsoft.CodeAnalysis +{ +internal sealed partial class EmbeddedAttribute : global::System.Attribute +{ +} +} diff --git a/obj/Debug/net10.0/ValidatableTypeAttribute.cs b/obj/Debug/net10.0/ValidatableTypeAttribute.cs new file mode 100644 index 0000000..26eb880 --- /dev/null +++ b/obj/Debug/net10.0/ValidatableTypeAttribute.cs @@ -0,0 +1,9 @@ +// +namespace Microsoft.Extensions.Validation.Embedded +{ +[global::Microsoft.CodeAnalysis.EmbeddedAttribute] +[global::System.AttributeUsage(global::System.AttributeTargets.Class)] +internal sealed class ValidatableTypeAttribute : global::System.Attribute +{ +} +} diff --git a/obj/Debug/net10.0/compressed/2lk3dd1lz9-{0}-luzdqbu196-luzdqbu196.gz b/obj/Debug/net10.0/compressed/2lk3dd1lz9-{0}-luzdqbu196-luzdqbu196.gz new file mode 100644 index 0000000..457c180 Binary files /dev/null and b/obj/Debug/net10.0/compressed/2lk3dd1lz9-{0}-luzdqbu196-luzdqbu196.gz differ diff --git a/obj/Debug/net10.0/compressed/32onbuj1wh-{0}-vnhftjewbd-vnhftjewbd.gz b/obj/Debug/net10.0/compressed/32onbuj1wh-{0}-vnhftjewbd-vnhftjewbd.gz new file mode 100644 index 0000000..e769031 Binary files /dev/null and b/obj/Debug/net10.0/compressed/32onbuj1wh-{0}-vnhftjewbd-vnhftjewbd.gz differ diff --git a/obj/Debug/net10.0/compressed/4dziwjilcl-{0}-dyev8wf6eo-dyev8wf6eo.gz b/obj/Debug/net10.0/compressed/4dziwjilcl-{0}-dyev8wf6eo-dyev8wf6eo.gz new file mode 100644 index 0000000..370695f Binary files /dev/null and b/obj/Debug/net10.0/compressed/4dziwjilcl-{0}-dyev8wf6eo-dyev8wf6eo.gz differ diff --git a/obj/Debug/net10.0/compressed/8adx25x7bv-{0}-dyev8wf6eo-dyev8wf6eo.gz b/obj/Debug/net10.0/compressed/8adx25x7bv-{0}-dyev8wf6eo-dyev8wf6eo.gz new file mode 100644 index 0000000..370695f Binary files /dev/null and b/obj/Debug/net10.0/compressed/8adx25x7bv-{0}-dyev8wf6eo-dyev8wf6eo.gz differ diff --git a/obj/Debug/net10.0/compressed/fiwgk79u47-{0}-luzdqbu196-luzdqbu196.gz b/obj/Debug/net10.0/compressed/fiwgk79u47-{0}-luzdqbu196-luzdqbu196.gz new file mode 100644 index 0000000..457c180 Binary files /dev/null and b/obj/Debug/net10.0/compressed/fiwgk79u47-{0}-luzdqbu196-luzdqbu196.gz differ diff --git a/obj/Debug/net10.0/compressed/fy9rjyaakk-{0}-dph6jvottp-dph6jvottp.gz b/obj/Debug/net10.0/compressed/fy9rjyaakk-{0}-dph6jvottp-dph6jvottp.gz new file mode 100644 index 0000000..2a5636d Binary files /dev/null and b/obj/Debug/net10.0/compressed/fy9rjyaakk-{0}-dph6jvottp-dph6jvottp.gz differ diff --git a/obj/Debug/net10.0/compressed/nyiqsnbdqh-{0}-dph6jvottp-dph6jvottp.gz b/obj/Debug/net10.0/compressed/nyiqsnbdqh-{0}-dph6jvottp-dph6jvottp.gz new file mode 100644 index 0000000..2a5636d Binary files /dev/null and b/obj/Debug/net10.0/compressed/nyiqsnbdqh-{0}-dph6jvottp-dph6jvottp.gz differ diff --git a/obj/Debug/net10.0/compressed/ywk08q3juw-{0}-vnhftjewbd-vnhftjewbd.gz b/obj/Debug/net10.0/compressed/ywk08q3juw-{0}-vnhftjewbd-vnhftjewbd.gz new file mode 100644 index 0000000..e769031 Binary files /dev/null and b/obj/Debug/net10.0/compressed/ywk08q3juw-{0}-vnhftjewbd-vnhftjewbd.gz differ diff --git a/obj/Debug/net10.0/rbcswa.dswa.cache.json b/obj/Debug/net10.0/rbcswa.dswa.cache.json new file mode 100644 index 0000000..e353726 --- /dev/null +++ b/obj/Debug/net10.0/rbcswa.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"2ilJ2M8+ZdH0swl4cXFj9Ji8kay0R08ISE/fEc+OL0o=","FingerprintPatternsHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["yvgNwe5RGg\u002BxgcXkxLEf/w4100B7ZgCZdqHRMehtWyA=","flafURq9pd7T4okpGfgf3wnYNJEWhwwO3DBOaaZF0GI=","baCFk1g\u002BZ/cMrsGe2aRiV5pLajlBhgeJiCPTDBU3djQ=","1OEyUMncF1pgzue80UCOK/Lvpz\u002BQKKcoeSkuReuk0NM="],"CachedAssets":{"yvgNwe5RGg\u002BxgcXkxLEf/w4100B7ZgCZdqHRMehtWyA=":{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/compressed/32onbuj1wh-{0}-vnhftjewbd-vnhftjewbd.gz","SourceId":"Common.RCL","SourceType":"Discovered","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/compressed/","BasePath":"_content/Common.RCL","RelativePath":"css/carousal#[.{fingerprint=vnhftjewbd}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/wwwroot/css/carousal.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"bbx64jg9ax","Integrity":"J94ETb6bgoBQU\u002BvsGNRFiGXzZwXBR/LTfFKi8K4Mo\u002B4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/wwwroot/css/carousal.js","FileLength":1155,"LastWriteTime":"2026-05-12T13:20:55.1062163+00:00"},"flafURq9pd7T4okpGfgf3wnYNJEWhwwO3DBOaaZF0GI=":{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/compressed/fiwgk79u47-{0}-luzdqbu196-luzdqbu196.gz","SourceId":"Common.RCL","SourceType":"Discovered","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/compressed/","BasePath":"_content/Common.RCL","RelativePath":"exampleJsInterop#[.{fingerprint=luzdqbu196}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/wwwroot/exampleJsInterop.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"0plubunr1s","Integrity":"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/wwwroot/exampleJsInterop.js","FileLength":183,"LastWriteTime":"2026-05-12T13:20:55.1062163+00:00"},"baCFk1g\u002BZ/cMrsGe2aRiV5pLajlBhgeJiCPTDBU3djQ=":{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/compressed/fy9rjyaakk-{0}-dph6jvottp-dph6jvottp.gz","SourceId":"Common.RCL","SourceType":"Computed","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/compressed/","BasePath":"_content/Common.RCL","RelativePath":"Common.RCL#[.{fingerprint=dph6jvottp}]?.styles.css.gz","AssetKind":"All","AssetMode":"CurrentProject","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/scopedcss/bundle/Common.RCL.styles.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"v4238q3cpq","Integrity":"cfLCvUj1\u002B1Kj9mHSstSqTaP1iX3bHcciSjzZjdnjlA0=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/scopedcss/bundle/Common.RCL.styles.css","FileLength":171,"LastWriteTime":"2026-05-12T13:20:55.1062163+00:00"},"1OEyUMncF1pgzue80UCOK/Lvpz\u002BQKKcoeSkuReuk0NM=":{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/compressed/nyiqsnbdqh-{0}-dph6jvottp-dph6jvottp.gz","SourceId":"Common.RCL","SourceType":"Computed","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/compressed/","BasePath":"_content/Common.RCL","RelativePath":"Common.RCL#[.{fingerprint=dph6jvottp}]!.bundle.scp.css.gz","AssetKind":"All","AssetMode":"Reference","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/scopedcss/projectbundle/Common.RCL.bundle.scp.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"v4238q3cpq","Integrity":"cfLCvUj1\u002B1Kj9mHSstSqTaP1iX3bHcciSjzZjdnjlA0=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/scopedcss/projectbundle/Common.RCL.bundle.scp.css","FileLength":171,"LastWriteTime":"2026-05-12T13:20:55.1062163+00:00"}},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/obj/Debug/net10.0/ref/Common.RCL.dll b/obj/Debug/net10.0/ref/Common.RCL.dll new file mode 100644 index 0000000..b8ae353 Binary files /dev/null and b/obj/Debug/net10.0/ref/Common.RCL.dll differ diff --git a/obj/Debug/net10.0/ref/Common.dll b/obj/Debug/net10.0/ref/Common.dll new file mode 100644 index 0000000..51fe194 Binary files /dev/null and b/obj/Debug/net10.0/ref/Common.dll differ diff --git a/obj/Debug/net10.0/refint/Common.RCL.dll b/obj/Debug/net10.0/refint/Common.RCL.dll new file mode 100644 index 0000000..b8ae353 Binary files /dev/null and b/obj/Debug/net10.0/refint/Common.RCL.dll differ diff --git a/obj/Debug/net10.0/refint/Common.dll b/obj/Debug/net10.0/refint/Common.dll new file mode 100644 index 0000000..51fe194 Binary files /dev/null and b/obj/Debug/net10.0/refint/Common.dll differ diff --git a/obj/Debug/net10.0/rjimswa.dswa.cache.json b/obj/Debug/net10.0/rjimswa.dswa.cache.json new file mode 100644 index 0000000..86853ba --- /dev/null +++ b/obj/Debug/net10.0/rjimswa.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"/YVbWQ+OEY6z+7BQjSAmp8ozFdV1FjcqYcnk3AO/5pQ=","FingerprintPatternsHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","PropertyOverridesHash":"R7Rea/YQmcweqCbKffD9oUelggfpJQX85r65aYZsas0=","InputHashes":["O4prNTALtvwH1/N32fENfYsy9IOIX78XjBsOSCaX0ZY=","\u002Bx5wxE17uu1urzUVlqvE4IrhbWsPhSbZfPCjKsM6qMc=","EuKlfuZhZqFhvxrqNqWHdBQdeOIFTzWtpE4MZ2geZ/Y="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json b/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json new file mode 100644 index 0000000..d2356fa --- /dev/null +++ b/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"Xki1PvKSpjOesDjNdiREv1MOnNxpKpJOILp06x2SGQE=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["aOQerWEyNB8mpjuTg1YIzPEuu9/zjdyo3WS9zk8kBBU=","KcySDv5IXB0VmRZ\u002BDJXEYJzZ1BabT9\u002BmlnJAtvQxtrw=","jAY7dNrDeAk9zKokp7scJrlTBIm6w7Hu8Dtka54kkC0=","tqgpBXIx0rP05IH4mTs1EpPta88KoUOaGrYeRGVRR6g=","rWJ6NPEZv/KTn0HyD/X27lCx9Djm7T27uxsy8RpvEvc=","7/9ed/3j0kbQOAGnMr4osMD8\u002BfpDXuTqSdxDxZDT52s=","h6mYRVJqnuOdtSBKmbWaSHYQdF5Ji/0FLEsrpy6FE9M=","XhlyBFnr9ShdZWzJ7QKKePItRPiBMNwrW5mUEHb/5zc=","uOUIcQXdswkfSAw8Tdi6LHRjVoPzD7V1vKWDJ/dkFpM=","Zq/CjWk7DGNBnNlNkl\u002BxHPtq\u002BAeOX/2nalUjtNnNcRk=","IebmzswstCWwfViKKGPTWRd32w1UZD1IFXylsTrAeqQ=","RTYsn9ygY5nJWoBpvbiQjHUks29J4ZqMVn52VeSffW0=","9uxhLCDGLt\u002BztrO6s/Lk/7GpfQUIaiIAlRYtZsK2Gx0=","Cb\u002BGb0Xenm7EPfYwY6mlSorii5OkqDuBqCw\u002BIaX63YY=","Et7S1KxeSRHIP2qqT624vfF8mnFkFQZcARib5DB69zY=","Z9B041\u002B\u002BKd8KVQk7p7Z9qgOXLyU9ocPzAzCEvZop\u002BI4=","fiYeunn741VpcnsCvy/2Li\u002B326yop0HlZj2tD\u002BIuadg=","mO\u002BqYbUzJo9o9VSKAzlWnRiw1TxaqmzvDj5VyP5zVrA="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/obj/Debug/net10.0/rjsmrazor.dswa.cache.json b/obj/Debug/net10.0/rjsmrazor.dswa.cache.json new file mode 100644 index 0000000..9aa6647 --- /dev/null +++ b/obj/Debug/net10.0/rjsmrazor.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"S+DEot0G1dpHVM/7m5QyhQQ+qs/qqT01m5/lcMHJhFQ=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["aOQerWEyNB8mpjuTg1YIzPEuu9/zjdyo3WS9zk8kBBU=","KcySDv5IXB0VmRZ\u002BDJXEYJzZ1BabT9\u002BmlnJAtvQxtrw=","jAY7dNrDeAk9zKokp7scJrlTBIm6w7Hu8Dtka54kkC0=","tqgpBXIx0rP05IH4mTs1EpPta88KoUOaGrYeRGVRR6g=","rWJ6NPEZv/KTn0HyD/X27lCx9Djm7T27uxsy8RpvEvc=","7/9ed/3j0kbQOAGnMr4osMD8\u002BfpDXuTqSdxDxZDT52s=","h6mYRVJqnuOdtSBKmbWaSHYQdF5Ji/0FLEsrpy6FE9M=","XhlyBFnr9ShdZWzJ7QKKePItRPiBMNwrW5mUEHb/5zc=","uOUIcQXdswkfSAw8Tdi6LHRjVoPzD7V1vKWDJ/dkFpM=","Zq/CjWk7DGNBnNlNkl\u002BxHPtq\u002BAeOX/2nalUjtNnNcRk=","IebmzswstCWwfViKKGPTWRd32w1UZD1IFXylsTrAeqQ=","RTYsn9ygY5nJWoBpvbiQjHUks29J4ZqMVn52VeSffW0=","9uxhLCDGLt\u002BztrO6s/Lk/7GpfQUIaiIAlRYtZsK2Gx0=","Cb\u002BGb0Xenm7EPfYwY6mlSorii5OkqDuBqCw\u002BIaX63YY=","Et7S1KxeSRHIP2qqT624vfF8mnFkFQZcARib5DB69zY=","Z9B041\u002B\u002BKd8KVQk7p7Z9qgOXLyU9ocPzAzCEvZop\u002BI4=","fiYeunn741VpcnsCvy/2Li\u002B326yop0HlZj2tD\u002BIuadg=","mO\u002BqYbUzJo9o9VSKAzlWnRiw1TxaqmzvDj5VyP5zVrA="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/obj/Debug/net10.0/rpswa.dswa.cache.json b/obj/Debug/net10.0/rpswa.dswa.cache.json new file mode 100644 index 0000000..9debf26 --- /dev/null +++ b/obj/Debug/net10.0/rpswa.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"AGKm9VKYN3xrvN85hXD9/fgWBjNgHE9TPGNc2dXEnp4=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["aOQerWEyNB8mpjuTg1YIzPEuu9/zjdyo3WS9zk8kBBU=","KcySDv5IXB0VmRZ\u002BDJXEYJzZ1BabT9\u002BmlnJAtvQxtrw=","jAY7dNrDeAk9zKokp7scJrlTBIm6w7Hu8Dtka54kkC0=","tqgpBXIx0rP05IH4mTs1EpPta88KoUOaGrYeRGVRR6g=","rWJ6NPEZv/KTn0HyD/X27lCx9Djm7T27uxsy8RpvEvc=","7/9ed/3j0kbQOAGnMr4osMD8\u002BfpDXuTqSdxDxZDT52s=","h6mYRVJqnuOdtSBKmbWaSHYQdF5Ji/0FLEsrpy6FE9M=","XhlyBFnr9ShdZWzJ7QKKePItRPiBMNwrW5mUEHb/5zc=","uOUIcQXdswkfSAw8Tdi6LHRjVoPzD7V1vKWDJ/dkFpM=","Zq/CjWk7DGNBnNlNkl\u002BxHPtq\u002BAeOX/2nalUjtNnNcRk=","IebmzswstCWwfViKKGPTWRd32w1UZD1IFXylsTrAeqQ=","RTYsn9ygY5nJWoBpvbiQjHUks29J4ZqMVn52VeSffW0=","9uxhLCDGLt\u002BztrO6s/Lk/7GpfQUIaiIAlRYtZsK2Gx0=","Cb\u002BGb0Xenm7EPfYwY6mlSorii5OkqDuBqCw\u002BIaX63YY=","Et7S1KxeSRHIP2qqT624vfF8mnFkFQZcARib5DB69zY=","Z9B041\u002B\u002BKd8KVQk7p7Z9qgOXLyU9ocPzAzCEvZop\u002BI4=","fiYeunn741VpcnsCvy/2Li\u002B326yop0HlZj2tD\u002BIuadg="],"CachedAssets":{"aOQerWEyNB8mpjuTg1YIzPEuu9/zjdyo3WS9zk8kBBU=":{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/wwwroot/background.png","SourceId":"Common.RCL","SourceType":"Discovered","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/wwwroot/","BasePath":"_content/Common.RCL","RelativePath":"background#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"x2rx4ajns0","Integrity":"WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/background.png","FileLength":378,"LastWriteTime":"2025-08-23T11:32:56.5259124+00:00"},"KcySDv5IXB0VmRZ\u002BDJXEYJzZ1BabT9\u002BmlnJAtvQxtrw=":{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/wwwroot/css/carousal.js","SourceId":"Common.RCL","SourceType":"Discovered","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/wwwroot/","BasePath":"_content/Common.RCL","RelativePath":"css/carousal#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"vnhftjewbd","Integrity":"K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/css/carousal.js","FileLength":3499,"LastWriteTime":"2026-01-14T15:07:36.48534+00:00"},"jAY7dNrDeAk9zKokp7scJrlTBIm6w7Hu8Dtka54kkC0=":{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/wwwroot/exampleJsInterop.js","SourceId":"Common.RCL","SourceType":"Discovered","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/wwwroot/","BasePath":"_content/Common.RCL","RelativePath":"exampleJsInterop#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"luzdqbu196","Integrity":"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/exampleJsInterop.js","FileLength":241,"LastWriteTime":"2025-08-23T11:32:56.5269124+00:00"}},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/obj/Debug/net10.0/scopedcss/Component1.razor.rz.scp.css b/obj/Debug/net10.0/scopedcss/Component1.razor.rz.scp.css new file mode 100644 index 0000000..9c4b99d --- /dev/null +++ b/obj/Debug/net10.0/scopedcss/Component1.razor.rz.scp.css @@ -0,0 +1,6 @@ +.my-component[b-2yzl685lju] { + border: 2px dashed red; + padding: 1em; + margin: 1em 0; + background-image: url('background.png'); +} diff --git a/obj/Debug/net10.0/scopedcss/bundle/Common.RCL.styles.css b/obj/Debug/net10.0/scopedcss/bundle/Common.RCL.styles.css new file mode 100644 index 0000000..903eb4c --- /dev/null +++ b/obj/Debug/net10.0/scopedcss/bundle/Common.RCL.styles.css @@ -0,0 +1,7 @@ +/* _content/Common.RCL/Component1.razor.rz.scp.css */ +.my-component[b-2yzl685lju] { + border: 2px dashed red; + padding: 1em; + margin: 1em 0; + background-image: url('background.png'); +} diff --git a/obj/Debug/net10.0/scopedcss/bundle/Common.styles.css b/obj/Debug/net10.0/scopedcss/bundle/Common.styles.css new file mode 100644 index 0000000..6644082 --- /dev/null +++ b/obj/Debug/net10.0/scopedcss/bundle/Common.styles.css @@ -0,0 +1,7 @@ +/* _content/Common/Component1.razor.rz.scp.css */ +.my-component[b-zsln377zdo] { + border: 2px dashed red; + padding: 1em; + margin: 1em 0; + background-image: url('background.png'); +} diff --git a/obj/Debug/net10.0/scopedcss/projectbundle/Common.RCL.bundle.scp.css b/obj/Debug/net10.0/scopedcss/projectbundle/Common.RCL.bundle.scp.css new file mode 100644 index 0000000..903eb4c --- /dev/null +++ b/obj/Debug/net10.0/scopedcss/projectbundle/Common.RCL.bundle.scp.css @@ -0,0 +1,7 @@ +/* _content/Common.RCL/Component1.razor.rz.scp.css */ +.my-component[b-2yzl685lju] { + border: 2px dashed red; + padding: 1em; + margin: 1em 0; + background-image: url('background.png'); +} diff --git a/obj/Debug/net10.0/scopedcss/projectbundle/Common.bundle.scp.css b/obj/Debug/net10.0/scopedcss/projectbundle/Common.bundle.scp.css new file mode 100644 index 0000000..6644082 --- /dev/null +++ b/obj/Debug/net10.0/scopedcss/projectbundle/Common.bundle.scp.css @@ -0,0 +1,7 @@ +/* _content/Common/Component1.razor.rz.scp.css */ +.my-component[b-zsln377zdo] { + border: 2px dashed red; + padding: 1em; + margin: 1em 0; + background-image: url('background.png'); +} diff --git a/obj/Debug/net10.0/staticwebassets.build.endpoints.json b/obj/Debug/net10.0/staticwebassets.build.endpoints.json new file mode 100644 index 0000000..e05f4a8 --- /dev/null +++ b/obj/Debug/net10.0/staticwebassets.build.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[{"Route":"Common.RCL.dph6jvottp.styles.css","AssetFile":"Common.RCL.styles.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005813953488"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"171"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"cfLCvUj1+1Kj9mHSstSqTaP1iX3bHcciSjzZjdnjlA0=\""},{"Name":"Last-Modified","Value":"Tue, 12 May 2026 13:20:55 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dph6jvottp"},{"Name":"integrity","Value":"sha256-39HSQ0beua7Rm023Y8jQXdOfC8uQtgVch+LyDUsB8bo="},{"Name":"label","Value":"Common.RCL.styles.css"},{"Name":"original-resource","Value":"\"39HSQ0beua7Rm023Y8jQXdOfC8uQtgVch+LyDUsB8bo=\""}]},{"Route":"Common.RCL.dph6jvottp.styles.css","AssetFile":"Common.RCL.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"196"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"39HSQ0beua7Rm023Y8jQXdOfC8uQtgVch+LyDUsB8bo=\""},{"Name":"Last-Modified","Value":"Tue, 12 May 2026 13:20:55 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dph6jvottp"},{"Name":"integrity","Value":"sha256-39HSQ0beua7Rm023Y8jQXdOfC8uQtgVch+LyDUsB8bo="},{"Name":"label","Value":"Common.RCL.styles.css"}]},{"Route":"Common.RCL.dph6jvottp.styles.css.gz","AssetFile":"Common.RCL.styles.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"171"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"cfLCvUj1+1Kj9mHSstSqTaP1iX3bHcciSjzZjdnjlA0=\""},{"Name":"Last-Modified","Value":"Tue, 12 May 2026 13:20:55 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dph6jvottp"},{"Name":"integrity","Value":"sha256-cfLCvUj1+1Kj9mHSstSqTaP1iX3bHcciSjzZjdnjlA0="},{"Name":"label","Value":"Common.RCL.styles.css.gz"}]},{"Route":"Common.RCL.styles.css","AssetFile":"Common.RCL.styles.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005813953488"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"171"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"cfLCvUj1+1Kj9mHSstSqTaP1iX3bHcciSjzZjdnjlA0=\""},{"Name":"Last-Modified","Value":"Tue, 12 May 2026 13:20:55 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-39HSQ0beua7Rm023Y8jQXdOfC8uQtgVch+LyDUsB8bo="},{"Name":"original-resource","Value":"\"39HSQ0beua7Rm023Y8jQXdOfC8uQtgVch+LyDUsB8bo=\""}]},{"Route":"Common.RCL.styles.css","AssetFile":"Common.RCL.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"196"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"39HSQ0beua7Rm023Y8jQXdOfC8uQtgVch+LyDUsB8bo=\""},{"Name":"Last-Modified","Value":"Tue, 12 May 2026 13:20:55 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-39HSQ0beua7Rm023Y8jQXdOfC8uQtgVch+LyDUsB8bo="}]},{"Route":"Common.RCL.styles.css.gz","AssetFile":"Common.RCL.styles.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"171"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"cfLCvUj1+1Kj9mHSstSqTaP1iX3bHcciSjzZjdnjlA0=\""},{"Name":"Last-Modified","Value":"Tue, 12 May 2026 13:20:55 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-cfLCvUj1+1Kj9mHSstSqTaP1iX3bHcciSjzZjdnjlA0="}]},{"Route":"background.png","AssetFile":"background.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"378"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY=\""},{"Name":"Last-Modified","Value":"Sat, 23 Aug 2025 11:32:56 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY="}]},{"Route":"background.x2rx4ajns0.png","AssetFile":"background.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"378"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY=\""},{"Name":"Last-Modified","Value":"Sat, 23 Aug 2025 11:32:56 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x2rx4ajns0"},{"Name":"integrity","Value":"sha256-WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY="},{"Name":"label","Value":"background.png"}]},{"Route":"css/carousal.js","AssetFile":"css/carousal.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000865051903"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1155"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"J94ETb6bgoBQU+vsGNRFiGXzZwXBR/LTfFKi8K4Mo+4=\""},{"Name":"Last-Modified","Value":"Tue, 12 May 2026 13:20:55 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ="},{"Name":"original-resource","Value":"\"K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ=\""}]},{"Route":"css/carousal.js","AssetFile":"css/carousal.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"3499"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ=\""},{"Name":"Last-Modified","Value":"Wed, 14 Jan 2026 15:07:36 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ="}]},{"Route":"css/carousal.js.gz","AssetFile":"css/carousal.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1155"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"J94ETb6bgoBQU+vsGNRFiGXzZwXBR/LTfFKi8K4Mo+4=\""},{"Name":"Last-Modified","Value":"Tue, 12 May 2026 13:20:55 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-J94ETb6bgoBQU+vsGNRFiGXzZwXBR/LTfFKi8K4Mo+4="}]},{"Route":"css/carousal.vnhftjewbd.js","AssetFile":"css/carousal.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000865051903"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1155"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"J94ETb6bgoBQU+vsGNRFiGXzZwXBR/LTfFKi8K4Mo+4=\""},{"Name":"Last-Modified","Value":"Tue, 12 May 2026 13:20:55 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vnhftjewbd"},{"Name":"integrity","Value":"sha256-K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ="},{"Name":"label","Value":"css/carousal.js"},{"Name":"original-resource","Value":"\"K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ=\""}]},{"Route":"css/carousal.vnhftjewbd.js","AssetFile":"css/carousal.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3499"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ=\""},{"Name":"Last-Modified","Value":"Wed, 14 Jan 2026 15:07:36 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vnhftjewbd"},{"Name":"integrity","Value":"sha256-K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ="},{"Name":"label","Value":"css/carousal.js"}]},{"Route":"css/carousal.vnhftjewbd.js.gz","AssetFile":"css/carousal.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1155"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"J94ETb6bgoBQU+vsGNRFiGXzZwXBR/LTfFKi8K4Mo+4=\""},{"Name":"Last-Modified","Value":"Tue, 12 May 2026 13:20:55 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vnhftjewbd"},{"Name":"integrity","Value":"sha256-J94ETb6bgoBQU+vsGNRFiGXzZwXBR/LTfFKi8K4Mo+4="},{"Name":"label","Value":"css/carousal.js.gz"}]},{"Route":"exampleJsInterop.js","AssetFile":"exampleJsInterop.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005434782609"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"183"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=\""},{"Name":"Last-Modified","Value":"Tue, 12 May 2026 13:20:55 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk="},{"Name":"original-resource","Value":"\"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=\""}]},{"Route":"exampleJsInterop.js","AssetFile":"exampleJsInterop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"241"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=\""},{"Name":"Last-Modified","Value":"Sat, 23 Aug 2025 11:32:56 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk="}]},{"Route":"exampleJsInterop.js.gz","AssetFile":"exampleJsInterop.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"183"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=\""},{"Name":"Last-Modified","Value":"Tue, 12 May 2026 13:20:55 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o="}]},{"Route":"exampleJsInterop.luzdqbu196.js","AssetFile":"exampleJsInterop.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005434782609"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"183"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=\""},{"Name":"Last-Modified","Value":"Tue, 12 May 2026 13:20:55 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"luzdqbu196"},{"Name":"integrity","Value":"sha256-Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk="},{"Name":"label","Value":"exampleJsInterop.js"},{"Name":"original-resource","Value":"\"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=\""}]},{"Route":"exampleJsInterop.luzdqbu196.js","AssetFile":"exampleJsInterop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"241"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=\""},{"Name":"Last-Modified","Value":"Sat, 23 Aug 2025 11:32:56 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"luzdqbu196"},{"Name":"integrity","Value":"sha256-Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk="},{"Name":"label","Value":"exampleJsInterop.js"}]},{"Route":"exampleJsInterop.luzdqbu196.js.gz","AssetFile":"exampleJsInterop.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"183"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=\""},{"Name":"Last-Modified","Value":"Tue, 12 May 2026 13:20:55 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"luzdqbu196"},{"Name":"integrity","Value":"sha256-rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o="},{"Name":"label","Value":"exampleJsInterop.js.gz"}]}]} \ No newline at end of file diff --git a/obj/Debug/net10.0/staticwebassets.build.json b/obj/Debug/net10.0/staticwebassets.build.json new file mode 100644 index 0000000..80e69f7 --- /dev/null +++ b/obj/Debug/net10.0/staticwebassets.build.json @@ -0,0 +1 @@ +{"Version":1,"Hash":"XHXXnzYDHedsG7JDE4jwnzQve2tupOE7ThtsNLPySD4=","Source":"Common.RCL","BasePath":"_content/Common.RCL","Mode":"Default","ManifestType":"Build","ReferencedProjectsConfiguration":[],"DiscoveryPatterns":[{"Name":"Common.RCL/wwwroot","Source":"Common.RCL","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/wwwroot/","BasePath":"_content/Common.RCL","Pattern":"**"}],"Assets":[{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/compressed/32onbuj1wh-{0}-vnhftjewbd-vnhftjewbd.gz","SourceId":"Common.RCL","SourceType":"Discovered","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/compressed/","BasePath":"_content/Common.RCL","RelativePath":"css/carousal#[.{fingerprint=vnhftjewbd}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/wwwroot/css/carousal.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"bbx64jg9ax","Integrity":"J94ETb6bgoBQU+vsGNRFiGXzZwXBR/LTfFKi8K4Mo+4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/wwwroot/css/carousal.js","FileLength":1155,"LastWriteTime":"2026-05-12T13:20:55+00:00"},{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/compressed/fiwgk79u47-{0}-luzdqbu196-luzdqbu196.gz","SourceId":"Common.RCL","SourceType":"Discovered","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/compressed/","BasePath":"_content/Common.RCL","RelativePath":"exampleJsInterop#[.{fingerprint=luzdqbu196}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/wwwroot/exampleJsInterop.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"0plubunr1s","Integrity":"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/wwwroot/exampleJsInterop.js","FileLength":183,"LastWriteTime":"2026-05-12T13:20:55+00:00"},{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/compressed/fy9rjyaakk-{0}-dph6jvottp-dph6jvottp.gz","SourceId":"Common.RCL","SourceType":"Computed","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/compressed/","BasePath":"_content/Common.RCL","RelativePath":"Common.RCL#[.{fingerprint=dph6jvottp}]?.styles.css.gz","AssetKind":"All","AssetMode":"CurrentProject","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/scopedcss/bundle/Common.RCL.styles.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"v4238q3cpq","Integrity":"cfLCvUj1+1Kj9mHSstSqTaP1iX3bHcciSjzZjdnjlA0=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/scopedcss/bundle/Common.RCL.styles.css","FileLength":171,"LastWriteTime":"2026-05-12T13:20:55+00:00"},{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/compressed/nyiqsnbdqh-{0}-dph6jvottp-dph6jvottp.gz","SourceId":"Common.RCL","SourceType":"Computed","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/compressed/","BasePath":"_content/Common.RCL","RelativePath":"Common.RCL#[.{fingerprint=dph6jvottp}]!.bundle.scp.css.gz","AssetKind":"All","AssetMode":"Reference","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/scopedcss/projectbundle/Common.RCL.bundle.scp.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"v4238q3cpq","Integrity":"cfLCvUj1+1Kj9mHSstSqTaP1iX3bHcciSjzZjdnjlA0=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/scopedcss/projectbundle/Common.RCL.bundle.scp.css","FileLength":171,"LastWriteTime":"2026-05-12T13:20:55+00:00"},{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/scopedcss/bundle/Common.RCL.styles.css","SourceId":"Common.RCL","SourceType":"Computed","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/scopedcss/bundle/","BasePath":"_content/Common.RCL","RelativePath":"Common.RCL#[.{fingerprint}]?.styles.css","AssetKind":"All","AssetMode":"CurrentProject","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"ScopedCss","AssetTraitValue":"ApplicationBundle","Fingerprint":"dph6jvottp","Integrity":"39HSQ0beua7Rm023Y8jQXdOfC8uQtgVch+LyDUsB8bo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/scopedcss/bundle/Common.RCL.styles.css","FileLength":196,"LastWriteTime":"2026-05-12T13:20:55+00:00"},{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/scopedcss/projectbundle/Common.RCL.bundle.scp.css","SourceId":"Common.RCL","SourceType":"Computed","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/scopedcss/projectbundle/","BasePath":"_content/Common.RCL","RelativePath":"Common.RCL#[.{fingerprint}]!.bundle.scp.css","AssetKind":"All","AssetMode":"Reference","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"ScopedCss","AssetTraitValue":"ProjectBundle","Fingerprint":"dph6jvottp","Integrity":"39HSQ0beua7Rm023Y8jQXdOfC8uQtgVch+LyDUsB8bo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/scopedcss/projectbundle/Common.RCL.bundle.scp.css","FileLength":196,"LastWriteTime":"2026-05-12T13:20:55+00:00"},{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/wwwroot/background.png","SourceId":"Common.RCL","SourceType":"Discovered","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/wwwroot/","BasePath":"_content/Common.RCL","RelativePath":"background#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"x2rx4ajns0","Integrity":"WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/background.png","FileLength":378,"LastWriteTime":"2025-08-23T11:32:56+00:00"},{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/wwwroot/css/carousal.js","SourceId":"Common.RCL","SourceType":"Discovered","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/wwwroot/","BasePath":"_content/Common.RCL","RelativePath":"css/carousal#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"vnhftjewbd","Integrity":"K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/css/carousal.js","FileLength":3499,"LastWriteTime":"2026-01-14T15:07:36+00:00"},{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/wwwroot/exampleJsInterop.js","SourceId":"Common.RCL","SourceType":"Discovered","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/wwwroot/","BasePath":"_content/Common.RCL","RelativePath":"exampleJsInterop#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"luzdqbu196","Integrity":"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/exampleJsInterop.js","FileLength":241,"LastWriteTime":"2025-08-23T11:32:56+00:00"}],"Endpoints":[{"Route":"Common.RCL.bundle.scp.css","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/compressed/nyiqsnbdqh-{0}-dph6jvottp-dph6jvottp.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005813953488"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"171"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"cfLCvUj1+1Kj9mHSstSqTaP1iX3bHcciSjzZjdnjlA0=\""},{"Name":"Last-Modified","Value":"Tue, 12 May 2026 13:20:55 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-39HSQ0beua7Rm023Y8jQXdOfC8uQtgVch+LyDUsB8bo="},{"Name":"original-resource","Value":"\"39HSQ0beua7Rm023Y8jQXdOfC8uQtgVch+LyDUsB8bo=\""}]},{"Route":"Common.RCL.bundle.scp.css","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/scopedcss/projectbundle/Common.RCL.bundle.scp.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"196"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"39HSQ0beua7Rm023Y8jQXdOfC8uQtgVch+LyDUsB8bo=\""},{"Name":"Last-Modified","Value":"Tue, 12 May 2026 13:20:55 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-39HSQ0beua7Rm023Y8jQXdOfC8uQtgVch+LyDUsB8bo="}]},{"Route":"Common.RCL.bundle.scp.css.gz","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/compressed/nyiqsnbdqh-{0}-dph6jvottp-dph6jvottp.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"171"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"cfLCvUj1+1Kj9mHSstSqTaP1iX3bHcciSjzZjdnjlA0=\""},{"Name":"Last-Modified","Value":"Tue, 12 May 2026 13:20:55 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-cfLCvUj1+1Kj9mHSstSqTaP1iX3bHcciSjzZjdnjlA0="}]},{"Route":"Common.RCL.dph6jvottp.bundle.scp.css","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/compressed/nyiqsnbdqh-{0}-dph6jvottp-dph6jvottp.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005813953488"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"171"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"cfLCvUj1+1Kj9mHSstSqTaP1iX3bHcciSjzZjdnjlA0=\""},{"Name":"Last-Modified","Value":"Tue, 12 May 2026 13:20:55 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dph6jvottp"},{"Name":"integrity","Value":"sha256-39HSQ0beua7Rm023Y8jQXdOfC8uQtgVch+LyDUsB8bo="},{"Name":"label","Value":"Common.RCL.bundle.scp.css"},{"Name":"original-resource","Value":"\"39HSQ0beua7Rm023Y8jQXdOfC8uQtgVch+LyDUsB8bo=\""}]},{"Route":"Common.RCL.dph6jvottp.bundle.scp.css","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/scopedcss/projectbundle/Common.RCL.bundle.scp.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"196"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"39HSQ0beua7Rm023Y8jQXdOfC8uQtgVch+LyDUsB8bo=\""},{"Name":"Last-Modified","Value":"Tue, 12 May 2026 13:20:55 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dph6jvottp"},{"Name":"integrity","Value":"sha256-39HSQ0beua7Rm023Y8jQXdOfC8uQtgVch+LyDUsB8bo="},{"Name":"label","Value":"Common.RCL.bundle.scp.css"}]},{"Route":"Common.RCL.dph6jvottp.bundle.scp.css.gz","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/compressed/nyiqsnbdqh-{0}-dph6jvottp-dph6jvottp.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"171"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"cfLCvUj1+1Kj9mHSstSqTaP1iX3bHcciSjzZjdnjlA0=\""},{"Name":"Last-Modified","Value":"Tue, 12 May 2026 13:20:55 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dph6jvottp"},{"Name":"integrity","Value":"sha256-cfLCvUj1+1Kj9mHSstSqTaP1iX3bHcciSjzZjdnjlA0="},{"Name":"label","Value":"Common.RCL.bundle.scp.css.gz"}]},{"Route":"Common.RCL.dph6jvottp.styles.css","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/compressed/fy9rjyaakk-{0}-dph6jvottp-dph6jvottp.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005813953488"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"171"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"cfLCvUj1+1Kj9mHSstSqTaP1iX3bHcciSjzZjdnjlA0=\""},{"Name":"Last-Modified","Value":"Tue, 12 May 2026 13:20:55 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dph6jvottp"},{"Name":"integrity","Value":"sha256-39HSQ0beua7Rm023Y8jQXdOfC8uQtgVch+LyDUsB8bo="},{"Name":"label","Value":"Common.RCL.styles.css"},{"Name":"original-resource","Value":"\"39HSQ0beua7Rm023Y8jQXdOfC8uQtgVch+LyDUsB8bo=\""}]},{"Route":"Common.RCL.dph6jvottp.styles.css","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/scopedcss/bundle/Common.RCL.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"196"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"39HSQ0beua7Rm023Y8jQXdOfC8uQtgVch+LyDUsB8bo=\""},{"Name":"Last-Modified","Value":"Tue, 12 May 2026 13:20:55 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dph6jvottp"},{"Name":"integrity","Value":"sha256-39HSQ0beua7Rm023Y8jQXdOfC8uQtgVch+LyDUsB8bo="},{"Name":"label","Value":"Common.RCL.styles.css"}]},{"Route":"Common.RCL.dph6jvottp.styles.css.gz","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/compressed/fy9rjyaakk-{0}-dph6jvottp-dph6jvottp.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"171"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"cfLCvUj1+1Kj9mHSstSqTaP1iX3bHcciSjzZjdnjlA0=\""},{"Name":"Last-Modified","Value":"Tue, 12 May 2026 13:20:55 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dph6jvottp"},{"Name":"integrity","Value":"sha256-cfLCvUj1+1Kj9mHSstSqTaP1iX3bHcciSjzZjdnjlA0="},{"Name":"label","Value":"Common.RCL.styles.css.gz"}]},{"Route":"Common.RCL.styles.css","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/compressed/fy9rjyaakk-{0}-dph6jvottp-dph6jvottp.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005813953488"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"171"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"cfLCvUj1+1Kj9mHSstSqTaP1iX3bHcciSjzZjdnjlA0=\""},{"Name":"Last-Modified","Value":"Tue, 12 May 2026 13:20:55 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-39HSQ0beua7Rm023Y8jQXdOfC8uQtgVch+LyDUsB8bo="},{"Name":"original-resource","Value":"\"39HSQ0beua7Rm023Y8jQXdOfC8uQtgVch+LyDUsB8bo=\""}]},{"Route":"Common.RCL.styles.css","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/scopedcss/bundle/Common.RCL.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"196"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"39HSQ0beua7Rm023Y8jQXdOfC8uQtgVch+LyDUsB8bo=\""},{"Name":"Last-Modified","Value":"Tue, 12 May 2026 13:20:55 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-39HSQ0beua7Rm023Y8jQXdOfC8uQtgVch+LyDUsB8bo="}]},{"Route":"Common.RCL.styles.css.gz","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/compressed/fy9rjyaakk-{0}-dph6jvottp-dph6jvottp.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"171"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"cfLCvUj1+1Kj9mHSstSqTaP1iX3bHcciSjzZjdnjlA0=\""},{"Name":"Last-Modified","Value":"Tue, 12 May 2026 13:20:55 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-cfLCvUj1+1Kj9mHSstSqTaP1iX3bHcciSjzZjdnjlA0="}]},{"Route":"background.png","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/wwwroot/background.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"378"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY=\""},{"Name":"Last-Modified","Value":"Sat, 23 Aug 2025 11:32:56 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY="}]},{"Route":"background.x2rx4ajns0.png","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/wwwroot/background.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"378"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY=\""},{"Name":"Last-Modified","Value":"Sat, 23 Aug 2025 11:32:56 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x2rx4ajns0"},{"Name":"integrity","Value":"sha256-WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY="},{"Name":"label","Value":"background.png"}]},{"Route":"css/carousal.js","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/compressed/32onbuj1wh-{0}-vnhftjewbd-vnhftjewbd.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000865051903"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1155"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"J94ETb6bgoBQU+vsGNRFiGXzZwXBR/LTfFKi8K4Mo+4=\""},{"Name":"Last-Modified","Value":"Tue, 12 May 2026 13:20:55 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ="},{"Name":"original-resource","Value":"\"K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ=\""}]},{"Route":"css/carousal.js","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/wwwroot/css/carousal.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"3499"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ=\""},{"Name":"Last-Modified","Value":"Wed, 14 Jan 2026 15:07:36 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ="}]},{"Route":"css/carousal.js.gz","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/compressed/32onbuj1wh-{0}-vnhftjewbd-vnhftjewbd.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1155"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"J94ETb6bgoBQU+vsGNRFiGXzZwXBR/LTfFKi8K4Mo+4=\""},{"Name":"Last-Modified","Value":"Tue, 12 May 2026 13:20:55 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-J94ETb6bgoBQU+vsGNRFiGXzZwXBR/LTfFKi8K4Mo+4="}]},{"Route":"css/carousal.vnhftjewbd.js","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/compressed/32onbuj1wh-{0}-vnhftjewbd-vnhftjewbd.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000865051903"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1155"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"J94ETb6bgoBQU+vsGNRFiGXzZwXBR/LTfFKi8K4Mo+4=\""},{"Name":"Last-Modified","Value":"Tue, 12 May 2026 13:20:55 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vnhftjewbd"},{"Name":"integrity","Value":"sha256-K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ="},{"Name":"label","Value":"css/carousal.js"},{"Name":"original-resource","Value":"\"K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ=\""}]},{"Route":"css/carousal.vnhftjewbd.js","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/wwwroot/css/carousal.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3499"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ=\""},{"Name":"Last-Modified","Value":"Wed, 14 Jan 2026 15:07:36 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vnhftjewbd"},{"Name":"integrity","Value":"sha256-K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ="},{"Name":"label","Value":"css/carousal.js"}]},{"Route":"css/carousal.vnhftjewbd.js.gz","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/compressed/32onbuj1wh-{0}-vnhftjewbd-vnhftjewbd.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1155"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"J94ETb6bgoBQU+vsGNRFiGXzZwXBR/LTfFKi8K4Mo+4=\""},{"Name":"Last-Modified","Value":"Tue, 12 May 2026 13:20:55 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vnhftjewbd"},{"Name":"integrity","Value":"sha256-J94ETb6bgoBQU+vsGNRFiGXzZwXBR/LTfFKi8K4Mo+4="},{"Name":"label","Value":"css/carousal.js.gz"}]},{"Route":"exampleJsInterop.js","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/compressed/fiwgk79u47-{0}-luzdqbu196-luzdqbu196.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005434782609"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"183"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=\""},{"Name":"Last-Modified","Value":"Tue, 12 May 2026 13:20:55 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk="},{"Name":"original-resource","Value":"\"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=\""}]},{"Route":"exampleJsInterop.js","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/wwwroot/exampleJsInterop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"241"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=\""},{"Name":"Last-Modified","Value":"Sat, 23 Aug 2025 11:32:56 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk="}]},{"Route":"exampleJsInterop.js.gz","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/compressed/fiwgk79u47-{0}-luzdqbu196-luzdqbu196.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"183"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=\""},{"Name":"Last-Modified","Value":"Tue, 12 May 2026 13:20:55 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o="}]},{"Route":"exampleJsInterop.luzdqbu196.js","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/compressed/fiwgk79u47-{0}-luzdqbu196-luzdqbu196.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005434782609"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"183"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=\""},{"Name":"Last-Modified","Value":"Tue, 12 May 2026 13:20:55 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"luzdqbu196"},{"Name":"integrity","Value":"sha256-Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk="},{"Name":"label","Value":"exampleJsInterop.js"},{"Name":"original-resource","Value":"\"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=\""}]},{"Route":"exampleJsInterop.luzdqbu196.js","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/wwwroot/exampleJsInterop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"241"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=\""},{"Name":"Last-Modified","Value":"Sat, 23 Aug 2025 11:32:56 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"luzdqbu196"},{"Name":"integrity","Value":"sha256-Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk="},{"Name":"label","Value":"exampleJsInterop.js"}]},{"Route":"exampleJsInterop.luzdqbu196.js.gz","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/compressed/fiwgk79u47-{0}-luzdqbu196-luzdqbu196.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"183"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=\""},{"Name":"Last-Modified","Value":"Tue, 12 May 2026 13:20:55 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"luzdqbu196"},{"Name":"integrity","Value":"sha256-rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o="},{"Name":"label","Value":"exampleJsInterop.js.gz"}]}]} \ No newline at end of file diff --git a/obj/Debug/net10.0/staticwebassets.build.json.cache b/obj/Debug/net10.0/staticwebassets.build.json.cache new file mode 100644 index 0000000..b7b8373 --- /dev/null +++ b/obj/Debug/net10.0/staticwebassets.build.json.cache @@ -0,0 +1 @@ +XHXXnzYDHedsG7JDE4jwnzQve2tupOE7ThtsNLPySD4= \ No newline at end of file diff --git a/obj/Debug/net10.0/staticwebassets.development.json b/obj/Debug/net10.0/staticwebassets.development.json new file mode 100644 index 0000000..30281a7 --- /dev/null +++ b/obj/Debug/net10.0/staticwebassets.development.json @@ -0,0 +1 @@ +{"ContentRoots":["/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/wwwroot/","/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/scopedcss/bundle/","/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/compressed/"],"Root":{"Children":{"background.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"background.png"},"Patterns":null},"Common.RCL.styles.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"Common.RCL.styles.css"},"Patterns":null},"Common.RCL.styles.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"fy9rjyaakk-{0}-dph6jvottp-dph6jvottp.gz"},"Patterns":null},"exampleJsInterop.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"exampleJsInterop.js"},"Patterns":null},"exampleJsInterop.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"fiwgk79u47-{0}-luzdqbu196-luzdqbu196.gz"},"Patterns":null},"css":{"Children":{"carousal.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/carousal.js"},"Patterns":null},"carousal.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"32onbuj1wh-{0}-vnhftjewbd-vnhftjewbd.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}} \ No newline at end of file diff --git a/obj/Debug/net10.0/staticwebassets.pack.json b/obj/Debug/net10.0/staticwebassets.pack.json new file mode 100644 index 0000000..a0549ce --- /dev/null +++ b/obj/Debug/net10.0/staticwebassets.pack.json @@ -0,0 +1,41 @@ +{ + "Files": [ + { + "Id": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/Debug/net10.0/scopedcss/projectbundle/Common.RCL.bundle.scp.css", + "PackagePath": "staticwebassets/Common.RCL.dph6jvottp.bundle.scp.css" + }, + { + "Id": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/wwwroot/background.png", + "PackagePath": "staticwebassets/background.png" + }, + { + "Id": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/wwwroot/css/carousal.js", + "PackagePath": "staticwebassets/css/carousal.js" + }, + { + "Id": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/wwwroot/exampleJsInterop.js", + "PackagePath": "staticwebassets/exampleJsInterop.js" + }, + { + "Id": "obj/Debug/net10.0/staticwebassets/msbuild.Common.RCL.Microsoft.AspNetCore.StaticWebAssetEndpoints.props", + "PackagePath": "build\\Microsoft.AspNetCore.StaticWebAssetEndpoints.props" + }, + { + "Id": "obj/Debug/net10.0/staticwebassets/msbuild.Common.RCL.Microsoft.AspNetCore.StaticWebAssets.props", + "PackagePath": "build\\Microsoft.AspNetCore.StaticWebAssets.props" + }, + { + "Id": "obj/Debug/net10.0/staticwebassets/msbuild.build.Common.RCL.props", + "PackagePath": "build\\Common.RCL.props" + }, + { + "Id": "obj/Debug/net10.0/staticwebassets/msbuild.buildMultiTargeting.Common.RCL.props", + "PackagePath": "buildMultiTargeting\\Common.RCL.props" + }, + { + "Id": "obj/Debug/net10.0/staticwebassets/msbuild.buildTransitive.Common.RCL.props", + "PackagePath": "buildTransitive\\Common.RCL.props" + } + ], + "ElementsToRemove": [] +} \ No newline at end of file diff --git a/obj/Debug/net10.0/staticwebassets/msbuild.Common.Microsoft.AspNetCore.StaticWebAssetEndpoints.props b/obj/Debug/net10.0/staticwebassets/msbuild.Common.Microsoft.AspNetCore.StaticWebAssetEndpoints.props new file mode 100644 index 0000000..093208c --- /dev/null +++ b/obj/Debug/net10.0/staticwebassets/msbuild.Common.Microsoft.AspNetCore.StaticWebAssetEndpoints.props @@ -0,0 +1,52 @@ + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\background.png')) + + + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\background.png')) + + + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\Common.dyev8wf6eo.bundle.scp.css')) + + + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\Common.dyev8wf6eo.bundle.scp.css')) + + + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\css\carousal.js')) + + + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\css\carousal.js')) + + + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\exampleJsInterop.js')) + + + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\exampleJsInterop.js')) + + + + + + \ No newline at end of file diff --git a/obj/Debug/net10.0/staticwebassets/msbuild.Common.Microsoft.AspNetCore.StaticWebAssets.props b/obj/Debug/net10.0/staticwebassets/msbuild.Common.Microsoft.AspNetCore.StaticWebAssets.props new file mode 100644 index 0000000..b1669c9 --- /dev/null +++ b/obj/Debug/net10.0/staticwebassets/msbuild.Common.Microsoft.AspNetCore.StaticWebAssets.props @@ -0,0 +1,84 @@ + + + + Package + Common + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/Common + background.png + All + All + Primary + + + + x2rx4ajns0 + WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY= + Never + PreserveNewest + 378 + Sat, 23 Aug 2025 11:32:56 GMT + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\background.png')) + + + Package + Common + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/Common + Common.dyev8wf6eo.bundle.scp.css + All + Reference + Primary + + ScopedCss + ProjectBundle + dyev8wf6eo + i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI= + Never + PreserveNewest + 192 + Sun, 01 Feb 2026 13:14:48 GMT + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\Common.dyev8wf6eo.bundle.scp.css')) + + + Package + Common + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/Common + css/carousal.js + All + All + Primary + + + + vnhftjewbd + K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ= + Never + PreserveNewest + 3499 + Wed, 14 Jan 2026 15:07:36 GMT + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\css\carousal.js')) + + + Package + Common + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/Common + exampleJsInterop.js + All + All + Primary + + + + luzdqbu196 + Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk= + Never + PreserveNewest + 241 + Sat, 23 Aug 2025 11:32:56 GMT + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\exampleJsInterop.js')) + + + \ No newline at end of file diff --git a/obj/Debug/net10.0/staticwebassets/msbuild.Common.RCL.Microsoft.AspNetCore.StaticWebAssetEndpoints.props b/obj/Debug/net10.0/staticwebassets/msbuild.Common.RCL.Microsoft.AspNetCore.StaticWebAssetEndpoints.props new file mode 100644 index 0000000..d951d63 --- /dev/null +++ b/obj/Debug/net10.0/staticwebassets/msbuild.Common.RCL.Microsoft.AspNetCore.StaticWebAssetEndpoints.props @@ -0,0 +1,52 @@ + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\background.png')) + + + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\background.png')) + + + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\Common.RCL.dph6jvottp.bundle.scp.css')) + + + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\Common.RCL.dph6jvottp.bundle.scp.css')) + + + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\css\carousal.js')) + + + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\css\carousal.js')) + + + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\exampleJsInterop.js')) + + + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\exampleJsInterop.js')) + + + + + + \ No newline at end of file diff --git a/obj/Debug/net10.0/staticwebassets/msbuild.Common.RCL.Microsoft.AspNetCore.StaticWebAssets.props b/obj/Debug/net10.0/staticwebassets/msbuild.Common.RCL.Microsoft.AspNetCore.StaticWebAssets.props new file mode 100644 index 0000000..9bab221 --- /dev/null +++ b/obj/Debug/net10.0/staticwebassets/msbuild.Common.RCL.Microsoft.AspNetCore.StaticWebAssets.props @@ -0,0 +1,84 @@ + + + + Package + Common.RCL + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/Common.RCL + background.png + All + All + Primary + + + + x2rx4ajns0 + WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY= + Never + PreserveNewest + 378 + Sat, 23 Aug 2025 11:32:56 GMT + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\background.png')) + + + Package + Common.RCL + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/Common.RCL + Common.RCL.dph6jvottp.bundle.scp.css + All + Reference + Primary + + ScopedCss + ProjectBundle + dph6jvottp + 39HSQ0beua7Rm023Y8jQXdOfC8uQtgVch+LyDUsB8bo= + Never + PreserveNewest + 196 + Tue, 12 May 2026 13:20:55 GMT + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\Common.RCL.dph6jvottp.bundle.scp.css')) + + + Package + Common.RCL + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/Common.RCL + css/carousal.js + All + All + Primary + + + + vnhftjewbd + K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ= + Never + PreserveNewest + 3499 + Wed, 14 Jan 2026 15:07:36 GMT + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\css\carousal.js')) + + + Package + Common.RCL + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/Common.RCL + exampleJsInterop.js + All + All + Primary + + + + luzdqbu196 + Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk= + Never + PreserveNewest + 241 + Sat, 23 Aug 2025 11:32:56 GMT + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\exampleJsInterop.js')) + + + \ No newline at end of file diff --git a/obj/Debug/net10.0/staticwebassets/msbuild.build.Common.RCL.props b/obj/Debug/net10.0/staticwebassets/msbuild.build.Common.RCL.props new file mode 100644 index 0000000..ddaed44 --- /dev/null +++ b/obj/Debug/net10.0/staticwebassets/msbuild.build.Common.RCL.props @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/obj/Debug/net10.0/staticwebassets/msbuild.build.Common.props b/obj/Debug/net10.0/staticwebassets/msbuild.build.Common.props new file mode 100644 index 0000000..ddaed44 --- /dev/null +++ b/obj/Debug/net10.0/staticwebassets/msbuild.build.Common.props @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/obj/Debug/net10.0/staticwebassets/msbuild.buildMultiTargeting.Common.RCL.props b/obj/Debug/net10.0/staticwebassets/msbuild.buildMultiTargeting.Common.RCL.props new file mode 100644 index 0000000..fe3c9d3 --- /dev/null +++ b/obj/Debug/net10.0/staticwebassets/msbuild.buildMultiTargeting.Common.RCL.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/obj/Debug/net10.0/staticwebassets/msbuild.buildMultiTargeting.Common.props b/obj/Debug/net10.0/staticwebassets/msbuild.buildMultiTargeting.Common.props new file mode 100644 index 0000000..9ea373b --- /dev/null +++ b/obj/Debug/net10.0/staticwebassets/msbuild.buildMultiTargeting.Common.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/obj/Debug/net10.0/staticwebassets/msbuild.buildTransitive.Common.RCL.props b/obj/Debug/net10.0/staticwebassets/msbuild.buildTransitive.Common.RCL.props new file mode 100644 index 0000000..8a4166f --- /dev/null +++ b/obj/Debug/net10.0/staticwebassets/msbuild.buildTransitive.Common.RCL.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/obj/Debug/net10.0/staticwebassets/msbuild.buildTransitive.Common.props b/obj/Debug/net10.0/staticwebassets/msbuild.buildTransitive.Common.props new file mode 100644 index 0000000..11fe5d8 --- /dev/null +++ b/obj/Debug/net10.0/staticwebassets/msbuild.buildTransitive.Common.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/obj/Debug/net10.0/swae.build.ex.cache b/obj/Debug/net10.0/swae.build.ex.cache new file mode 100644 index 0000000..e69de29 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..feda5e9 --- /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/Common.AssemblyInfo.cs b/obj/Debug/net9.0/Common.AssemblyInfo.cs new file mode 100644 index 0000000..1709229 --- /dev/null +++ b/obj/Debug/net9.0/Common.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("Common")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+89d8c7f2868cdc25655d2a003c6dc8ab9e106e46")] +[assembly: System.Reflection.AssemblyProductAttribute("Common")] +[assembly: System.Reflection.AssemblyTitleAttribute("Common")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/obj/Debug/net9.0/Common.AssemblyInfoInputs.cache b/obj/Debug/net9.0/Common.AssemblyInfoInputs.cache new file mode 100644 index 0000000..5eb6787 --- /dev/null +++ b/obj/Debug/net9.0/Common.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +5edb640da685f506b186920b7ecbe5e5c08a4f84e23711eb8fc6307a2d772c41 diff --git a/obj/Debug/net9.0/Common.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net9.0/Common.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..59787fd --- /dev/null +++ b/obj/Debug/net9.0/Common.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,79 @@ +is_global = true +build_property.TargetFramework = net9.0 +build_property.TargetFrameworkIdentifier = .NETCoreApp +build_property.TargetFrameworkVersion = v9.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 = Common +build_property.RootNamespace = Common +build_property.ProjectDir = /mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/ +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/Common +build_property._RazorSourceGeneratorDebug = +build_property.EffectiveAnalysisLevelStyle = 9.0 +build_property.EnableCodeStyleSeverity = + +[/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common/Carousal.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tbW9uL0Nhcm91c2FsLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common/Chip.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tbW9uL0NoaXAucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common/ConflictProductsDialog.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tbW9uL0NvbmZsaWN0UHJvZHVjdHNEaWFsb2cucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common/Cropper.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tbW9uL0Nyb3BwZXIucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common/DropZone.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tbW9uL0Ryb3Bab25lLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common/FileUpload.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tbW9uL0ZpbGVVcGxvYWQucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common/GenericTable.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tbW9uL0dlbmVyaWNUYWJsZS5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common/ImageViewer.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tbW9uL0ltYWdlVmlld2VyLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common/LanguageSwitcher.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tbW9uL0xhbmd1YWdlU3dpdGNoZXIucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common/PaginationComp.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tbW9uL1BhZ2luYXRpb25Db21wLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common/SingleFileUpload.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tbW9uL1NpbmdsZUZpbGVVcGxvYWQucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Components/DaisyToastContainer.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9EYWlzeVRvYXN0Q29udGFpbmVyLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/_Imports.razor] +build_metadata.AdditionalFiles.TargetPath = X0ltcG9ydHMucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Component1.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50MS5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = b-zsln377zdo diff --git a/obj/Debug/net9.0/Common.GlobalUsings.g.cs b/obj/Debug/net9.0/Common.GlobalUsings.g.cs new file mode 100644 index 0000000..d12bcbc --- /dev/null +++ b/obj/Debug/net9.0/Common.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using System; +global using System.Collections.Generic; +global using System.IO; +global using System.Linq; +global using System.Net.Http; +global using System.Threading; +global using System.Threading.Tasks; diff --git a/obj/Debug/net9.0/Common.assets.cache b/obj/Debug/net9.0/Common.assets.cache new file mode 100644 index 0000000..d51629a Binary files /dev/null and b/obj/Debug/net9.0/Common.assets.cache differ diff --git a/obj/Debug/net9.0/Common.csproj.AssemblyReference.cache b/obj/Debug/net9.0/Common.csproj.AssemblyReference.cache new file mode 100644 index 0000000..95f3501 Binary files /dev/null and b/obj/Debug/net9.0/Common.csproj.AssemblyReference.cache differ diff --git a/obj/Debug/net9.0/Common.csproj.CoreCompileInputs.cache b/obj/Debug/net9.0/Common.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..dce8e3e --- /dev/null +++ b/obj/Debug/net9.0/Common.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +32f664afd98bb9a94c482dd6553bf2116181e14e7f3a56228f426782c5909efd diff --git a/obj/Debug/net9.0/Common.csproj.FileListAbsolute.txt b/obj/Debug/net9.0/Common.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..5c83455 --- /dev/null +++ b/obj/Debug/net9.0/Common.csproj.FileListAbsolute.txt @@ -0,0 +1,195 @@ +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/Common.csproj.AssemblyReference.cache +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/rpswa.dswa.cache.json +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/Common.GeneratedMSBuildEditorConfig.editorconfig +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/Common.AssemblyInfoInputs.cache +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/Common.AssemblyInfo.cs +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/Common.csproj.CoreCompileInputs.cache +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/bin/Debug/net9.0/Common.staticwebassets.runtime.json +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/bin/Debug/net9.0/Common.staticwebassets.endpoints.json +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/bin/Debug/net9.0/Common.deps.json +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/bin/Debug/net9.0/Common.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/bin/Debug/net9.0/Common.pdb +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/bin/Debug/net9.0/Generic.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/bin/Debug/net9.0/Generic.pdb +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/rjimswa.dswa.cache.json +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/rjsmrazor.dswa.cache.json +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/rjsmcshtml.dswa.cache.json +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/scopedcss/Component1.razor.rz.scp.css +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/scopedcss/bundle/Common.styles.css +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/scopedcss/projectbundle/Common.bundle.scp.css +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/compressed/tzxjg6is5z-sowobu9fea.gz +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/compressed/0wz98yz2xy-b8x8f7e52z.gz +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/compressed/azr3gilc9r-luzdqbu196.gz +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/compressed/eonzp9tba4-dyev8wf6eo.gz +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/compressed/qc5h9nywsh-dyev8wf6eo.gz +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/staticwebassets.build.json +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/staticwebassets.build.json.cache +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/staticwebassets.development.json +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/staticwebassets.build.endpoints.json +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/staticwebassets/msbuild.Common.Microsoft.AspNetCore.StaticWebAssets.props +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/staticwebassets/msbuild.Common.Microsoft.AspNetCore.StaticWebAssetEndpoints.props +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/staticwebassets/msbuild.build.Common.props +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/staticwebassets/msbuild.buildMultiTargeting.Common.props +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/staticwebassets/msbuild.buildTransitive.Common.props +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/staticwebassets.pack.json +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/Common.csproj.Up2Date +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/Common.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/refint/Common.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/Common.pdb +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/ref/Common.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/bin/Debug/net9.0/Common.staticwebassets.endpoints.json +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/bin/Debug/net9.0/Common.staticwebassets.runtime.json +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/bin/Debug/net9.0/Common.deps.json +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/bin/Debug/net9.0/Common.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/bin/Debug/net9.0/Common.pdb +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/bin/Debug/net9.0/Generic.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/bin/Debug/net9.0/Generic.pdb +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/Common.csproj.AssemblyReference.cache +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/rpswa.dswa.cache.json +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/Common.GeneratedMSBuildEditorConfig.editorconfig +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/Common.AssemblyInfoInputs.cache +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/Common.AssemblyInfo.cs +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/Common.csproj.CoreCompileInputs.cache +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/rjimswa.dswa.cache.json +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/rjsmrazor.dswa.cache.json +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/rjsmcshtml.dswa.cache.json +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/scopedcss/Component1.razor.rz.scp.css +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/scopedcss/bundle/Common.styles.css +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/scopedcss/projectbundle/Common.bundle.scp.css +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/compressed/tzxjg6is5z-sowobu9fea.gz +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/compressed/0wz98yz2xy-b8x8f7e52z.gz +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/compressed/azr3gilc9r-luzdqbu196.gz +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/compressed/eonzp9tba4-dyev8wf6eo.gz +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/compressed/qc5h9nywsh-dyev8wf6eo.gz +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/staticwebassets.build.json +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/staticwebassets.build.json.cache +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/staticwebassets.development.json +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/staticwebassets.build.endpoints.json +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/staticwebassets/msbuild.Common.Microsoft.AspNetCore.StaticWebAssets.props +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/staticwebassets/msbuild.Common.Microsoft.AspNetCore.StaticWebAssetEndpoints.props +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/staticwebassets/msbuild.build.Common.props +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/staticwebassets/msbuild.buildMultiTargeting.Common.props +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/staticwebassets/msbuild.buildTransitive.Common.props +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/staticwebassets.pack.json +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/Common.csproj.Up2Date +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/Common.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/refint/Common.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/Common.pdb +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/ref/Common.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/bin/Debug/net9.0/Common.staticwebassets.endpoints.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/bin/Debug/net9.0/Common.staticwebassets.runtime.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/bin/Debug/net9.0/Common.deps.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/bin/Debug/net9.0/Common.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/bin/Debug/net9.0/Common.pdb +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/bin/Debug/net9.0/Generic.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/bin/Debug/net9.0/Generic.pdb +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/Common.csproj.AssemblyReference.cache +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/rpswa.dswa.cache.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/Common.GeneratedMSBuildEditorConfig.editorconfig +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/Common.AssemblyInfoInputs.cache +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/Common.AssemblyInfo.cs +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/Common.csproj.CoreCompileInputs.cache +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/rjimswa.dswa.cache.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/rjsmrazor.dswa.cache.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/rjsmcshtml.dswa.cache.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/scopedcss/Component1.razor.rz.scp.css +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/scopedcss/bundle/Common.styles.css +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/scopedcss/projectbundle/Common.bundle.scp.css +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/compressed/tzxjg6is5z-sowobu9fea.gz +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/compressed/0wz98yz2xy-b8x8f7e52z.gz +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/compressed/azr3gilc9r-luzdqbu196.gz +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/compressed/eonzp9tba4-dyev8wf6eo.gz +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/compressed/qc5h9nywsh-dyev8wf6eo.gz +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/staticwebassets.build.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/staticwebassets.build.json.cache +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/staticwebassets.development.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/staticwebassets.build.endpoints.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/staticwebassets/msbuild.Common.Microsoft.AspNetCore.StaticWebAssets.props +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/staticwebassets/msbuild.Common.Microsoft.AspNetCore.StaticWebAssetEndpoints.props +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/staticwebassets/msbuild.build.Common.props +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/staticwebassets/msbuild.buildMultiTargeting.Common.props +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/staticwebassets/msbuild.buildTransitive.Common.props +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/staticwebassets.pack.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/Common.csproj.Up2Date +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/Common.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/refint/Common.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/Common.pdb +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/UI/Libs/Generic/Common/obj/Debug/net9.0/ref/Common.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Common/bin/Debug/net9.0/Common.staticwebassets.runtime.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Common/bin/Debug/net9.0/Common.staticwebassets.endpoints.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Common/bin/Debug/net9.0/Common.deps.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Common/bin/Debug/net9.0/Common.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Common/bin/Debug/net9.0/Common.pdb +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Common/bin/Debug/net9.0/Generic.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Common/bin/Debug/net9.0/Generic.pdb +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/Common.csproj.AssemblyReference.cache +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/rpswa.dswa.cache.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/Common.GeneratedMSBuildEditorConfig.editorconfig +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/Common.AssemblyInfoInputs.cache +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/Common.AssemblyInfo.cs +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/Common.csproj.CoreCompileInputs.cache +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/rjimswa.dswa.cache.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/rjsmrazor.dswa.cache.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/rjsmcshtml.dswa.cache.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/scopedcss/Component1.razor.rz.scp.css +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/scopedcss/bundle/Common.styles.css +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/scopedcss/projectbundle/Common.bundle.scp.css +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/compressed/tzxjg6is5z-sowobu9fea.gz +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/compressed/0wz98yz2xy-b8x8f7e52z.gz +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/compressed/azr3gilc9r-luzdqbu196.gz +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/compressed/eonzp9tba4-dyev8wf6eo.gz +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/compressed/qc5h9nywsh-dyev8wf6eo.gz +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/staticwebassets.build.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/staticwebassets.build.json.cache +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/staticwebassets.development.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/staticwebassets.build.endpoints.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/staticwebassets/msbuild.Common.Microsoft.AspNetCore.StaticWebAssets.props +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/staticwebassets/msbuild.Common.Microsoft.AspNetCore.StaticWebAssetEndpoints.props +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/staticwebassets/msbuild.build.Common.props +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/staticwebassets/msbuild.buildMultiTargeting.Common.props +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/staticwebassets/msbuild.buildTransitive.Common.props +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/staticwebassets.pack.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/Common.csproj.Up2Date +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/Common.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/refint/Common.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/Common.pdb +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/ref/Common.dll +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/bin/Debug/net9.0/Common.staticwebassets.endpoints.json +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/bin/Debug/net9.0/Common.staticwebassets.runtime.json +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/bin/Debug/net9.0/Common.deps.json +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/bin/Debug/net9.0/Common.dll +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/bin/Debug/net9.0/Common.pdb +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/bin/Debug/net9.0/Generic.dll +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/bin/Debug/net9.0/Generic.pdb +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/Common.csproj.AssemblyReference.cache +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/rpswa.dswa.cache.json +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/Common.GeneratedMSBuildEditorConfig.editorconfig +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/Common.AssemblyInfoInputs.cache +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/Common.AssemblyInfo.cs +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/Common.csproj.CoreCompileInputs.cache +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/rjimswa.dswa.cache.json +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/rjsmrazor.dswa.cache.json +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/rjsmcshtml.dswa.cache.json +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/scopedcss/Component1.razor.rz.scp.css +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/scopedcss/bundle/Common.styles.css +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/scopedcss/projectbundle/Common.bundle.scp.css +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/staticwebassets.build.json +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/staticwebassets.build.json.cache +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/staticwebassets.development.json +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/staticwebassets.build.endpoints.json +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/staticwebassets/msbuild.Common.Microsoft.AspNetCore.StaticWebAssets.props +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/staticwebassets/msbuild.Common.Microsoft.AspNetCore.StaticWebAssetEndpoints.props +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/staticwebassets/msbuild.build.Common.props +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/staticwebassets/msbuild.buildMultiTargeting.Common.props +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/staticwebassets/msbuild.buildTransitive.Common.props +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/staticwebassets.pack.json +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/Common.csproj.Up2Date +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/Common.dll +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/refint/Common.dll +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/Common.pdb +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/ref/Common.dll +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/compressed/ywk08q3juw-{0}-vnhftjewbd-vnhftjewbd.gz +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/compressed/2lk3dd1lz9-{0}-luzdqbu196-luzdqbu196.gz +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/compressed/8adx25x7bv-{0}-dyev8wf6eo-dyev8wf6eo.gz +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/compressed/4dziwjilcl-{0}-dyev8wf6eo-dyev8wf6eo.gz +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/swae.build.ex.cache diff --git a/obj/Debug/net9.0/Common.csproj.Up2Date b/obj/Debug/net9.0/Common.csproj.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/obj/Debug/net9.0/Common.dll b/obj/Debug/net9.0/Common.dll new file mode 100644 index 0000000..c6b8d48 Binary files /dev/null and b/obj/Debug/net9.0/Common.dll differ diff --git a/obj/Debug/net9.0/Common.pdb b/obj/Debug/net9.0/Common.pdb new file mode 100644 index 0000000..773dae6 Binary files /dev/null and b/obj/Debug/net9.0/Common.pdb differ diff --git a/obj/Debug/net9.0/compressed/2lk3dd1lz9-{0}-luzdqbu196-luzdqbu196.gz b/obj/Debug/net9.0/compressed/2lk3dd1lz9-{0}-luzdqbu196-luzdqbu196.gz new file mode 100644 index 0000000..457c180 Binary files /dev/null and b/obj/Debug/net9.0/compressed/2lk3dd1lz9-{0}-luzdqbu196-luzdqbu196.gz differ diff --git a/obj/Debug/net9.0/compressed/4dziwjilcl-{0}-dyev8wf6eo-dyev8wf6eo.gz b/obj/Debug/net9.0/compressed/4dziwjilcl-{0}-dyev8wf6eo-dyev8wf6eo.gz new file mode 100644 index 0000000..370695f Binary files /dev/null and b/obj/Debug/net9.0/compressed/4dziwjilcl-{0}-dyev8wf6eo-dyev8wf6eo.gz differ diff --git a/obj/Debug/net9.0/compressed/8adx25x7bv-{0}-dyev8wf6eo-dyev8wf6eo.gz b/obj/Debug/net9.0/compressed/8adx25x7bv-{0}-dyev8wf6eo-dyev8wf6eo.gz new file mode 100644 index 0000000..370695f Binary files /dev/null and b/obj/Debug/net9.0/compressed/8adx25x7bv-{0}-dyev8wf6eo-dyev8wf6eo.gz differ diff --git a/obj/Debug/net9.0/compressed/ywk08q3juw-{0}-vnhftjewbd-vnhftjewbd.gz b/obj/Debug/net9.0/compressed/ywk08q3juw-{0}-vnhftjewbd-vnhftjewbd.gz new file mode 100644 index 0000000..e769031 Binary files /dev/null and b/obj/Debug/net9.0/compressed/ywk08q3juw-{0}-vnhftjewbd-vnhftjewbd.gz differ diff --git a/obj/Debug/net9.0/rbcswa.dswa.cache.json b/obj/Debug/net9.0/rbcswa.dswa.cache.json new file mode 100644 index 0000000..745a476 --- /dev/null +++ b/obj/Debug/net9.0/rbcswa.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"2ilJ2M8+ZdH0swl4cXFj9Ji8kay0R08ISE/fEc+OL0o=","FingerprintPatternsHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["vJk33fWq7r9bVP9KsMWr7lNV9UXaQCybgPNXv1UeAro=","szSJsyieccctUb4gnF6lLt\u002BSw06qAVXPIFbxAA2Cq1E=","2hu/HqWXZHZ3UxsAHYrQLdsdS/zm03yjCJKADYfE\u002BTM=","h8370H2BBMzAnVhQYdoZCGCVus/7bwTtQjAFvEG1sDU="],"CachedAssets":{"h8370H2BBMzAnVhQYdoZCGCVus/7bwTtQjAFvEG1sDU=":{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/compressed/4dziwjilcl-{0}-dyev8wf6eo-dyev8wf6eo.gz","SourceId":"Common","SourceType":"Computed","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/compressed/","BasePath":"_content/Common","RelativePath":"Common#[.{fingerprint=dyev8wf6eo}]!.bundle.scp.css.gz","AssetKind":"All","AssetMode":"Reference","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/scopedcss/projectbundle/Common.bundle.scp.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ev5quxslia","Integrity":"xl3SnRiiVvqCLLcEfwCtOinPCzK0m/\u002BNQ5glcmoUhKs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/scopedcss/projectbundle/Common.bundle.scp.css","FileLength":165,"LastWriteTime":"2026-01-18T19:12:03.3215206+00:00"},"szSJsyieccctUb4gnF6lLt\u002BSw06qAVXPIFbxAA2Cq1E=":{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/compressed/2lk3dd1lz9-{0}-luzdqbu196-luzdqbu196.gz","SourceId":"Common","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/compressed/","BasePath":"_content/Common","RelativePath":"exampleJsInterop#[.{fingerprint=luzdqbu196}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/wwwroot/exampleJsInterop.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"0plubunr1s","Integrity":"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/wwwroot/exampleJsInterop.js","FileLength":183,"LastWriteTime":"2026-01-18T19:12:03.3215206+00:00"},"vJk33fWq7r9bVP9KsMWr7lNV9UXaQCybgPNXv1UeAro=":{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/compressed/ywk08q3juw-{0}-vnhftjewbd-vnhftjewbd.gz","SourceId":"Common","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/compressed/","BasePath":"_content/Common","RelativePath":"css/carousal#[.{fingerprint=vnhftjewbd}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/wwwroot/css/carousal.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"bbx64jg9ax","Integrity":"J94ETb6bgoBQU\u002BvsGNRFiGXzZwXBR/LTfFKi8K4Mo\u002B4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/wwwroot/css/carousal.js","FileLength":1155,"LastWriteTime":"2026-01-18T19:12:03.3225206+00:00"},"2hu/HqWXZHZ3UxsAHYrQLdsdS/zm03yjCJKADYfE\u002BTM=":{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/compressed/8adx25x7bv-{0}-dyev8wf6eo-dyev8wf6eo.gz","SourceId":"Common","SourceType":"Computed","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/compressed/","BasePath":"_content/Common","RelativePath":"Common#[.{fingerprint=dyev8wf6eo}]?.styles.css.gz","AssetKind":"All","AssetMode":"CurrentProject","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/scopedcss/bundle/Common.styles.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ev5quxslia","Integrity":"xl3SnRiiVvqCLLcEfwCtOinPCzK0m/\u002BNQ5glcmoUhKs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/scopedcss/bundle/Common.styles.css","FileLength":165,"LastWriteTime":"2026-01-18T19:12:03.3225206+00:00"}},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/obj/Debug/net9.0/ref/Common.dll b/obj/Debug/net9.0/ref/Common.dll new file mode 100644 index 0000000..d77b19b Binary files /dev/null and b/obj/Debug/net9.0/ref/Common.dll differ diff --git a/obj/Debug/net9.0/refint/Common.dll b/obj/Debug/net9.0/refint/Common.dll new file mode 100644 index 0000000..d77b19b Binary files /dev/null and b/obj/Debug/net9.0/refint/Common.dll differ diff --git a/obj/Debug/net9.0/rjimswa.dswa.cache.json b/obj/Debug/net9.0/rjimswa.dswa.cache.json new file mode 100644 index 0000000..0656fd1 --- /dev/null +++ b/obj/Debug/net9.0/rjimswa.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"Tj/Ryfnt7Po4ldPCiTLf/NuJVc4p2mtDwvuqOy2Ul00=","FingerprintPatternsHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","PropertyOverridesHash":"R7Rea/YQmcweqCbKffD9oUelggfpJQX85r65aYZsas0=","InputHashes":["0NXPB46GGhdeXqMS11AGmVQlliC23N/znWBl2QIMakY=","Ohm754D/J/FTnl7VmS9JRIJW3/PlxFaWasmNZ9XCuvQ=","5rBCF2k0psaAA2\u002BXh\u002BX3EdUB1z9DHmmbSd0qCxgsvCg="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file 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..f50c2a7 --- /dev/null +++ b/obj/Debug/net9.0/rjsmcshtml.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"6rdbQzmhdPFDo7/rPyrSJPalIcF9hA/YfhKr1h6DWxg=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["Uw\u002BnC6qXu/pzDLhFReBEzmAQqGZuDFu9GNsQrVDwuqc=","hXPkcIw\u002BktILp/6XEOGmZeq74XzrgogKC5N2mx6gPO8=","91FhNJ2oZGke9YmfiqoP5aa6PPxfxmGPLReykopGEGk=","Lzvk5jJObFlbwM1GyIT1v9uIk7gieO04g0TyVz6weG8=","E4pSlIDnOUySHI/5bZOAZpTLDi0cC11S3\u002BpYK9dVOM8=","AKtBmvZfwyIINrNXm5y4\u002Bur5vNiTwjh5yxnBW3vKglk=","aO8esTcofZLISosvCZepY3h1RQkmiLYkl8w404T14p0=","c52PSZusiKioEY/hprTPkljyPnBTWnpxrUpr\u002BBrehfw=","4os\u002BxnFb5aCufoEPHVVZfFZf8L/jvk\u002Bpk4rS6GfCh6A=","FC5kbiTy5uiL8slJkzl25vV4RTM/QzS3LOuDg7/Qlks=","BlceQALy38J23rzkS2G7MI2697RDGEWATgV4S7qZTjA=","R2JhK8MHjwmDWJzNCu8PW19TNYfzIveb6qUxoN0qVaU=","B5\u002BI43ycBxzxGWdXHkAOgwHoI1AfL7L8LgbjGl9SSPk=","untiCuHAqTVY6nNCQM66KeSJZvQrZMpp1NaIwA6qS64=","paj/oAIGXzsSnjjcuGDtMZO/WjCNJYYp\u002BhUW9\u002BlqXog=","4RFoq3pKaC3v/KQRG\u002BxlXZCsERXnNrElW8l3WXzEaTQ=","o6Tz9lJcr5MBkyqtDf0vujvlAKqR2uCGyhzrLfmCiZY=","QpZYFrJeXsXMObs8rqLmgIf6/2jjsvDqmEyQQ7TwDoU="],"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..d3be802 --- /dev/null +++ b/obj/Debug/net9.0/rjsmrazor.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"aoUFOXG4/NIJ99y3nVvWIbVovRiukWmSzYA/iG/nwCA=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["Uw\u002BnC6qXu/pzDLhFReBEzmAQqGZuDFu9GNsQrVDwuqc=","hXPkcIw\u002BktILp/6XEOGmZeq74XzrgogKC5N2mx6gPO8=","91FhNJ2oZGke9YmfiqoP5aa6PPxfxmGPLReykopGEGk=","Lzvk5jJObFlbwM1GyIT1v9uIk7gieO04g0TyVz6weG8=","E4pSlIDnOUySHI/5bZOAZpTLDi0cC11S3\u002BpYK9dVOM8=","AKtBmvZfwyIINrNXm5y4\u002Bur5vNiTwjh5yxnBW3vKglk=","aO8esTcofZLISosvCZepY3h1RQkmiLYkl8w404T14p0=","c52PSZusiKioEY/hprTPkljyPnBTWnpxrUpr\u002BBrehfw=","4os\u002BxnFb5aCufoEPHVVZfFZf8L/jvk\u002Bpk4rS6GfCh6A=","FC5kbiTy5uiL8slJkzl25vV4RTM/QzS3LOuDg7/Qlks=","BlceQALy38J23rzkS2G7MI2697RDGEWATgV4S7qZTjA=","R2JhK8MHjwmDWJzNCu8PW19TNYfzIveb6qUxoN0qVaU=","B5\u002BI43ycBxzxGWdXHkAOgwHoI1AfL7L8LgbjGl9SSPk=","untiCuHAqTVY6nNCQM66KeSJZvQrZMpp1NaIwA6qS64=","paj/oAIGXzsSnjjcuGDtMZO/WjCNJYYp\u002BhUW9\u002BlqXog=","4RFoq3pKaC3v/KQRG\u002BxlXZCsERXnNrElW8l3WXzEaTQ=","o6Tz9lJcr5MBkyqtDf0vujvlAKqR2uCGyhzrLfmCiZY=","QpZYFrJeXsXMObs8rqLmgIf6/2jjsvDqmEyQQ7TwDoU="],"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..d93bb9b --- /dev/null +++ b/obj/Debug/net9.0/rpswa.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"v/2AldKBKCOXx9gZ7sr7uGQjXg7iXDNGC72yfsPmONg=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["Uw\u002BnC6qXu/pzDLhFReBEzmAQqGZuDFu9GNsQrVDwuqc=","hXPkcIw\u002BktILp/6XEOGmZeq74XzrgogKC5N2mx6gPO8=","91FhNJ2oZGke9YmfiqoP5aa6PPxfxmGPLReykopGEGk=","Lzvk5jJObFlbwM1GyIT1v9uIk7gieO04g0TyVz6weG8=","E4pSlIDnOUySHI/5bZOAZpTLDi0cC11S3\u002BpYK9dVOM8=","AKtBmvZfwyIINrNXm5y4\u002Bur5vNiTwjh5yxnBW3vKglk=","aO8esTcofZLISosvCZepY3h1RQkmiLYkl8w404T14p0=","c52PSZusiKioEY/hprTPkljyPnBTWnpxrUpr\u002BBrehfw=","4os\u002BxnFb5aCufoEPHVVZfFZf8L/jvk\u002Bpk4rS6GfCh6A=","FC5kbiTy5uiL8slJkzl25vV4RTM/QzS3LOuDg7/Qlks=","BlceQALy38J23rzkS2G7MI2697RDGEWATgV4S7qZTjA=","R2JhK8MHjwmDWJzNCu8PW19TNYfzIveb6qUxoN0qVaU=","B5\u002BI43ycBxzxGWdXHkAOgwHoI1AfL7L8LgbjGl9SSPk=","untiCuHAqTVY6nNCQM66KeSJZvQrZMpp1NaIwA6qS64=","paj/oAIGXzsSnjjcuGDtMZO/WjCNJYYp\u002BhUW9\u002BlqXog=","4RFoq3pKaC3v/KQRG\u002BxlXZCsERXnNrElW8l3WXzEaTQ=","o6Tz9lJcr5MBkyqtDf0vujvlAKqR2uCGyhzrLfmCiZY="],"CachedAssets":{"Uw\u002BnC6qXu/pzDLhFReBEzmAQqGZuDFu9GNsQrVDwuqc=":{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/wwwroot/background.png","SourceId":"Common","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/wwwroot/","BasePath":"_content/Common","RelativePath":"background#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"x2rx4ajns0","Integrity":"WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/background.png","FileLength":378,"LastWriteTime":"2025-08-23T11:32:56.5259124+00:00"},"91FhNJ2oZGke9YmfiqoP5aa6PPxfxmGPLReykopGEGk=":{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/wwwroot/exampleJsInterop.js","SourceId":"Common","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/wwwroot/","BasePath":"_content/Common","RelativePath":"exampleJsInterop#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"luzdqbu196","Integrity":"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/exampleJsInterop.js","FileLength":241,"LastWriteTime":"2025-08-23T11:32:56.5269124+00:00"},"hXPkcIw\u002BktILp/6XEOGmZeq74XzrgogKC5N2mx6gPO8=":{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/wwwroot/css/carousal.js","SourceId":"Common","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/wwwroot/","BasePath":"_content/Common","RelativePath":"css/carousal#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"vnhftjewbd","Integrity":"K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/css/carousal.js","FileLength":3499,"LastWriteTime":"2026-01-14T15:07:36.48534+00:00"}},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/obj/Debug/net9.0/scopedcss/Component1.razor.rz.scp.css b/obj/Debug/net9.0/scopedcss/Component1.razor.rz.scp.css new file mode 100644 index 0000000..2536b69 --- /dev/null +++ b/obj/Debug/net9.0/scopedcss/Component1.razor.rz.scp.css @@ -0,0 +1,6 @@ +.my-component[b-zsln377zdo] { + border: 2px dashed red; + padding: 1em; + margin: 1em 0; + background-image: url('background.png'); +} diff --git a/obj/Debug/net9.0/scopedcss/bundle/Common.styles.css b/obj/Debug/net9.0/scopedcss/bundle/Common.styles.css new file mode 100644 index 0000000..6644082 --- /dev/null +++ b/obj/Debug/net9.0/scopedcss/bundle/Common.styles.css @@ -0,0 +1,7 @@ +/* _content/Common/Component1.razor.rz.scp.css */ +.my-component[b-zsln377zdo] { + border: 2px dashed red; + padding: 1em; + margin: 1em 0; + background-image: url('background.png'); +} diff --git a/obj/Debug/net9.0/scopedcss/projectbundle/Common.bundle.scp.css b/obj/Debug/net9.0/scopedcss/projectbundle/Common.bundle.scp.css new file mode 100644 index 0000000..6644082 --- /dev/null +++ b/obj/Debug/net9.0/scopedcss/projectbundle/Common.bundle.scp.css @@ -0,0 +1,7 @@ +/* _content/Common/Component1.razor.rz.scp.css */ +.my-component[b-zsln377zdo] { + border: 2px dashed red; + padding: 1em; + margin: 1em 0; + background-image: url('background.png'); +} 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..b75adb0 --- /dev/null +++ b/obj/Debug/net9.0/staticwebassets.build.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[{"Route":"Common.dyev8wf6eo.styles.css","AssetFile":"Common.styles.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.006024096386"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"165"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"xl3SnRiiVvqCLLcEfwCtOinPCzK0m/+NQ5glcmoUhKs=\""},{"Name":"ETag","Value":"W/\"i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dyev8wf6eo"},{"Name":"integrity","Value":"sha256-i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI="},{"Name":"label","Value":"Common.styles.css"}]},{"Route":"Common.dyev8wf6eo.styles.css","AssetFile":"Common.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"192"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI=\""},{"Name":"Last-Modified","Value":"Sun, 21 Dec 2025 08:53:33 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dyev8wf6eo"},{"Name":"integrity","Value":"sha256-i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI="},{"Name":"label","Value":"Common.styles.css"}]},{"Route":"Common.dyev8wf6eo.styles.css.gz","AssetFile":"Common.styles.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"165"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"xl3SnRiiVvqCLLcEfwCtOinPCzK0m/+NQ5glcmoUhKs=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dyev8wf6eo"},{"Name":"integrity","Value":"sha256-xl3SnRiiVvqCLLcEfwCtOinPCzK0m/+NQ5glcmoUhKs="},{"Name":"label","Value":"Common.styles.css.gz"}]},{"Route":"Common.styles.css","AssetFile":"Common.styles.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.006024096386"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"165"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"xl3SnRiiVvqCLLcEfwCtOinPCzK0m/+NQ5glcmoUhKs=\""},{"Name":"ETag","Value":"W/\"i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI="}]},{"Route":"Common.styles.css","AssetFile":"Common.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"192"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI=\""},{"Name":"Last-Modified","Value":"Sun, 21 Dec 2025 08:53:33 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI="}]},{"Route":"Common.styles.css.gz","AssetFile":"Common.styles.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"165"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"xl3SnRiiVvqCLLcEfwCtOinPCzK0m/+NQ5glcmoUhKs=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xl3SnRiiVvqCLLcEfwCtOinPCzK0m/+NQ5glcmoUhKs="}]},{"Route":"background.png","AssetFile":"background.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"378"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY=\""},{"Name":"Last-Modified","Value":"Sat, 23 Aug 2025 11:32:56 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY="}]},{"Route":"background.x2rx4ajns0.png","AssetFile":"background.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"378"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY=\""},{"Name":"Last-Modified","Value":"Sat, 23 Aug 2025 11:32:56 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x2rx4ajns0"},{"Name":"integrity","Value":"sha256-WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY="},{"Name":"label","Value":"background.png"}]},{"Route":"css/carousal.js","AssetFile":"css/carousal.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000865051903"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1155"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"J94ETb6bgoBQU+vsGNRFiGXzZwXBR/LTfFKi8K4Mo+4=\""},{"Name":"ETag","Value":"W/\"K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ="}]},{"Route":"css/carousal.js","AssetFile":"css/carousal.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"3499"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ=\""},{"Name":"Last-Modified","Value":"Wed, 14 Jan 2026 15:07:36 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ="}]},{"Route":"css/carousal.js.gz","AssetFile":"css/carousal.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1155"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"J94ETb6bgoBQU+vsGNRFiGXzZwXBR/LTfFKi8K4Mo+4=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-J94ETb6bgoBQU+vsGNRFiGXzZwXBR/LTfFKi8K4Mo+4="}]},{"Route":"css/carousal.vnhftjewbd.js","AssetFile":"css/carousal.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000865051903"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1155"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"J94ETb6bgoBQU+vsGNRFiGXzZwXBR/LTfFKi8K4Mo+4=\""},{"Name":"ETag","Value":"W/\"K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vnhftjewbd"},{"Name":"integrity","Value":"sha256-K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ="},{"Name":"label","Value":"css/carousal.js"}]},{"Route":"css/carousal.vnhftjewbd.js","AssetFile":"css/carousal.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3499"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ=\""},{"Name":"Last-Modified","Value":"Wed, 14 Jan 2026 15:07:36 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vnhftjewbd"},{"Name":"integrity","Value":"sha256-K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ="},{"Name":"label","Value":"css/carousal.js"}]},{"Route":"css/carousal.vnhftjewbd.js.gz","AssetFile":"css/carousal.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1155"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"J94ETb6bgoBQU+vsGNRFiGXzZwXBR/LTfFKi8K4Mo+4=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vnhftjewbd"},{"Name":"integrity","Value":"sha256-J94ETb6bgoBQU+vsGNRFiGXzZwXBR/LTfFKi8K4Mo+4="},{"Name":"label","Value":"css/carousal.js.gz"}]},{"Route":"exampleJsInterop.js","AssetFile":"exampleJsInterop.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005434782609"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"183"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=\""},{"Name":"ETag","Value":"W/\"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk="}]},{"Route":"exampleJsInterop.js","AssetFile":"exampleJsInterop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"241"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=\""},{"Name":"Last-Modified","Value":"Sat, 23 Aug 2025 11:32:56 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk="}]},{"Route":"exampleJsInterop.js.gz","AssetFile":"exampleJsInterop.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"183"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o="}]},{"Route":"exampleJsInterop.luzdqbu196.js","AssetFile":"exampleJsInterop.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005434782609"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"183"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=\""},{"Name":"ETag","Value":"W/\"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"luzdqbu196"},{"Name":"integrity","Value":"sha256-Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk="},{"Name":"label","Value":"exampleJsInterop.js"}]},{"Route":"exampleJsInterop.luzdqbu196.js","AssetFile":"exampleJsInterop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"241"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=\""},{"Name":"Last-Modified","Value":"Sat, 23 Aug 2025 11:32:56 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"luzdqbu196"},{"Name":"integrity","Value":"sha256-Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk="},{"Name":"label","Value":"exampleJsInterop.js"}]},{"Route":"exampleJsInterop.luzdqbu196.js.gz","AssetFile":"exampleJsInterop.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"183"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"luzdqbu196"},{"Name":"integrity","Value":"sha256-rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o="},{"Name":"label","Value":"exampleJsInterop.js.gz"}]}]} \ 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..968c932 --- /dev/null +++ b/obj/Debug/net9.0/staticwebassets.build.json @@ -0,0 +1 @@ +{"Version":1,"Hash":"WuGFl4zsPDUGKb/Q4URppIafc4pwuC369YnuqtKC3Yo=","Source":"Common","BasePath":"_content/Common","Mode":"Default","ManifestType":"Build","ReferencedProjectsConfiguration":[],"DiscoveryPatterns":[{"Name":"Common/wwwroot","Source":"Common","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/wwwroot/","BasePath":"_content/Common","Pattern":"**"}],"Assets":[{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/compressed/2lk3dd1lz9-{0}-luzdqbu196-luzdqbu196.gz","SourceId":"Common","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/compressed/","BasePath":"_content/Common","RelativePath":"exampleJsInterop#[.{fingerprint=luzdqbu196}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/wwwroot/exampleJsInterop.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"0plubunr1s","Integrity":"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/wwwroot/exampleJsInterop.js","FileLength":183,"LastWriteTime":"2026-01-18T19:12:03+00:00"},{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/compressed/4dziwjilcl-{0}-dyev8wf6eo-dyev8wf6eo.gz","SourceId":"Common","SourceType":"Computed","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/compressed/","BasePath":"_content/Common","RelativePath":"Common#[.{fingerprint=dyev8wf6eo}]!.bundle.scp.css.gz","AssetKind":"All","AssetMode":"Reference","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/scopedcss/projectbundle/Common.bundle.scp.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ev5quxslia","Integrity":"xl3SnRiiVvqCLLcEfwCtOinPCzK0m/+NQ5glcmoUhKs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/scopedcss/projectbundle/Common.bundle.scp.css","FileLength":165,"LastWriteTime":"2026-01-18T19:12:03+00:00"},{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/compressed/8adx25x7bv-{0}-dyev8wf6eo-dyev8wf6eo.gz","SourceId":"Common","SourceType":"Computed","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/compressed/","BasePath":"_content/Common","RelativePath":"Common#[.{fingerprint=dyev8wf6eo}]?.styles.css.gz","AssetKind":"All","AssetMode":"CurrentProject","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/scopedcss/bundle/Common.styles.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ev5quxslia","Integrity":"xl3SnRiiVvqCLLcEfwCtOinPCzK0m/+NQ5glcmoUhKs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/scopedcss/bundle/Common.styles.css","FileLength":165,"LastWriteTime":"2026-01-18T19:12:03+00:00"},{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/compressed/ywk08q3juw-{0}-vnhftjewbd-vnhftjewbd.gz","SourceId":"Common","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/compressed/","BasePath":"_content/Common","RelativePath":"css/carousal#[.{fingerprint=vnhftjewbd}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/wwwroot/css/carousal.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"bbx64jg9ax","Integrity":"J94ETb6bgoBQU+vsGNRFiGXzZwXBR/LTfFKi8K4Mo+4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/wwwroot/css/carousal.js","FileLength":1155,"LastWriteTime":"2026-01-18T19:12:03+00:00"},{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/scopedcss/bundle/Common.styles.css","SourceId":"Common","SourceType":"Computed","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/scopedcss/bundle/","BasePath":"_content/Common","RelativePath":"Common#[.{fingerprint}]?.styles.css","AssetKind":"All","AssetMode":"CurrentProject","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"ScopedCss","AssetTraitValue":"ApplicationBundle","Fingerprint":"dyev8wf6eo","Integrity":"i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/scopedcss/bundle/Common.styles.css","FileLength":192,"LastWriteTime":"2025-12-21T08:53:33+00:00"},{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/scopedcss/projectbundle/Common.bundle.scp.css","SourceId":"Common","SourceType":"Computed","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/scopedcss/projectbundle/","BasePath":"_content/Common","RelativePath":"Common#[.{fingerprint}]!.bundle.scp.css","AssetKind":"All","AssetMode":"Reference","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"ScopedCss","AssetTraitValue":"ProjectBundle","Fingerprint":"dyev8wf6eo","Integrity":"i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/scopedcss/projectbundle/Common.bundle.scp.css","FileLength":192,"LastWriteTime":"2025-12-21T08:53:33+00:00"},{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/wwwroot/background.png","SourceId":"Common","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/wwwroot/","BasePath":"_content/Common","RelativePath":"background#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"x2rx4ajns0","Integrity":"WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/background.png","FileLength":378,"LastWriteTime":"2025-08-23T11:32:56+00:00"},{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/wwwroot/css/carousal.js","SourceId":"Common","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/wwwroot/","BasePath":"_content/Common","RelativePath":"css/carousal#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"vnhftjewbd","Integrity":"K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/css/carousal.js","FileLength":3499,"LastWriteTime":"2026-01-14T15:07:36+00:00"},{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/wwwroot/exampleJsInterop.js","SourceId":"Common","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/wwwroot/","BasePath":"_content/Common","RelativePath":"exampleJsInterop#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"luzdqbu196","Integrity":"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/exampleJsInterop.js","FileLength":241,"LastWriteTime":"2025-08-23T11:32:56+00:00"}],"Endpoints":[{"Route":"Common.bundle.scp.css","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/compressed/4dziwjilcl-{0}-dyev8wf6eo-dyev8wf6eo.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.006024096386"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"165"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"xl3SnRiiVvqCLLcEfwCtOinPCzK0m/+NQ5glcmoUhKs=\""},{"Name":"ETag","Value":"W/\"i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI="}]},{"Route":"Common.bundle.scp.css","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/scopedcss/projectbundle/Common.bundle.scp.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"192"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI=\""},{"Name":"Last-Modified","Value":"Sun, 21 Dec 2025 08:53:33 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI="}]},{"Route":"Common.bundle.scp.css.gz","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/compressed/4dziwjilcl-{0}-dyev8wf6eo-dyev8wf6eo.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"165"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"xl3SnRiiVvqCLLcEfwCtOinPCzK0m/+NQ5glcmoUhKs=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xl3SnRiiVvqCLLcEfwCtOinPCzK0m/+NQ5glcmoUhKs="}]},{"Route":"Common.dyev8wf6eo.bundle.scp.css","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/compressed/4dziwjilcl-{0}-dyev8wf6eo-dyev8wf6eo.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.006024096386"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"165"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"xl3SnRiiVvqCLLcEfwCtOinPCzK0m/+NQ5glcmoUhKs=\""},{"Name":"ETag","Value":"W/\"i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dyev8wf6eo"},{"Name":"integrity","Value":"sha256-i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI="},{"Name":"label","Value":"Common.bundle.scp.css"}]},{"Route":"Common.dyev8wf6eo.bundle.scp.css","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/scopedcss/projectbundle/Common.bundle.scp.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"192"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI=\""},{"Name":"Last-Modified","Value":"Sun, 21 Dec 2025 08:53:33 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dyev8wf6eo"},{"Name":"integrity","Value":"sha256-i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI="},{"Name":"label","Value":"Common.bundle.scp.css"}]},{"Route":"Common.dyev8wf6eo.bundle.scp.css.gz","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/compressed/4dziwjilcl-{0}-dyev8wf6eo-dyev8wf6eo.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"165"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"xl3SnRiiVvqCLLcEfwCtOinPCzK0m/+NQ5glcmoUhKs=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dyev8wf6eo"},{"Name":"integrity","Value":"sha256-xl3SnRiiVvqCLLcEfwCtOinPCzK0m/+NQ5glcmoUhKs="},{"Name":"label","Value":"Common.bundle.scp.css.gz"}]},{"Route":"Common.dyev8wf6eo.styles.css","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/compressed/8adx25x7bv-{0}-dyev8wf6eo-dyev8wf6eo.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.006024096386"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"165"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"xl3SnRiiVvqCLLcEfwCtOinPCzK0m/+NQ5glcmoUhKs=\""},{"Name":"ETag","Value":"W/\"i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dyev8wf6eo"},{"Name":"integrity","Value":"sha256-i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI="},{"Name":"label","Value":"Common.styles.css"}]},{"Route":"Common.dyev8wf6eo.styles.css","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/scopedcss/bundle/Common.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"192"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI=\""},{"Name":"Last-Modified","Value":"Sun, 21 Dec 2025 08:53:33 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dyev8wf6eo"},{"Name":"integrity","Value":"sha256-i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI="},{"Name":"label","Value":"Common.styles.css"}]},{"Route":"Common.dyev8wf6eo.styles.css.gz","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/compressed/8adx25x7bv-{0}-dyev8wf6eo-dyev8wf6eo.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"165"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"xl3SnRiiVvqCLLcEfwCtOinPCzK0m/+NQ5glcmoUhKs=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dyev8wf6eo"},{"Name":"integrity","Value":"sha256-xl3SnRiiVvqCLLcEfwCtOinPCzK0m/+NQ5glcmoUhKs="},{"Name":"label","Value":"Common.styles.css.gz"}]},{"Route":"Common.styles.css","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/compressed/8adx25x7bv-{0}-dyev8wf6eo-dyev8wf6eo.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.006024096386"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"165"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"xl3SnRiiVvqCLLcEfwCtOinPCzK0m/+NQ5glcmoUhKs=\""},{"Name":"ETag","Value":"W/\"i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI="}]},{"Route":"Common.styles.css","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/scopedcss/bundle/Common.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"192"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI=\""},{"Name":"Last-Modified","Value":"Sun, 21 Dec 2025 08:53:33 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI="}]},{"Route":"Common.styles.css.gz","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/compressed/8adx25x7bv-{0}-dyev8wf6eo-dyev8wf6eo.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"165"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"xl3SnRiiVvqCLLcEfwCtOinPCzK0m/+NQ5glcmoUhKs=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xl3SnRiiVvqCLLcEfwCtOinPCzK0m/+NQ5glcmoUhKs="}]},{"Route":"background.png","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/wwwroot/background.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"378"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY=\""},{"Name":"Last-Modified","Value":"Sat, 23 Aug 2025 11:32:56 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY="}]},{"Route":"background.x2rx4ajns0.png","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/wwwroot/background.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"378"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY=\""},{"Name":"Last-Modified","Value":"Sat, 23 Aug 2025 11:32:56 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x2rx4ajns0"},{"Name":"integrity","Value":"sha256-WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY="},{"Name":"label","Value":"background.png"}]},{"Route":"css/carousal.js","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/compressed/ywk08q3juw-{0}-vnhftjewbd-vnhftjewbd.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000865051903"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1155"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"J94ETb6bgoBQU+vsGNRFiGXzZwXBR/LTfFKi8K4Mo+4=\""},{"Name":"ETag","Value":"W/\"K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ="}]},{"Route":"css/carousal.js","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/wwwroot/css/carousal.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"3499"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ=\""},{"Name":"Last-Modified","Value":"Wed, 14 Jan 2026 15:07:36 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ="}]},{"Route":"css/carousal.js.gz","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/compressed/ywk08q3juw-{0}-vnhftjewbd-vnhftjewbd.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1155"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"J94ETb6bgoBQU+vsGNRFiGXzZwXBR/LTfFKi8K4Mo+4=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-J94ETb6bgoBQU+vsGNRFiGXzZwXBR/LTfFKi8K4Mo+4="}]},{"Route":"css/carousal.vnhftjewbd.js","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/compressed/ywk08q3juw-{0}-vnhftjewbd-vnhftjewbd.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000865051903"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1155"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"J94ETb6bgoBQU+vsGNRFiGXzZwXBR/LTfFKi8K4Mo+4=\""},{"Name":"ETag","Value":"W/\"K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vnhftjewbd"},{"Name":"integrity","Value":"sha256-K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ="},{"Name":"label","Value":"css/carousal.js"}]},{"Route":"css/carousal.vnhftjewbd.js","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/wwwroot/css/carousal.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3499"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ=\""},{"Name":"Last-Modified","Value":"Wed, 14 Jan 2026 15:07:36 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vnhftjewbd"},{"Name":"integrity","Value":"sha256-K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ="},{"Name":"label","Value":"css/carousal.js"}]},{"Route":"css/carousal.vnhftjewbd.js.gz","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/compressed/ywk08q3juw-{0}-vnhftjewbd-vnhftjewbd.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1155"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"J94ETb6bgoBQU+vsGNRFiGXzZwXBR/LTfFKi8K4Mo+4=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vnhftjewbd"},{"Name":"integrity","Value":"sha256-J94ETb6bgoBQU+vsGNRFiGXzZwXBR/LTfFKi8K4Mo+4="},{"Name":"label","Value":"css/carousal.js.gz"}]},{"Route":"exampleJsInterop.js","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/compressed/2lk3dd1lz9-{0}-luzdqbu196-luzdqbu196.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005434782609"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"183"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=\""},{"Name":"ETag","Value":"W/\"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk="}]},{"Route":"exampleJsInterop.js","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/wwwroot/exampleJsInterop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"241"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=\""},{"Name":"Last-Modified","Value":"Sat, 23 Aug 2025 11:32:56 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk="}]},{"Route":"exampleJsInterop.js.gz","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/compressed/2lk3dd1lz9-{0}-luzdqbu196-luzdqbu196.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"183"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o="}]},{"Route":"exampleJsInterop.luzdqbu196.js","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/compressed/2lk3dd1lz9-{0}-luzdqbu196-luzdqbu196.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005434782609"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"183"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=\""},{"Name":"ETag","Value":"W/\"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"luzdqbu196"},{"Name":"integrity","Value":"sha256-Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk="},{"Name":"label","Value":"exampleJsInterop.js"}]},{"Route":"exampleJsInterop.luzdqbu196.js","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/wwwroot/exampleJsInterop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"241"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk=\""},{"Name":"Last-Modified","Value":"Sat, 23 Aug 2025 11:32:56 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"luzdqbu196"},{"Name":"integrity","Value":"sha256-Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk="},{"Name":"label","Value":"exampleJsInterop.js"}]},{"Route":"exampleJsInterop.luzdqbu196.js.gz","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/compressed/2lk3dd1lz9-{0}-luzdqbu196-luzdqbu196.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"183"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"luzdqbu196"},{"Name":"integrity","Value":"sha256-rOOkCFfOJmeamsaJlAKp41yy8mbqMkmkkSbzO/jwM3o="},{"Name":"label","Value":"exampleJsInterop.js.gz"}]}]} \ 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..6e237e5 --- /dev/null +++ b/obj/Debug/net9.0/staticwebassets.build.json.cache @@ -0,0 +1 @@ +WuGFl4zsPDUGKb/Q4URppIafc4pwuC369YnuqtKC3Yo= \ No newline at end of file diff --git a/obj/Debug/net9.0/staticwebassets.development.json b/obj/Debug/net9.0/staticwebassets.development.json new file mode 100644 index 0000000..ce1d358 --- /dev/null +++ b/obj/Debug/net9.0/staticwebassets.development.json @@ -0,0 +1 @@ +{"ContentRoots":["/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/wwwroot/","/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/scopedcss/bundle/","/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/compressed/"],"Root":{"Children":{"background.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"background.png"},"Patterns":null},"Common.styles.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"Common.styles.css"},"Patterns":null},"Common.styles.css.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"8adx25x7bv-{0}-dyev8wf6eo-dyev8wf6eo.gz"},"Patterns":null},"exampleJsInterop.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"exampleJsInterop.js"},"Patterns":null},"exampleJsInterop.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"2lk3dd1lz9-{0}-luzdqbu196-luzdqbu196.gz"},"Patterns":null},"css":{"Children":{"carousal.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/carousal.js"},"Patterns":null},"carousal.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"ywk08q3juw-{0}-vnhftjewbd-vnhftjewbd.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}} \ No newline at end of file diff --git a/obj/Debug/net9.0/staticwebassets.pack.json b/obj/Debug/net9.0/staticwebassets.pack.json new file mode 100644 index 0000000..6b2d1b4 --- /dev/null +++ b/obj/Debug/net9.0/staticwebassets.pack.json @@ -0,0 +1,41 @@ +{ + "Files": [ + { + "Id": "/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/obj/Debug/net9.0/scopedcss/projectbundle/Common.bundle.scp.css", + "PackagePath": "staticwebassets/Common.dyev8wf6eo.bundle.scp.css" + }, + { + "Id": "/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/wwwroot/background.png", + "PackagePath": "staticwebassets/background.png" + }, + { + "Id": "/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/wwwroot/css/carousal.js", + "PackagePath": "staticwebassets/css/carousal.js" + }, + { + "Id": "/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/wwwroot/exampleJsInterop.js", + "PackagePath": "staticwebassets/exampleJsInterop.js" + }, + { + "Id": "obj/Debug/net9.0/staticwebassets/msbuild.Common.Microsoft.AspNetCore.StaticWebAssetEndpoints.props", + "PackagePath": "build\\Microsoft.AspNetCore.StaticWebAssetEndpoints.props" + }, + { + "Id": "obj/Debug/net9.0/staticwebassets/msbuild.Common.Microsoft.AspNetCore.StaticWebAssets.props", + "PackagePath": "build\\Microsoft.AspNetCore.StaticWebAssets.props" + }, + { + "Id": "obj/Debug/net9.0/staticwebassets/msbuild.build.Common.props", + "PackagePath": "build\\Common.props" + }, + { + "Id": "obj/Debug/net9.0/staticwebassets/msbuild.buildMultiTargeting.Common.props", + "PackagePath": "buildMultiTargeting\\Common.props" + }, + { + "Id": "obj/Debug/net9.0/staticwebassets/msbuild.buildTransitive.Common.props", + "PackagePath": "buildTransitive\\Common.props" + } + ], + "ElementsToRemove": [] +} \ No newline at end of file diff --git a/obj/Debug/net9.0/staticwebassets/msbuild.Common.Microsoft.AspNetCore.StaticWebAssetEndpoints.props b/obj/Debug/net9.0/staticwebassets/msbuild.Common.Microsoft.AspNetCore.StaticWebAssetEndpoints.props new file mode 100644 index 0000000..7adcd2e --- /dev/null +++ b/obj/Debug/net9.0/staticwebassets/msbuild.Common.Microsoft.AspNetCore.StaticWebAssetEndpoints.props @@ -0,0 +1,52 @@ + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\background.png')) + + + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\background.png')) + + + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\Common.dyev8wf6eo.bundle.scp.css')) + + + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\Common.dyev8wf6eo.bundle.scp.css')) + + + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\css\carousal.js')) + + + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\css\carousal.js')) + + + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\exampleJsInterop.js')) + + + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\exampleJsInterop.js')) + + + + + + \ No newline at end of file diff --git a/obj/Debug/net9.0/staticwebassets/msbuild.Common.Microsoft.AspNetCore.StaticWebAssets.props b/obj/Debug/net9.0/staticwebassets/msbuild.Common.Microsoft.AspNetCore.StaticWebAssets.props new file mode 100644 index 0000000..e424369 --- /dev/null +++ b/obj/Debug/net9.0/staticwebassets/msbuild.Common.Microsoft.AspNetCore.StaticWebAssets.props @@ -0,0 +1,84 @@ + + + + Package + Common + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/Common + background.png + All + All + Primary + + + + x2rx4ajns0 + WeOKCkI7IdJHs2kCqsKgLfiWX4/sNPbaRUspOLefkCY= + Never + PreserveNewest + 378 + Sat, 23 Aug 2025 11:32:56 GMT + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\background.png')) + + + Package + Common + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/Common + Common.dyev8wf6eo.bundle.scp.css + All + Reference + Primary + + ScopedCss + ProjectBundle + dyev8wf6eo + i6qyhSbwamO4wYm0oU9DGqrzbGfLYClEMzCQiMAT8FI= + Never + PreserveNewest + 192 + Sun, 21 Dec 2025 08:53:33 GMT + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\Common.dyev8wf6eo.bundle.scp.css')) + + + Package + Common + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/Common + css/carousal.js + All + All + Primary + + + + vnhftjewbd + K1BmVTJTQBxj4WTN2sBd/MYTDWisP4DzwLDsVHuVwdQ= + Never + PreserveNewest + 3499 + Wed, 14 Jan 2026 15:07:36 GMT + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\css\carousal.js')) + + + Package + Common + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/Common + exampleJsInterop.js + All + All + Primary + + + + luzdqbu196 + Q4NTLlisgAvNajNKkeD3c0qLXE5q8YduQMx9wE/SeNk= + Never + PreserveNewest + 241 + Sat, 23 Aug 2025 11:32:56 GMT + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\exampleJsInterop.js')) + + + \ No newline at end of file diff --git a/obj/Debug/net9.0/staticwebassets/msbuild.build.Common.props b/obj/Debug/net9.0/staticwebassets/msbuild.build.Common.props new file mode 100644 index 0000000..ddaed44 --- /dev/null +++ b/obj/Debug/net9.0/staticwebassets/msbuild.build.Common.props @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/obj/Debug/net9.0/staticwebassets/msbuild.buildMultiTargeting.Common.props b/obj/Debug/net9.0/staticwebassets/msbuild.buildMultiTargeting.Common.props new file mode 100644 index 0000000..9ea373b --- /dev/null +++ b/obj/Debug/net9.0/staticwebassets/msbuild.buildMultiTargeting.Common.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/obj/Debug/net9.0/staticwebassets/msbuild.buildTransitive.Common.props b/obj/Debug/net9.0/staticwebassets/msbuild.buildTransitive.Common.props new file mode 100644 index 0000000..11fe5d8 --- /dev/null +++ b/obj/Debug/net9.0/staticwebassets/msbuild.buildTransitive.Common.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/obj/Debug/net9.0/swae.build.ex.cache b/obj/Debug/net9.0/swae.build.ex.cache new file mode 100644 index 0000000..e69de29 diff --git a/obj/project.assets.json b/obj/project.assets.json new file mode 100644 index 0000000..041c544 --- /dev/null +++ b/obj/project.assets.json @@ -0,0 +1,1233 @@ +{ + "version": 3, + "targets": { + "net10.0": { + "Microsoft.AspNetCore.Authorization/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Metadata": "10.0.1", + "Microsoft.Extensions.Diagnostics": "10.0.1", + "Microsoft.Extensions.Logging.Abstractions": "10.0.1", + "Microsoft.Extensions.Options": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.AspNetCore.Authorization.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.Authorization.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Components/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Authorization": "10.0.1", + "Microsoft.AspNetCore.Components.Analyzers": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.AspNetCore.Components.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.Components.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Components.Analyzers/10.0.1": { + "type": "package", + "build": { + "buildTransitive/netstandard2.0/Microsoft.AspNetCore.Components.Analyzers.targets": {} + } + }, + "Microsoft.AspNetCore.Components.Forms/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Components": "10.0.1", + "Microsoft.Extensions.Validation": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.AspNetCore.Components.Forms.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.Components.Forms.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Components.Web/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Components": "10.0.1", + "Microsoft.AspNetCore.Components.Forms": "10.0.1", + "Microsoft.Extensions.DependencyInjection": "10.0.1", + "Microsoft.Extensions.Primitives": "10.0.1", + "Microsoft.JSInterop": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.AspNetCore.Components.Web.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.Components.Web.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Metadata/10.0.1": { + "type": "package", + "compile": { + "lib/net10.0/Microsoft.AspNetCore.Metadata.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.Metadata.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Configuration/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "10.0.1", + "Microsoft.Extensions.Primitives": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Binder/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "10.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Configuration.Binder.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Configuration.Binder.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets": {} + } + }, + "Microsoft.Extensions.DependencyInjection/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.1": { + "type": "package", + "compile": { + "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Diagnostics/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "10.0.1", + "Microsoft.Extensions.Diagnostics.Abstractions": "10.0.1", + "Microsoft.Extensions.Options.ConfigurationExtensions": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Diagnostics.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Diagnostics.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Diagnostics.Abstractions/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.1", + "Microsoft.Extensions.Options": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.Options/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.1", + "Microsoft.Extensions.Primitives": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.Extensions.Options.targets": {} + } + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "10.0.1", + "Microsoft.Extensions.Configuration.Binder": "10.0.1", + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.1", + "Microsoft.Extensions.Options": "10.0.1", + "Microsoft.Extensions.Primitives": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Primitives/10.0.1": { + "type": "package", + "compile": { + "lib/net10.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Validation/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.1", + "Microsoft.Extensions.Options": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Validation.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Validation.dll": { + "related": ".xml" + } + } + }, + "Microsoft.JSInterop/10.0.1": { + "type": "package", + "compile": { + "lib/net10.0/Microsoft.JSInterop.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.JSInterop.dll": { + "related": ".xml" + } + } + }, + "Generic.CL/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v10.0", + "compile": { + "bin/placeholder/Generic.CL.dll": {} + }, + "runtime": { + "bin/placeholder/Generic.CL.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.AspNetCore.Authorization/10.0.1": { + "sha512": "Y9QE0gH4Q4cR7ZRToFju47c1MoeqxaLHdpzOviqD2TmnGGAeDMT9AV56j2BOVm5CsJAVyI/USxLYrkk2NVinZA==", + "type": "package", + "path": "microsoft.aspnetcore.authorization/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net10.0/Microsoft.AspNetCore.Authorization.dll", + "lib/net10.0/Microsoft.AspNetCore.Authorization.xml", + "lib/net462/Microsoft.AspNetCore.Authorization.dll", + "lib/net462/Microsoft.AspNetCore.Authorization.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.xml", + "microsoft.aspnetcore.authorization.10.0.1.nupkg.sha512", + "microsoft.aspnetcore.authorization.nuspec" + ] + }, + "Microsoft.AspNetCore.Components/10.0.1": { + "sha512": "SbABcQ7soM9jC/HvPKrg/smQxsMD2gW9iHBRFtBiYTMSs5Vqh7+i47BTOe3OM3IGzly2FiOmeNHJhMYK7YFGWA==", + "type": "package", + "path": "microsoft.aspnetcore.components/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.txt", + "lib/net10.0/Microsoft.AspNetCore.Components.dll", + "lib/net10.0/Microsoft.AspNetCore.Components.xml", + "microsoft.aspnetcore.components.10.0.1.nupkg.sha512", + "microsoft.aspnetcore.components.nuspec" + ] + }, + "Microsoft.AspNetCore.Components.Analyzers/10.0.1": { + "sha512": "V4nOq0mNoX9OWz9pJz4uLcAu4GXWUKKHeoxKwugYhFOh4Yh3n7/+xXfgSXK1PZZOIQ3e1vJ7CNvB6evv4YphEA==", + "type": "package", + "path": "microsoft.aspnetcore.components.analyzers/10.0.1", + "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.10.0.1.nupkg.sha512", + "microsoft.aspnetcore.components.analyzers.nuspec" + ] + }, + "Microsoft.AspNetCore.Components.Forms/10.0.1": { + "sha512": "aWUpLOz749gwMMaKe81tet+INC8nfskbauF2VO5Qr3lspj/l8S24zNLr95Bl8EwAizvBCNqwb8fPFU1dnn3WbA==", + "type": "package", + "path": "microsoft.aspnetcore.components.forms/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.txt", + "lib/net10.0/Microsoft.AspNetCore.Components.Forms.dll", + "lib/net10.0/Microsoft.AspNetCore.Components.Forms.xml", + "microsoft.aspnetcore.components.forms.10.0.1.nupkg.sha512", + "microsoft.aspnetcore.components.forms.nuspec" + ] + }, + "Microsoft.AspNetCore.Components.Web/10.0.1": { + "sha512": "hX74ijqAiUfIo6WpvLWignGYp7tkrRR3KRVBErwFSAcsiHeaCxGM81fYRXd9rf+gkFUNoKvcSxYyVZc2vFJVXg==", + "type": "package", + "path": "microsoft.aspnetcore.components.web/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.txt", + "lib/net10.0/Microsoft.AspNetCore.Components.Web.dll", + "lib/net10.0/Microsoft.AspNetCore.Components.Web.xml", + "microsoft.aspnetcore.components.web.10.0.1.nupkg.sha512", + "microsoft.aspnetcore.components.web.nuspec" + ] + }, + "Microsoft.AspNetCore.Metadata/10.0.1": { + "sha512": "6JrG03xROuR4mQIHGcT8OnaKVBoPLLbto5RicKQIUV3JIU7cZYKIWDAnk0SQcl7ziQr6R327D6QBOo+PbYnnrw==", + "type": "package", + "path": "microsoft.aspnetcore.metadata/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net10.0/Microsoft.AspNetCore.Metadata.dll", + "lib/net10.0/Microsoft.AspNetCore.Metadata.xml", + "lib/net462/Microsoft.AspNetCore.Metadata.dll", + "lib/net462/Microsoft.AspNetCore.Metadata.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Metadata.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Metadata.xml", + "microsoft.aspnetcore.metadata.10.0.1.nupkg.sha512", + "microsoft.aspnetcore.metadata.nuspec" + ] + }, + "Microsoft.Extensions.Configuration/10.0.1": { + "sha512": "njoRekyMIK+smav8B6KL2YgIfUtlsRNuT7wvurpLW+m/hoRKVnoELk2YxnUnWRGScCd1rukLMxShwLqEOKowDg==", + "type": "package", + "path": "microsoft.extensions.configuration/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.targets", + "lib/net10.0/Microsoft.Extensions.Configuration.dll", + "lib/net10.0/Microsoft.Extensions.Configuration.xml", + "lib/net462/Microsoft.Extensions.Configuration.dll", + "lib/net462/Microsoft.Extensions.Configuration.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.xml", + "lib/net9.0/Microsoft.Extensions.Configuration.dll", + "lib/net9.0/Microsoft.Extensions.Configuration.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml", + "microsoft.extensions.configuration.10.0.1.nupkg.sha512", + "microsoft.extensions.configuration.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Abstractions/10.0.1": { + "sha512": "kPlU11hql+L9RjrN2N9/0GcRcRcZrNFlLLjadasFWeBORT6pL6OE+RYRk90GGCyVGSxTK+e1/f3dsMj5zpFFiQ==", + "type": "package", + "path": "microsoft.extensions.configuration.abstractions/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Abstractions.targets", + "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net462/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "microsoft.extensions.configuration.abstractions.10.0.1.nupkg.sha512", + "microsoft.extensions.configuration.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Binder/10.0.1": { + "sha512": "Lp4CZIuTVXtlvkAnTq6QvMSW7+H62gX2cU2vdFxHQUxvrWTpi7LwYI3X+YAyIS0r12/p7gaosco7efIxL4yFNw==", + "type": "package", + "path": "microsoft.extensions.configuration.binder/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/cs/Microsoft.Extensions.Configuration.Binder.SourceGeneration.dll", + "analyzers/dotnet/cs/cs/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/de/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/es/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/fr/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/it/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/ja/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/ko/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/pl/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/pt-BR/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/ru/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/tr/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/zh-Hans/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/zh-Hant/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets", + "lib/net10.0/Microsoft.Extensions.Configuration.Binder.dll", + "lib/net10.0/Microsoft.Extensions.Configuration.Binder.xml", + "lib/net462/Microsoft.Extensions.Configuration.Binder.dll", + "lib/net462/Microsoft.Extensions.Configuration.Binder.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.Binder.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.Binder.xml", + "lib/net9.0/Microsoft.Extensions.Configuration.Binder.dll", + "lib/net9.0/Microsoft.Extensions.Configuration.Binder.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml", + "microsoft.extensions.configuration.binder.10.0.1.nupkg.sha512", + "microsoft.extensions.configuration.binder.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection/10.0.1": { + "sha512": "zerXV0GAR9LCSXoSIApbWn+Dq1/T+6vbXMHGduq1LoVQRHT0BXsGQEau0jeLUBUcsoF/NaUT8ADPu8b+eNcIyg==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "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/net10.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net10.0/Microsoft.Extensions.DependencyInjection.xml", + "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.10.0.1.nupkg.sha512", + "microsoft.extensions.dependencyinjection.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.1": { + "sha512": "oIy8fQxxbUsSrrOvgBqlVgOeCtDmrcynnTG+FQufcUWBrwyPfwlUkCDB2vaiBeYPyT+20u9/HeuHeBf+H4F/8g==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "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/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "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.10.0.1.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Diagnostics/10.0.1": { + "sha512": "YaocqxscJLxLit0F5yq2XyB+9C7rSRfeTL7MJIl7XwaOoUO3i0EqfO2kmtjiRduYWw7yjcSINEApYZbzjau2gQ==", + "type": "package", + "path": "microsoft.extensions.diagnostics/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Diagnostics.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Diagnostics.targets", + "lib/net10.0/Microsoft.Extensions.Diagnostics.dll", + "lib/net10.0/Microsoft.Extensions.Diagnostics.xml", + "lib/net462/Microsoft.Extensions.Diagnostics.dll", + "lib/net462/Microsoft.Extensions.Diagnostics.xml", + "lib/net8.0/Microsoft.Extensions.Diagnostics.dll", + "lib/net8.0/Microsoft.Extensions.Diagnostics.xml", + "lib/net9.0/Microsoft.Extensions.Diagnostics.dll", + "lib/net9.0/Microsoft.Extensions.Diagnostics.xml", + "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.dll", + "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.xml", + "microsoft.extensions.diagnostics.10.0.1.nupkg.sha512", + "microsoft.extensions.diagnostics.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Diagnostics.Abstractions/10.0.1": { + "sha512": "QMoMrkNpnQym5mpfdxfxpRDuqLpsOuztguFvzH9p+Ex+do+uLFoi7UkAsBO4e9/tNR3eMFraFf2fOAi2cp3jjA==", + "type": "package", + "path": "microsoft.extensions.diagnostics.abstractions/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Diagnostics.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Diagnostics.Abstractions.targets", + "lib/net10.0/Microsoft.Extensions.Diagnostics.Abstractions.dll", + "lib/net10.0/Microsoft.Extensions.Diagnostics.Abstractions.xml", + "lib/net462/Microsoft.Extensions.Diagnostics.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Diagnostics.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.Diagnostics.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.Diagnostics.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.Abstractions.xml", + "microsoft.extensions.diagnostics.abstractions.10.0.1.nupkg.sha512", + "microsoft.extensions.diagnostics.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/10.0.1": { + "sha512": "YkmyiPIWAXVb+lPIrM0LE5bbtLOJkCiRTFiHpkVOvhI7uTvCfoOHLEN0LcsY56GpSD7NqX3gJNpsaDe87/B3zg==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "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/net10.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.xml", + "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.10.0.1.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Options/10.0.1": { + "sha512": "G6VVwywpJI4XIobetGHwg7wDOYC2L2XBYdtskxLaKF/Ynb5QBwLl7Q//wxAR2aVCLkMpoQrjSP9VoORkyddsNQ==", + "type": "package", + "path": "microsoft.extensions.options/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "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/net10.0/Microsoft.Extensions.Options.dll", + "lib/net10.0/Microsoft.Extensions.Options.xml", + "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.10.0.1.nupkg.sha512", + "microsoft.extensions.options.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/10.0.1": { + "sha512": "pL78/Im7O3WmxHzlKUsWTYchKL881udU7E26gCD3T0+/tPhWVfjPwMzfN/MRKU7aoFYcOiqcG2k1QTlH5woWow==", + "type": "package", + "path": "microsoft.extensions.options.configurationextensions/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Options.ConfigurationExtensions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.ConfigurationExtensions.targets", + "lib/net10.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll", + "lib/net10.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml", + "lib/net462/Microsoft.Extensions.Options.ConfigurationExtensions.dll", + "lib/net462/Microsoft.Extensions.Options.ConfigurationExtensions.xml", + "lib/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll", + "lib/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml", + "lib/net9.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll", + "lib/net9.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml", + "microsoft.extensions.options.configurationextensions.10.0.1.nupkg.sha512", + "microsoft.extensions.options.configurationextensions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Primitives/10.0.1": { + "sha512": "DO8XrJkp5x4PddDuc/CH37yDBCs9BYN6ijlKyR3vMb55BP1Vwh90vOX8bNfnKxr5B2qEI3D8bvbY1fFbDveDHQ==", + "type": "package", + "path": "microsoft.extensions.primitives/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "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/net10.0/Microsoft.Extensions.Primitives.dll", + "lib/net10.0/Microsoft.Extensions.Primitives.xml", + "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.10.0.1.nupkg.sha512", + "microsoft.extensions.primitives.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Validation/10.0.1": { + "sha512": "5bcu9zWhgY8AZUN1ERNH0BQKFh10xlx4UrCh+0cDn7wB01QkrK4S6Jh45fCgEqmWJWVGqBS2g8MN0Lu/99Zgdg==", + "type": "package", + "path": "microsoft.extensions.validation/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/cs/Microsoft.Extensions.Validation.ValidationsGenerator.dll", + "lib/net10.0/Microsoft.Extensions.Validation.dll", + "lib/net10.0/Microsoft.Extensions.Validation.xml", + "microsoft.extensions.validation.10.0.1.nupkg.sha512", + "microsoft.extensions.validation.nuspec" + ] + }, + "Microsoft.JSInterop/10.0.1": { + "sha512": "pTfoYBjs7HKmTEk9cNWcSySdTKT8USjviLgmMaSs/YA0+oONufKy9hqqZ5EE4CNy9y24SDDc9lerXfV7aiVfWA==", + "type": "package", + "path": "microsoft.jsinterop/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net10.0/Microsoft.JSInterop.dll", + "lib/net10.0/Microsoft.JSInterop.xml", + "microsoft.jsinterop.10.0.1.nupkg.sha512", + "microsoft.jsinterop.nuspec" + ] + }, + "Generic.CL/1.0.0": { + "type": "project", + "path": "../../../../../Backend/SharedLogic/Generic/Generic.CL/Generic.CL.csproj", + "msbuildProject": "../../../../../Backend/SharedLogic/Generic/Generic.CL/Generic.CL.csproj" + } + }, + "projectFileDependencyGroups": { + "net10.0": [ + "Generic.CL >= 1.0.0", + "Microsoft.AspNetCore.Components.Web >= 10.0.1" + ] + }, + "packageFolders": { + "/home/yla/.nuget/packages/": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/Common.RCL.csproj", + "projectName": "Common.RCL", + "projectPath": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/Common.RCL.csproj", + "packagesPath": "/home/yla/.nuget/packages/", + "outputPath": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/yla/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": { + "/mnt/data/Work/Programming/MainProgram/Backend/SharedLogic/Generic/Generic.CL/Generic.CL.csproj": { + "projectPath": "/mnt/data/Work/Programming/MainProgram/Backend/SharedLogic/Generic/Generic.CL/Generic.CL.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "dependencies": { + "Microsoft.AspNetCore.Components.Web": { + "target": "Package", + "version": "[10.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/10.0.102/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + } +} \ No newline at end of file diff --git a/obj/project.nuget.cache b/obj/project.nuget.cache new file mode 100644 index 0000000..1f3abef --- /dev/null +++ b/obj/project.nuget.cache @@ -0,0 +1,28 @@ +{ + "version": 2, + "dgSpecHash": "IYZZ+wRz5EQ=", + "success": true, + "projectFilePath": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Common/Common.RCL/Common.RCL.csproj", + "expectedPackageFiles": [ + "/home/yla/.nuget/packages/microsoft.aspnetcore.authorization/10.0.1/microsoft.aspnetcore.authorization.10.0.1.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.aspnetcore.components/10.0.1/microsoft.aspnetcore.components.10.0.1.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.aspnetcore.components.analyzers/10.0.1/microsoft.aspnetcore.components.analyzers.10.0.1.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.aspnetcore.components.forms/10.0.1/microsoft.aspnetcore.components.forms.10.0.1.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.aspnetcore.components.web/10.0.1/microsoft.aspnetcore.components.web.10.0.1.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.aspnetcore.metadata/10.0.1/microsoft.aspnetcore.metadata.10.0.1.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.configuration/10.0.1/microsoft.extensions.configuration.10.0.1.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.configuration.abstractions/10.0.1/microsoft.extensions.configuration.abstractions.10.0.1.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.configuration.binder/10.0.1/microsoft.extensions.configuration.binder.10.0.1.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.dependencyinjection/10.0.1/microsoft.extensions.dependencyinjection.10.0.1.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.dependencyinjection.abstractions/10.0.1/microsoft.extensions.dependencyinjection.abstractions.10.0.1.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.diagnostics/10.0.1/microsoft.extensions.diagnostics.10.0.1.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.diagnostics.abstractions/10.0.1/microsoft.extensions.diagnostics.abstractions.10.0.1.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.logging.abstractions/10.0.1/microsoft.extensions.logging.abstractions.10.0.1.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.options/10.0.1/microsoft.extensions.options.10.0.1.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.options.configurationextensions/10.0.1/microsoft.extensions.options.configurationextensions.10.0.1.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.primitives/10.0.1/microsoft.extensions.primitives.10.0.1.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.validation/10.0.1/microsoft.extensions.validation.10.0.1.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.jsinterop/10.0.1/microsoft.jsinterop.10.0.1.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/wwwroot/background.png b/wwwroot/background.png new file mode 100644 index 0000000..e15a3bd Binary files /dev/null and b/wwwroot/background.png differ diff --git a/wwwroot/css/carousal.js b/wwwroot/css/carousal.js new file mode 100644 index 0000000..34ae7d1 --- /dev/null +++ b/wwwroot/css/carousal.js @@ -0,0 +1,112 @@ +// Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification +// for details on configuring this project to bundle and minify static web assets. + +// Write your JavaScript code. + + + +//1- change by click buttons +//2- method to call n +function animate(listOfData) { + + var mainImage = document.getElementById("mainImage"); + var mainText = document.getElementById("mainText"); + + var currentIndex = -1; // Start at -1 so first changeIndex(1) goes to 0 + + changeIndex(1) + var x = setInterval(changeIndex, 4000, 1); + + document.getElementById("next").onclick = function () { + clearInterval(x); + changeIndex(1) + x = setInterval(changeIndex, 4000, 1); + } + + document.getElementById("prev").onclick = function () { + clearInterval(x); + changeIndex(-1) + x = setInterval(changeIndex, 4000, 1); + } + + function changeIndex(i) { + if (currentIndex + i >= listOfData.length) { + currentIndex = 0; + } + else if (currentIndex + i < 0) { + currentIndex = listOfData.length - 1; + } + else { + currentIndex += i; + } + + changeInfo(listOfData) + animateText(); + } + + function changeInfo(listOfData) { + mainImage.src = listOfData[currentIndex][1]; + mainText.innerText = listOfData[currentIndex][0]; + + // 1. Absolutely kill transition via inline style and classes + mainImage.style.transition = 'none'; + mainImage.classList.remove("transition", "transition-all", "duration-[4000ms]"); + + // Determine direction based on current presence of scale-125 + const shouldZoomIn = !mainImage.classList.contains("scale-125"); + + // 2. Snap to STARTING position + if (shouldZoomIn) { + mainImage.classList.remove("scale-125"); // Snap to 100% + } else { + mainImage.classList.add("scale-125"); // Snap to 125% + } + + // Force reflow + void mainImage.offsetWidth; + + // 3. Re-enable transition and set TARGET position + mainImage.style.transition = ''; + mainImage.classList.add("transition", "duration-[4000ms]"); + + if (shouldZoomIn) { + mainImage.classList.add("scale-125"); // Animate 100% -> 125% + } else { + mainImage.classList.remove("scale-125"); // Animate 125% -> 100% + } + } + + function animateText() { + var textWrapper = document.querySelector('.ml14 .letters'); + if (!textWrapper) return; + + textWrapper.innerHTML = textWrapper.textContent.replace(/\S/g, "$&"); + + anime.timeline({ loop: false }) + .add({ + targets: '.ml14 .line', + scaleX: [0, 1], + opacity: [0.5, 1], + easing: "easeInOutExpo", + duration: 500 + }).add({ + targets: '.ml14 .letter', + opacity: [0, 1], + translateX: [40, 0], + translateZ: 0, + scaleX: [0.3, 1], + easing: "easeOutExpo", + duration: 350, + offset: '-=600', + delay: (el, i) => 150 + 25 * i + }) + .add({ + targets: '.ml14', + opacity: 1, + duration: 0, + easing: "easeOutExpo", + delay: 0 + }); + } + +} diff --git a/wwwroot/exampleJsInterop.js b/wwwroot/exampleJsInterop.js new file mode 100644 index 0000000..ea8d76a --- /dev/null +++ b/wwwroot/exampleJsInterop.js @@ -0,0 +1,6 @@ +// This is a JavaScript module that is loaded on demand. It can export any number of +// functions, and may import other JavaScript modules if required. + +export function showPrompt(message) { + return prompt(message, 'Type anything here'); +}