commit f9b003d46769da26e4b020a08734b84662643da2 Author: Said Date: Wed Aug 5 21:16:12 2026 +0300 Initial commit - ImageViewer.RCL diff --git a/ImageViewer.RCL.csproj b/ImageViewer.RCL.csproj new file mode 100644 index 0000000..eed5989 --- /dev/null +++ b/ImageViewer.RCL.csproj @@ -0,0 +1,19 @@ + + + + net10.0 + enable + enable + Generic.ImageViewer + + + + + + + + + + + + diff --git a/ImageViewer.razor b/ImageViewer.razor new file mode 100644 index 0000000..74bd92b --- /dev/null +++ b/ImageViewer.razor @@ -0,0 +1,299 @@ +@using Microsoft.AspNetCore.Components.Web +@using Microsoft.JSInterop +@inject IJSRuntime JSRuntime + +
+ +
+ + + @if (!string.IsNullOrEmpty(_selectedUrl)) + { + var type = GetMediaType(_selectedUrl); + + @if (type == MediaType.Image) + { +
+ Main View +
+ + +
+
+ } + else if (type == MediaType.Video) + { +
+ + + @if (MediaUrls != null && MediaUrls.Count() > 1) + { +
+ + + + +
+ @foreach (var url in MediaUrls) + { + var isSelected = url == _selectedUrl; + var type = GetMediaType(url); + + + } +
+
+ } +
+ +@code { + [Parameter] public IEnumerable MediaUrls { get; set; } = Enumerable.Empty(); + [Parameter] public string? Class { get; set; } + + [Parameter] public int Width { get; set; } = 1; + [Parameter] public int Height { get; set; } = 1; + [Parameter] public int ThumbSize { get; set; } = 64; + + private ElementReference _thumbContainer; + private string? _selectedUrl; + private string _zoomStyle = ""; + + protected override void OnInitialized() + { + if (MediaUrls.Any()) _selectedUrl = MediaUrls.First(); + } + + protected override void OnParametersSet() + { + if (!string.IsNullOrEmpty(_selectedUrl) && !MediaUrls.Contains(_selectedUrl)) + { + _selectedUrl = MediaUrls.FirstOrDefault(); + } + else if (string.IsNullOrEmpty(_selectedUrl) && MediaUrls.Any()) + { + _selectedUrl = MediaUrls.First(); + } + } + + private void HandleMouseMove(MouseEventArgs e) + { + // For a spotlight lens, we need to calculate the percentage of mouse position + // We assume a base size or just use a placeholder for now. + // Since we can't get the width/height easily, we'll use a standard percentage approach + // if we assume the container is roughly the size of viewport or fixed. + // Actually, without JS, OffsetX/Y is the only way. + // We'll use a rough 600px base for calculation or just standard 0-1 range if we knew bounds. + + // Let's use a "Magic Lens" approach: + double zoomLevel = 2.5; + double lensSize = 180; + + // We'll estimate the percentage by assuming the mouse is within the container bounds. + // A better way is to pass the container size via a simplistic JS on resize. + // But for now, let's just use the current offset and hope it's reasonably mapped. + + double posX = e.OffsetX; + double posY = e.OffsetY; + + // We'll just use the raw offsets to position the lens + _zoomStyle = $"display: block; left: {posX - (lensSize / 2)}px; top: {posY - (lensSize / 2)}px; " + + $"background-image: url('{_selectedUrl}'); " + + $"background-size: {zoomLevel * 100}%; " + + $"background-position: {(posX / 500.0) * 100}% {(posY / 500.0) * 100}%;"; + } + + private void HandleMouseLeave() + { + _zoomStyle = "display: none;"; + } + + private async Task SelectMedia(string url) + { + _selectedUrl = url; + HandleMouseLeave(); + StateHasChanged(); + await ScrollToActiveThumbnail(); + } + + private async Task NextMedia() + { + var list = MediaUrls.ToList(); + var index = list.IndexOf(_selectedUrl ?? ""); + if (index != -1) + { + var nextIndex = (index + 1) % list.Count; + await SelectMedia(list[nextIndex]); + } + } + + private async Task PreviousMedia() + { + var list = MediaUrls.ToList(); + var index = list.IndexOf(_selectedUrl ?? ""); + if (index != -1) + { + var prevIndex = (index - 1 + list.Count) % list.Count; + await SelectMedia(list[prevIndex]); + } + } + + private async Task ScrollToActiveThumbnail() + { + try + { + await JSRuntime.InvokeVoidAsync("eval", @" +var container = document.querySelector('.scrollbar-hide'); +if (container) { +var activeThumb = container.querySelector('.border-sky-500'); +if (activeThumb) { +activeThumb.scrollIntoView({ behavior: 'smooth', block: 'nearest', inline: 'center' }); +} +} +"); + } + catch { } + } + + private async Task Scroll(int amount) + { + try + { + await JSRuntime.InvokeVoidAsync("eval", $"document.querySelector('.scrollbar-hide').scrollBy({{ left: {amount}, behavior: 'smooth' }})"); + } + catch { } // Fail gracefully if JS is busy + } + + private enum MediaType { Image, Video, YouTube, Vimeo, Unknown } + + private MediaType GetMediaType(string url) + { + if (string.IsNullOrWhiteSpace(url)) return MediaType.Image; + url = url.ToLower(); + if (url.Contains("youtube.com") || url.Contains("youtu.be")) return MediaType.YouTube; + if (url.Contains("vimeo.com")) return MediaType.Vimeo; + if (url.EndsWith(".mp4") || url.EndsWith(".webm") || url.EndsWith(".ogg")) return MediaType.Video; + return MediaType.Image; + } + + private string GetYouTubeId(string url) + { + if (url.Contains("youtu.be/")) return url.Split("youtu.be/")[1].Split("?")[0]; + if (url.Contains("v=")) return url.Split("v=")[1].Split("&")[0]; + return ""; + } +} + + \ No newline at end of file diff --git a/bin/Debug/net10.0/ImageViewer.RCL.deps.json b/bin/Debug/net10.0/ImageViewer.RCL.deps.json new file mode 100644 index 0000000..8fa135d --- /dev/null +++ b/bin/Debug/net10.0/ImageViewer.RCL.deps.json @@ -0,0 +1,357 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v10.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v10.0": { + "ImageViewer.RCL/1.0.0": { + "dependencies": { + "Microsoft.AspNetCore.Components.Web": "10.0.1" + }, + "runtime": { + "ImageViewer.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" + } + } + } + } + }, + "libraries": { + "ImageViewer.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" + } + } +} \ No newline at end of file diff --git a/bin/Debug/net10.0/ImageViewer.RCL.dll b/bin/Debug/net10.0/ImageViewer.RCL.dll new file mode 100644 index 0000000..d5442f3 Binary files /dev/null and b/bin/Debug/net10.0/ImageViewer.RCL.dll differ diff --git a/bin/Debug/net10.0/ImageViewer.RCL.pdb b/bin/Debug/net10.0/ImageViewer.RCL.pdb new file mode 100644 index 0000000..bb76db1 Binary files /dev/null and b/bin/Debug/net10.0/ImageViewer.RCL.pdb differ diff --git a/bin/Debug/net10.0/ImageViewer.RCL.staticwebassets.endpoints.json b/bin/Debug/net10.0/ImageViewer.RCL.staticwebassets.endpoints.json new file mode 100644 index 0000000..5576e88 --- /dev/null +++ b/bin/Debug/net10.0/ImageViewer.RCL.staticwebassets.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[]} \ No newline at end of file diff --git a/bin/Debug/net10.0/ImageViewer.deps.json b/bin/Debug/net10.0/ImageViewer.deps.json new file mode 100644 index 0000000..6881c90 --- /dev/null +++ b/bin/Debug/net10.0/ImageViewer.deps.json @@ -0,0 +1,357 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v10.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v10.0": { + "ImageViewer/1.0.0": { + "dependencies": { + "Microsoft.AspNetCore.Components.Web": "10.0.1" + }, + "runtime": { + "ImageViewer.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" + } + } + } + } + }, + "libraries": { + "ImageViewer/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" + } + } +} \ No newline at end of file diff --git a/bin/Debug/net10.0/ImageViewer.dll b/bin/Debug/net10.0/ImageViewer.dll new file mode 100644 index 0000000..82eadd0 Binary files /dev/null and b/bin/Debug/net10.0/ImageViewer.dll differ diff --git a/bin/Debug/net10.0/ImageViewer.pdb b/bin/Debug/net10.0/ImageViewer.pdb new file mode 100644 index 0000000..cc86a0d Binary files /dev/null and b/bin/Debug/net10.0/ImageViewer.pdb differ diff --git a/bin/Debug/net10.0/ImageViewer.staticwebassets.endpoints.json b/bin/Debug/net10.0/ImageViewer.staticwebassets.endpoints.json new file mode 100644 index 0000000..5576e88 --- /dev/null +++ b/bin/Debug/net10.0/ImageViewer.staticwebassets.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[]} \ No newline at end of file diff --git a/bin/Debug/net9.0/ImageViewer.deps.json b/bin/Debug/net9.0/ImageViewer.deps.json new file mode 100644 index 0000000..0ce2d6a --- /dev/null +++ b/bin/Debug/net9.0/ImageViewer.deps.json @@ -0,0 +1,219 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v9.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v9.0": { + "ImageViewer/1.0.0": { + "dependencies": { + "Microsoft.AspNetCore.Components.Web": "9.0.0" + }, + "runtime": { + "ImageViewer.dll": {} + } + }, + "Microsoft.AspNetCore.Authorization/9.0.0": { + "dependencies": { + "Microsoft.AspNetCore.Metadata": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Authorization.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52903" + } + } + }, + "Microsoft.AspNetCore.Components/9.0.0": { + "dependencies": { + "Microsoft.AspNetCore.Authorization": "9.0.0" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Components.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52903" + } + } + }, + "Microsoft.AspNetCore.Components.Forms/9.0.0": { + "dependencies": { + "Microsoft.AspNetCore.Components": "9.0.0" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Components.Forms.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52903" + } + } + }, + "Microsoft.AspNetCore.Components.Web/9.0.0": { + "dependencies": { + "Microsoft.AspNetCore.Components": "9.0.0", + "Microsoft.AspNetCore.Components.Forms": "9.0.0", + "Microsoft.Extensions.DependencyInjection": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0", + "Microsoft.JSInterop": "9.0.0" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Components.Web.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52903" + } + } + }, + "Microsoft.AspNetCore.Metadata/9.0.0": { + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Metadata.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52903" + } + } + }, + "Microsoft.Extensions.DependencyInjection/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": { + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Options/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Primitives/9.0.0": { + "runtime": { + "lib/net9.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.JSInterop/9.0.0": { + "runtime": { + "lib/net9.0/Microsoft.JSInterop.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52903" + } + } + } + } + }, + "libraries": { + "ImageViewer/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authorization/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qDJlBC5pUQ/3o6/C6Vuo9CGKtV5TAe5AdKeHvDR2bgmw8vwPxsAy3KG5eU0i1C+iAUNbmq+iDTbiKt16f9pRiA==", + "path": "microsoft.aspnetcore.authorization/9.0.0", + "hashPath": "microsoft.aspnetcore.authorization.9.0.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Components/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xKzY0LRqWrwuPVzKIF9k1kC21NrLmIE2qPhhKlInEAdYqNe8qcMoPWZy7fo1uScHkz5g73nTqDDra3+aAV7mTQ==", + "path": "microsoft.aspnetcore.components/9.0.0", + "hashPath": "microsoft.aspnetcore.components.9.0.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Components.Forms/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-orHGxDkbAa9syuaLVtZWOhNC8IddnCsDqpFaKjBj4zxe+B8cd6kcNf/t4Lv5hWBQ7mODiRCzEfKBnpU+GCHvbw==", + "path": "microsoft.aspnetcore.components.forms/9.0.0", + "hashPath": "microsoft.aspnetcore.components.forms.9.0.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Components.Web/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZfJwwV05T+268cnJsO6yfi9oXYLe3ATRAEk0VZgBMptA5HVsduIsnFLjhNOYT7+I8NolxDEx1CEW8yKe5xTb6Q==", + "path": "microsoft.aspnetcore.components.web/9.0.0", + "hashPath": "microsoft.aspnetcore.components.web.9.0.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Metadata/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X81C891nMuWgzNHyZ0C3s+blSDxRHzQHDFYQoOKtFvFuxGq3BbkLbc5CfiCqIzA/sWIfz6u8sGBgwntQwBJWBw==", + "path": "microsoft.aspnetcore.metadata/9.0.0", + "hashPath": "microsoft.aspnetcore.metadata.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MCPrg7v3QgNMr0vX4vzRXvkNGgLg8vKWX0nKCWUxu2uPyMsaRgiRc1tHBnbTcfJMhMKj2slE/j2M9oGkd25DNw==", + "path": "microsoft.extensions.dependencyinjection/9.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+6f2qv2a3dLwd5w6JanPIPs47CxRbnk+ZocMJUhv9NxP88VlOcJYZs9jY+MYSjxvady08bUZn6qgiNh7DadGgg==", + "path": "microsoft.extensions.dependencyinjection.abstractions/9.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-g0UfujELzlLbHoVG8kPKVBaW470Ewi+jnptGS9KUi6jcb+k2StujtK3m26DFSGGwQ/+bVgZfsWqNzlP6YOejvw==", + "path": "microsoft.extensions.logging.abstractions/9.0.0", + "hashPath": "microsoft.extensions.logging.abstractions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-y2146b3jrPI3Q0lokKXdKLpmXqakYbDIPDV6r3M8SqvSf45WwOTzkyfDpxnZXJsJQEpAsAqjUq5Pu8RCJMjubg==", + "path": "microsoft.extensions.options/9.0.0", + "hashPath": "microsoft.extensions.options.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-N3qEBzmLMYiASUlKxxFIISP4AiwuPTHF5uCh+2CWSwwzAJiIYx0kBJsS30cp1nvhSySFAVi30jecD307jV+8Kg==", + "path": "microsoft.extensions.primitives/9.0.0", + "hashPath": "microsoft.extensions.primitives.9.0.0.nupkg.sha512" + }, + "Microsoft.JSInterop/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-efQKxKUPe8OuH0hRiYsvBJkhhPzIYFNcr9+3wanQ7Bch/wr1JWNd90GYiPLtkSHepE1zMEoaLkAxi5N5/eyC4Q==", + "path": "microsoft.jsinterop/9.0.0", + "hashPath": "microsoft.jsinterop.9.0.0.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/bin/Debug/net9.0/ImageViewer.dll b/bin/Debug/net9.0/ImageViewer.dll new file mode 100644 index 0000000..a5c4be9 Binary files /dev/null and b/bin/Debug/net9.0/ImageViewer.dll differ diff --git a/bin/Debug/net9.0/ImageViewer.pdb b/bin/Debug/net9.0/ImageViewer.pdb new file mode 100644 index 0000000..b634428 Binary files /dev/null and b/bin/Debug/net9.0/ImageViewer.pdb differ diff --git a/bin/Debug/net9.0/ImageViewer.staticwebassets.endpoints.json b/bin/Debug/net9.0/ImageViewer.staticwebassets.endpoints.json new file mode 100644 index 0000000..5576e88 --- /dev/null +++ b/bin/Debug/net9.0/ImageViewer.staticwebassets.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[]} \ 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/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/ImageViewer.AssemblyInfo.cs b/obj/Debug/net10.0/ImageViewer.AssemblyInfo.cs new file mode 100644 index 0000000..8755ba7 --- /dev/null +++ b/obj/Debug/net10.0/ImageViewer.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("ImageViewer")] +[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("ImageViewer")] +[assembly: System.Reflection.AssemblyTitleAttribute("ImageViewer")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/obj/Debug/net10.0/ImageViewer.AssemblyInfoInputs.cache b/obj/Debug/net10.0/ImageViewer.AssemblyInfoInputs.cache new file mode 100644 index 0000000..999e260 --- /dev/null +++ b/obj/Debug/net10.0/ImageViewer.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +91f08832e40a84d96347162678912ea77155018ecedcd8a67ac9b2dc7246d625 diff --git a/obj/Debug/net10.0/ImageViewer.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net10.0/ImageViewer.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..73b6700 --- /dev/null +++ b/obj/Debug/net10.0/ImageViewer.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,27 @@ +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 = Generic.ImageViewer +build_property.RootNamespace = Generic.ImageViewer +build_property.ProjectDir = /mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/ +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/ImageViewer +build_property._RazorSourceGeneratorDebug = +build_property.EffectiveAnalysisLevelStyle = 10.0 +build_property.EnableCodeStyleSeverity = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/ImageViewer.razor] +build_metadata.AdditionalFiles.TargetPath = SW1hZ2VWaWV3ZXIucmF6b3I= +build_metadata.AdditionalFiles.CssScope = diff --git a/obj/Debug/net10.0/ImageViewer.GlobalUsings.g.cs b/obj/Debug/net10.0/ImageViewer.GlobalUsings.g.cs new file mode 100644 index 0000000..a32ec4a --- /dev/null +++ b/obj/Debug/net10.0/ImageViewer.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/ImageViewer.RCL.AssemblyInfo.cs b/obj/Debug/net10.0/ImageViewer.RCL.AssemblyInfo.cs new file mode 100644 index 0000000..ec04d57 --- /dev/null +++ b/obj/Debug/net10.0/ImageViewer.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("ImageViewer.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("ImageViewer.RCL")] +[assembly: System.Reflection.AssemblyTitleAttribute("ImageViewer.RCL")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/obj/Debug/net10.0/ImageViewer.RCL.AssemblyInfoInputs.cache b/obj/Debug/net10.0/ImageViewer.RCL.AssemblyInfoInputs.cache new file mode 100644 index 0000000..84806e8 --- /dev/null +++ b/obj/Debug/net10.0/ImageViewer.RCL.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +f2641b1130be8177af804754621ad93e5589c54b4342c0ab55acc43d10516fb9 diff --git a/obj/Debug/net10.0/ImageViewer.RCL.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net10.0/ImageViewer.RCL.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..4b85a3e --- /dev/null +++ b/obj/Debug/net10.0/ImageViewer.RCL.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,27 @@ +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 = Generic.ImageViewer +build_property.RootNamespace = Generic.ImageViewer +build_property.ProjectDir = /mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/ImageViewer.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/ImageViewer/ImageViewer.RCL +build_property._RazorSourceGeneratorDebug = +build_property.EffectiveAnalysisLevelStyle = 10.0 +build_property.EnableCodeStyleSeverity = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/ImageViewer.RCL/ImageViewer.razor] +build_metadata.AdditionalFiles.TargetPath = SW1hZ2VWaWV3ZXIucmF6b3I= +build_metadata.AdditionalFiles.CssScope = diff --git a/obj/Debug/net10.0/ImageViewer.RCL.GlobalUsings.g.cs b/obj/Debug/net10.0/ImageViewer.RCL.GlobalUsings.g.cs new file mode 100644 index 0000000..a32ec4a --- /dev/null +++ b/obj/Debug/net10.0/ImageViewer.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/ImageViewer.RCL.assets.cache b/obj/Debug/net10.0/ImageViewer.RCL.assets.cache new file mode 100644 index 0000000..e406418 Binary files /dev/null and b/obj/Debug/net10.0/ImageViewer.RCL.assets.cache differ diff --git a/obj/Debug/net10.0/ImageViewer.RCL.csproj.AssemblyReference.cache b/obj/Debug/net10.0/ImageViewer.RCL.csproj.AssemblyReference.cache new file mode 100644 index 0000000..525acf4 Binary files /dev/null and b/obj/Debug/net10.0/ImageViewer.RCL.csproj.AssemblyReference.cache differ diff --git a/obj/Debug/net10.0/ImageViewer.RCL.csproj.CoreCompileInputs.cache b/obj/Debug/net10.0/ImageViewer.RCL.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..8c172c5 --- /dev/null +++ b/obj/Debug/net10.0/ImageViewer.RCL.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +b25121135e69000939bc3aa9b0f315b37eda8b011202e516d013d180b4edae9c diff --git a/obj/Debug/net10.0/ImageViewer.RCL.csproj.FileListAbsolute.txt b/obj/Debug/net10.0/ImageViewer.RCL.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..5a34a1e --- /dev/null +++ b/obj/Debug/net10.0/ImageViewer.RCL.csproj.FileListAbsolute.txt @@ -0,0 +1,31 @@ +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/ImageViewer.RCL/bin/Debug/net10.0/ImageViewer.RCL.staticwebassets.endpoints.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/ImageViewer.RCL/bin/Debug/net10.0/ImageViewer.RCL.deps.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/ImageViewer.RCL/bin/Debug/net10.0/ImageViewer.RCL.dll +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/ImageViewer.RCL/bin/Debug/net10.0/ImageViewer.RCL.pdb +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/ImageViewer.RCL/obj/Debug/net10.0/EmbeddedAttribute.cs +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/ImageViewer.RCL/obj/Debug/net10.0/ValidatableTypeAttribute.cs +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/ImageViewer.RCL/obj/Debug/net10.0/ImageViewer.RCL.csproj.AssemblyReference.cache +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/ImageViewer.RCL/obj/Debug/net10.0/rpswa.dswa.cache.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/ImageViewer.RCL/obj/Debug/net10.0/ImageViewer.RCL.GeneratedMSBuildEditorConfig.editorconfig +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/ImageViewer.RCL/obj/Debug/net10.0/ImageViewer.RCL.AssemblyInfoInputs.cache +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/ImageViewer.RCL/obj/Debug/net10.0/ImageViewer.RCL.AssemblyInfo.cs +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/ImageViewer.RCL/obj/Debug/net10.0/ImageViewer.RCL.csproj.CoreCompileInputs.cache +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/ImageViewer.RCL/obj/Debug/net10.0/rjimswa.dswa.cache.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/ImageViewer.RCL/obj/Debug/net10.0/rjsmrazor.dswa.cache.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/ImageViewer.RCL/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/ImageViewer.RCL/obj/Debug/net10.0/scopedcss/bundle/ImageViewer.RCL.styles.css +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/ImageViewer.RCL/obj/Debug/net10.0/staticwebassets.build.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/ImageViewer.RCL/obj/Debug/net10.0/staticwebassets.build.json.cache +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/ImageViewer.RCL/obj/Debug/net10.0/staticwebassets.development.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/ImageViewer.RCL/obj/Debug/net10.0/staticwebassets.build.endpoints.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/ImageViewer.RCL/obj/Debug/net10.0/swae.build.ex.cache +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/ImageViewer.RCL/obj/Debug/net10.0/staticwebassets/msbuild.ImageViewer.RCL.Microsoft.AspNetCore.StaticWebAssets.props +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/ImageViewer.RCL/obj/Debug/net10.0/staticwebassets/msbuild.ImageViewer.RCL.Microsoft.AspNetCore.StaticWebAssetEndpoints.props +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/ImageViewer.RCL/obj/Debug/net10.0/staticwebassets/msbuild.build.ImageViewer.RCL.props +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/ImageViewer.RCL/obj/Debug/net10.0/staticwebassets/msbuild.buildMultiTargeting.ImageViewer.RCL.props +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/ImageViewer.RCL/obj/Debug/net10.0/staticwebassets/msbuild.buildTransitive.ImageViewer.RCL.props +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/ImageViewer.RCL/obj/Debug/net10.0/staticwebassets.pack.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/ImageViewer.RCL/obj/Debug/net10.0/ImageViewer.RCL.dll +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/ImageViewer.RCL/obj/Debug/net10.0/refint/ImageViewer.RCL.dll +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/ImageViewer.RCL/obj/Debug/net10.0/ImageViewer.RCL.pdb +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/ImageViewer.RCL/obj/Debug/net10.0/ref/ImageViewer.RCL.dll diff --git a/obj/Debug/net10.0/ImageViewer.RCL.dll b/obj/Debug/net10.0/ImageViewer.RCL.dll new file mode 100644 index 0000000..d5442f3 Binary files /dev/null and b/obj/Debug/net10.0/ImageViewer.RCL.dll differ diff --git a/obj/Debug/net10.0/ImageViewer.RCL.pdb b/obj/Debug/net10.0/ImageViewer.RCL.pdb new file mode 100644 index 0000000..bb76db1 Binary files /dev/null and b/obj/Debug/net10.0/ImageViewer.RCL.pdb differ diff --git a/obj/Debug/net10.0/ImageViewer.assets.cache b/obj/Debug/net10.0/ImageViewer.assets.cache new file mode 100644 index 0000000..79d59aa Binary files /dev/null and b/obj/Debug/net10.0/ImageViewer.assets.cache differ diff --git a/obj/Debug/net10.0/ImageViewer.csproj.AssemblyReference.cache b/obj/Debug/net10.0/ImageViewer.csproj.AssemblyReference.cache new file mode 100644 index 0000000..525acf4 Binary files /dev/null and b/obj/Debug/net10.0/ImageViewer.csproj.AssemblyReference.cache differ diff --git a/obj/Debug/net10.0/ImageViewer.csproj.CoreCompileInputs.cache b/obj/Debug/net10.0/ImageViewer.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..db8aa4e --- /dev/null +++ b/obj/Debug/net10.0/ImageViewer.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +d54446b045b9c77d7aff98a6fe26a51f86136c85fca684f248e071a16b909028 diff --git a/obj/Debug/net10.0/ImageViewer.csproj.FileListAbsolute.txt b/obj/Debug/net10.0/ImageViewer.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..3d080b8 --- /dev/null +++ b/obj/Debug/net10.0/ImageViewer.csproj.FileListAbsolute.txt @@ -0,0 +1,62 @@ +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/bin/Debug/net10.0/ImageViewer.staticwebassets.endpoints.json +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/bin/Debug/net10.0/ImageViewer.deps.json +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/bin/Debug/net10.0/ImageViewer.dll +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/bin/Debug/net10.0/ImageViewer.pdb +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net10.0/EmbeddedAttribute.cs +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net10.0/ValidatableTypeAttribute.cs +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net10.0/ImageViewer.csproj.AssemblyReference.cache +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net10.0/rpswa.dswa.cache.json +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net10.0/ImageViewer.GeneratedMSBuildEditorConfig.editorconfig +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net10.0/ImageViewer.AssemblyInfoInputs.cache +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net10.0/ImageViewer.AssemblyInfo.cs +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net10.0/ImageViewer.csproj.CoreCompileInputs.cache +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net10.0/rjimswa.dswa.cache.json +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net10.0/rjsmrazor.dswa.cache.json +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net10.0/scopedcss/bundle/ImageViewer.styles.css +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net10.0/staticwebassets.build.json +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net10.0/staticwebassets.build.json.cache +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net10.0/staticwebassets.development.json +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net10.0/staticwebassets.build.endpoints.json +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net10.0/swae.build.ex.cache +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net10.0/staticwebassets/msbuild.ImageViewer.Microsoft.AspNetCore.StaticWebAssets.props +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net10.0/staticwebassets/msbuild.ImageViewer.Microsoft.AspNetCore.StaticWebAssetEndpoints.props +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net10.0/staticwebassets/msbuild.build.ImageViewer.props +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net10.0/staticwebassets/msbuild.buildMultiTargeting.ImageViewer.props +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net10.0/staticwebassets/msbuild.buildTransitive.ImageViewer.props +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net10.0/staticwebassets.pack.json +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net10.0/ImageViewer.dll +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net10.0/refint/ImageViewer.dll +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net10.0/ImageViewer.pdb +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net10.0/ref/ImageViewer.dll +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/bin/Debug/net10.0/ImageViewer.staticwebassets.endpoints.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/bin/Debug/net10.0/ImageViewer.deps.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/bin/Debug/net10.0/ImageViewer.dll +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/bin/Debug/net10.0/ImageViewer.pdb +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net10.0/EmbeddedAttribute.cs +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net10.0/ValidatableTypeAttribute.cs +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net10.0/ImageViewer.csproj.AssemblyReference.cache +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net10.0/rpswa.dswa.cache.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net10.0/ImageViewer.GeneratedMSBuildEditorConfig.editorconfig +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net10.0/ImageViewer.AssemblyInfoInputs.cache +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net10.0/ImageViewer.AssemblyInfo.cs +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net10.0/ImageViewer.csproj.CoreCompileInputs.cache +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net10.0/rjimswa.dswa.cache.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net10.0/rjsmrazor.dswa.cache.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net10.0/scopedcss/bundle/ImageViewer.styles.css +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net10.0/staticwebassets.build.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net10.0/staticwebassets.build.json.cache +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net10.0/staticwebassets.development.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net10.0/staticwebassets.build.endpoints.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net10.0/swae.build.ex.cache +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net10.0/staticwebassets/msbuild.ImageViewer.Microsoft.AspNetCore.StaticWebAssets.props +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net10.0/staticwebassets/msbuild.ImageViewer.Microsoft.AspNetCore.StaticWebAssetEndpoints.props +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net10.0/staticwebassets/msbuild.build.ImageViewer.props +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net10.0/staticwebassets/msbuild.buildMultiTargeting.ImageViewer.props +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net10.0/staticwebassets/msbuild.buildTransitive.ImageViewer.props +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net10.0/staticwebassets.pack.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net10.0/ImageViewer.dll +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net10.0/refint/ImageViewer.dll +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net10.0/ImageViewer.pdb +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net10.0/ref/ImageViewer.dll diff --git a/obj/Debug/net10.0/ImageViewer.dll b/obj/Debug/net10.0/ImageViewer.dll new file mode 100644 index 0000000..82eadd0 Binary files /dev/null and b/obj/Debug/net10.0/ImageViewer.dll differ diff --git a/obj/Debug/net10.0/ImageViewer.pdb b/obj/Debug/net10.0/ImageViewer.pdb new file mode 100644 index 0000000..cc86a0d Binary files /dev/null and b/obj/Debug/net10.0/ImageViewer.pdb differ 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/ref/ImageViewer.RCL.dll b/obj/Debug/net10.0/ref/ImageViewer.RCL.dll new file mode 100644 index 0000000..2b50957 Binary files /dev/null and b/obj/Debug/net10.0/ref/ImageViewer.RCL.dll differ diff --git a/obj/Debug/net10.0/ref/ImageViewer.dll b/obj/Debug/net10.0/ref/ImageViewer.dll new file mode 100644 index 0000000..6a05ddb Binary files /dev/null and b/obj/Debug/net10.0/ref/ImageViewer.dll differ diff --git a/obj/Debug/net10.0/refint/ImageViewer.RCL.dll b/obj/Debug/net10.0/refint/ImageViewer.RCL.dll new file mode 100644 index 0000000..2b50957 Binary files /dev/null and b/obj/Debug/net10.0/refint/ImageViewer.RCL.dll differ diff --git a/obj/Debug/net10.0/refint/ImageViewer.dll b/obj/Debug/net10.0/refint/ImageViewer.dll new file mode 100644 index 0000000..6a05ddb Binary files /dev/null and b/obj/Debug/net10.0/refint/ImageViewer.dll differ 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..4869bb6 --- /dev/null +++ b/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"d+jeUCFRkT199cF7w8Rsv6b2Sj2dY9JMdTsb5h22bN8=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["LwasWpfaZNfBYXiXH90b19Ng8j95M14sk4UR3brKNtY="],"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..fc6f95b --- /dev/null +++ b/obj/Debug/net10.0/rjsmrazor.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"q6I0qA/715oL2X+saVI2abJHld+SkO3xEdw3mpKPqLI=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["LwasWpfaZNfBYXiXH90b19Ng8j95M14sk4UR3brKNtY="],"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..9c59cce --- /dev/null +++ b/obj/Debug/net10.0/rpswa.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"XQuW8Qq21nPBikbNFVzj5W4PeoPoCaDmuh3oApDNF6s=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["LwasWpfaZNfBYXiXH90b19Ng8j95M14sk4UR3brKNtY="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file 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..5576e88 --- /dev/null +++ b/obj/Debug/net10.0/staticwebassets.build.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[]} \ 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..4f6a88f --- /dev/null +++ b/obj/Debug/net10.0/staticwebassets.build.json @@ -0,0 +1 @@ +{"Version":1,"Hash":"URLuQk6scOGzcFgAAlkfIHjtdCtObCPZ9sacj4iienk=","Source":"ImageViewer.RCL","BasePath":"_content/ImageViewer.RCL","Mode":"Default","ManifestType":"Build","ReferencedProjectsConfiguration":[],"DiscoveryPatterns":[],"Assets":[],"Endpoints":[]} \ 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..af9ff4e --- /dev/null +++ b/obj/Debug/net10.0/staticwebassets.build.json.cache @@ -0,0 +1 @@ +URLuQk6scOGzcFgAAlkfIHjtdCtObCPZ9sacj4iienk= \ No newline at end of file diff --git a/obj/Debug/net10.0/staticwebassets/msbuild.build.ImageViewer.RCL.props b/obj/Debug/net10.0/staticwebassets/msbuild.build.ImageViewer.RCL.props new file mode 100644 index 0000000..ddaed44 --- /dev/null +++ b/obj/Debug/net10.0/staticwebassets/msbuild.build.ImageViewer.RCL.props @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/obj/Debug/net10.0/staticwebassets/msbuild.build.ImageViewer.props b/obj/Debug/net10.0/staticwebassets/msbuild.build.ImageViewer.props new file mode 100644 index 0000000..ddaed44 --- /dev/null +++ b/obj/Debug/net10.0/staticwebassets/msbuild.build.ImageViewer.props @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/obj/Debug/net10.0/staticwebassets/msbuild.buildMultiTargeting.ImageViewer.RCL.props b/obj/Debug/net10.0/staticwebassets/msbuild.buildMultiTargeting.ImageViewer.RCL.props new file mode 100644 index 0000000..62d885a --- /dev/null +++ b/obj/Debug/net10.0/staticwebassets/msbuild.buildMultiTargeting.ImageViewer.RCL.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/obj/Debug/net10.0/staticwebassets/msbuild.buildMultiTargeting.ImageViewer.props b/obj/Debug/net10.0/staticwebassets/msbuild.buildMultiTargeting.ImageViewer.props new file mode 100644 index 0000000..1221e7a --- /dev/null +++ b/obj/Debug/net10.0/staticwebassets/msbuild.buildMultiTargeting.ImageViewer.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/obj/Debug/net10.0/staticwebassets/msbuild.buildTransitive.ImageViewer.RCL.props b/obj/Debug/net10.0/staticwebassets/msbuild.buildTransitive.ImageViewer.RCL.props new file mode 100644 index 0000000..98dfc93 --- /dev/null +++ b/obj/Debug/net10.0/staticwebassets/msbuild.buildTransitive.ImageViewer.RCL.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/obj/Debug/net10.0/staticwebassets/msbuild.buildTransitive.ImageViewer.props b/obj/Debug/net10.0/staticwebassets/msbuild.buildTransitive.ImageViewer.props new file mode 100644 index 0000000..399256d --- /dev/null +++ b/obj/Debug/net10.0/staticwebassets/msbuild.buildTransitive.ImageViewer.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/ImageViewer.AssemblyInfo.cs b/obj/Debug/net9.0/ImageViewer.AssemblyInfo.cs new file mode 100644 index 0000000..8755ba7 --- /dev/null +++ b/obj/Debug/net9.0/ImageViewer.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("ImageViewer")] +[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("ImageViewer")] +[assembly: System.Reflection.AssemblyTitleAttribute("ImageViewer")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/obj/Debug/net9.0/ImageViewer.AssemblyInfoInputs.cache b/obj/Debug/net9.0/ImageViewer.AssemblyInfoInputs.cache new file mode 100644 index 0000000..999e260 --- /dev/null +++ b/obj/Debug/net9.0/ImageViewer.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +91f08832e40a84d96347162678912ea77155018ecedcd8a67ac9b2dc7246d625 diff --git a/obj/Debug/net9.0/ImageViewer.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net9.0/ImageViewer.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..d76b2a0 --- /dev/null +++ b/obj/Debug/net9.0/ImageViewer.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,27 @@ +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 = Generic.ImageViewer +build_property.RootNamespace = Generic.ImageViewer +build_property.ProjectDir = /mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/ +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/ImageViewer +build_property._RazorSourceGeneratorDebug = +build_property.EffectiveAnalysisLevelStyle = 9.0 +build_property.EnableCodeStyleSeverity = + +[/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/ImageViewer.razor] +build_metadata.AdditionalFiles.TargetPath = SW1hZ2VWaWV3ZXIucmF6b3I= +build_metadata.AdditionalFiles.CssScope = diff --git a/obj/Debug/net9.0/ImageViewer.GlobalUsings.g.cs b/obj/Debug/net9.0/ImageViewer.GlobalUsings.g.cs new file mode 100644 index 0000000..d12bcbc --- /dev/null +++ b/obj/Debug/net9.0/ImageViewer.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/ImageViewer.assets.cache b/obj/Debug/net9.0/ImageViewer.assets.cache new file mode 100644 index 0000000..991f6f3 Binary files /dev/null and b/obj/Debug/net9.0/ImageViewer.assets.cache differ diff --git a/obj/Debug/net9.0/ImageViewer.csproj.AssemblyReference.cache b/obj/Debug/net9.0/ImageViewer.csproj.AssemblyReference.cache new file mode 100644 index 0000000..ef80a19 Binary files /dev/null and b/obj/Debug/net9.0/ImageViewer.csproj.AssemblyReference.cache differ diff --git a/obj/Debug/net9.0/ImageViewer.csproj.CoreCompileInputs.cache b/obj/Debug/net9.0/ImageViewer.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..9f0d4ab --- /dev/null +++ b/obj/Debug/net9.0/ImageViewer.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +7182d42c04d229c591796834b25b12efb92a6b9ded9052b73bf38b11f0ff7314 diff --git a/obj/Debug/net9.0/ImageViewer.csproj.FileListAbsolute.txt b/obj/Debug/net9.0/ImageViewer.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..4ae7133 --- /dev/null +++ b/obj/Debug/net9.0/ImageViewer.csproj.FileListAbsolute.txt @@ -0,0 +1,28 @@ +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/bin/Debug/net9.0/ImageViewer.staticwebassets.endpoints.json +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/bin/Debug/net9.0/ImageViewer.deps.json +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/bin/Debug/net9.0/ImageViewer.dll +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/bin/Debug/net9.0/ImageViewer.pdb +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net9.0/ImageViewer.csproj.AssemblyReference.cache +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net9.0/rpswa.dswa.cache.json +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net9.0/ImageViewer.GeneratedMSBuildEditorConfig.editorconfig +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net9.0/ImageViewer.AssemblyInfoInputs.cache +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net9.0/ImageViewer.AssemblyInfo.cs +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net9.0/ImageViewer.csproj.CoreCompileInputs.cache +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net9.0/rjimswa.dswa.cache.json +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net9.0/rjsmrazor.dswa.cache.json +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net9.0/rjsmcshtml.dswa.cache.json +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net9.0/scopedcss/bundle/ImageViewer.styles.css +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net9.0/staticwebassets.build.json +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net9.0/staticwebassets.build.json.cache +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net9.0/staticwebassets.development.json +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net9.0/staticwebassets.build.endpoints.json +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net9.0/staticwebassets/msbuild.ImageViewer.Microsoft.AspNetCore.StaticWebAssets.props +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net9.0/staticwebassets/msbuild.ImageViewer.Microsoft.AspNetCore.StaticWebAssetEndpoints.props +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net9.0/staticwebassets/msbuild.build.ImageViewer.props +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net9.0/staticwebassets/msbuild.buildMultiTargeting.ImageViewer.props +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net9.0/staticwebassets/msbuild.buildTransitive.ImageViewer.props +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net9.0/staticwebassets.pack.json +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net9.0/ImageViewer.dll +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net9.0/refint/ImageViewer.dll +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net9.0/ImageViewer.pdb +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/obj/Debug/net9.0/ref/ImageViewer.dll diff --git a/obj/Debug/net9.0/ImageViewer.dll b/obj/Debug/net9.0/ImageViewer.dll new file mode 100644 index 0000000..a5c4be9 Binary files /dev/null and b/obj/Debug/net9.0/ImageViewer.dll differ diff --git a/obj/Debug/net9.0/ImageViewer.pdb b/obj/Debug/net9.0/ImageViewer.pdb new file mode 100644 index 0000000..b634428 Binary files /dev/null and b/obj/Debug/net9.0/ImageViewer.pdb differ diff --git a/obj/Debug/net9.0/ref/ImageViewer.dll b/obj/Debug/net9.0/ref/ImageViewer.dll new file mode 100644 index 0000000..d8a18ea Binary files /dev/null and b/obj/Debug/net9.0/ref/ImageViewer.dll differ diff --git a/obj/Debug/net9.0/refint/ImageViewer.dll b/obj/Debug/net9.0/refint/ImageViewer.dll new file mode 100644 index 0000000..d8a18ea Binary files /dev/null and b/obj/Debug/net9.0/refint/ImageViewer.dll differ diff --git a/obj/Debug/net9.0/rjsmcshtml.dswa.cache.json b/obj/Debug/net9.0/rjsmcshtml.dswa.cache.json new file mode 100644 index 0000000..ef7b9e9 --- /dev/null +++ b/obj/Debug/net9.0/rjsmcshtml.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"4RSZ+xTtlGgmbGfgHfrN8FvKEimiePzqiYyV1qrXARs=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["tpyVTfij9KTERpU03v81B6J8/fveO4/jZrl0XRuOvCA="],"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..56dc2b1 --- /dev/null +++ b/obj/Debug/net9.0/rjsmrazor.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"sdblqn6mKSxU+tTrYI/cCj1NamHX1oF9ftvPRmDtjDE=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["tpyVTfij9KTERpU03v81B6J8/fveO4/jZrl0XRuOvCA="],"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..0ff3288 --- /dev/null +++ b/obj/Debug/net9.0/rpswa.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"RztMJAngNSfry0p2UEhAA7z/MBFrfeaByIj6AAoiWNA=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["tpyVTfij9KTERpU03v81B6J8/fveO4/jZrl0XRuOvCA="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/obj/Debug/net9.0/staticwebassets.build.endpoints.json b/obj/Debug/net9.0/staticwebassets.build.endpoints.json new file mode 100644 index 0000000..5576e88 --- /dev/null +++ b/obj/Debug/net9.0/staticwebassets.build.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[]} \ No newline at end of file diff --git a/obj/Debug/net9.0/staticwebassets.build.json b/obj/Debug/net9.0/staticwebassets.build.json new file mode 100644 index 0000000..345732f --- /dev/null +++ b/obj/Debug/net9.0/staticwebassets.build.json @@ -0,0 +1 @@ +{"Version":1,"Hash":"vIfy9DPQVMxDXaQCvu6iTVtPBbypIx/+gCfbkTd5sZ8=","Source":"ImageViewer","BasePath":"_content/ImageViewer","Mode":"Default","ManifestType":"Build","ReferencedProjectsConfiguration":[],"DiscoveryPatterns":[],"Assets":[],"Endpoints":[]} \ No newline at end of file diff --git a/obj/Debug/net9.0/staticwebassets.build.json.cache b/obj/Debug/net9.0/staticwebassets.build.json.cache new file mode 100644 index 0000000..094ead8 --- /dev/null +++ b/obj/Debug/net9.0/staticwebassets.build.json.cache @@ -0,0 +1 @@ +vIfy9DPQVMxDXaQCvu6iTVtPBbypIx/+gCfbkTd5sZ8= \ No newline at end of file diff --git a/obj/Debug/net9.0/staticwebassets/msbuild.build.ImageViewer.props b/obj/Debug/net9.0/staticwebassets/msbuild.build.ImageViewer.props new file mode 100644 index 0000000..ddaed44 --- /dev/null +++ b/obj/Debug/net9.0/staticwebassets/msbuild.build.ImageViewer.props @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/obj/Debug/net9.0/staticwebassets/msbuild.buildMultiTargeting.ImageViewer.props b/obj/Debug/net9.0/staticwebassets/msbuild.buildMultiTargeting.ImageViewer.props new file mode 100644 index 0000000..1221e7a --- /dev/null +++ b/obj/Debug/net9.0/staticwebassets/msbuild.buildMultiTargeting.ImageViewer.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/obj/Debug/net9.0/staticwebassets/msbuild.buildTransitive.ImageViewer.props b/obj/Debug/net9.0/staticwebassets/msbuild.buildTransitive.ImageViewer.props new file mode 100644 index 0000000..399256d --- /dev/null +++ b/obj/Debug/net9.0/staticwebassets/msbuild.buildTransitive.ImageViewer.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/obj/ImageViewer.RCL.csproj.nuget.dgspec.json b/obj/ImageViewer.RCL.csproj.nuget.dgspec.json new file mode 100644 index 0000000..fd31c4d --- /dev/null +++ b/obj/ImageViewer.RCL.csproj.nuget.dgspec.json @@ -0,0 +1,347 @@ +{ + "format": 1, + "restore": { + "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/ImageViewer.RCL/ImageViewer.RCL.csproj": {} + }, + "projects": { + "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/ImageViewer.RCL/ImageViewer.RCL.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/ImageViewer.RCL/ImageViewer.RCL.csproj", + "projectName": "ImageViewer.RCL", + "projectPath": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/ImageViewer.RCL/ImageViewer.RCL.csproj", + "packagesPath": "/home/yla/.nuget/packages/", + "outputPath": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/ImageViewer.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": {} + } + }, + "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/ImageViewer.RCL.csproj.nuget.g.props b/obj/ImageViewer.RCL.csproj.nuget.g.props new file mode 100644 index 0000000..ac65a2f --- /dev/null +++ b/obj/ImageViewer.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/ImageViewer.RCL.csproj.nuget.g.targets b/obj/ImageViewer.RCL.csproj.nuget.g.targets new file mode 100644 index 0000000..7e0826c --- /dev/null +++ b/obj/ImageViewer.RCL.csproj.nuget.g.targets @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/obj/ImageViewer.csproj.nuget.dgspec.json b/obj/ImageViewer.csproj.nuget.dgspec.json new file mode 100644 index 0000000..d3d2a51 --- /dev/null +++ b/obj/ImageViewer.csproj.nuget.dgspec.json @@ -0,0 +1,347 @@ +{ + "format": 1, + "restore": { + "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/ImageViewer.csproj": {} + }, + "projects": { + "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/ImageViewer.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/ImageViewer.csproj", + "projectName": "ImageViewer", + "projectPath": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/ImageViewer.csproj", + "packagesPath": "/home/yla/.nuget/packages/", + "outputPath": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/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", + "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/ImageViewer.csproj.nuget.g.props b/obj/ImageViewer.csproj.nuget.g.props new file mode 100644 index 0000000..ac65a2f --- /dev/null +++ b/obj/ImageViewer.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/ImageViewer.csproj.nuget.g.targets b/obj/ImageViewer.csproj.nuget.g.targets new file mode 100644 index 0000000..7e0826c --- /dev/null +++ b/obj/ImageViewer.csproj.nuget.g.targets @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/obj/project.assets.json b/obj/project.assets.json new file mode 100644 index 0000000..facdcd0 --- /dev/null +++ b/obj/project.assets.json @@ -0,0 +1,1213 @@ +{ + "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" + } + } + } + } + }, + "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" + ] + } + }, + "projectFileDependencyGroups": { + "net10.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/ImageViewer/ImageViewer.RCL/ImageViewer.RCL.csproj", + "projectName": "ImageViewer.RCL", + "projectPath": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/ImageViewer.RCL/ImageViewer.RCL.csproj", + "packagesPath": "/home/yla/.nuget/packages/", + "outputPath": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/ImageViewer.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": {} + } + }, + "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..7738e2f --- /dev/null +++ b/obj/project.nuget.cache @@ -0,0 +1,28 @@ +{ + "version": 2, + "dgSpecHash": "ni+iiS4A6js=", + "success": true, + "projectFilePath": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/ImageViewer/ImageViewer.RCL/ImageViewer.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