Initial commit - ImageViewer.RCL

This commit is contained in:
2026-08-05 21:16:12 +03:00
commit f9b003d467
84 changed files with 3603 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
<Project Sdk="Microsoft.NET.Sdk.Razor">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<RootNamespace>Generic.ImageViewer</RootNamespace>
</PropertyGroup>
<ItemGroup>
<SupportedPlatform Include="browser" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="10.0.1" />
</ItemGroup>
</Project>
+299
View File
@@ -0,0 +1,299 @@
@using Microsoft.AspNetCore.Components.Web
@using Microsoft.JSInterop
@inject IJSRuntime JSRuntime
<div class="flex flex-col gap-4 @Class">
<!-- Main Viewer -->
<div class="relative w-full rounded-2xl overflow-hidden bg-black/5 shadow-xl border border-white/10 group"
style="aspect-ratio: @Width / @Height;">
<!-- Zooming Image Wrapper -->
@if (!string.IsNullOrEmpty(_selectedUrl))
{
var type = GetMediaType(_selectedUrl);
@if (type == MediaType.Image)
{
<div class="w-full h-full">
<img src="@_selectedUrl" class="w-full h-full object-cover" alt="Main View" />
</div>
<!-- The Spotlight Lens -->
<div class="absolute w-[180px] h-[180px] rounded-2xl border-2 border-white/50 shadow-2xl pointer-events-none z-30 overflow-hidden bg-no-repeat bg-white/10 backdrop-blur-sm"
style="@_zoomStyle">
</div>
}
else if (type == MediaType.Video)
{
<video src="@_selectedUrl" controls class="w-full h-full object-cover" />
}
else if (type == MediaType.YouTube)
{
var id = GetYouTubeId(_selectedUrl);
<iframe class="w-full h-full" src="https://www.youtube.com/embed/@id" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
}
else if (type == MediaType.Vimeo)
{
<iframe src="@_selectedUrl" class="w-full h-full" frameborder="0"
allow="autoplay; fullscreen; picture-in-picture" allowfullscreen></iframe>
}
else
{
<div class="flex items-center justify-center h-full text-gray-400">
<span>Unsupported Media</span>
</div>
}
<!-- Event Overlay (Stable Mouse Targets) -->
@if (type == MediaType.Image)
{
<div class="absolute inset-0 z-10 cursor-zoom-in" @onmousemove="HandleMouseMove"
@onmouseleave="HandleMouseLeave">
</div>
}
<!-- Navigation Arrows (Main) -->
@if (MediaUrls.Count() > 1)
{
<button @onclick="PreviousMedia" @onclick:stopPropagation="true"
class="absolute left-4 top-1/2 -translate-y-1/2 w-12 h-12 rounded-full bg-white/40 backdrop-blur-md text-gray-800 border border-white/50 flex items-center justify-center transition-all duration-300 hover:bg-white/60 hover:scale-110 z-20 shadow-xl">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="none" viewBox="0 0 24 24"
stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 19l-7-7 7-7" />
</svg>
</button>
<button @onclick="NextMedia" @onclick:stopPropagation="true"
class="absolute right-4 top-1/2 -translate-y-1/2 w-12 h-12 rounded-full bg-white/40 backdrop-blur-md text-gray-800 border border-white/50 flex items-center justify-center transition-all duration-300 hover:bg-white/60 hover:scale-110 z-20 shadow-xl">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="none" viewBox="0 0 24 24"
stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7" />
</svg>
</button>
}
}
else
{
<div class="flex items-center justify-center h-full text-gray-400 bg-gray-50 dark:bg-gray-800">
<svg xmlns="http://www.w3.org/2000/svg" class="h-12 w-12 opacity-50" fill="none" viewBox="0 0 24 24"
stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M4 16l4.586-4.586a2 2 0 012.828 0L16 16m-2-2l1.586-1.586a2 2 0 012.828 0L20 14m-6-6h.01M6 20h12a2 2 0 002-2V6a2 2 0 00-2-2H6a2 2 0 00-2 2v12a2 2 0 002 2z" />
</svg>
</div>
}
</div>
<!-- Thumbnails List -->
@if (MediaUrls != null && MediaUrls.Count() > 1)
{
<div class="relative group/thumbs">
<!-- Scroll Buttons -->
<button @onclick="() => Scroll(-200)"
class="absolute left-0 top-1/2 -translate-y-1/2 w-10 h-10 rounded-full bg-white/80 dark:bg-gray-800/80 shadow-md z-20 transition-all flex items-center justify-center text-gray-800 dark:text-white hover:scale-110 -ml-5">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="none" viewBox="0 0 24 24"
stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 19l-7-7 7-7" />
</svg>
</button>
<button @onclick="() => Scroll(200)"
class="absolute right-0 top-1/2 -translate-y-1/2 w-10 h-10 rounded-full bg-white/80 dark:bg-gray-800/80 shadow-md z-20 transition-all flex items-center justify-center text-gray-800 dark:text-white hover:scale-110 -mr-5">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="none" viewBox="0 0 24 24"
stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7" />
</svg>
</button>
<div @ref="_thumbContainer" class="flex gap-3 overflow-x-auto pb-2 scrollbar-hide px-1 scroll-smooth">
@foreach (var url in MediaUrls)
{
var isSelected = url == _selectedUrl;
var type = GetMediaType(url);
<button @onclick="() => SelectMedia(url)" style="width: @(ThumbSize)px; height: @(ThumbSize)px;"
class="relative flex-none aspect-square rounded-xl overflow-hidden border-2 transition-all duration-500 @(isSelected ? "border-sky-500 shadow-xl shadow-sky-400/30 scale-105 z-10 ring-4 ring-sky-500/10" : "border-gray-100 opacity-60 hover:opacity-100 hover:scale-105")">
@if (type == MediaType.Image)
{
<img src="@url" class="w-full h-full object-cover" />
}
else if (type == MediaType.Video || type == MediaType.YouTube || type == MediaType.Vimeo)
{
<div class="w-full h-full bg-gray-100 dark:bg-gray-700 flex items-center justify-center">
<svg xmlns="http://www.w3.org/2000/svg" class="h-8 w-8 text-sky-500" fill="none" viewBox="0 0 24 24"
stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M14.752 11.168l-3.197-2.132A1 1 0 0010 9.87v4.263a1 1 0 001.555.832l3.197-2.132a1 1 0 000-1.664z" />
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M21 12a9 9 0 11-18 0 9 9 0 0118 0z" />
</svg>
</div>
}
@if (isSelected)
{
<div class="absolute inset-0 bg-sky-500/10 animate-pulse"></div>
}
</button>
}
</div>
</div>
}
</div>
@code {
[Parameter] public IEnumerable<string> MediaUrls { get; set; } = Enumerable.Empty<string>();
[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 "";
}
}
<style>
.scrollbar-hide::-webkit-scrollbar {
display: none;
}
.scrollbar-hide {
-ms-overflow-style: none;
scrollbar-width: none;
}
.aspect-square {
aspect-ratio: 1 / 1;
}
.scroll-smooth {
scroll-behavior: smooth;
}
</style>
+357
View File
@@ -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"
}
}
}
Binary file not shown.
Binary file not shown.
@@ -0,0 +1 @@
{"Version":1,"ManifestType":"Build","Endpoints":[]}
+357
View File
@@ -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"
}
}
}
Binary file not shown.
Binary file not shown.
@@ -0,0 +1 @@
{"Version":1,"ManifestType":"Build","Endpoints":[]}
+219
View File
@@ -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"
}
}
}
Binary file not shown.
Binary file not shown.
@@ -0,0 +1 @@
{"Version":1,"ManifestType":"Build","Endpoints":[]}
@@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v10.0", FrameworkDisplayName = ".NET 10.0")]
+7
View File
@@ -0,0 +1,7 @@
// <auto-generated/>
namespace Microsoft.CodeAnalysis
{
internal sealed partial class EmbeddedAttribute : global::System.Attribute
{
}
}
@@ -0,0 +1,22 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("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.
@@ -0,0 +1 @@
91f08832e40a84d96347162678912ea77155018ecedcd8a67ac9b2dc7246d625
@@ -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 =
@@ -0,0 +1,9 @@
// <auto-generated/>
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;
@@ -0,0 +1,22 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("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.
@@ -0,0 +1 @@
f2641b1130be8177af804754621ad93e5589c54b4342c0ab55acc43d10516fb9
@@ -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 =
@@ -0,0 +1,9 @@
// <auto-generated/>
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;
Binary file not shown.
@@ -0,0 +1 @@
b25121135e69000939bc3aa9b0f315b37eda8b011202e516d013d180b4edae9c
@@ -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
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1 @@
d54446b045b9c77d7aff98a6fe26a51f86136c85fca684f248e071a16b909028
@@ -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
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,9 @@
// <auto-generated/>
namespace Microsoft.Extensions.Validation.Embedded
{
[global::Microsoft.CodeAnalysis.EmbeddedAttribute]
[global::System.AttributeUsage(global::System.AttributeTargets.Class)]
internal sealed class ValidatableTypeAttribute : global::System.Attribute
{
}
}
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1 @@
{"GlobalPropertiesHash":"d+jeUCFRkT199cF7w8Rsv6b2Sj2dY9JMdTsb5h22bN8=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["LwasWpfaZNfBYXiXH90b19Ng8j95M14sk4UR3brKNtY="],"CachedAssets":{},"CachedCopyCandidates":{}}
@@ -0,0 +1 @@
{"GlobalPropertiesHash":"q6I0qA/715oL2X+saVI2abJHld+SkO3xEdw3mpKPqLI=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["LwasWpfaZNfBYXiXH90b19Ng8j95M14sk4UR3brKNtY="],"CachedAssets":{},"CachedCopyCandidates":{}}
+1
View File
@@ -0,0 +1 @@
{"GlobalPropertiesHash":"XQuW8Qq21nPBikbNFVzj5W4PeoPoCaDmuh3oApDNF6s=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["LwasWpfaZNfBYXiXH90b19Ng8j95M14sk4UR3brKNtY="],"CachedAssets":{},"CachedCopyCandidates":{}}
@@ -0,0 +1 @@
{"Version":1,"ManifestType":"Build","Endpoints":[]}
@@ -0,0 +1 @@
{"Version":1,"Hash":"URLuQk6scOGzcFgAAlkfIHjtdCtObCPZ9sacj4iienk=","Source":"ImageViewer.RCL","BasePath":"_content/ImageViewer.RCL","Mode":"Default","ManifestType":"Build","ReferencedProjectsConfiguration":[],"DiscoveryPatterns":[],"Assets":[],"Endpoints":[]}
@@ -0,0 +1 @@
URLuQk6scOGzcFgAAlkfIHjtdCtObCPZ9sacj4iienk=
@@ -0,0 +1,4 @@
<Project>
<Import Project="Microsoft.AspNetCore.StaticWebAssetEndpoints.props" />
<Import Project="Microsoft.AspNetCore.StaticWebAssets.props" />
</Project>
@@ -0,0 +1,4 @@
<Project>
<Import Project="Microsoft.AspNetCore.StaticWebAssetEndpoints.props" />
<Import Project="Microsoft.AspNetCore.StaticWebAssets.props" />
</Project>
@@ -0,0 +1,3 @@
<Project>
<Import Project="../build/ImageViewer.RCL.props" />
</Project>
@@ -0,0 +1,3 @@
<Project>
<Import Project="../build/ImageViewer.props" />
</Project>
@@ -0,0 +1,3 @@
<Project>
<Import Project="../buildMultiTargeting/ImageViewer.RCL.props" />
</Project>
@@ -0,0 +1,3 @@
<Project>
<Import Project="../buildMultiTargeting/ImageViewer.props" />
</Project>
@@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v9.0", FrameworkDisplayName = ".NET 9.0")]
@@ -0,0 +1,22 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("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.
@@ -0,0 +1 @@
91f08832e40a84d96347162678912ea77155018ecedcd8a67ac9b2dc7246d625
@@ -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 =
@@ -0,0 +1,8 @@
// <auto-generated/>
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;
Binary file not shown.
@@ -0,0 +1 @@
7182d42c04d229c591796834b25b12efb92a6b9ded9052b73bf38b11f0ff7314
@@ -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
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1 @@
{"GlobalPropertiesHash":"4RSZ+xTtlGgmbGfgHfrN8FvKEimiePzqiYyV1qrXARs=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["tpyVTfij9KTERpU03v81B6J8/fveO4/jZrl0XRuOvCA="],"CachedAssets":{},"CachedCopyCandidates":{}}
@@ -0,0 +1 @@
{"GlobalPropertiesHash":"sdblqn6mKSxU+tTrYI/cCj1NamHX1oF9ftvPRmDtjDE=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["tpyVTfij9KTERpU03v81B6J8/fveO4/jZrl0XRuOvCA="],"CachedAssets":{},"CachedCopyCandidates":{}}
+1
View File
@@ -0,0 +1 @@
{"GlobalPropertiesHash":"RztMJAngNSfry0p2UEhAA7z/MBFrfeaByIj6AAoiWNA=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["tpyVTfij9KTERpU03v81B6J8/fveO4/jZrl0XRuOvCA="],"CachedAssets":{},"CachedCopyCandidates":{}}
@@ -0,0 +1 @@
{"Version":1,"ManifestType":"Build","Endpoints":[]}
@@ -0,0 +1 @@
{"Version":1,"Hash":"vIfy9DPQVMxDXaQCvu6iTVtPBbypIx/+gCfbkTd5sZ8=","Source":"ImageViewer","BasePath":"_content/ImageViewer","Mode":"Default","ManifestType":"Build","ReferencedProjectsConfiguration":[],"DiscoveryPatterns":[],"Assets":[],"Endpoints":[]}
@@ -0,0 +1 @@
vIfy9DPQVMxDXaQCvu6iTVtPBbypIx/+gCfbkTd5sZ8=
@@ -0,0 +1,4 @@
<Project>
<Import Project="Microsoft.AspNetCore.StaticWebAssetEndpoints.props" />
<Import Project="Microsoft.AspNetCore.StaticWebAssets.props" />
</Project>
@@ -0,0 +1,3 @@
<Project>
<Import Project="../build/ImageViewer.props" />
</Project>
@@ -0,0 +1,3 @@
<Project>
<Import Project="../buildMultiTargeting/ImageViewer.props" />
</Project>
@@ -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]"
}
}
}
}
}
}
+15
View File
@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">/home/yla/.nuget/packages/</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/home/yla/.nuget/packages/</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">7.0.0</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="/home/yla/.nuget/packages/" />
</ItemGroup>
</Project>
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<Import Project="$(NuGetPackageRoot)microsoft.extensions.options/10.0.1/buildTransitive/net8.0/Microsoft.Extensions.Options.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.options/10.0.1/buildTransitive/net8.0/Microsoft.Extensions.Options.targets')" />
<Import Project="$(NuGetPackageRoot)microsoft.extensions.configuration.binder/10.0.1/buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.configuration.binder/10.0.1/buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets')" />
<Import Project="$(NuGetPackageRoot)microsoft.extensions.logging.abstractions/10.0.1/buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.logging.abstractions/10.0.1/buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets')" />
<Import Project="$(NuGetPackageRoot)microsoft.aspnetcore.components.analyzers/10.0.1/buildTransitive/netstandard2.0/Microsoft.AspNetCore.Components.Analyzers.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.aspnetcore.components.analyzers/10.0.1/buildTransitive/netstandard2.0/Microsoft.AspNetCore.Components.Analyzers.targets')" />
</ImportGroup>
</Project>
+347
View File
@@ -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]"
}
}
}
}
}
}
+15
View File
@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">/home/yla/.nuget/packages/</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/home/yla/.nuget/packages/</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">7.0.0</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="/home/yla/.nuget/packages/" />
</ItemGroup>
</Project>
+9
View File
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<Import Project="$(NuGetPackageRoot)microsoft.extensions.options/10.0.1/buildTransitive/net8.0/Microsoft.Extensions.Options.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.options/10.0.1/buildTransitive/net8.0/Microsoft.Extensions.Options.targets')" />
<Import Project="$(NuGetPackageRoot)microsoft.extensions.configuration.binder/10.0.1/buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.configuration.binder/10.0.1/buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets')" />
<Import Project="$(NuGetPackageRoot)microsoft.extensions.logging.abstractions/10.0.1/buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.logging.abstractions/10.0.1/buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets')" />
<Import Project="$(NuGetPackageRoot)microsoft.aspnetcore.components.analyzers/10.0.1/buildTransitive/netstandard2.0/Microsoft.AspNetCore.Components.Analyzers.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.aspnetcore.components.analyzers/10.0.1/buildTransitive/netstandard2.0/Microsoft.AspNetCore.Components.Analyzers.targets')" />
</ImportGroup>
</Project>
File diff suppressed because it is too large Load Diff
+28
View File
@@ -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": []
}