commit 685015a3a40703f74a2cdaf0d7fb0834589b006d Author: Said Date: Wed Aug 5 21:16:09 2026 +0300 Initial commit - Media.RCL diff --git a/Components/Cropper.razor b/Components/Cropper.razor new file mode 100644 index 0000000..e225f4c --- /dev/null +++ b/Components/Cropper.razor @@ -0,0 +1,190 @@ +@inject IJSRuntime js + + +
+
+ + + + +
+ + +@code { + + [Parameter] + public string UploadLink { get; set; } + + protected override async Task OnInitializedAsync() + { + + } + + protected override async Task OnAfterRenderAsync(bool firstRender) + { + if (firstRender) + { + await js.InvokeVoidAsync("startCropper"); + } + } + + async Task RemoveCropped() + { + await js.InvokeVoidAsync("removeCropped"); + } + + public async Task UploadPhoto() + { + var photoLink = ""; + + return photoLink; + } + +} + + +@* @namespace MediaComponentLib +@using Microsoft.Extensions.Localization +@using Microsoft.AspNetCore.Components.Forms +@inject IStringLocalizer Loc +@inject IJSRuntime JSRuntime +@implements IAsyncDisposable + +
+ + @if (string.IsNullOrEmpty(_imageData)) + { +
+ + + + Drop image here or click to upload + +
+ } + else if (!_isCropped) + { +
+ + +
+ +
+ + +
+ } + else + { +
+
+ +
+ +
+ } +
+ +@code { + [Parameter] public string? UploadLink { get; set; } + + // Unique ID for this instance + private string _uniqueId = "cropper-" + Guid.NewGuid().ToString("N"); + + private string? _imageData; + private string? _croppedData; + private bool _isCropped; + private MediaJsInterop? _mediaInterop; + private DotNetObjectReference? _objRef; + + protected override void OnInitialized() + { + _mediaInterop = new MediaJsInterop(JSRuntime); + _objRef = DotNetObjectReference.Create(this); + } + + private async Task HandleFileSelected(InputFileChangeEventArgs e) + { + try + { + var file = e.File; + if (file == null) return; + + // Limit to 10MB + var maxFileSize = 10L * 1024 * 1024; + var stream = file.OpenReadStream(maxFileSize); + using var ms = new MemoryStream(); + await stream.CopyToAsync(ms); + + var base64 = Convert.ToBase64String(ms.ToArray()); + _imageData = $"data:{file.ContentType};base64,{base64}"; + _isCropped = false; + } + catch (Exception ex) + { + Console.WriteLine($"Error reading file: {ex.Message}"); + } + } + + private async Task OnImageLoaded() + { + if (_mediaInterop != null && !string.IsNullOrEmpty(_imageData)) + { + // Small delay to ensure render limits are applied by browser + await Task.Delay(50); + await _mediaInterop.InitCropperAsync(_uniqueId, 16.0 / 9.0, _objRef!); + } + } + + private async Task CropImage() + { + if (_mediaInterop != null) + { + _croppedData = await _mediaInterop.GetCroppedImageAsync(); + await _mediaInterop.DestroyCropperAsync(); + _isCropped = true; + } + } + + private async Task Reset() + { + if (_mediaInterop != null) + await _mediaInterop.DestroyCropperAsync(); + + _imageData = null; + _croppedData = null; + _isCropped = false; + } + + public async ValueTask DisposeAsync() + { + if (_mediaInterop != null) + { + try { await _mediaInterop.DestroyCropperAsync(); } catch { } + } + _objRef?.Dispose(); + } +} *@ \ No newline at end of file diff --git a/Components/ExternalLinkInput.razor b/Components/ExternalLinkInput.razor new file mode 100644 index 0000000..ec40ee4 --- /dev/null +++ b/Components/ExternalLinkInput.razor @@ -0,0 +1,24 @@ +@using Microsoft.AspNetCore.Components.Web +
+ + + +
+ +@code { + [Parameter] public EventCallback OnLinkAdded { get; set; } + + private string _url = ""; + + private async Task AddLink() + { + if (!string.IsNullOrWhiteSpace(_url)) + { + await OnLinkAdded.InvokeAsync(_url); + _url = ""; + } + } +} \ No newline at end of file diff --git a/Components/ImageCropper.razor b/Components/ImageCropper.razor new file mode 100644 index 0000000..4b2107d --- /dev/null +++ b/Components/ImageCropper.razor @@ -0,0 +1,280 @@ +@inject Microsoft.JSInterop.IJSRuntime JSRuntime +@using Microsoft.JSInterop +@implements IDisposable + +
+ + @if (_showSuccessMessage) + { +
+
+ + + + Image Cropped Successfully! +
+
+ } + + +
+ @if (_imageDataUrl != null) + { + + + } + else + { +
+ + + + Select an image to view or crop +
+ } +
+ + +
+ +
+ Ratio (W:H): +
+ + : + +
+ +
+ + + +
+ +
+ @if (_isCropping) + { + + + } + else + { + + } +
+
+
+ +@code { + [Parameter] public MediaItemModel? Item { get; set; } + [Parameter] public EventCallback OnCropSaved { get; set; } + [Parameter] public EventCallback OnCancel { get; set; } // May act as clearing selection + [Parameter] public double? AspectRatio { get; set; } + [Parameter] public int? TargetWidth { get; set; } + [Parameter] public int? TargetHeight { get; set; } + [Parameter] public string? AiApiKey { get; set; } + + private string _uniqueId = "cropper-" + Guid.NewGuid().ToString("N"); + // Removed _isOpen as it's always visible + private bool _isCropping = false; + private string? _imageDataUrl; + private MediaJsInterop _interop = default!; + private DotNetObjectReference? _objRef; + + private double? _ratioW = 16; + private double? _ratioH = 9; + private bool _showSuccessMessage = false; + + private bool _isDisabled => Item == null; + + protected override void OnInitialized() + { + _interop = new MediaJsInterop(JSRuntime); + _objRef = DotNetObjectReference.Create(this); + } + + public async Task OpenAsync(MediaItemModel item) + { + // Close existing if open + try { await _interop.DestroyCropperAsync(); } catch { } + + Item = item; + _isCropping = false; + _imageDataUrl = null; + _imageLoaded = false; + StateHasChanged(); + + if (item.IsLocal && item.File != null && string.IsNullOrEmpty(item.PreviewUrl)) + { + // Try to load preview if not ready + await LoadPreviewInternal(item); + } + + _imageDataUrl = !string.IsNullOrEmpty(item.PreviewUrl) ? item.PreviewUrl : item.Url; + StateHasChanged(); + } + + private async Task LoadPreviewInternal(MediaItemModel item) + { + try + { + var maxFileSize = 10L * 1024 * 1024; + var buffer = new byte[item.File.Size]; + await item.File.OpenReadStream(maxAllowedSize: maxFileSize).ReadAsync(buffer); + var base64 = Convert.ToBase64String(buffer); + item.PreviewUrl = $"data:{item.File.ContentType};base64,{base64}"; + } + catch (Exception ex) + { + Console.WriteLine($"Error reading file: {ex.Message}"); + } + } + + private bool _imageLoaded = false; + + private async Task OnImageLoaded() + { + _imageLoaded = true; + // Optional: Auto start crop? User said "select image ... viewed ... then buttons enabled to start cropping IF you want" + // So we just stay in view mode. + } + + private async Task StartCropping() + { + if (_isCropping || Item == null) return; + _isCropping = true; + StateHasChanged(); + + if (!string.IsNullOrEmpty(_imageDataUrl) && _imageLoaded) + { + await InitCropperInternal(); + } + } + + private async Task InitCropperInternal() + { + await Task.Delay(50); + + // Use input ratio if set, else Free (NaN) + double ratio = double.NaN; + if (_ratioW > 0 && _ratioH > 0) + { + ratio = _ratioW.Value / _ratioH.Value; + } + + await _interop.InitCropperAsync(_uniqueId, ratio, _objRef!); + } + + private async Task OnRatioInput() + { + if (_ratioW.HasValue && _ratioW < 1) _ratioW = 1; + if (_ratioH.HasValue && _ratioH < 1) _ratioH = 1; + + if (_ratioW > 0 && _ratioH > 0) + { + await _interop.SetAspectRatioAsync(_ratioW.Value / _ratioH.Value); + } + else + { + await _interop.SetAspectRatioAsync(double.NaN); + } + } + + private async Task ClearRatio() + { + _ratioW = null; + _ratioH = null; + await _interop.SetAspectRatioAsync(double.NaN); + } + + private async Task SetFullWidth() + { + await _interop.SetFullWidthAsync(); + } + + private async Task SetFullHeight() + { + await _interop.SetFullHeightAsync(); + } + + private async Task Save() + { + var croppedBase64 = await _interop.GetCroppedImageAsync(); + + if (!string.IsNullOrEmpty(croppedBase64) && Item != null) + { + Item.PreviewUrl = croppedBase64; + // If we want to replace the image in the view immediately: + _imageDataUrl = croppedBase64; + } + + await _interop.DestroyCropperAsync(); + _isCropping = false; + + // Success Feedback + _showSuccessMessage = true; + StateHasChanged(); + + await OnCropSaved.InvokeAsync(Item); + + // Hide message after delay + await Task.Delay(2000); + _showSuccessMessage = false; + StateHasChanged(); + } + + private async Task CancelCropMode() + { + try + { + await _interop.DestroyCropperAsync(); + } + catch { } + + _isCropping = false; + StateHasChanged(); + } + + public void Dispose() + { + _objRef?.Dispose(); + } +} \ No newline at end of file diff --git a/Components/Media.razor b/Components/Media.razor new file mode 100644 index 0000000..05696b5 --- /dev/null +++ b/Components/Media.razor @@ -0,0 +1,30 @@ +@using Generic.Media.Components + + + +@code { + [Parameter] public List InitialUrls { get; set; } = new(); + [Parameter] public EventCallback> OnChange { get; set; } + [Parameter] public int MaxItems { get; set; } = 10; + [Parameter] public double? AspectRatio { get; set; } + [Parameter] public int? TargetWidth { get; set; } + [Parameter] public int? TargetHeight { get; set; } + [Parameter] public bool SingleUploadMode { get; set; } + [Parameter] public string? AiModelApiKey { get; set; } + [Parameter] public string CdnBaseUrl { get; set; } = "http://localhost:2003/"; + + private MediaUploadContainer? _container; + + public async Task ProcessUploadsAsync() + { + if (_container == null) return new MediaUploadContainer.UploadResult(); + return await _container.ProcessUploadsAsync(); + } + + public void Clear() + { + _container?.Clear(); + } +} \ No newline at end of file diff --git a/Components/MediaDropZone.razor b/Components/MediaDropZone.razor new file mode 100644 index 0000000..3cb6823 --- /dev/null +++ b/Components/MediaDropZone.razor @@ -0,0 +1,49 @@ +@using Microsoft.AspNetCore.Components.Forms +@using Microsoft.AspNetCore.Components.Web + +
+ + + +
+ @if (CompactMode) + { + + + + Add Media + } + else + { + +

Click to upload or drag and drop

+ SVG, PNG, JPG or GIF (max. 800x400px) + } +
+
+ +@code { + [Parameter] public EventCallback OnFileDropped { get; set; } + [Parameter] public bool CompactMode { get; set; } + + private bool _isDragOver = false; + + private void HandleDragEnter() => _isDragOver = true; + private void HandleDragLeave() => _isDragOver = false; + private void HandleDragOver(DragEventArgs e) { } + + private async Task HandleDrop(DragEventArgs e) + { + _isDragOver = false; + } + + private async Task HandleInputFileChange(InputFileChangeEventArgs e) + { + await OnFileDropped.InvokeAsync(e); + } +} \ No newline at end of file diff --git a/Components/MediaItemCard.razor b/Components/MediaItemCard.razor new file mode 100644 index 0000000..333d4b2 --- /dev/null +++ b/Components/MediaItemCard.razor @@ -0,0 +1,59 @@ +@using Microsoft.AspNetCore.Components +@using Microsoft.AspNetCore.Components.Web + +
+
+ @if (Item.Type == MediaType.Image) + { + @Item.AltText + } + else if (Item.Type == MediaType.Video) + { +
+ + Video +
+ } + else if (Item.Type == MediaType.YouTube || Item.Type == MediaType.Vimeo) + { +
+ + External Video +
+ } +
+ +
+ +
+ +
+ @(Item.File?.Name ?? Item.Url) +
+
+ +@code { + [Parameter] public MediaItemModel Item { get; set; } + [Parameter] public EventCallback OnRemove { get; set; } + [Parameter] public EventCallback OnEdit { get; set; } + + // Drag parameters + [Parameter] public EventCallback OnDragStart { get; set; } + [Parameter] public EventCallback OnDragEnd { get; set; } + [Parameter] public EventCallback OnDragEnter { get; set; } + + private string GetPreviewSrc() + { + // Ideally use generated Blob URL for local files + return Item.Url ?? Item.PreviewUrl ?? ""; + } +} \ No newline at end of file diff --git a/Components/MediaItemModel.cs b/Components/MediaItemModel.cs new file mode 100644 index 0000000..eb7e82d --- /dev/null +++ b/Components/MediaItemModel.cs @@ -0,0 +1,47 @@ +using Microsoft.AspNetCore.Components.Forms; +using System; + +namespace Generic.Media.Components +{ + public class MediaItemModel + { + public string Id { get; set; } = Guid.NewGuid().ToString(); + public string? Url { get; set; } + public IBrowserFile? File { get; set; } + public MediaType Type { get; set; } + public string? AltText { get; set; } + public int Order { get; set; } + + public bool IsLocal { get; set; } + public string? PreviewUrl { get; set; } // Blob URL for local files + } + + public enum MediaType + { + Image, + Video, + YouTube, + Vimeo, + Unknown + } + + public static class MediaHelper + { + public static MediaType GetType(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; + } + + public static 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 ""; + } + } +} diff --git a/Components/MediaUploadContainer.razor b/Components/MediaUploadContainer.razor new file mode 100644 index 0000000..7d5e34f --- /dev/null +++ b/Components/MediaUploadContainer.razor @@ -0,0 +1,347 @@ +@using Generic.Media.Components +@using Microsoft.AspNetCore.Components.Forms +@using System.Collections.Generic +@using System.Linq +@using System.Net.Http.Json +@using System.Net.Http.Headers +@using Blazored.LocalStorage +@inject IHttpClientFactory HttpClientFactory +@inject ILocalStorageService LocalStorage + +@if (SingleUploadMode && _items.Count == 1) +{ + // Auto-select first item in single mode if not selected + // Done in OnInitialized or after upload +} + +
+ + +
+ +
+ + +
+
+ +
+ + @if (_items.Any()) + { + + } + + @if (!SingleUploadMode && _items.Count < MaxItems) + { +
+ +
+ } +
+
+ +@code { + [Parameter] public List InitialUrls { get; set; } = new(); + [Parameter] public EventCallback> OnChange { get; set; } + [Parameter] public int MaxItems { get; set; } = 10; + + // Config Parameters + [Parameter] public double? AspectRatio { get; set; } + [Parameter] public int? TargetWidth { get; set; } + [Parameter] public int? TargetHeight { get; set; } + [Parameter] public bool SingleUploadMode { get; set; } + [Parameter] public string? AiModelApiKey { get; set; } + [Parameter] public string CdnBaseUrl { get; set; } = "http://localhost:2003/"; + + private List _items = new(); + private List _deletedUrls = new(); + private ImageCropper? _cropper; + private MediaItemModel? _selectedItem; + + protected override void OnInitialized() + { + if (SingleUploadMode) MaxItems = 1; + + if (InitialUrls != null) + { + foreach (var url in InitialUrls) + { + _items.Add(new MediaItemModel + { + Url = url, + Type = DetectMediaType(url), + Order = _items.Count + }); + } + // Auto Select first item + if (_items.Any()) _selectedItem = _items.First(); + } + } + + // Called after render to ensure cropper updates with initially selected item if needed + protected override async Task OnAfterRenderAsync(bool firstRender) + { + if (firstRender && _selectedItem != null && _cropper != null) + { + await _cropper.OpenAsync(_selectedItem); + } + } + + private async Task HandleFileDrop(InputFileChangeEventArgs e) + { + var files = e.GetMultipleFiles(SingleUploadMode ? 1 : 20); // 20 as arbitrary max for batch + + if (SingleUploadMode && files.Count > 0) + { + // Clear existing for single mode + var allItems = _items.ToList(); + foreach (var item in allItems) RemoveItem(item); + } + + MediaItemModel? lastAdded = null; + + foreach (var file in files) + { + if (_items.Count >= MaxItems) break; + + var newItem = new MediaItemModel + { + File = file, + Type = file.ContentType.StartsWith("video") ? MediaType.Video : MediaType.Image, + IsLocal = true, + Order = _items.Count + }; + + _items.Add(newItem); + lastAdded = newItem; + + // Generate Preview for Images + if (newItem.Type == MediaType.Image) + { + // Read async to avoid blocking UI? + // Fire and forget task to load preview + _ = LoadPreviewAsync(newItem); + } + } + + // Auto select the last added item to show in cropper + if (lastAdded != null && lastAdded.Type == MediaType.Image) + { + await SelectItem(lastAdded); + } + } + + private async Task LoadPreviewAsync(MediaItemModel item) + { + try + { + if (item.File == null) return; + var maxFileSize = 10L * 1024 * 1024; // 10MB + var buffer = new byte[item.File.Size]; + await item.File.OpenReadStream(maxFileSize).ReadAsync(buffer); + var base64 = Convert.ToBase64String(buffer); + item.PreviewUrl = $"data:{item.File.ContentType};base64,{base64}"; + // If this item is currently selected, trigger update + if (_selectedItem == item) + { + await SelectItem(item); + } + StateHasChanged(); + } + catch (Exception ex) + { + Console.WriteLine($"Failed to load preview: {ex.Message}"); + } + } + + private void HandleLinkAdded(string url) + { + if (_items.Count >= MaxItems) return; + if (SingleUploadMode && _items.Count > 0) + { + var allItems = _items.ToList(); + foreach (var item in allItems) RemoveItem(item); + } + + var newItem = new MediaItemModel + { + Url = url, + Type = DetectMediaType(url), + Order = _items.Count + }; + + _items.Add(newItem); + if (newItem.Type == MediaType.Image) _ = SelectItem(newItem); + } + + private void RemoveItem(MediaItemModel item) + { + _items.Remove(item); + if (_selectedItem == item) + { + _selectedItem = null; + // Clear cropper? + if (_cropper != null) + { + // We can't really "clear" it easily without a Clear method, + // but passing null to something that expects it might work. + // For now, re-render will pass Item=null to ImageCropper + } + } + + // Track deletion if it was a remote URL + if (!string.IsNullOrEmpty(item.Url) && !item.IsLocal) + { + _deletedUrls.Add(item.Url); + } + + Reindex(); + } + + private async Task SelectItem(MediaItemModel item) + { + _selectedItem = item; + if (item.Type == MediaType.Image && _cropper != null) + { + await _cropper.OpenAsync(item); + } + StateHasChanged(); + } + + private void OnCropSaved(MediaItemModel item) + { + // Item is modified by reference + // Force refresh list to show new thumb + StateHasChanged(); + } + + private void OnCropCancel() + { + // Do nothing + } + + private void UpdateOrder(List sortedItems) + { + _items = sortedItems; + Reindex(); + } + + private void Reindex() + { + for (int i = 0; i < _items.Count; i++) + { + _items[i].Order = i; + } + } + + private MediaType DetectMediaType(string url) + { + if (string.IsNullOrWhiteSpace(url)) return MediaType.Image; + 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")) return MediaType.Video; + return MediaType.Image; + } + + public class UploadResult + { + public List FinalUrls { get; set; } = new(); + public List DeletedUrls { get; set; } = new(); + } + + public async Task ProcessUploadsAsync() + { + var result = new UploadResult(); + result.DeletedUrls = new List(_deletedUrls); + + var client = HttpClientFactory.CreateClient("CDN"); + var token = await LocalStorage.GetItemAsync("authToken"); + if (!string.IsNullOrEmpty(token)) + { + client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", token); + } + + foreach (var item in _items) + { + if (item.IsLocal) + { + // Handle Local File Upload + try + { + using var content = new MultipartFormDataContent(); + + if (!string.IsNullOrEmpty(item.PreviewUrl) && item.PreviewUrl.StartsWith("data:")) + { + // Cropped or preview base64 + var base64Data = item.PreviewUrl.Split(',')[1]; + var bytes = Convert.FromBase64String(base64Data); + var byteContent = new ByteArrayContent(bytes); + byteContent.Headers.ContentType = new MediaTypeHeaderValue("image/webp"); + content.Add(byteContent, "file", "image.webp"); + } + else if (item.File != null) + { + // Original file + var fileContent = new StreamContent(item.File.OpenReadStream(10 * 1024 * 1024)); + fileContent.Headers.ContentType = new MediaTypeHeaderValue(item.File.ContentType); + content.Add(fileContent, "file", item.File.Name); + } + else + { + continue; + } + + var response = await client.PostAsync("files/upload", content); + if (response.IsSuccessStatusCode) + { + var uploadRes = await response.Content.ReadFromJsonAsync(); + if (uploadRes != null && (!string.IsNullOrEmpty(uploadRes.Path) || !string.IsNullOrEmpty(uploadRes.Url))) + { + var fullUrl = !string.IsNullOrEmpty(uploadRes.Url) + ? uploadRes.Url + : $"{CdnBaseUrl.TrimEnd('/')}/{uploadRes.Path?.TrimStart('/')}"; + + result.FinalUrls.Add(fullUrl); + item.Url = fullUrl; + item.IsLocal = false; + } + } + else + { + var errorMsg = await response.Content.ReadAsStringAsync(); + throw new Exception($"Upload failed with status {response.StatusCode}: {errorMsg}"); + } + } + catch (Exception ex) + { + Console.WriteLine($"Upload Error: {ex.Message}"); + throw; // Re-throw to block save in parent + } + } + else if (!string.IsNullOrEmpty(item.Url)) + { + result.FinalUrls.Add(item.Url); + } + } + + return result; + } + + public void Clear() + { + _items.Clear(); + _deletedUrls.Clear(); + _selectedItem = null; + StateHasChanged(); + } + + private class UploadResponse + { + public string? Path { get; set; } + public string? Url { get; set; } + } +} \ No newline at end of file diff --git a/Components/SortableMediaList.razor b/Components/SortableMediaList.razor new file mode 100644 index 0000000..3614dbe --- /dev/null +++ b/Components/SortableMediaList.razor @@ -0,0 +1,57 @@ +@using Microsoft.AspNetCore.Components +@using System.Collections.Generic +@using Microsoft.AspNetCore.Components.Web + +
+ @foreach (var item in Items) + { + + + } + + @if (AppendContent != null) + { +
+ @AppendContent +
+ } +
+ +@code { + [Parameter] public List Items { get; set; } + [Parameter] public EventCallback OnRemove { get; set; } + [Parameter] public EventCallback OnEdit { get; set; } + [Parameter] public EventCallback> OnSort { get; set; } + [Parameter] public RenderFragment? AppendContent { get; set; } + + private MediaItemModel? _dragPayload; + + private void HandleDragStart(MediaItemModel item) + { + _dragPayload = item; + } + + private void HandleDragEnd() + { + _dragPayload = null; + } + + private void HandleDragEnter(MediaItemModel targetItem) + { + if (_dragPayload == null || targetItem == _dragPayload) return; + + var oldIndex = Items.IndexOf(_dragPayload); + var newIndex = Items.IndexOf(targetItem); + + if (oldIndex != -1 && newIndex != -1) + { + // Remove and insert + Items.RemoveAt(oldIndex); + Items.Insert(newIndex, _dragPayload); + + // Notify parent + OnSort.InvokeAsync(Items); + } + } +} \ No newline at end of file diff --git a/ExampleJsInterop.cs b/ExampleJsInterop.cs new file mode 100644 index 0000000..ac23256 --- /dev/null +++ b/ExampleJsInterop.cs @@ -0,0 +1,36 @@ +using Microsoft.JSInterop; + +namespace Generic.Media; + +// This class provides an example of how JavaScript functionality can be wrapped +// in a .NET class for easy consumption. The associated JavaScript module is +// loaded on demand when first needed. +// +// This class can be registered as scoped DI service and then injected into Blazor +// components for use. + +public class ExampleJsInterop : IAsyncDisposable +{ + private readonly Lazy> moduleTask; + + public ExampleJsInterop(IJSRuntime jsRuntime) + { + moduleTask = new (() => jsRuntime.InvokeAsync( + "import", "./_content/Generic.Media/exampleJsInterop.js").AsTask()); + } + + public async ValueTask Prompt(string message) + { + var module = await moduleTask.Value; + return await module.InvokeAsync("showPrompt", message); + } + + public async ValueTask DisposeAsync() + { + if (moduleTask.IsValueCreated) + { + var module = await moduleTask.Value; + await module.DisposeAsync(); + } + } +} diff --git a/Media.RCL.csproj b/Media.RCL.csproj new file mode 100644 index 0000000..b51490e --- /dev/null +++ b/Media.RCL.csproj @@ -0,0 +1,23 @@ + + + + net10.0 + enable + enable + Generic.Media + + + + + + + + + + + + + + + + diff --git a/MediaJsInterop.cs b/MediaJsInterop.cs new file mode 100644 index 0000000..34a7f4f --- /dev/null +++ b/MediaJsInterop.cs @@ -0,0 +1,60 @@ +using Microsoft.JSInterop; +using System.Threading.Tasks; + +namespace Generic.Media; + +public class MediaJsInterop : IAsyncDisposable +{ + private readonly IJSRuntime _jsRuntime; + private string? _imgId; + + public MediaJsInterop(IJSRuntime jsRuntime) + { + _jsRuntime = jsRuntime; + } + + public async Task InitCropperAsync(string imgId, double aspectRatio, DotNetObjectReference dotNetObject) where T : class + { + _imgId = imgId; + await _jsRuntime.InvokeVoidAsync("initCropper", imgId, new { aspectRatio = aspectRatio, viewMode = 1, autoCropArea = 1 }, dotNetObject); + } + + public async Task GetCroppedImageAsync() + { + if (_imgId == null) return string.Empty; + return await _jsRuntime.InvokeAsync("getCroppedImage", _imgId); + } + + public async Task SetAspectRatioAsync(double ratio) + { + if (_imgId == null) return; + await _jsRuntime.InvokeVoidAsync("setCropperAspectRatio", _imgId, ratio); + } + + public async Task DestroyCropperAsync() + { + if (_imgId == null) return; + await _jsRuntime.InvokeVoidAsync("destroyCropper", _imgId); + } + + public async Task SetFullWidthAsync() + { + if (_imgId == null) return; + await _jsRuntime.InvokeVoidAsync("setCropperFullWidth", _imgId); + } + + public async Task SetFullHeightAsync() + { + if (_imgId == null) return; + await _jsRuntime.InvokeVoidAsync("setCropperFullHeight", _imgId); + } + + public async ValueTask DisposeAsync() + { + // Try to clean up if we have an ID + if (_imgId != null) + { + try { await DestroyCropperAsync(); } catch { } + } + } +} diff --git a/_Imports.razor b/_Imports.razor new file mode 100644 index 0000000..68e2e9c --- /dev/null +++ b/_Imports.razor @@ -0,0 +1,6 @@ +@using Microsoft.AspNetCore.Components +@using Microsoft.AspNetCore.Components.Web +@using Microsoft.JSInterop +@using Microsoft.Extensions.Localization +@using Generic.Media +@using Generic.Media.Components \ No newline at end of file diff --git a/bin/Debug/net10.0/Media.RCL.deps.json b/bin/Debug/net10.0/Media.RCL.deps.json new file mode 100644 index 0000000..6c57c3d --- /dev/null +++ b/bin/Debug/net10.0/Media.RCL.deps.json @@ -0,0 +1,477 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v10.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v10.0": { + "Media.RCL/1.0.0": { + "dependencies": { + "Blazored.LocalStorage": "4.5.0", + "Microsoft.AspNetCore.Components.Authorization": "10.0.1", + "Microsoft.AspNetCore.Components.Web": "10.0.1", + "Microsoft.Extensions.Http": "10.0.1", + "Microsoft.Extensions.Localization": "10.0.1" + }, + "runtime": { + "Media.RCL.dll": {} + } + }, + "Blazored.LocalStorage/4.5.0": { + "dependencies": { + "Microsoft.AspNetCore.Components.Web": "10.0.1" + }, + "runtime": { + "lib/net8.0/Blazored.LocalStorage.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "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.Authorization/10.0.1": { + "dependencies": { + "Microsoft.AspNetCore.Authorization": "10.0.1", + "Microsoft.AspNetCore.Components": "10.0.1" + }, + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.Components.Authorization.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.Http/10.0.1": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "10.0.1", + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.1", + "Microsoft.Extensions.Diagnostics": "10.0.1", + "Microsoft.Extensions.Logging": "10.0.1", + "Microsoft.Extensions.Logging.Abstractions": "10.0.1", + "Microsoft.Extensions.Options": "10.0.1" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Http.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.125.57005" + } + } + }, + "Microsoft.Extensions.Localization/10.0.1": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.1", + "Microsoft.Extensions.Localization.Abstractions": "10.0.1", + "Microsoft.Extensions.Logging.Abstractions": "10.0.1", + "Microsoft.Extensions.Options": "10.0.1" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Localization.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.125.57005" + } + } + }, + "Microsoft.Extensions.Localization.Abstractions/10.0.1": { + "runtime": { + "lib/net10.0/Microsoft.Extensions.Localization.Abstractions.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.125.57005" + } + } + }, + "Microsoft.Extensions.Logging/10.0.1": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "10.0.1", + "Microsoft.Extensions.Logging.Abstractions": "10.0.1", + "Microsoft.Extensions.Options": "10.0.1" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Logging.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": { + "Media.RCL/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Blazored.LocalStorage/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6nZuJwA7zNIKx83IsObiHXZb09ponJOpCClU3en+hI8ZFvrOKXeOw+H7TegQZQrvdR1n9fkrVkEBQZg8vx6ZTw==", + "path": "blazored.localstorage/4.5.0", + "hashPath": "blazored.localstorage.4.5.0.nupkg.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.Authorization/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Ahez1F0EfsPqIT/X/TcdJCDYjVACHJwIPgZSof33wqLXaENUJNDnzphkmXOiBY1tvok/ZIUVEpeFLWdkLh0IyA==", + "path": "microsoft.aspnetcore.components.authorization/10.0.1", + "hashPath": "microsoft.aspnetcore.components.authorization.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.Http/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZXJup9ReE1Ot3M8jqcw1b/lnc8USxyYS3cyLsssU39u04TES9JNGviWUGIvP3K7mMU3TF7kQl2aS0SmVwegflw==", + "path": "microsoft.extensions.http/10.0.1", + "hashPath": "microsoft.extensions.http.10.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Localization/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yJBI3IRm9uTRu7cPc7i90/8+CuiiJJ5M4khj6iWQcYnq6VrG+H2U5GzpRLtkVCsgxc1LjtkNMEbSDatfBA+z5g==", + "path": "microsoft.extensions.localization/10.0.1", + "hashPath": "microsoft.extensions.localization.10.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Localization.Abstractions/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TQSQWF+iZdtGNgPiu7gKUqrTEeRD/mhk7KeYiuEwmTUPbawsYfPSNzSvOOeueJ0nU1697X8HZ2vCp2ByHNHkZg==", + "path": "microsoft.extensions.localization.abstractions/10.0.1", + "hashPath": "microsoft.extensions.localization.abstractions.10.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9ItMpMLFZFJFqCuHLLbR3LiA4ahA8dMtYuXpXl2YamSDWZhYS9BruPprkftY0tYi2bQ0slNrixdFm+4kpz1g5w==", + "path": "microsoft.extensions.logging/10.0.1", + "hashPath": "microsoft.extensions.logging.10.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YkmyiPIWAXVb+lPIrM0LE5bbtLOJkCiRTFiHpkVOvhI7uTvCfoOHLEN0LcsY56GpSD7NqX3gJNpsaDe87/B3zg==", + "path": "microsoft.extensions.logging.abstractions/10.0.1", + "hashPath": "microsoft.extensions.logging.abstractions.10.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Options/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-G6VVwywpJI4XIobetGHwg7wDOYC2L2XBYdtskxLaKF/Ynb5QBwLl7Q//wxAR2aVCLkMpoQrjSP9VoORkyddsNQ==", + "path": "microsoft.extensions.options/10.0.1", + "hashPath": "microsoft.extensions.options.10.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pL78/Im7O3WmxHzlKUsWTYchKL881udU7E26gCD3T0+/tPhWVfjPwMzfN/MRKU7aoFYcOiqcG2k1QTlH5woWow==", + "path": "microsoft.extensions.options.configurationextensions/10.0.1", + "hashPath": "microsoft.extensions.options.configurationextensions.10.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DO8XrJkp5x4PddDuc/CH37yDBCs9BYN6ijlKyR3vMb55BP1Vwh90vOX8bNfnKxr5B2qEI3D8bvbY1fFbDveDHQ==", + "path": "microsoft.extensions.primitives/10.0.1", + "hashPath": "microsoft.extensions.primitives.10.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Validation/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5bcu9zWhgY8AZUN1ERNH0BQKFh10xlx4UrCh+0cDn7wB01QkrK4S6Jh45fCgEqmWJWVGqBS2g8MN0Lu/99Zgdg==", + "path": "microsoft.extensions.validation/10.0.1", + "hashPath": "microsoft.extensions.validation.10.0.1.nupkg.sha512" + }, + "Microsoft.JSInterop/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pTfoYBjs7HKmTEk9cNWcSySdTKT8USjviLgmMaSs/YA0+oONufKy9hqqZ5EE4CNy9y24SDDc9lerXfV7aiVfWA==", + "path": "microsoft.jsinterop/10.0.1", + "hashPath": "microsoft.jsinterop.10.0.1.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/bin/Debug/net10.0/Media.RCL.dll b/bin/Debug/net10.0/Media.RCL.dll new file mode 100644 index 0000000..7f12b4f Binary files /dev/null and b/bin/Debug/net10.0/Media.RCL.dll differ diff --git a/bin/Debug/net10.0/Media.RCL.pdb b/bin/Debug/net10.0/Media.RCL.pdb new file mode 100644 index 0000000..58a7b2b Binary files /dev/null and b/bin/Debug/net10.0/Media.RCL.pdb differ diff --git a/bin/Debug/net10.0/Media.RCL.staticwebassets.endpoints.json b/bin/Debug/net10.0/Media.RCL.staticwebassets.endpoints.json new file mode 100644 index 0000000..211d61a --- /dev/null +++ b/bin/Debug/net10.0/Media.RCL.staticwebassets.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[{"Route":"css/cropper.min.css","AssetFile":"css/cropper.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000749063670"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1334"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"MpKPXxBxrKehFS516PaXmpBvJtPuwJm+pYkcNqI9Epo=\""},{"Name":"Last-Modified","Value":"Thu, 05 Feb 2026 09:45:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4="},{"Name":"original-resource","Value":"\"LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4=\""}]},{"Route":"css/cropper.min.css","AssetFile":"css/cropper.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4947"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4=\""},{"Name":"Last-Modified","Value":"Sun, 21 Dec 2025 15:00:39 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4="}]},{"Route":"css/cropper.min.css.gz","AssetFile":"css/cropper.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1334"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"MpKPXxBxrKehFS516PaXmpBvJtPuwJm+pYkcNqI9Epo=\""},{"Name":"Last-Modified","Value":"Thu, 05 Feb 2026 09:45:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MpKPXxBxrKehFS516PaXmpBvJtPuwJm+pYkcNqI9Epo="}]},{"Route":"css/cropper.min.ozxrxjrq84.css","AssetFile":"css/cropper.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000749063670"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1334"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"MpKPXxBxrKehFS516PaXmpBvJtPuwJm+pYkcNqI9Epo=\""},{"Name":"Last-Modified","Value":"Thu, 05 Feb 2026 09:45:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ozxrxjrq84"},{"Name":"integrity","Value":"sha256-LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4="},{"Name":"label","Value":"css/cropper.min.css"},{"Name":"original-resource","Value":"\"LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4=\""}]},{"Route":"css/cropper.min.ozxrxjrq84.css","AssetFile":"css/cropper.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4947"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4=\""},{"Name":"Last-Modified","Value":"Sun, 21 Dec 2025 15:00:39 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ozxrxjrq84"},{"Name":"integrity","Value":"sha256-LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4="},{"Name":"label","Value":"css/cropper.min.css"}]},{"Route":"css/cropper.min.ozxrxjrq84.css.gz","AssetFile":"css/cropper.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1334"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"MpKPXxBxrKehFS516PaXmpBvJtPuwJm+pYkcNqI9Epo=\""},{"Name":"Last-Modified","Value":"Thu, 05 Feb 2026 09:45:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ozxrxjrq84"},{"Name":"integrity","Value":"sha256-MpKPXxBxrKehFS516PaXmpBvJtPuwJm+pYkcNqI9Epo="},{"Name":"label","Value":"css/cropper.min.css.gz"}]},{"Route":"js/crop.js","AssetFile":"js/crop.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001088139282"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"918"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4PKrXFgldfdLg4sTPCbLiDNGFl8cb0xvISy3R1WxV/A=\""},{"Name":"Last-Modified","Value":"Thu, 05 Feb 2026 09:45:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI="},{"Name":"original-resource","Value":"\"2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI=\""}]},{"Route":"js/crop.js","AssetFile":"js/crop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"2474"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI=\""},{"Name":"Last-Modified","Value":"Tue, 23 Dec 2025 11:59:06 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI="}]},{"Route":"js/crop.js.gz","AssetFile":"js/crop.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"918"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4PKrXFgldfdLg4sTPCbLiDNGFl8cb0xvISy3R1WxV/A=\""},{"Name":"Last-Modified","Value":"Thu, 05 Feb 2026 09:45:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4PKrXFgldfdLg4sTPCbLiDNGFl8cb0xvISy3R1WxV/A="}]},{"Route":"js/crop.rzaytjouo0.js","AssetFile":"js/crop.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001088139282"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"918"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4PKrXFgldfdLg4sTPCbLiDNGFl8cb0xvISy3R1WxV/A=\""},{"Name":"Last-Modified","Value":"Thu, 05 Feb 2026 09:45:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rzaytjouo0"},{"Name":"integrity","Value":"sha256-2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI="},{"Name":"label","Value":"js/crop.js"},{"Name":"original-resource","Value":"\"2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI=\""}]},{"Route":"js/crop.rzaytjouo0.js","AssetFile":"js/crop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"2474"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI=\""},{"Name":"Last-Modified","Value":"Tue, 23 Dec 2025 11:59:06 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rzaytjouo0"},{"Name":"integrity","Value":"sha256-2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI="},{"Name":"label","Value":"js/crop.js"}]},{"Route":"js/crop.rzaytjouo0.js.gz","AssetFile":"js/crop.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"918"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4PKrXFgldfdLg4sTPCbLiDNGFl8cb0xvISy3R1WxV/A=\""},{"Name":"Last-Modified","Value":"Thu, 05 Feb 2026 09:45:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rzaytjouo0"},{"Name":"integrity","Value":"sha256-4PKrXFgldfdLg4sTPCbLiDNGFl8cb0xvISy3R1WxV/A="},{"Name":"label","Value":"js/crop.js.gz"}]},{"Route":"js/cropper.min.js","AssetFile":"js/cropper.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000156323277"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6396"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"foJ0q5a8aDAR6XNITGSl1z7UCT1gz628l6VhbhipoeE=\""},{"Name":"Last-Modified","Value":"Thu, 05 Feb 2026 09:45:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI="},{"Name":"original-resource","Value":"\"Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI=\""}]},{"Route":"js/cropper.min.js","AssetFile":"js/cropper.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"22252"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI=\""},{"Name":"Last-Modified","Value":"Sun, 21 Dec 2025 18:23:00 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI="}]},{"Route":"js/cropper.min.js.gz","AssetFile":"js/cropper.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6396"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"foJ0q5a8aDAR6XNITGSl1z7UCT1gz628l6VhbhipoeE=\""},{"Name":"Last-Modified","Value":"Thu, 05 Feb 2026 09:45:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-foJ0q5a8aDAR6XNITGSl1z7UCT1gz628l6VhbhipoeE="}]},{"Route":"js/cropper.min.llc9n82qda.js","AssetFile":"js/cropper.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000156323277"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6396"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"foJ0q5a8aDAR6XNITGSl1z7UCT1gz628l6VhbhipoeE=\""},{"Name":"Last-Modified","Value":"Thu, 05 Feb 2026 09:45:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"llc9n82qda"},{"Name":"integrity","Value":"sha256-Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI="},{"Name":"label","Value":"js/cropper.min.js"},{"Name":"original-resource","Value":"\"Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI=\""}]},{"Route":"js/cropper.min.llc9n82qda.js","AssetFile":"js/cropper.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"22252"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI=\""},{"Name":"Last-Modified","Value":"Sun, 21 Dec 2025 18:23:00 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"llc9n82qda"},{"Name":"integrity","Value":"sha256-Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI="},{"Name":"label","Value":"js/cropper.min.js"}]},{"Route":"js/cropper.min.llc9n82qda.js.gz","AssetFile":"js/cropper.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6396"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"foJ0q5a8aDAR6XNITGSl1z7UCT1gz628l6VhbhipoeE=\""},{"Name":"Last-Modified","Value":"Thu, 05 Feb 2026 09:45:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"llc9n82qda"},{"Name":"integrity","Value":"sha256-foJ0q5a8aDAR6XNITGSl1z7UCT1gz628l6VhbhipoeE="},{"Name":"label","Value":"js/cropper.min.js.gz"}]},{"Route":"js/mediaInterop.j3t2utpur3.js","AssetFile":"js/mediaInterop.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001831501832"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"545"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"T3/OBNOu36GO1osR/HPqSS4Kvfy+F1WbctC8XyL0RT8=\""},{"Name":"Last-Modified","Value":"Thu, 05 Feb 2026 09:45:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j3t2utpur3"},{"Name":"integrity","Value":"sha256-z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA="},{"Name":"label","Value":"js/mediaInterop.js"},{"Name":"original-resource","Value":"\"z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA=\""}]},{"Route":"js/mediaInterop.j3t2utpur3.js","AssetFile":"js/mediaInterop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"2220"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA=\""},{"Name":"Last-Modified","Value":"Wed, 24 Dec 2025 09:42:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j3t2utpur3"},{"Name":"integrity","Value":"sha256-z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA="},{"Name":"label","Value":"js/mediaInterop.js"}]},{"Route":"js/mediaInterop.j3t2utpur3.js.gz","AssetFile":"js/mediaInterop.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"545"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"T3/OBNOu36GO1osR/HPqSS4Kvfy+F1WbctC8XyL0RT8=\""},{"Name":"Last-Modified","Value":"Thu, 05 Feb 2026 09:45:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j3t2utpur3"},{"Name":"integrity","Value":"sha256-T3/OBNOu36GO1osR/HPqSS4Kvfy+F1WbctC8XyL0RT8="},{"Name":"label","Value":"js/mediaInterop.js.gz"}]},{"Route":"js/mediaInterop.js","AssetFile":"js/mediaInterop.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001831501832"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"545"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"T3/OBNOu36GO1osR/HPqSS4Kvfy+F1WbctC8XyL0RT8=\""},{"Name":"Last-Modified","Value":"Thu, 05 Feb 2026 09:45:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA="},{"Name":"original-resource","Value":"\"z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA=\""}]},{"Route":"js/mediaInterop.js","AssetFile":"js/mediaInterop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"2220"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA=\""},{"Name":"Last-Modified","Value":"Wed, 24 Dec 2025 09:42:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA="}]},{"Route":"js/mediaInterop.js.gz","AssetFile":"js/mediaInterop.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"545"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"T3/OBNOu36GO1osR/HPqSS4Kvfy+F1WbctC8XyL0RT8=\""},{"Name":"Last-Modified","Value":"Thu, 05 Feb 2026 09:45:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-T3/OBNOu36GO1osR/HPqSS4Kvfy+F1WbctC8XyL0RT8="}]},{"Route":"lib/cropper.min.9ydfkw1ttr.js","AssetFile":"lib/cropper.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000081799591"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12224"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CmAvCeXmzS67802QckdNfDy5ysuJ97AgSVrZr21Ayx4=\""},{"Name":"Last-Modified","Value":"Thu, 05 Feb 2026 09:45:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9ydfkw1ttr"},{"Name":"integrity","Value":"sha256-YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc="},{"Name":"label","Value":"lib/cropper.min.js"},{"Name":"original-resource","Value":"\"YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc=\""}]},{"Route":"lib/cropper.min.9ydfkw1ttr.js","AssetFile":"lib/cropper.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"37035"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc=\""},{"Name":"Last-Modified","Value":"Mon, 11 Aug 2025 12:38:41 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9ydfkw1ttr"},{"Name":"integrity","Value":"sha256-YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc="},{"Name":"label","Value":"lib/cropper.min.js"}]},{"Route":"lib/cropper.min.9ydfkw1ttr.js.gz","AssetFile":"lib/cropper.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12224"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CmAvCeXmzS67802QckdNfDy5ysuJ97AgSVrZr21Ayx4=\""},{"Name":"Last-Modified","Value":"Thu, 05 Feb 2026 09:45:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9ydfkw1ttr"},{"Name":"integrity","Value":"sha256-CmAvCeXmzS67802QckdNfDy5ysuJ97AgSVrZr21Ayx4="},{"Name":"label","Value":"lib/cropper.min.js.gz"}]},{"Route":"lib/cropper.min.css","AssetFile":"lib/cropper.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000788643533"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1267"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"NSflKeEMawOcrQQ9CCT+62GRXfxdx7lRqbo6s837Rco=\""},{"Name":"Last-Modified","Value":"Thu, 05 Feb 2026 09:45:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8="},{"Name":"original-resource","Value":"\"BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8=\""}]},{"Route":"lib/cropper.min.css","AssetFile":"lib/cropper.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"3804"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8=\""},{"Name":"Last-Modified","Value":"Mon, 11 Aug 2025 12:38:41 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8="}]},{"Route":"lib/cropper.min.css.gz","AssetFile":"lib/cropper.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1267"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"NSflKeEMawOcrQQ9CCT+62GRXfxdx7lRqbo6s837Rco=\""},{"Name":"Last-Modified","Value":"Thu, 05 Feb 2026 09:45:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NSflKeEMawOcrQQ9CCT+62GRXfxdx7lRqbo6s837Rco="}]},{"Route":"lib/cropper.min.js","AssetFile":"lib/cropper.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000081799591"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12224"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CmAvCeXmzS67802QckdNfDy5ysuJ97AgSVrZr21Ayx4=\""},{"Name":"Last-Modified","Value":"Thu, 05 Feb 2026 09:45:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc="},{"Name":"original-resource","Value":"\"YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc=\""}]},{"Route":"lib/cropper.min.js","AssetFile":"lib/cropper.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"37035"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc=\""},{"Name":"Last-Modified","Value":"Mon, 11 Aug 2025 12:38:41 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc="}]},{"Route":"lib/cropper.min.js.gz","AssetFile":"lib/cropper.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12224"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CmAvCeXmzS67802QckdNfDy5ysuJ97AgSVrZr21Ayx4=\""},{"Name":"Last-Modified","Value":"Thu, 05 Feb 2026 09:45:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CmAvCeXmzS67802QckdNfDy5ysuJ97AgSVrZr21Ayx4="}]},{"Route":"lib/cropper.min.tef8z25zm7.css","AssetFile":"lib/cropper.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000788643533"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1267"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"NSflKeEMawOcrQQ9CCT+62GRXfxdx7lRqbo6s837Rco=\""},{"Name":"Last-Modified","Value":"Thu, 05 Feb 2026 09:45:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tef8z25zm7"},{"Name":"integrity","Value":"sha256-BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8="},{"Name":"label","Value":"lib/cropper.min.css"},{"Name":"original-resource","Value":"\"BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8=\""}]},{"Route":"lib/cropper.min.tef8z25zm7.css","AssetFile":"lib/cropper.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3804"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8=\""},{"Name":"Last-Modified","Value":"Mon, 11 Aug 2025 12:38:41 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tef8z25zm7"},{"Name":"integrity","Value":"sha256-BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8="},{"Name":"label","Value":"lib/cropper.min.css"}]},{"Route":"lib/cropper.min.tef8z25zm7.css.gz","AssetFile":"lib/cropper.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1267"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"NSflKeEMawOcrQQ9CCT+62GRXfxdx7lRqbo6s837Rco=\""},{"Name":"Last-Modified","Value":"Thu, 05 Feb 2026 09:45:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tef8z25zm7"},{"Name":"integrity","Value":"sha256-NSflKeEMawOcrQQ9CCT+62GRXfxdx7lRqbo6s837Rco="},{"Name":"label","Value":"lib/cropper.min.css.gz"}]}]} \ No newline at end of file diff --git a/bin/Debug/net10.0/Media.RCL.staticwebassets.runtime.json b/bin/Debug/net10.0/Media.RCL.staticwebassets.runtime.json new file mode 100644 index 0000000..4204ecf --- /dev/null +++ b/bin/Debug/net10.0/Media.RCL.staticwebassets.runtime.json @@ -0,0 +1 @@ +{"ContentRoots":["/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/wwwroot/","/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/compressed/"],"Root":{"Children":{"css":{"Children":{"cropper.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/cropper.min.css"},"Patterns":null},"cropper.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"w5z14dlnee-{0}-ozxrxjrq84-ozxrxjrq84.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"crop.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/crop.js"},"Patterns":null},"crop.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"hk7nq8n70x-{0}-rzaytjouo0-rzaytjouo0.gz"},"Patterns":null},"cropper.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/cropper.min.js"},"Patterns":null},"cropper.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"c4qv7zag90-{0}-llc9n82qda-llc9n82qda.gz"},"Patterns":null},"mediaInterop.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/mediaInterop.js"},"Patterns":null},"mediaInterop.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"8rzz1ly4wd-{0}-j3t2utpur3-j3t2utpur3.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"lib":{"Children":{"cropper.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/cropper.min.css"},"Patterns":null},"cropper.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"nsvlrsxof5-{0}-tef8z25zm7-tef8z25zm7.gz"},"Patterns":null},"cropper.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/cropper.min.js"},"Patterns":null},"cropper.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ke9t4lehyl-{0}-9ydfkw1ttr-9ydfkw1ttr.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}} \ No newline at end of file diff --git a/bin/Debug/net10.0/Media.deps.json b/bin/Debug/net10.0/Media.deps.json new file mode 100644 index 0000000..a23c12e --- /dev/null +++ b/bin/Debug/net10.0/Media.deps.json @@ -0,0 +1,477 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v10.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v10.0": { + "Media/1.0.0": { + "dependencies": { + "Blazored.LocalStorage": "4.5.0", + "Microsoft.AspNetCore.Components.Authorization": "10.0.1", + "Microsoft.AspNetCore.Components.Web": "10.0.1", + "Microsoft.Extensions.Http": "10.0.1", + "Microsoft.Extensions.Localization": "10.0.1" + }, + "runtime": { + "Media.dll": {} + } + }, + "Blazored.LocalStorage/4.5.0": { + "dependencies": { + "Microsoft.AspNetCore.Components.Web": "10.0.1" + }, + "runtime": { + "lib/net8.0/Blazored.LocalStorage.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "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.Authorization/10.0.1": { + "dependencies": { + "Microsoft.AspNetCore.Authorization": "10.0.1", + "Microsoft.AspNetCore.Components": "10.0.1" + }, + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.Components.Authorization.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.Http/10.0.1": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "10.0.1", + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.1", + "Microsoft.Extensions.Diagnostics": "10.0.1", + "Microsoft.Extensions.Logging": "10.0.1", + "Microsoft.Extensions.Logging.Abstractions": "10.0.1", + "Microsoft.Extensions.Options": "10.0.1" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Http.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.125.57005" + } + } + }, + "Microsoft.Extensions.Localization/10.0.1": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.1", + "Microsoft.Extensions.Localization.Abstractions": "10.0.1", + "Microsoft.Extensions.Logging.Abstractions": "10.0.1", + "Microsoft.Extensions.Options": "10.0.1" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Localization.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.125.57005" + } + } + }, + "Microsoft.Extensions.Localization.Abstractions/10.0.1": { + "runtime": { + "lib/net10.0/Microsoft.Extensions.Localization.Abstractions.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.125.57005" + } + } + }, + "Microsoft.Extensions.Logging/10.0.1": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "10.0.1", + "Microsoft.Extensions.Logging.Abstractions": "10.0.1", + "Microsoft.Extensions.Options": "10.0.1" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Logging.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": { + "Media/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Blazored.LocalStorage/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6nZuJwA7zNIKx83IsObiHXZb09ponJOpCClU3en+hI8ZFvrOKXeOw+H7TegQZQrvdR1n9fkrVkEBQZg8vx6ZTw==", + "path": "blazored.localstorage/4.5.0", + "hashPath": "blazored.localstorage.4.5.0.nupkg.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.Authorization/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Ahez1F0EfsPqIT/X/TcdJCDYjVACHJwIPgZSof33wqLXaENUJNDnzphkmXOiBY1tvok/ZIUVEpeFLWdkLh0IyA==", + "path": "microsoft.aspnetcore.components.authorization/10.0.1", + "hashPath": "microsoft.aspnetcore.components.authorization.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.Http/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZXJup9ReE1Ot3M8jqcw1b/lnc8USxyYS3cyLsssU39u04TES9JNGviWUGIvP3K7mMU3TF7kQl2aS0SmVwegflw==", + "path": "microsoft.extensions.http/10.0.1", + "hashPath": "microsoft.extensions.http.10.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Localization/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yJBI3IRm9uTRu7cPc7i90/8+CuiiJJ5M4khj6iWQcYnq6VrG+H2U5GzpRLtkVCsgxc1LjtkNMEbSDatfBA+z5g==", + "path": "microsoft.extensions.localization/10.0.1", + "hashPath": "microsoft.extensions.localization.10.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Localization.Abstractions/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TQSQWF+iZdtGNgPiu7gKUqrTEeRD/mhk7KeYiuEwmTUPbawsYfPSNzSvOOeueJ0nU1697X8HZ2vCp2ByHNHkZg==", + "path": "microsoft.extensions.localization.abstractions/10.0.1", + "hashPath": "microsoft.extensions.localization.abstractions.10.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9ItMpMLFZFJFqCuHLLbR3LiA4ahA8dMtYuXpXl2YamSDWZhYS9BruPprkftY0tYi2bQ0slNrixdFm+4kpz1g5w==", + "path": "microsoft.extensions.logging/10.0.1", + "hashPath": "microsoft.extensions.logging.10.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YkmyiPIWAXVb+lPIrM0LE5bbtLOJkCiRTFiHpkVOvhI7uTvCfoOHLEN0LcsY56GpSD7NqX3gJNpsaDe87/B3zg==", + "path": "microsoft.extensions.logging.abstractions/10.0.1", + "hashPath": "microsoft.extensions.logging.abstractions.10.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Options/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-G6VVwywpJI4XIobetGHwg7wDOYC2L2XBYdtskxLaKF/Ynb5QBwLl7Q//wxAR2aVCLkMpoQrjSP9VoORkyddsNQ==", + "path": "microsoft.extensions.options/10.0.1", + "hashPath": "microsoft.extensions.options.10.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pL78/Im7O3WmxHzlKUsWTYchKL881udU7E26gCD3T0+/tPhWVfjPwMzfN/MRKU7aoFYcOiqcG2k1QTlH5woWow==", + "path": "microsoft.extensions.options.configurationextensions/10.0.1", + "hashPath": "microsoft.extensions.options.configurationextensions.10.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DO8XrJkp5x4PddDuc/CH37yDBCs9BYN6ijlKyR3vMb55BP1Vwh90vOX8bNfnKxr5B2qEI3D8bvbY1fFbDveDHQ==", + "path": "microsoft.extensions.primitives/10.0.1", + "hashPath": "microsoft.extensions.primitives.10.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Validation/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5bcu9zWhgY8AZUN1ERNH0BQKFh10xlx4UrCh+0cDn7wB01QkrK4S6Jh45fCgEqmWJWVGqBS2g8MN0Lu/99Zgdg==", + "path": "microsoft.extensions.validation/10.0.1", + "hashPath": "microsoft.extensions.validation.10.0.1.nupkg.sha512" + }, + "Microsoft.JSInterop/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pTfoYBjs7HKmTEk9cNWcSySdTKT8USjviLgmMaSs/YA0+oONufKy9hqqZ5EE4CNy9y24SDDc9lerXfV7aiVfWA==", + "path": "microsoft.jsinterop/10.0.1", + "hashPath": "microsoft.jsinterop.10.0.1.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/bin/Debug/net10.0/Media.dll b/bin/Debug/net10.0/Media.dll new file mode 100644 index 0000000..909b24e Binary files /dev/null and b/bin/Debug/net10.0/Media.dll differ diff --git a/bin/Debug/net10.0/Media.pdb b/bin/Debug/net10.0/Media.pdb new file mode 100644 index 0000000..9e33f61 Binary files /dev/null and b/bin/Debug/net10.0/Media.pdb differ diff --git a/bin/Debug/net10.0/Media.staticwebassets.endpoints.json b/bin/Debug/net10.0/Media.staticwebassets.endpoints.json new file mode 100644 index 0000000..be77358 --- /dev/null +++ b/bin/Debug/net10.0/Media.staticwebassets.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[{"Route":"css/cropper.min.css","AssetFile":"css/cropper.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000749063670"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1334"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"MpKPXxBxrKehFS516PaXmpBvJtPuwJm+pYkcNqI9Epo=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4="},{"Name":"original-resource","Value":"\"LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4=\""}]},{"Route":"css/cropper.min.css","AssetFile":"css/cropper.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4947"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4=\""},{"Name":"Last-Modified","Value":"Sun, 21 Dec 2025 15:00:39 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4="}]},{"Route":"css/cropper.min.css.gz","AssetFile":"css/cropper.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1334"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"MpKPXxBxrKehFS516PaXmpBvJtPuwJm+pYkcNqI9Epo=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MpKPXxBxrKehFS516PaXmpBvJtPuwJm+pYkcNqI9Epo="}]},{"Route":"css/cropper.min.ozxrxjrq84.css","AssetFile":"css/cropper.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000749063670"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1334"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"MpKPXxBxrKehFS516PaXmpBvJtPuwJm+pYkcNqI9Epo=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ozxrxjrq84"},{"Name":"integrity","Value":"sha256-LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4="},{"Name":"label","Value":"css/cropper.min.css"},{"Name":"original-resource","Value":"\"LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4=\""}]},{"Route":"css/cropper.min.ozxrxjrq84.css","AssetFile":"css/cropper.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4947"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4=\""},{"Name":"Last-Modified","Value":"Sun, 21 Dec 2025 15:00:39 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ozxrxjrq84"},{"Name":"integrity","Value":"sha256-LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4="},{"Name":"label","Value":"css/cropper.min.css"}]},{"Route":"css/cropper.min.ozxrxjrq84.css.gz","AssetFile":"css/cropper.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1334"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"MpKPXxBxrKehFS516PaXmpBvJtPuwJm+pYkcNqI9Epo=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ozxrxjrq84"},{"Name":"integrity","Value":"sha256-MpKPXxBxrKehFS516PaXmpBvJtPuwJm+pYkcNqI9Epo="},{"Name":"label","Value":"css/cropper.min.css.gz"}]},{"Route":"js/crop.js","AssetFile":"js/crop.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001088139282"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"918"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4PKrXFgldfdLg4sTPCbLiDNGFl8cb0xvISy3R1WxV/A=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI="},{"Name":"original-resource","Value":"\"2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI=\""}]},{"Route":"js/crop.js","AssetFile":"js/crop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"2474"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI=\""},{"Name":"Last-Modified","Value":"Tue, 23 Dec 2025 11:59:06 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI="}]},{"Route":"js/crop.js.gz","AssetFile":"js/crop.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"918"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4PKrXFgldfdLg4sTPCbLiDNGFl8cb0xvISy3R1WxV/A=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4PKrXFgldfdLg4sTPCbLiDNGFl8cb0xvISy3R1WxV/A="}]},{"Route":"js/crop.rzaytjouo0.js","AssetFile":"js/crop.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001088139282"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"918"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4PKrXFgldfdLg4sTPCbLiDNGFl8cb0xvISy3R1WxV/A=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rzaytjouo0"},{"Name":"integrity","Value":"sha256-2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI="},{"Name":"label","Value":"js/crop.js"},{"Name":"original-resource","Value":"\"2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI=\""}]},{"Route":"js/crop.rzaytjouo0.js","AssetFile":"js/crop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"2474"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI=\""},{"Name":"Last-Modified","Value":"Tue, 23 Dec 2025 11:59:06 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rzaytjouo0"},{"Name":"integrity","Value":"sha256-2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI="},{"Name":"label","Value":"js/crop.js"}]},{"Route":"js/crop.rzaytjouo0.js.gz","AssetFile":"js/crop.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"918"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4PKrXFgldfdLg4sTPCbLiDNGFl8cb0xvISy3R1WxV/A=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rzaytjouo0"},{"Name":"integrity","Value":"sha256-4PKrXFgldfdLg4sTPCbLiDNGFl8cb0xvISy3R1WxV/A="},{"Name":"label","Value":"js/crop.js.gz"}]},{"Route":"js/cropper.min.js","AssetFile":"js/cropper.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000156323277"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6396"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"foJ0q5a8aDAR6XNITGSl1z7UCT1gz628l6VhbhipoeE=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI="},{"Name":"original-resource","Value":"\"Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI=\""}]},{"Route":"js/cropper.min.js","AssetFile":"js/cropper.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"22252"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI=\""},{"Name":"Last-Modified","Value":"Sun, 21 Dec 2025 18:23:00 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI="}]},{"Route":"js/cropper.min.js.gz","AssetFile":"js/cropper.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6396"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"foJ0q5a8aDAR6XNITGSl1z7UCT1gz628l6VhbhipoeE=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-foJ0q5a8aDAR6XNITGSl1z7UCT1gz628l6VhbhipoeE="}]},{"Route":"js/cropper.min.llc9n82qda.js","AssetFile":"js/cropper.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000156323277"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6396"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"foJ0q5a8aDAR6XNITGSl1z7UCT1gz628l6VhbhipoeE=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"llc9n82qda"},{"Name":"integrity","Value":"sha256-Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI="},{"Name":"label","Value":"js/cropper.min.js"},{"Name":"original-resource","Value":"\"Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI=\""}]},{"Route":"js/cropper.min.llc9n82qda.js","AssetFile":"js/cropper.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"22252"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI=\""},{"Name":"Last-Modified","Value":"Sun, 21 Dec 2025 18:23:00 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"llc9n82qda"},{"Name":"integrity","Value":"sha256-Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI="},{"Name":"label","Value":"js/cropper.min.js"}]},{"Route":"js/cropper.min.llc9n82qda.js.gz","AssetFile":"js/cropper.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6396"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"foJ0q5a8aDAR6XNITGSl1z7UCT1gz628l6VhbhipoeE=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"llc9n82qda"},{"Name":"integrity","Value":"sha256-foJ0q5a8aDAR6XNITGSl1z7UCT1gz628l6VhbhipoeE="},{"Name":"label","Value":"js/cropper.min.js.gz"}]},{"Route":"js/mediaInterop.j3t2utpur3.js","AssetFile":"js/mediaInterop.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001831501832"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"545"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"T3/OBNOu36GO1osR/HPqSS4Kvfy+F1WbctC8XyL0RT8=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j3t2utpur3"},{"Name":"integrity","Value":"sha256-z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA="},{"Name":"label","Value":"js/mediaInterop.js"},{"Name":"original-resource","Value":"\"z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA=\""}]},{"Route":"js/mediaInterop.j3t2utpur3.js","AssetFile":"js/mediaInterop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"2220"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA=\""},{"Name":"Last-Modified","Value":"Wed, 24 Dec 2025 09:42:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j3t2utpur3"},{"Name":"integrity","Value":"sha256-z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA="},{"Name":"label","Value":"js/mediaInterop.js"}]},{"Route":"js/mediaInterop.j3t2utpur3.js.gz","AssetFile":"js/mediaInterop.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"545"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"T3/OBNOu36GO1osR/HPqSS4Kvfy+F1WbctC8XyL0RT8=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j3t2utpur3"},{"Name":"integrity","Value":"sha256-T3/OBNOu36GO1osR/HPqSS4Kvfy+F1WbctC8XyL0RT8="},{"Name":"label","Value":"js/mediaInterop.js.gz"}]},{"Route":"js/mediaInterop.js","AssetFile":"js/mediaInterop.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001831501832"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"545"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"T3/OBNOu36GO1osR/HPqSS4Kvfy+F1WbctC8XyL0RT8=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA="},{"Name":"original-resource","Value":"\"z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA=\""}]},{"Route":"js/mediaInterop.js","AssetFile":"js/mediaInterop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"2220"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA=\""},{"Name":"Last-Modified","Value":"Wed, 24 Dec 2025 09:42:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA="}]},{"Route":"js/mediaInterop.js.gz","AssetFile":"js/mediaInterop.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"545"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"T3/OBNOu36GO1osR/HPqSS4Kvfy+F1WbctC8XyL0RT8=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-T3/OBNOu36GO1osR/HPqSS4Kvfy+F1WbctC8XyL0RT8="}]},{"Route":"lib/cropper.min.9ydfkw1ttr.js","AssetFile":"lib/cropper.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000081799591"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12224"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CmAvCeXmzS67802QckdNfDy5ysuJ97AgSVrZr21Ayx4=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9ydfkw1ttr"},{"Name":"integrity","Value":"sha256-YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc="},{"Name":"label","Value":"lib/cropper.min.js"},{"Name":"original-resource","Value":"\"YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc=\""}]},{"Route":"lib/cropper.min.9ydfkw1ttr.js","AssetFile":"lib/cropper.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"37035"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc=\""},{"Name":"Last-Modified","Value":"Mon, 11 Aug 2025 12:38:41 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9ydfkw1ttr"},{"Name":"integrity","Value":"sha256-YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc="},{"Name":"label","Value":"lib/cropper.min.js"}]},{"Route":"lib/cropper.min.9ydfkw1ttr.js.gz","AssetFile":"lib/cropper.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12224"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CmAvCeXmzS67802QckdNfDy5ysuJ97AgSVrZr21Ayx4=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9ydfkw1ttr"},{"Name":"integrity","Value":"sha256-CmAvCeXmzS67802QckdNfDy5ysuJ97AgSVrZr21Ayx4="},{"Name":"label","Value":"lib/cropper.min.js.gz"}]},{"Route":"lib/cropper.min.css","AssetFile":"lib/cropper.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000788643533"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1267"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"NSflKeEMawOcrQQ9CCT+62GRXfxdx7lRqbo6s837Rco=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8="},{"Name":"original-resource","Value":"\"BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8=\""}]},{"Route":"lib/cropper.min.css","AssetFile":"lib/cropper.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"3804"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8=\""},{"Name":"Last-Modified","Value":"Mon, 11 Aug 2025 12:38:41 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8="}]},{"Route":"lib/cropper.min.css.gz","AssetFile":"lib/cropper.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1267"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"NSflKeEMawOcrQQ9CCT+62GRXfxdx7lRqbo6s837Rco=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NSflKeEMawOcrQQ9CCT+62GRXfxdx7lRqbo6s837Rco="}]},{"Route":"lib/cropper.min.js","AssetFile":"lib/cropper.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000081799591"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12224"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CmAvCeXmzS67802QckdNfDy5ysuJ97AgSVrZr21Ayx4=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc="},{"Name":"original-resource","Value":"\"YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc=\""}]},{"Route":"lib/cropper.min.js","AssetFile":"lib/cropper.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"37035"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc=\""},{"Name":"Last-Modified","Value":"Mon, 11 Aug 2025 12:38:41 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc="}]},{"Route":"lib/cropper.min.js.gz","AssetFile":"lib/cropper.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12224"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CmAvCeXmzS67802QckdNfDy5ysuJ97AgSVrZr21Ayx4=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CmAvCeXmzS67802QckdNfDy5ysuJ97AgSVrZr21Ayx4="}]},{"Route":"lib/cropper.min.tef8z25zm7.css","AssetFile":"lib/cropper.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000788643533"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1267"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"NSflKeEMawOcrQQ9CCT+62GRXfxdx7lRqbo6s837Rco=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tef8z25zm7"},{"Name":"integrity","Value":"sha256-BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8="},{"Name":"label","Value":"lib/cropper.min.css"},{"Name":"original-resource","Value":"\"BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8=\""}]},{"Route":"lib/cropper.min.tef8z25zm7.css","AssetFile":"lib/cropper.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3804"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8=\""},{"Name":"Last-Modified","Value":"Mon, 11 Aug 2025 12:38:41 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tef8z25zm7"},{"Name":"integrity","Value":"sha256-BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8="},{"Name":"label","Value":"lib/cropper.min.css"}]},{"Route":"lib/cropper.min.tef8z25zm7.css.gz","AssetFile":"lib/cropper.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1267"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"NSflKeEMawOcrQQ9CCT+62GRXfxdx7lRqbo6s837Rco=\""},{"Name":"Last-Modified","Value":"Sun, 01 Feb 2026 13:14:47 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tef8z25zm7"},{"Name":"integrity","Value":"sha256-NSflKeEMawOcrQQ9CCT+62GRXfxdx7lRqbo6s837Rco="},{"Name":"label","Value":"lib/cropper.min.css.gz"}]}]} \ No newline at end of file diff --git a/bin/Debug/net10.0/Media.staticwebassets.runtime.json b/bin/Debug/net10.0/Media.staticwebassets.runtime.json new file mode 100644 index 0000000..aca8c1f --- /dev/null +++ b/bin/Debug/net10.0/Media.staticwebassets.runtime.json @@ -0,0 +1 @@ +{"ContentRoots":["/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/","/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/compressed/"],"Root":{"Children":{"css":{"Children":{"cropper.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/cropper.min.css"},"Patterns":null},"cropper.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"63e88vs3br-{0}-ozxrxjrq84-ozxrxjrq84.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"crop.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/crop.js"},"Patterns":null},"crop.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lps60iqv38-{0}-rzaytjouo0-rzaytjouo0.gz"},"Patterns":null},"cropper.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/cropper.min.js"},"Patterns":null},"cropper.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"srub7l4ycb-{0}-llc9n82qda-llc9n82qda.gz"},"Patterns":null},"mediaInterop.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/mediaInterop.js"},"Patterns":null},"mediaInterop.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"do8do2nz96-{0}-j3t2utpur3-j3t2utpur3.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"lib":{"Children":{"cropper.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/cropper.min.css"},"Patterns":null},"cropper.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"0m7r05w73h-{0}-tef8z25zm7-tef8z25zm7.gz"},"Patterns":null},"cropper.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/cropper.min.js"},"Patterns":null},"cropper.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"xgz1hv2puc-{0}-9ydfkw1ttr-9ydfkw1ttr.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}} \ No newline at end of file diff --git a/bin/Debug/net9.0/Generic.Media.deps.json b/bin/Debug/net9.0/Generic.Media.deps.json new file mode 100644 index 0000000..b4c81cd --- /dev/null +++ b/bin/Debug/net9.0/Generic.Media.deps.json @@ -0,0 +1,228 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v9.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v9.0": { + "Generic.Media/1.0.0": { + "dependencies": { + "Microsoft.AspNetCore.Components.Web": "9.0.0" + }, + "runtime": { + "Generic.Media.dll": {} + } + }, + "Microsoft.AspNetCore.Authorization/9.0.0": { + "dependencies": { + "Microsoft.AspNetCore.Metadata": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Authorization.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52903" + } + } + }, + "Microsoft.AspNetCore.Components/9.0.0": { + "dependencies": { + "Microsoft.AspNetCore.Authorization": "9.0.0", + "Microsoft.AspNetCore.Components.Analyzers": "9.0.0" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Components.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52903" + } + } + }, + "Microsoft.AspNetCore.Components.Analyzers/9.0.0": {}, + "Microsoft.AspNetCore.Components.Forms/9.0.0": { + "dependencies": { + "Microsoft.AspNetCore.Components": "9.0.0" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Components.Forms.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52903" + } + } + }, + "Microsoft.AspNetCore.Components.Web/9.0.0": { + "dependencies": { + "Microsoft.AspNetCore.Components": "9.0.0", + "Microsoft.AspNetCore.Components.Forms": "9.0.0", + "Microsoft.Extensions.DependencyInjection": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0", + "Microsoft.JSInterop": "9.0.0" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Components.Web.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52903" + } + } + }, + "Microsoft.AspNetCore.Metadata/9.0.0": { + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Metadata.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52903" + } + } + }, + "Microsoft.Extensions.DependencyInjection/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": { + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Options/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Primitives/9.0.0": { + "runtime": { + "lib/net9.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.JSInterop/9.0.0": { + "runtime": { + "lib/net9.0/Microsoft.JSInterop.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52903" + } + } + } + } + }, + "libraries": { + "Generic.Media/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authorization/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qDJlBC5pUQ/3o6/C6Vuo9CGKtV5TAe5AdKeHvDR2bgmw8vwPxsAy3KG5eU0i1C+iAUNbmq+iDTbiKt16f9pRiA==", + "path": "microsoft.aspnetcore.authorization/9.0.0", + "hashPath": "microsoft.aspnetcore.authorization.9.0.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Components/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xKzY0LRqWrwuPVzKIF9k1kC21NrLmIE2qPhhKlInEAdYqNe8qcMoPWZy7fo1uScHkz5g73nTqDDra3+aAV7mTQ==", + "path": "microsoft.aspnetcore.components/9.0.0", + "hashPath": "microsoft.aspnetcore.components.9.0.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Components.Analyzers/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-maOE1qlJ9hf1Fb7PhFLw9bgP9mWckuDOcn1uKNt9/msdJG2YHl3cPRHojYa6CxliGHIXL8Da4qPgeUc4CaOoeg==", + "path": "microsoft.aspnetcore.components.analyzers/9.0.0", + "hashPath": "microsoft.aspnetcore.components.analyzers.9.0.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Components.Forms/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-orHGxDkbAa9syuaLVtZWOhNC8IddnCsDqpFaKjBj4zxe+B8cd6kcNf/t4Lv5hWBQ7mODiRCzEfKBnpU+GCHvbw==", + "path": "microsoft.aspnetcore.components.forms/9.0.0", + "hashPath": "microsoft.aspnetcore.components.forms.9.0.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Components.Web/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZfJwwV05T+268cnJsO6yfi9oXYLe3ATRAEk0VZgBMptA5HVsduIsnFLjhNOYT7+I8NolxDEx1CEW8yKe5xTb6Q==", + "path": "microsoft.aspnetcore.components.web/9.0.0", + "hashPath": "microsoft.aspnetcore.components.web.9.0.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Metadata/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X81C891nMuWgzNHyZ0C3s+blSDxRHzQHDFYQoOKtFvFuxGq3BbkLbc5CfiCqIzA/sWIfz6u8sGBgwntQwBJWBw==", + "path": "microsoft.aspnetcore.metadata/9.0.0", + "hashPath": "microsoft.aspnetcore.metadata.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MCPrg7v3QgNMr0vX4vzRXvkNGgLg8vKWX0nKCWUxu2uPyMsaRgiRc1tHBnbTcfJMhMKj2slE/j2M9oGkd25DNw==", + "path": "microsoft.extensions.dependencyinjection/9.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+6f2qv2a3dLwd5w6JanPIPs47CxRbnk+ZocMJUhv9NxP88VlOcJYZs9jY+MYSjxvady08bUZn6qgiNh7DadGgg==", + "path": "microsoft.extensions.dependencyinjection.abstractions/9.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-g0UfujELzlLbHoVG8kPKVBaW470Ewi+jnptGS9KUi6jcb+k2StujtK3m26DFSGGwQ/+bVgZfsWqNzlP6YOejvw==", + "path": "microsoft.extensions.logging.abstractions/9.0.0", + "hashPath": "microsoft.extensions.logging.abstractions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-y2146b3jrPI3Q0lokKXdKLpmXqakYbDIPDV6r3M8SqvSf45WwOTzkyfDpxnZXJsJQEpAsAqjUq5Pu8RCJMjubg==", + "path": "microsoft.extensions.options/9.0.0", + "hashPath": "microsoft.extensions.options.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-N3qEBzmLMYiASUlKxxFIISP4AiwuPTHF5uCh+2CWSwwzAJiIYx0kBJsS30cp1nvhSySFAVi30jecD307jV+8Kg==", + "path": "microsoft.extensions.primitives/9.0.0", + "hashPath": "microsoft.extensions.primitives.9.0.0.nupkg.sha512" + }, + "Microsoft.JSInterop/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-efQKxKUPe8OuH0hRiYsvBJkhhPzIYFNcr9+3wanQ7Bch/wr1JWNd90GYiPLtkSHepE1zMEoaLkAxi5N5/eyC4Q==", + "path": "microsoft.jsinterop/9.0.0", + "hashPath": "microsoft.jsinterop.9.0.0.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/bin/Debug/net9.0/Generic.Media.dll b/bin/Debug/net9.0/Generic.Media.dll new file mode 100644 index 0000000..ecd7b21 Binary files /dev/null and b/bin/Debug/net9.0/Generic.Media.dll differ diff --git a/bin/Debug/net9.0/Generic.Media.pdb b/bin/Debug/net9.0/Generic.Media.pdb new file mode 100644 index 0000000..bc92a4e Binary files /dev/null and b/bin/Debug/net9.0/Generic.Media.pdb differ diff --git a/bin/Debug/net9.0/Generic.Media.staticwebassets.endpoints.json b/bin/Debug/net9.0/Generic.Media.staticwebassets.endpoints.json new file mode 100644 index 0000000..ec6c3ed --- /dev/null +++ b/bin/Debug/net9.0/Generic.Media.staticwebassets.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[{"Route":"Generic.Media.styles.css","AssetFile":"Generic.Media.styles.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000797448166"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1253"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"5gWIdp1D63Vu8YsLtHQ6Ew9ZfmO5M9oM9hiI/iR7oNE=\""},{"Name":"ETag","Value":"W/\"nvrOLlRb1mr0LMAgVfeABhxTxgWSN9632m9bf1dnrvo=\""},{"Name":"Last-Modified","Value":"Sun, 21 Dec 2025 08:28:48 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nvrOLlRb1mr0LMAgVfeABhxTxgWSN9632m9bf1dnrvo="}]},{"Route":"Generic.Media.styles.css","AssetFile":"Generic.Media.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4439"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"nvrOLlRb1mr0LMAgVfeABhxTxgWSN9632m9bf1dnrvo=\""},{"Name":"Last-Modified","Value":"Sun, 21 Dec 2025 08:28:48 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nvrOLlRb1mr0LMAgVfeABhxTxgWSN9632m9bf1dnrvo="}]},{"Route":"Generic.Media.styles.css.gz","AssetFile":"Generic.Media.styles.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1253"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"5gWIdp1D63Vu8YsLtHQ6Ew9ZfmO5M9oM9hiI/iR7oNE=\""},{"Name":"Last-Modified","Value":"Sun, 21 Dec 2025 08:28:48 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5gWIdp1D63Vu8YsLtHQ6Ew9ZfmO5M9oM9hiI/iR7oNE="}]},{"Route":"Generic.Media.utf1jbkre2.styles.css","AssetFile":"Generic.Media.styles.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000797448166"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1253"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"5gWIdp1D63Vu8YsLtHQ6Ew9ZfmO5M9oM9hiI/iR7oNE=\""},{"Name":"ETag","Value":"W/\"nvrOLlRb1mr0LMAgVfeABhxTxgWSN9632m9bf1dnrvo=\""},{"Name":"Last-Modified","Value":"Sun, 21 Dec 2025 08:28:48 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"utf1jbkre2"},{"Name":"integrity","Value":"sha256-nvrOLlRb1mr0LMAgVfeABhxTxgWSN9632m9bf1dnrvo="},{"Name":"label","Value":"Generic.Media.styles.css"}]},{"Route":"Generic.Media.utf1jbkre2.styles.css","AssetFile":"Generic.Media.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4439"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"nvrOLlRb1mr0LMAgVfeABhxTxgWSN9632m9bf1dnrvo=\""},{"Name":"Last-Modified","Value":"Sun, 21 Dec 2025 08:28:48 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"utf1jbkre2"},{"Name":"integrity","Value":"sha256-nvrOLlRb1mr0LMAgVfeABhxTxgWSN9632m9bf1dnrvo="},{"Name":"label","Value":"Generic.Media.styles.css"}]},{"Route":"Generic.Media.utf1jbkre2.styles.css.gz","AssetFile":"Generic.Media.styles.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1253"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"5gWIdp1D63Vu8YsLtHQ6Ew9ZfmO5M9oM9hiI/iR7oNE=\""},{"Name":"Last-Modified","Value":"Sun, 21 Dec 2025 08:28:48 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"utf1jbkre2"},{"Name":"integrity","Value":"sha256-5gWIdp1D63Vu8YsLtHQ6Ew9ZfmO5M9oM9hiI/iR7oNE="},{"Name":"label","Value":"Generic.Media.styles.css.gz"}]}]} \ No newline at end of file diff --git a/bin/Debug/net9.0/Generic.Media.staticwebassets.runtime.json b/bin/Debug/net9.0/Generic.Media.staticwebassets.runtime.json new file mode 100644 index 0000000..00fa255 --- /dev/null +++ b/bin/Debug/net9.0/Generic.Media.staticwebassets.runtime.json @@ -0,0 +1 @@ +{"ContentRoots":["/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/scopedcss/bundle/","/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/compressed/","/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/wwwroot/"],"Root":{"Children":{"Generic.Media.styles.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"Generic.Media.styles.css"},"Patterns":null},"Generic.Media.styles.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"gn7dnb4sy6-utf1jbkre2.gz"},"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":2,"Pattern":"**","Depth":0}]}} \ No newline at end of file diff --git a/bin/Debug/net9.0/Media.deps.json b/bin/Debug/net9.0/Media.deps.json new file mode 100644 index 0000000..f3f423c --- /dev/null +++ b/bin/Debug/net9.0/Media.deps.json @@ -0,0 +1,455 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v9.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v9.0": { + "Media/1.0.0": { + "dependencies": { + "Blazored.LocalStorage": "4.5.0", + "Microsoft.AspNetCore.Components.Authorization": "9.0.0", + "Microsoft.AspNetCore.Components.Web": "9.0.0", + "Microsoft.Extensions.Http": "9.0.0", + "Microsoft.Extensions.Localization": "9.0.1" + }, + "runtime": { + "Media.dll": {} + } + }, + "Blazored.LocalStorage/4.5.0": { + "dependencies": { + "Microsoft.AspNetCore.Components.Web": "9.0.0" + }, + "runtime": { + "lib/net8.0/Blazored.LocalStorage.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Microsoft.AspNetCore.Authorization/9.0.0": { + "dependencies": { + "Microsoft.AspNetCore.Metadata": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.1", + "Microsoft.Extensions.Options": "9.0.1" + }, + "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.Authorization/9.0.0": { + "dependencies": { + "Microsoft.AspNetCore.Authorization": "9.0.0", + "Microsoft.AspNetCore.Components": "9.0.0" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Components.Authorization.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.1", + "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.Configuration/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.1" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Configuration.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.1" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Configuration.Binder/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Configuration.Binder.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.DependencyInjection/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.1" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.1": { + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.124.61010" + } + } + }, + "Microsoft.Extensions.Diagnostics/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Diagnostics.Abstractions": "9.0.0", + "Microsoft.Extensions.Options.ConfigurationExtensions": "9.0.0" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Diagnostics.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Diagnostics.Abstractions/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.1", + "Microsoft.Extensions.Options": "9.0.1" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Http/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.1", + "Microsoft.Extensions.Diagnostics": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.1", + "Microsoft.Extensions.Options": "9.0.1" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Http.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Localization/9.0.1": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.1", + "Microsoft.Extensions.Localization.Abstractions": "9.0.1", + "Microsoft.Extensions.Logging.Abstractions": "9.0.1", + "Microsoft.Extensions.Options": "9.0.1" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Localization.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.124.61009" + } + } + }, + "Microsoft.Extensions.Localization.Abstractions/9.0.1": { + "runtime": { + "lib/net9.0/Microsoft.Extensions.Localization.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.124.61009" + } + } + }, + "Microsoft.Extensions.Logging/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.1", + "Microsoft.Extensions.Options": "9.0.1" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.1": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.1" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.124.61010" + } + } + }, + "Microsoft.Extensions.Options/9.0.1": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.1", + "Microsoft.Extensions.Primitives": "9.0.1" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.124.61010" + } + } + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Configuration.Binder": "9.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.1", + "Microsoft.Extensions.Options": "9.0.1", + "Microsoft.Extensions.Primitives": "9.0.1" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Primitives/9.0.1": { + "runtime": { + "lib/net9.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.124.61010" + } + } + }, + "Microsoft.JSInterop/9.0.0": { + "runtime": { + "lib/net9.0/Microsoft.JSInterop.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52903" + } + } + } + } + }, + "libraries": { + "Media/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Blazored.LocalStorage/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6nZuJwA7zNIKx83IsObiHXZb09ponJOpCClU3en+hI8ZFvrOKXeOw+H7TegQZQrvdR1n9fkrVkEBQZg8vx6ZTw==", + "path": "blazored.localstorage/4.5.0", + "hashPath": "blazored.localstorage.4.5.0.nupkg.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.Authorization/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LD5ApnnUgMAyFDMKXqhyKFksnnxicGxE15dvC6rnOynFzj11Rvf7bENjTP9HUIbD64MYug+wlhl06A4nicw+RQ==", + "path": "microsoft.aspnetcore.components.authorization/9.0.0", + "hashPath": "microsoft.aspnetcore.components.authorization.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.Configuration/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YIMO9T3JL8MeEXgVozKt2v79hquo/EFtnY0vgxmLnUvk1Rei/halI7kOWZL2RBeV9FMGzgM9LZA8CVaNwFMaNA==", + "path": "microsoft.extensions.configuration/9.0.0", + "hashPath": "microsoft.extensions.configuration.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lqvd7W3FGKUO1+ZoUEMaZ5XDJeWvjpy2/M/ptCGz3tXLD4HWVaSzjufsAsjemasBEg+2SxXVtYVvGt5r2nKDlg==", + "path": "microsoft.extensions.configuration.abstractions/9.0.0", + "hashPath": "microsoft.extensions.configuration.abstractions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Binder/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RiScL99DcyngY9zJA2ROrri7Br8tn5N4hP4YNvGdTN/bvg1A3dwvDOxHnNZ3Im7x2SJ5i4LkX1uPiR/MfSFBLQ==", + "path": "microsoft.extensions.configuration.binder/9.0.0", + "hashPath": "microsoft.extensions.configuration.binder.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.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Tr74eP0oQ3AyC24ch17N8PuEkrPbD0JqIfENCYqmgKYNOmL8wQKzLJu3ObxTUDrjnn4rHoR1qKa37/eQyHmCDA==", + "path": "microsoft.extensions.dependencyinjection.abstractions/9.0.1", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.9.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Diagnostics/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0CF9ZrNw5RAlRfbZuVIvzzhP8QeWqHiUmMBU/2H7Nmit8/vwP3/SbHeEctth7D4Gz2fBnEbokPc1NU8/j/1ZLw==", + "path": "microsoft.extensions.diagnostics/9.0.0", + "hashPath": "microsoft.extensions.diagnostics.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Diagnostics.Abstractions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1K8P7XzuzX8W8pmXcZjcrqS6x5eSSdvhQohmcpgiQNY/HlDAlnrhR9dvlURfFz428A+RTCJpUyB+aKTA6AgVcQ==", + "path": "microsoft.extensions.diagnostics.abstractions/9.0.0", + "hashPath": "microsoft.extensions.diagnostics.abstractions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Http/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DqI4q54U4hH7bIAq9M5a/hl5Odr/KBAoaZ0dcT4OgutD8dook34CbkvAfAIzkMVjYXiL+E5ul9etwwqiX4PHGw==", + "path": "microsoft.extensions.http/9.0.0", + "hashPath": "microsoft.extensions.http.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Localization/9.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UgvX4Yb2T3tEsKT30ktZr0H7kTRPapCgEH0bdTwxiEGSdA39/hAQMvvb+vgHpqmevDU5+puyI9ujRkmmbF946w==", + "path": "microsoft.extensions.localization/9.0.1", + "hashPath": "microsoft.extensions.localization.9.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Localization.Abstractions/9.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CABog43lyaZQMjmlktuImCy6zmAzRBaXqN81uPaMQjlp//ISDVYItZPh6KWpWRF4MY/B67X5oDc3JTUpfdocZw==", + "path": "microsoft.extensions.localization.abstractions/9.0.1", + "hashPath": "microsoft.extensions.localization.abstractions.9.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-crjWyORoug0kK7RSNJBTeSE6VX8IQgLf3nUpTB9m62bPXp/tzbnOsnbe8TXEG0AASNaKZddnpHKw7fET8E++Pg==", + "path": "microsoft.extensions.logging/9.0.0", + "hashPath": "microsoft.extensions.logging.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-w2gUqXN/jNIuvqYwX3lbXagsizVNXYyt6LlF57+tMve4JYCEgCMMAjRce6uKcDASJgpMbErRT1PfHy2OhbkqEA==", + "path": "microsoft.extensions.logging.abstractions/9.0.1", + "hashPath": "microsoft.extensions.logging.abstractions.9.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Options/9.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nggoNKnWcsBIAaOWHA+53XZWrslC7aGeok+aR+epDPRy7HI7GwMnGZE8yEsL2Onw7kMOHVHwKcsDls1INkNUJQ==", + "path": "microsoft.extensions.options/9.0.1", + "hashPath": "microsoft.extensions.options.9.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Ob3FXsXkcSMQmGZi7qP07EQ39kZpSBlTcAZLbJLdI4FIf0Jug8biv2HTavWmnTirchctPlq9bl/26CXtQRguzA==", + "path": "microsoft.extensions.options.configurationextensions/9.0.0", + "hashPath": "microsoft.extensions.options.configurationextensions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/9.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bHtTesA4lrSGD1ZUaMIx6frU3wyy0vYtTa/hM6gGQu5QNrydObv8T5COiGUWsisflAfmsaFOe9Xvw5NSO99z0g==", + "path": "microsoft.extensions.primitives/9.0.1", + "hashPath": "microsoft.extensions.primitives.9.0.1.nupkg.sha512" + }, + "Microsoft.JSInterop/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-efQKxKUPe8OuH0hRiYsvBJkhhPzIYFNcr9+3wanQ7Bch/wr1JWNd90GYiPLtkSHepE1zMEoaLkAxi5N5/eyC4Q==", + "path": "microsoft.jsinterop/9.0.0", + "hashPath": "microsoft.jsinterop.9.0.0.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/bin/Debug/net9.0/Media.dll b/bin/Debug/net9.0/Media.dll new file mode 100644 index 0000000..9678c8f Binary files /dev/null and b/bin/Debug/net9.0/Media.dll differ diff --git a/bin/Debug/net9.0/Media.pdb b/bin/Debug/net9.0/Media.pdb new file mode 100644 index 0000000..069131a Binary files /dev/null and b/bin/Debug/net9.0/Media.pdb differ diff --git a/bin/Debug/net9.0/Media.staticwebassets.endpoints.json b/bin/Debug/net9.0/Media.staticwebassets.endpoints.json new file mode 100644 index 0000000..ece6fdb --- /dev/null +++ b/bin/Debug/net9.0/Media.staticwebassets.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[{"Route":"css/cropper.min.css","AssetFile":"css/cropper.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000749063670"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1334"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"MpKPXxBxrKehFS516PaXmpBvJtPuwJm+pYkcNqI9Epo=\""},{"Name":"ETag","Value":"W/\"LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4="}]},{"Route":"css/cropper.min.css","AssetFile":"css/cropper.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4947"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4=\""},{"Name":"Last-Modified","Value":"Sun, 21 Dec 2025 15:00:39 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4="}]},{"Route":"css/cropper.min.css.gz","AssetFile":"css/cropper.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1334"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"MpKPXxBxrKehFS516PaXmpBvJtPuwJm+pYkcNqI9Epo=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MpKPXxBxrKehFS516PaXmpBvJtPuwJm+pYkcNqI9Epo="}]},{"Route":"css/cropper.min.ozxrxjrq84.css","AssetFile":"css/cropper.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000749063670"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1334"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"MpKPXxBxrKehFS516PaXmpBvJtPuwJm+pYkcNqI9Epo=\""},{"Name":"ETag","Value":"W/\"LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ozxrxjrq84"},{"Name":"integrity","Value":"sha256-LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4="},{"Name":"label","Value":"css/cropper.min.css"}]},{"Route":"css/cropper.min.ozxrxjrq84.css","AssetFile":"css/cropper.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4947"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4=\""},{"Name":"Last-Modified","Value":"Sun, 21 Dec 2025 15:00:39 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ozxrxjrq84"},{"Name":"integrity","Value":"sha256-LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4="},{"Name":"label","Value":"css/cropper.min.css"}]},{"Route":"css/cropper.min.ozxrxjrq84.css.gz","AssetFile":"css/cropper.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1334"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"MpKPXxBxrKehFS516PaXmpBvJtPuwJm+pYkcNqI9Epo=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ozxrxjrq84"},{"Name":"integrity","Value":"sha256-MpKPXxBxrKehFS516PaXmpBvJtPuwJm+pYkcNqI9Epo="},{"Name":"label","Value":"css/cropper.min.css.gz"}]},{"Route":"js/crop.js","AssetFile":"js/crop.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001088139282"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"918"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4PKrXFgldfdLg4sTPCbLiDNGFl8cb0xvISy3R1WxV/A=\""},{"Name":"ETag","Value":"W/\"2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI="}]},{"Route":"js/crop.js","AssetFile":"js/crop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"2474"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI=\""},{"Name":"Last-Modified","Value":"Tue, 23 Dec 2025 11:59:06 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI="}]},{"Route":"js/crop.js.gz","AssetFile":"js/crop.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"918"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4PKrXFgldfdLg4sTPCbLiDNGFl8cb0xvISy3R1WxV/A=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4PKrXFgldfdLg4sTPCbLiDNGFl8cb0xvISy3R1WxV/A="}]},{"Route":"js/crop.rzaytjouo0.js","AssetFile":"js/crop.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001088139282"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"918"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4PKrXFgldfdLg4sTPCbLiDNGFl8cb0xvISy3R1WxV/A=\""},{"Name":"ETag","Value":"W/\"2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rzaytjouo0"},{"Name":"integrity","Value":"sha256-2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI="},{"Name":"label","Value":"js/crop.js"}]},{"Route":"js/crop.rzaytjouo0.js","AssetFile":"js/crop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"2474"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI=\""},{"Name":"Last-Modified","Value":"Tue, 23 Dec 2025 11:59:06 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rzaytjouo0"},{"Name":"integrity","Value":"sha256-2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI="},{"Name":"label","Value":"js/crop.js"}]},{"Route":"js/crop.rzaytjouo0.js.gz","AssetFile":"js/crop.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"918"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4PKrXFgldfdLg4sTPCbLiDNGFl8cb0xvISy3R1WxV/A=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rzaytjouo0"},{"Name":"integrity","Value":"sha256-4PKrXFgldfdLg4sTPCbLiDNGFl8cb0xvISy3R1WxV/A="},{"Name":"label","Value":"js/crop.js.gz"}]},{"Route":"js/cropper.min.js","AssetFile":"js/cropper.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000156323277"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6396"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"foJ0q5a8aDAR6XNITGSl1z7UCT1gz628l6VhbhipoeE=\""},{"Name":"ETag","Value":"W/\"Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI="}]},{"Route":"js/cropper.min.js","AssetFile":"js/cropper.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"22252"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI=\""},{"Name":"Last-Modified","Value":"Sun, 21 Dec 2025 18:23:00 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI="}]},{"Route":"js/cropper.min.js.gz","AssetFile":"js/cropper.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6396"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"foJ0q5a8aDAR6XNITGSl1z7UCT1gz628l6VhbhipoeE=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-foJ0q5a8aDAR6XNITGSl1z7UCT1gz628l6VhbhipoeE="}]},{"Route":"js/cropper.min.llc9n82qda.js","AssetFile":"js/cropper.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000156323277"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6396"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"foJ0q5a8aDAR6XNITGSl1z7UCT1gz628l6VhbhipoeE=\""},{"Name":"ETag","Value":"W/\"Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"llc9n82qda"},{"Name":"integrity","Value":"sha256-Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI="},{"Name":"label","Value":"js/cropper.min.js"}]},{"Route":"js/cropper.min.llc9n82qda.js","AssetFile":"js/cropper.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"22252"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI=\""},{"Name":"Last-Modified","Value":"Sun, 21 Dec 2025 18:23:00 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"llc9n82qda"},{"Name":"integrity","Value":"sha256-Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI="},{"Name":"label","Value":"js/cropper.min.js"}]},{"Route":"js/cropper.min.llc9n82qda.js.gz","AssetFile":"js/cropper.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6396"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"foJ0q5a8aDAR6XNITGSl1z7UCT1gz628l6VhbhipoeE=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"llc9n82qda"},{"Name":"integrity","Value":"sha256-foJ0q5a8aDAR6XNITGSl1z7UCT1gz628l6VhbhipoeE="},{"Name":"label","Value":"js/cropper.min.js.gz"}]},{"Route":"js/mediaInterop.j3t2utpur3.js","AssetFile":"js/mediaInterop.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001831501832"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"545"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"T3/OBNOu36GO1osR/HPqSS4Kvfy+F1WbctC8XyL0RT8=\""},{"Name":"ETag","Value":"W/\"z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j3t2utpur3"},{"Name":"integrity","Value":"sha256-z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA="},{"Name":"label","Value":"js/mediaInterop.js"}]},{"Route":"js/mediaInterop.j3t2utpur3.js","AssetFile":"js/mediaInterop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"2220"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA=\""},{"Name":"Last-Modified","Value":"Wed, 24 Dec 2025 09:42:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j3t2utpur3"},{"Name":"integrity","Value":"sha256-z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA="},{"Name":"label","Value":"js/mediaInterop.js"}]},{"Route":"js/mediaInterop.j3t2utpur3.js.gz","AssetFile":"js/mediaInterop.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"545"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"T3/OBNOu36GO1osR/HPqSS4Kvfy+F1WbctC8XyL0RT8=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j3t2utpur3"},{"Name":"integrity","Value":"sha256-T3/OBNOu36GO1osR/HPqSS4Kvfy+F1WbctC8XyL0RT8="},{"Name":"label","Value":"js/mediaInterop.js.gz"}]},{"Route":"js/mediaInterop.js","AssetFile":"js/mediaInterop.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001831501832"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"545"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"T3/OBNOu36GO1osR/HPqSS4Kvfy+F1WbctC8XyL0RT8=\""},{"Name":"ETag","Value":"W/\"z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA="}]},{"Route":"js/mediaInterop.js","AssetFile":"js/mediaInterop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"2220"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA=\""},{"Name":"Last-Modified","Value":"Wed, 24 Dec 2025 09:42:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA="}]},{"Route":"js/mediaInterop.js.gz","AssetFile":"js/mediaInterop.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"545"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"T3/OBNOu36GO1osR/HPqSS4Kvfy+F1WbctC8XyL0RT8=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-T3/OBNOu36GO1osR/HPqSS4Kvfy+F1WbctC8XyL0RT8="}]},{"Route":"lib/cropper.min.9ydfkw1ttr.js","AssetFile":"lib/cropper.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000081799591"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12224"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CmAvCeXmzS67802QckdNfDy5ysuJ97AgSVrZr21Ayx4=\""},{"Name":"ETag","Value":"W/\"YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9ydfkw1ttr"},{"Name":"integrity","Value":"sha256-YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc="},{"Name":"label","Value":"lib/cropper.min.js"}]},{"Route":"lib/cropper.min.9ydfkw1ttr.js","AssetFile":"lib/cropper.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"37035"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc=\""},{"Name":"Last-Modified","Value":"Mon, 11 Aug 2025 12:38:41 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9ydfkw1ttr"},{"Name":"integrity","Value":"sha256-YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc="},{"Name":"label","Value":"lib/cropper.min.js"}]},{"Route":"lib/cropper.min.9ydfkw1ttr.js.gz","AssetFile":"lib/cropper.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12224"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CmAvCeXmzS67802QckdNfDy5ysuJ97AgSVrZr21Ayx4=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9ydfkw1ttr"},{"Name":"integrity","Value":"sha256-CmAvCeXmzS67802QckdNfDy5ysuJ97AgSVrZr21Ayx4="},{"Name":"label","Value":"lib/cropper.min.js.gz"}]},{"Route":"lib/cropper.min.css","AssetFile":"lib/cropper.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000788643533"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1267"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"NSflKeEMawOcrQQ9CCT+62GRXfxdx7lRqbo6s837Rco=\""},{"Name":"ETag","Value":"W/\"BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8="}]},{"Route":"lib/cropper.min.css","AssetFile":"lib/cropper.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"3804"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8=\""},{"Name":"Last-Modified","Value":"Mon, 11 Aug 2025 12:38:41 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8="}]},{"Route":"lib/cropper.min.css.gz","AssetFile":"lib/cropper.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1267"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"NSflKeEMawOcrQQ9CCT+62GRXfxdx7lRqbo6s837Rco=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NSflKeEMawOcrQQ9CCT+62GRXfxdx7lRqbo6s837Rco="}]},{"Route":"lib/cropper.min.js","AssetFile":"lib/cropper.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000081799591"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12224"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CmAvCeXmzS67802QckdNfDy5ysuJ97AgSVrZr21Ayx4=\""},{"Name":"ETag","Value":"W/\"YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc="}]},{"Route":"lib/cropper.min.js","AssetFile":"lib/cropper.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"37035"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc=\""},{"Name":"Last-Modified","Value":"Mon, 11 Aug 2025 12:38:41 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc="}]},{"Route":"lib/cropper.min.js.gz","AssetFile":"lib/cropper.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12224"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CmAvCeXmzS67802QckdNfDy5ysuJ97AgSVrZr21Ayx4=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CmAvCeXmzS67802QckdNfDy5ysuJ97AgSVrZr21Ayx4="}]},{"Route":"lib/cropper.min.tef8z25zm7.css","AssetFile":"lib/cropper.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000788643533"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1267"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"NSflKeEMawOcrQQ9CCT+62GRXfxdx7lRqbo6s837Rco=\""},{"Name":"ETag","Value":"W/\"BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tef8z25zm7"},{"Name":"integrity","Value":"sha256-BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8="},{"Name":"label","Value":"lib/cropper.min.css"}]},{"Route":"lib/cropper.min.tef8z25zm7.css","AssetFile":"lib/cropper.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3804"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8=\""},{"Name":"Last-Modified","Value":"Mon, 11 Aug 2025 12:38:41 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tef8z25zm7"},{"Name":"integrity","Value":"sha256-BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8="},{"Name":"label","Value":"lib/cropper.min.css"}]},{"Route":"lib/cropper.min.tef8z25zm7.css.gz","AssetFile":"lib/cropper.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1267"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"NSflKeEMawOcrQQ9CCT+62GRXfxdx7lRqbo6s837Rco=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tef8z25zm7"},{"Name":"integrity","Value":"sha256-NSflKeEMawOcrQQ9CCT+62GRXfxdx7lRqbo6s837Rco="},{"Name":"label","Value":"lib/cropper.min.css.gz"}]}]} \ No newline at end of file diff --git a/bin/Debug/net9.0/Media.staticwebassets.runtime.json b/bin/Debug/net9.0/Media.staticwebassets.runtime.json new file mode 100644 index 0000000..a33c048 --- /dev/null +++ b/bin/Debug/net9.0/Media.staticwebassets.runtime.json @@ -0,0 +1 @@ +{"ContentRoots":["/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/","/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/compressed/"],"Root":{"Children":{"css":{"Children":{"cropper.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/cropper.min.css"},"Patterns":null},"cropper.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"63e88vs3br-{0}-ozxrxjrq84-ozxrxjrq84.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"crop.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/crop.js"},"Patterns":null},"crop.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lps60iqv38-{0}-rzaytjouo0-rzaytjouo0.gz"},"Patterns":null},"cropper.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/cropper.min.js"},"Patterns":null},"cropper.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"srub7l4ycb-{0}-llc9n82qda-llc9n82qda.gz"},"Patterns":null},"mediaInterop.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/mediaInterop.js"},"Patterns":null},"mediaInterop.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"do8do2nz96-{0}-j3t2utpur3-j3t2utpur3.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"lib":{"Children":{"cropper.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/cropper.min.css"},"Patterns":null},"cropper.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"0m7r05w73h-{0}-tef8z25zm7-tef8z25zm7.gz"},"Patterns":null},"cropper.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/cropper.min.js"},"Patterns":null},"cropper.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"xgz1hv2puc-{0}-9ydfkw1ttr-9ydfkw1ttr.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}} \ No newline at end of file diff --git a/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs b/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs new file mode 100644 index 0000000..925b135 --- /dev/null +++ b/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v10.0", FrameworkDisplayName = ".NET 10.0")] diff --git a/obj/Debug/net10.0/EmbeddedAttribute.cs b/obj/Debug/net10.0/EmbeddedAttribute.cs new file mode 100644 index 0000000..1931537 --- /dev/null +++ b/obj/Debug/net10.0/EmbeddedAttribute.cs @@ -0,0 +1,7 @@ +// +namespace Microsoft.CodeAnalysis +{ +internal sealed partial class EmbeddedAttribute : global::System.Attribute +{ +} +} diff --git a/obj/Debug/net10.0/Media.AssemblyInfo.cs b/obj/Debug/net10.0/Media.AssemblyInfo.cs new file mode 100644 index 0000000..6a9e7cc --- /dev/null +++ b/obj/Debug/net10.0/Media.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Media")] +[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("Media")] +[assembly: System.Reflection.AssemblyTitleAttribute("Media")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/obj/Debug/net10.0/Media.AssemblyInfoInputs.cache b/obj/Debug/net10.0/Media.AssemblyInfoInputs.cache new file mode 100644 index 0000000..2c45f63 --- /dev/null +++ b/obj/Debug/net10.0/Media.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +8a8cf2a30cbf24199b8398c214e783c86dd4e82dbcdf7af3347ae9814c45ea4c diff --git a/obj/Debug/net10.0/Media.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net10.0/Media.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..77f81dd --- /dev/null +++ b/obj/Debug/net10.0/Media.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,59 @@ +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.Media +build_property.RootNamespace = Generic.Media +build_property.ProjectDir = /mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/ +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/Media +build_property._RazorSourceGeneratorDebug = +build_property.EffectiveAnalysisLevelStyle = 10.0 +build_property.EnableCodeStyleSeverity = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Components/Cropper.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9Dcm9wcGVyLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Components/ExternalLinkInput.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9FeHRlcm5hbExpbmtJbnB1dC5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Components/ImageCropper.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9JbWFnZUNyb3BwZXIucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Components/Media.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9NZWRpYS5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Components/MediaDropZone.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9NZWRpYURyb3Bab25lLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Components/MediaItemCard.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9NZWRpYUl0ZW1DYXJkLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Components/MediaUploadContainer.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9NZWRpYVVwbG9hZENvbnRhaW5lci5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Components/SortableMediaList.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9Tb3J0YWJsZU1lZGlhTGlzdC5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/_Imports.razor] +build_metadata.AdditionalFiles.TargetPath = X0ltcG9ydHMucmF6b3I= +build_metadata.AdditionalFiles.CssScope = diff --git a/obj/Debug/net10.0/Media.GlobalUsings.g.cs b/obj/Debug/net10.0/Media.GlobalUsings.g.cs new file mode 100644 index 0000000..a32ec4a --- /dev/null +++ b/obj/Debug/net10.0/Media.GlobalUsings.g.cs @@ -0,0 +1,9 @@ +// +global using Microsoft.Extensions.Validation.Embedded; +global using System; +global using System.Collections.Generic; +global using System.IO; +global using System.Linq; +global using System.Net.Http; +global using System.Threading; +global using System.Threading.Tasks; diff --git a/obj/Debug/net10.0/Media.RCL.AssemblyInfo.cs b/obj/Debug/net10.0/Media.RCL.AssemblyInfo.cs new file mode 100644 index 0000000..1661a19 --- /dev/null +++ b/obj/Debug/net10.0/Media.RCL.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Media.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("Media.RCL")] +[assembly: System.Reflection.AssemblyTitleAttribute("Media.RCL")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/obj/Debug/net10.0/Media.RCL.AssemblyInfoInputs.cache b/obj/Debug/net10.0/Media.RCL.AssemblyInfoInputs.cache new file mode 100644 index 0000000..1808ae8 --- /dev/null +++ b/obj/Debug/net10.0/Media.RCL.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +953efd96418309f33dafb27cfff732f001617a1c9963da5d96287758d62bffa8 diff --git a/obj/Debug/net10.0/Media.RCL.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net10.0/Media.RCL.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..645aefd --- /dev/null +++ b/obj/Debug/net10.0/Media.RCL.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,59 @@ +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.Media +build_property.RootNamespace = Generic.Media +build_property.ProjectDir = /mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.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/Media/Media.RCL +build_property._RazorSourceGeneratorDebug = +build_property.EffectiveAnalysisLevelStyle = 10.0 +build_property.EnableCodeStyleSeverity = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/Components/Cropper.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9Dcm9wcGVyLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/Components/ExternalLinkInput.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9FeHRlcm5hbExpbmtJbnB1dC5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/Components/ImageCropper.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9JbWFnZUNyb3BwZXIucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/Components/Media.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9NZWRpYS5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/Components/MediaDropZone.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9NZWRpYURyb3Bab25lLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/Components/MediaItemCard.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9NZWRpYUl0ZW1DYXJkLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/Components/MediaUploadContainer.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9NZWRpYVVwbG9hZENvbnRhaW5lci5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/Components/SortableMediaList.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9Tb3J0YWJsZU1lZGlhTGlzdC5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/_Imports.razor] +build_metadata.AdditionalFiles.TargetPath = X0ltcG9ydHMucmF6b3I= +build_metadata.AdditionalFiles.CssScope = diff --git a/obj/Debug/net10.0/Media.RCL.GlobalUsings.g.cs b/obj/Debug/net10.0/Media.RCL.GlobalUsings.g.cs new file mode 100644 index 0000000..a32ec4a --- /dev/null +++ b/obj/Debug/net10.0/Media.RCL.GlobalUsings.g.cs @@ -0,0 +1,9 @@ +// +global using Microsoft.Extensions.Validation.Embedded; +global using System; +global using System.Collections.Generic; +global using System.IO; +global using System.Linq; +global using System.Net.Http; +global using System.Threading; +global using System.Threading.Tasks; diff --git a/obj/Debug/net10.0/Media.RCL.assets.cache b/obj/Debug/net10.0/Media.RCL.assets.cache new file mode 100644 index 0000000..55b7ba8 Binary files /dev/null and b/obj/Debug/net10.0/Media.RCL.assets.cache differ diff --git a/obj/Debug/net10.0/Media.RCL.csproj.AssemblyReference.cache b/obj/Debug/net10.0/Media.RCL.csproj.AssemblyReference.cache new file mode 100644 index 0000000..9896828 Binary files /dev/null and b/obj/Debug/net10.0/Media.RCL.csproj.AssemblyReference.cache differ diff --git a/obj/Debug/net10.0/Media.RCL.csproj.CoreCompileInputs.cache b/obj/Debug/net10.0/Media.RCL.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..7970c81 --- /dev/null +++ b/obj/Debug/net10.0/Media.RCL.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +bbcbd4f6369eff106830bbf0bb27b7da56c2c4ddf2620116a2889029e7002454 diff --git a/obj/Debug/net10.0/Media.RCL.csproj.FileListAbsolute.txt b/obj/Debug/net10.0/Media.RCL.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..eadb53b --- /dev/null +++ b/obj/Debug/net10.0/Media.RCL.csproj.FileListAbsolute.txt @@ -0,0 +1,38 @@ +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/bin/Debug/net10.0/Media.RCL.staticwebassets.runtime.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/bin/Debug/net10.0/Media.RCL.staticwebassets.endpoints.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/bin/Debug/net10.0/Media.RCL.deps.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/bin/Debug/net10.0/Media.RCL.dll +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/bin/Debug/net10.0/Media.RCL.pdb +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/EmbeddedAttribute.cs +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/ValidatableTypeAttribute.cs +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/Media.RCL.csproj.AssemblyReference.cache +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/rpswa.dswa.cache.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/Media.RCL.GeneratedMSBuildEditorConfig.editorconfig +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/Media.RCL.AssemblyInfoInputs.cache +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/Media.RCL.AssemblyInfo.cs +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/Media.RCL.csproj.CoreCompileInputs.cache +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/rjimswa.dswa.cache.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/rjsmrazor.dswa.cache.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/scopedcss/bundle/Media.RCL.styles.css +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/compressed/w5z14dlnee-{0}-ozxrxjrq84-ozxrxjrq84.gz +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/compressed/hk7nq8n70x-{0}-rzaytjouo0-rzaytjouo0.gz +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/compressed/c4qv7zag90-{0}-llc9n82qda-llc9n82qda.gz +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/compressed/8rzz1ly4wd-{0}-j3t2utpur3-j3t2utpur3.gz +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/compressed/nsvlrsxof5-{0}-tef8z25zm7-tef8z25zm7.gz +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/compressed/ke9t4lehyl-{0}-9ydfkw1ttr-9ydfkw1ttr.gz +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/staticwebassets.build.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/staticwebassets.build.json.cache +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/staticwebassets.development.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/staticwebassets.build.endpoints.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/swae.build.ex.cache +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/staticwebassets/msbuild.Media.RCL.Microsoft.AspNetCore.StaticWebAssets.props +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/staticwebassets/msbuild.Media.RCL.Microsoft.AspNetCore.StaticWebAssetEndpoints.props +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/staticwebassets/msbuild.build.Media.RCL.props +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/staticwebassets/msbuild.buildMultiTargeting.Media.RCL.props +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/staticwebassets/msbuild.buildTransitive.Media.RCL.props +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/staticwebassets.pack.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/Media.RCL.dll +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/refint/Media.RCL.dll +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/Media.RCL.pdb +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/ref/Media.RCL.dll diff --git a/obj/Debug/net10.0/Media.RCL.dll b/obj/Debug/net10.0/Media.RCL.dll new file mode 100644 index 0000000..7f12b4f Binary files /dev/null and b/obj/Debug/net10.0/Media.RCL.dll differ diff --git a/obj/Debug/net10.0/Media.RCL.pdb b/obj/Debug/net10.0/Media.RCL.pdb new file mode 100644 index 0000000..58a7b2b Binary files /dev/null and b/obj/Debug/net10.0/Media.RCL.pdb differ diff --git a/obj/Debug/net10.0/Media.assets.cache b/obj/Debug/net10.0/Media.assets.cache new file mode 100644 index 0000000..d3c9574 Binary files /dev/null and b/obj/Debug/net10.0/Media.assets.cache differ diff --git a/obj/Debug/net10.0/Media.csproj.AssemblyReference.cache b/obj/Debug/net10.0/Media.csproj.AssemblyReference.cache new file mode 100644 index 0000000..9896828 Binary files /dev/null and b/obj/Debug/net10.0/Media.csproj.AssemblyReference.cache differ diff --git a/obj/Debug/net10.0/Media.csproj.CoreCompileInputs.cache b/obj/Debug/net10.0/Media.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..3668b6f --- /dev/null +++ b/obj/Debug/net10.0/Media.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +80daef2f72f60b0292c84e0f54e46c01c6abf6612ddac3f786ab6cda5e9f803a diff --git a/obj/Debug/net10.0/Media.csproj.FileListAbsolute.txt b/obj/Debug/net10.0/Media.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..08dc817 --- /dev/null +++ b/obj/Debug/net10.0/Media.csproj.FileListAbsolute.txt @@ -0,0 +1,76 @@ +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/bin/Debug/net10.0/Media.staticwebassets.runtime.json +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/bin/Debug/net10.0/Media.staticwebassets.endpoints.json +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/bin/Debug/net10.0/Media.deps.json +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/bin/Debug/net10.0/Media.dll +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/bin/Debug/net10.0/Media.pdb +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/EmbeddedAttribute.cs +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/ValidatableTypeAttribute.cs +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/Media.csproj.AssemblyReference.cache +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/rpswa.dswa.cache.json +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/Media.GeneratedMSBuildEditorConfig.editorconfig +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/Media.AssemblyInfoInputs.cache +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/Media.AssemblyInfo.cs +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/Media.csproj.CoreCompileInputs.cache +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/rjimswa.dswa.cache.json +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/rjsmrazor.dswa.cache.json +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/scopedcss/bundle/Media.styles.css +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/compressed/63e88vs3br-{0}-ozxrxjrq84-ozxrxjrq84.gz +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/compressed/lps60iqv38-{0}-rzaytjouo0-rzaytjouo0.gz +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/compressed/srub7l4ycb-{0}-llc9n82qda-llc9n82qda.gz +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/compressed/do8do2nz96-{0}-j3t2utpur3-j3t2utpur3.gz +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/compressed/0m7r05w73h-{0}-tef8z25zm7-tef8z25zm7.gz +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/compressed/xgz1hv2puc-{0}-9ydfkw1ttr-9ydfkw1ttr.gz +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/staticwebassets.build.json +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/staticwebassets.build.json.cache +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/staticwebassets.development.json +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/staticwebassets.build.endpoints.json +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/swae.build.ex.cache +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/staticwebassets/msbuild.Media.Microsoft.AspNetCore.StaticWebAssets.props +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/staticwebassets/msbuild.Media.Microsoft.AspNetCore.StaticWebAssetEndpoints.props +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/staticwebassets/msbuild.build.Media.props +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/staticwebassets/msbuild.buildMultiTargeting.Media.props +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/staticwebassets/msbuild.buildTransitive.Media.props +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/staticwebassets.pack.json +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/Media.dll +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/refint/Media.dll +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/Media.pdb +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/ref/Media.dll +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/bin/Debug/net10.0/Media.staticwebassets.runtime.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/bin/Debug/net10.0/Media.staticwebassets.endpoints.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/bin/Debug/net10.0/Media.deps.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/bin/Debug/net10.0/Media.dll +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/bin/Debug/net10.0/Media.pdb +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/EmbeddedAttribute.cs +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/ValidatableTypeAttribute.cs +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/Media.csproj.AssemblyReference.cache +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/rpswa.dswa.cache.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/Media.GeneratedMSBuildEditorConfig.editorconfig +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/Media.AssemblyInfoInputs.cache +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/Media.AssemblyInfo.cs +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/Media.csproj.CoreCompileInputs.cache +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/rjimswa.dswa.cache.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/rjsmrazor.dswa.cache.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/scopedcss/bundle/Media.styles.css +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/compressed/63e88vs3br-{0}-ozxrxjrq84-ozxrxjrq84.gz +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/compressed/lps60iqv38-{0}-rzaytjouo0-rzaytjouo0.gz +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/compressed/srub7l4ycb-{0}-llc9n82qda-llc9n82qda.gz +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/compressed/do8do2nz96-{0}-j3t2utpur3-j3t2utpur3.gz +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/compressed/0m7r05w73h-{0}-tef8z25zm7-tef8z25zm7.gz +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/compressed/xgz1hv2puc-{0}-9ydfkw1ttr-9ydfkw1ttr.gz +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/staticwebassets.build.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/staticwebassets.build.json.cache +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/staticwebassets.development.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/staticwebassets.build.endpoints.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/swae.build.ex.cache +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/staticwebassets/msbuild.Media.Microsoft.AspNetCore.StaticWebAssets.props +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/staticwebassets/msbuild.Media.Microsoft.AspNetCore.StaticWebAssetEndpoints.props +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/staticwebassets/msbuild.build.Media.props +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/staticwebassets/msbuild.buildMultiTargeting.Media.props +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/staticwebassets/msbuild.buildTransitive.Media.props +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/staticwebassets.pack.json +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/Media.dll +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/refint/Media.dll +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/Media.pdb +/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net10.0/ref/Media.dll diff --git a/obj/Debug/net10.0/Media.dll b/obj/Debug/net10.0/Media.dll new file mode 100644 index 0000000..909b24e Binary files /dev/null and b/obj/Debug/net10.0/Media.dll differ diff --git a/obj/Debug/net10.0/Media.pdb b/obj/Debug/net10.0/Media.pdb new file mode 100644 index 0000000..9e33f61 Binary files /dev/null and b/obj/Debug/net10.0/Media.pdb differ diff --git a/obj/Debug/net10.0/ValidatableTypeAttribute.cs b/obj/Debug/net10.0/ValidatableTypeAttribute.cs new file mode 100644 index 0000000..26eb880 --- /dev/null +++ b/obj/Debug/net10.0/ValidatableTypeAttribute.cs @@ -0,0 +1,9 @@ +// +namespace Microsoft.Extensions.Validation.Embedded +{ +[global::Microsoft.CodeAnalysis.EmbeddedAttribute] +[global::System.AttributeUsage(global::System.AttributeTargets.Class)] +internal sealed class ValidatableTypeAttribute : global::System.Attribute +{ +} +} diff --git a/obj/Debug/net10.0/compressed/0m7r05w73h-{0}-tef8z25zm7-tef8z25zm7.gz b/obj/Debug/net10.0/compressed/0m7r05w73h-{0}-tef8z25zm7-tef8z25zm7.gz new file mode 100644 index 0000000..c5c8719 Binary files /dev/null and b/obj/Debug/net10.0/compressed/0m7r05w73h-{0}-tef8z25zm7-tef8z25zm7.gz differ diff --git a/obj/Debug/net10.0/compressed/63e88vs3br-{0}-ozxrxjrq84-ozxrxjrq84.gz b/obj/Debug/net10.0/compressed/63e88vs3br-{0}-ozxrxjrq84-ozxrxjrq84.gz new file mode 100644 index 0000000..84df594 Binary files /dev/null and b/obj/Debug/net10.0/compressed/63e88vs3br-{0}-ozxrxjrq84-ozxrxjrq84.gz differ diff --git a/obj/Debug/net10.0/compressed/8rzz1ly4wd-{0}-j3t2utpur3-j3t2utpur3.gz b/obj/Debug/net10.0/compressed/8rzz1ly4wd-{0}-j3t2utpur3-j3t2utpur3.gz new file mode 100644 index 0000000..d33a034 Binary files /dev/null and b/obj/Debug/net10.0/compressed/8rzz1ly4wd-{0}-j3t2utpur3-j3t2utpur3.gz differ diff --git a/obj/Debug/net10.0/compressed/c4qv7zag90-{0}-llc9n82qda-llc9n82qda.gz b/obj/Debug/net10.0/compressed/c4qv7zag90-{0}-llc9n82qda-llc9n82qda.gz new file mode 100644 index 0000000..609cafe Binary files /dev/null and b/obj/Debug/net10.0/compressed/c4qv7zag90-{0}-llc9n82qda-llc9n82qda.gz differ diff --git a/obj/Debug/net10.0/compressed/do8do2nz96-{0}-j3t2utpur3-j3t2utpur3.gz b/obj/Debug/net10.0/compressed/do8do2nz96-{0}-j3t2utpur3-j3t2utpur3.gz new file mode 100644 index 0000000..d33a034 Binary files /dev/null and b/obj/Debug/net10.0/compressed/do8do2nz96-{0}-j3t2utpur3-j3t2utpur3.gz differ diff --git a/obj/Debug/net10.0/compressed/hk7nq8n70x-{0}-rzaytjouo0-rzaytjouo0.gz b/obj/Debug/net10.0/compressed/hk7nq8n70x-{0}-rzaytjouo0-rzaytjouo0.gz new file mode 100644 index 0000000..e846831 Binary files /dev/null and b/obj/Debug/net10.0/compressed/hk7nq8n70x-{0}-rzaytjouo0-rzaytjouo0.gz differ diff --git a/obj/Debug/net10.0/compressed/ke9t4lehyl-{0}-9ydfkw1ttr-9ydfkw1ttr.gz b/obj/Debug/net10.0/compressed/ke9t4lehyl-{0}-9ydfkw1ttr-9ydfkw1ttr.gz new file mode 100644 index 0000000..a04c7c0 Binary files /dev/null and b/obj/Debug/net10.0/compressed/ke9t4lehyl-{0}-9ydfkw1ttr-9ydfkw1ttr.gz differ diff --git a/obj/Debug/net10.0/compressed/lps60iqv38-{0}-rzaytjouo0-rzaytjouo0.gz b/obj/Debug/net10.0/compressed/lps60iqv38-{0}-rzaytjouo0-rzaytjouo0.gz new file mode 100644 index 0000000..e846831 Binary files /dev/null and b/obj/Debug/net10.0/compressed/lps60iqv38-{0}-rzaytjouo0-rzaytjouo0.gz differ diff --git a/obj/Debug/net10.0/compressed/nsvlrsxof5-{0}-tef8z25zm7-tef8z25zm7.gz b/obj/Debug/net10.0/compressed/nsvlrsxof5-{0}-tef8z25zm7-tef8z25zm7.gz new file mode 100644 index 0000000..c5c8719 Binary files /dev/null and b/obj/Debug/net10.0/compressed/nsvlrsxof5-{0}-tef8z25zm7-tef8z25zm7.gz differ diff --git a/obj/Debug/net10.0/compressed/srub7l4ycb-{0}-llc9n82qda-llc9n82qda.gz b/obj/Debug/net10.0/compressed/srub7l4ycb-{0}-llc9n82qda-llc9n82qda.gz new file mode 100644 index 0000000..609cafe Binary files /dev/null and b/obj/Debug/net10.0/compressed/srub7l4ycb-{0}-llc9n82qda-llc9n82qda.gz differ diff --git a/obj/Debug/net10.0/compressed/w5z14dlnee-{0}-ozxrxjrq84-ozxrxjrq84.gz b/obj/Debug/net10.0/compressed/w5z14dlnee-{0}-ozxrxjrq84-ozxrxjrq84.gz new file mode 100644 index 0000000..84df594 Binary files /dev/null and b/obj/Debug/net10.0/compressed/w5z14dlnee-{0}-ozxrxjrq84-ozxrxjrq84.gz differ diff --git a/obj/Debug/net10.0/compressed/xgz1hv2puc-{0}-9ydfkw1ttr-9ydfkw1ttr.gz b/obj/Debug/net10.0/compressed/xgz1hv2puc-{0}-9ydfkw1ttr-9ydfkw1ttr.gz new file mode 100644 index 0000000..a04c7c0 Binary files /dev/null and b/obj/Debug/net10.0/compressed/xgz1hv2puc-{0}-9ydfkw1ttr-9ydfkw1ttr.gz differ diff --git a/obj/Debug/net10.0/rbcswa.dswa.cache.json b/obj/Debug/net10.0/rbcswa.dswa.cache.json new file mode 100644 index 0000000..65209d1 --- /dev/null +++ b/obj/Debug/net10.0/rbcswa.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"2ilJ2M8+ZdH0swl4cXFj9Ji8kay0R08ISE/fEc+OL0o=","FingerprintPatternsHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["WYhJJ8Wx3fhVjYrzcMgqPH70FUzukJ/PpmB8czQ\u002BYng=","Qm1IX4T\u002Bn6Uqq8VTnIcgsXnNzLeyRUhg8Gqfao0Qkfw=","CU3BAPRgYiTeqGLQLuYF8\u002BUAej7ElkUYwcvljwljE0c=","M2zkEHouJX\u002BIqKDN8Nxzbd04MC4Nppl0fbDt/00TpUs=","Ssjd1X73mH341FkKhab95CpZVnLTmwXgR\u002BRZvn4Js2I=","vo7zXWl39yT/8iur\u002Bg91TvfFfo68E97OwE8biq5f\u002Bjo="],"CachedAssets":{"WYhJJ8Wx3fhVjYrzcMgqPH70FUzukJ/PpmB8czQ\u002BYng=":{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/compressed/w5z14dlnee-{0}-ozxrxjrq84-ozxrxjrq84.gz","SourceId":"Media.RCL","SourceType":"Discovered","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/compressed/","BasePath":"_content/Media.RCL","RelativePath":"css/cropper.min#[.{fingerprint=ozxrxjrq84}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/wwwroot/css/cropper.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"u8tf0v9vye","Integrity":"MpKPXxBxrKehFS516PaXmpBvJtPuwJm\u002BpYkcNqI9Epo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/wwwroot/css/cropper.min.css","FileLength":1334,"LastWriteTime":"2026-02-05T09:45:38.8564339+00:00"},"Qm1IX4T\u002Bn6Uqq8VTnIcgsXnNzLeyRUhg8Gqfao0Qkfw=":{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/compressed/hk7nq8n70x-{0}-rzaytjouo0-rzaytjouo0.gz","SourceId":"Media.RCL","SourceType":"Discovered","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/compressed/","BasePath":"_content/Media.RCL","RelativePath":"js/crop#[.{fingerprint=rzaytjouo0}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/wwwroot/js/crop.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"oa685rju99","Integrity":"4PKrXFgldfdLg4sTPCbLiDNGFl8cb0xvISy3R1WxV/A=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/wwwroot/js/crop.js","FileLength":918,"LastWriteTime":"2026-02-05T09:45:38.8597672+00:00"},"CU3BAPRgYiTeqGLQLuYF8\u002BUAej7ElkUYwcvljwljE0c=":{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/compressed/c4qv7zag90-{0}-llc9n82qda-llc9n82qda.gz","SourceId":"Media.RCL","SourceType":"Discovered","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/compressed/","BasePath":"_content/Media.RCL","RelativePath":"js/cropper.min#[.{fingerprint=llc9n82qda}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/wwwroot/js/cropper.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"in7fmyx85p","Integrity":"foJ0q5a8aDAR6XNITGSl1z7UCT1gz628l6VhbhipoeE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/wwwroot/js/cropper.min.js","FileLength":6396,"LastWriteTime":"2026-02-05T09:45:38.8564339+00:00"},"M2zkEHouJX\u002BIqKDN8Nxzbd04MC4Nppl0fbDt/00TpUs=":{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/compressed/8rzz1ly4wd-{0}-j3t2utpur3-j3t2utpur3.gz","SourceId":"Media.RCL","SourceType":"Discovered","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/compressed/","BasePath":"_content/Media.RCL","RelativePath":"js/mediaInterop#[.{fingerprint=j3t2utpur3}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/wwwroot/js/mediaInterop.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"lr5mqwekj4","Integrity":"T3/OBNOu36GO1osR/HPqSS4Kvfy\u002BF1WbctC8XyL0RT8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/wwwroot/js/mediaInterop.js","FileLength":545,"LastWriteTime":"2026-02-05T09:45:38.8597672+00:00"},"Ssjd1X73mH341FkKhab95CpZVnLTmwXgR\u002BRZvn4Js2I=":{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/compressed/nsvlrsxof5-{0}-tef8z25zm7-tef8z25zm7.gz","SourceId":"Media.RCL","SourceType":"Discovered","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/compressed/","BasePath":"_content/Media.RCL","RelativePath":"lib/cropper.min#[.{fingerprint=tef8z25zm7}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/wwwroot/lib/cropper.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"36bdfox6nl","Integrity":"NSflKeEMawOcrQQ9CCT\u002B62GRXfxdx7lRqbo6s837Rco=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/wwwroot/lib/cropper.min.css","FileLength":1267,"LastWriteTime":"2026-02-05T09:45:38.8564339+00:00"},"vo7zXWl39yT/8iur\u002Bg91TvfFfo68E97OwE8biq5f\u002Bjo=":{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/compressed/ke9t4lehyl-{0}-9ydfkw1ttr-9ydfkw1ttr.gz","SourceId":"Media.RCL","SourceType":"Discovered","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/compressed/","BasePath":"_content/Media.RCL","RelativePath":"lib/cropper.min#[.{fingerprint=9ydfkw1ttr}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/wwwroot/lib/cropper.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"mo4tr6x4yf","Integrity":"CmAvCeXmzS67802QckdNfDy5ysuJ97AgSVrZr21Ayx4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/wwwroot/lib/cropper.min.js","FileLength":12224,"LastWriteTime":"2026-02-05T09:45:38.8564339+00:00"}},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/obj/Debug/net10.0/ref/Media.RCL.dll b/obj/Debug/net10.0/ref/Media.RCL.dll new file mode 100644 index 0000000..f1ce31a Binary files /dev/null and b/obj/Debug/net10.0/ref/Media.RCL.dll differ diff --git a/obj/Debug/net10.0/ref/Media.dll b/obj/Debug/net10.0/ref/Media.dll new file mode 100644 index 0000000..a541809 Binary files /dev/null and b/obj/Debug/net10.0/ref/Media.dll differ diff --git a/obj/Debug/net10.0/refint/Media.RCL.dll b/obj/Debug/net10.0/refint/Media.RCL.dll new file mode 100644 index 0000000..f1ce31a Binary files /dev/null and b/obj/Debug/net10.0/refint/Media.RCL.dll differ diff --git a/obj/Debug/net10.0/refint/Media.dll b/obj/Debug/net10.0/refint/Media.dll new file mode 100644 index 0000000..a541809 Binary files /dev/null and b/obj/Debug/net10.0/refint/Media.dll differ diff --git a/obj/Debug/net10.0/rjimswa.dswa.cache.json b/obj/Debug/net10.0/rjimswa.dswa.cache.json new file mode 100644 index 0000000..e3206fb --- /dev/null +++ b/obj/Debug/net10.0/rjimswa.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"0bFlEb7Uif8VRRKjAo0CuXprHMawLACQZ5ljiHsVoq0=","FingerprintPatternsHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","PropertyOverridesHash":"R7Rea/YQmcweqCbKffD9oUelggfpJQX85r65aYZsas0=","InputHashes":["qjhy5szy7UEmVhZjfYwGZVfieSZqORcI3jINlIbxRFY=","5mBfJ9t0Xw25TxbhG/zH5MOVBXgalXPZ1gytw/Fr96A=","PYCrx1\u002BOd\u002B2vz3v0NgGuNbE7HJTCz4ovHr66MC9FVV4=","8FGncsU/aECnPbAZfyrsbzaQzAyZqF1BakT3khPxG94=","PXQ3iIzWil8S2rRQ1rP9bjKxAp55YRkeo3yP1o2GInY=","IkModp89d\u002Bc1xKipq5XxJFOod7KAs/amRYfIYTKfZnU="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json b/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json new file mode 100644 index 0000000..8e98c15 --- /dev/null +++ b/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"BDRQlYLS5ueIeHeG3MkN3putnC5K7FEEueXgyWuUt9I=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["4kKKh4ZVSQOlykGBT0z9U1FToiJGCU\u002BJMyAw9m3IOr0=","Fqfi/G/TPkb58iNbiiLPFMOCzCowoPPSV\u002BGq0\u002B/w9Ik=","eZfLhN/9w2RTwmYrVkPb0oZ5mWjgDuew9oKl9MhFxO0=","\u002BXtouaQFwaTd502epP4MXsBEixkCTM\u002Bk3qTV8LlQoVg=","QRGaxMOaSW5cZOpo7j9Y41yBSz/GLWJr5jn6AYPdhyg=","4tLh/SCa06cmFJUhI7r4y650fNymmYCYRJgDLYLk9uY=","RUUvvEk9ZgK1uH\u002BPDrFnvL0xm0fGvJnvBDJjyK01cwE=","Vi\u002Bf3AkdKV11oJ1B15Q1oEsKFvIYZHbZAndHmdAdVkk=","ez8GOmE7c/5Ai0hiRHBxYXytIZnfP5IrWlH5bWTPb0Q=","kyPz9RcwiXcyU2S4tv4Yrt81EvtUTsqicwteKCEUOa8=","pF3mgu9LR3achcfmj6O0bvChcoDOEFtmhLuF18N6mDY=","hFjkmX9FXgi4dZnSft3VZgosWrKuAd14YVST91KRHYo=","qe1T\u002B\u002B5RoZr7FP/DRyI5D8DUPKY1t/ezmvEyH0FGczc=","4O5deGlC3I7VNUfL\u002BrBwKrlJsRIHh6tU9EAxbh4J3Cs=","wBFC\u002BncXFBXUh2WI9eh/2F5/sr9isJSImsV181ESdCo="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/obj/Debug/net10.0/rjsmrazor.dswa.cache.json b/obj/Debug/net10.0/rjsmrazor.dswa.cache.json new file mode 100644 index 0000000..a6042ba --- /dev/null +++ b/obj/Debug/net10.0/rjsmrazor.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"xKcBu1Wu0v9RocstHzB1xwjcMq2F1Z/vbqeaX5GbN7M=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["4kKKh4ZVSQOlykGBT0z9U1FToiJGCU\u002BJMyAw9m3IOr0=","Fqfi/G/TPkb58iNbiiLPFMOCzCowoPPSV\u002BGq0\u002B/w9Ik=","eZfLhN/9w2RTwmYrVkPb0oZ5mWjgDuew9oKl9MhFxO0=","\u002BXtouaQFwaTd502epP4MXsBEixkCTM\u002Bk3qTV8LlQoVg=","QRGaxMOaSW5cZOpo7j9Y41yBSz/GLWJr5jn6AYPdhyg=","4tLh/SCa06cmFJUhI7r4y650fNymmYCYRJgDLYLk9uY=","RUUvvEk9ZgK1uH\u002BPDrFnvL0xm0fGvJnvBDJjyK01cwE=","Vi\u002Bf3AkdKV11oJ1B15Q1oEsKFvIYZHbZAndHmdAdVkk=","ez8GOmE7c/5Ai0hiRHBxYXytIZnfP5IrWlH5bWTPb0Q=","kyPz9RcwiXcyU2S4tv4Yrt81EvtUTsqicwteKCEUOa8=","pF3mgu9LR3achcfmj6O0bvChcoDOEFtmhLuF18N6mDY=","hFjkmX9FXgi4dZnSft3VZgosWrKuAd14YVST91KRHYo=","qe1T\u002B\u002B5RoZr7FP/DRyI5D8DUPKY1t/ezmvEyH0FGczc=","4O5deGlC3I7VNUfL\u002BrBwKrlJsRIHh6tU9EAxbh4J3Cs=","wBFC\u002BncXFBXUh2WI9eh/2F5/sr9isJSImsV181ESdCo="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/obj/Debug/net10.0/rpswa.dswa.cache.json b/obj/Debug/net10.0/rpswa.dswa.cache.json new file mode 100644 index 0000000..d380872 --- /dev/null +++ b/obj/Debug/net10.0/rpswa.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"zNXGoy6fXeknL/ZShxcC9kkojQo2/ruD0cEXeur/JPk=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["4kKKh4ZVSQOlykGBT0z9U1FToiJGCU\u002BJMyAw9m3IOr0=","Fqfi/G/TPkb58iNbiiLPFMOCzCowoPPSV\u002BGq0\u002B/w9Ik=","eZfLhN/9w2RTwmYrVkPb0oZ5mWjgDuew9oKl9MhFxO0=","\u002BXtouaQFwaTd502epP4MXsBEixkCTM\u002Bk3qTV8LlQoVg=","QRGaxMOaSW5cZOpo7j9Y41yBSz/GLWJr5jn6AYPdhyg=","4tLh/SCa06cmFJUhI7r4y650fNymmYCYRJgDLYLk9uY=","RUUvvEk9ZgK1uH\u002BPDrFnvL0xm0fGvJnvBDJjyK01cwE=","Vi\u002Bf3AkdKV11oJ1B15Q1oEsKFvIYZHbZAndHmdAdVkk=","ez8GOmE7c/5Ai0hiRHBxYXytIZnfP5IrWlH5bWTPb0Q=","kyPz9RcwiXcyU2S4tv4Yrt81EvtUTsqicwteKCEUOa8=","pF3mgu9LR3achcfmj6O0bvChcoDOEFtmhLuF18N6mDY=","hFjkmX9FXgi4dZnSft3VZgosWrKuAd14YVST91KRHYo=","qe1T\u002B\u002B5RoZr7FP/DRyI5D8DUPKY1t/ezmvEyH0FGczc=","4O5deGlC3I7VNUfL\u002BrBwKrlJsRIHh6tU9EAxbh4J3Cs=","wBFC\u002BncXFBXUh2WI9eh/2F5/sr9isJSImsV181ESdCo="],"CachedAssets":{"4kKKh4ZVSQOlykGBT0z9U1FToiJGCU\u002BJMyAw9m3IOr0=":{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/wwwroot/css/cropper.min.css","SourceId":"Media.RCL","SourceType":"Discovered","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/wwwroot/","BasePath":"_content/Media.RCL","RelativePath":"css/cropper.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"ozxrxjrq84","Integrity":"LP6S4rrMHwW9\u002BZrTEksQX94YXfWAGSn/zoj2yGvz\u002Bx4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/css/cropper.min.css","FileLength":4947,"LastWriteTime":"2025-12-21T15:00:39.7766331+00:00"},"Fqfi/G/TPkb58iNbiiLPFMOCzCowoPPSV\u002BGq0\u002B/w9Ik=":{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/wwwroot/js/crop.js","SourceId":"Media.RCL","SourceType":"Discovered","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/wwwroot/","BasePath":"_content/Media.RCL","RelativePath":"js/crop#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"rzaytjouo0","Integrity":"2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/js/crop.js","FileLength":2474,"LastWriteTime":"2025-12-23T11:59:06.639292+00:00"},"eZfLhN/9w2RTwmYrVkPb0oZ5mWjgDuew9oKl9MhFxO0=":{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/wwwroot/js/cropper.min.js","SourceId":"Media.RCL","SourceType":"Discovered","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/wwwroot/","BasePath":"_content/Media.RCL","RelativePath":"js/cropper.min#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"llc9n82qda","Integrity":"Cd\u002B\u002Be8mN4ylC3IhQ\u002BeHydts7i5FpT0rQpyBxiMAEpyI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/js/cropper.min.js","FileLength":22252,"LastWriteTime":"2025-12-21T18:23:00.9832314+00:00"},"\u002BXtouaQFwaTd502epP4MXsBEixkCTM\u002Bk3qTV8LlQoVg=":{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/wwwroot/js/mediaInterop.js","SourceId":"Media.RCL","SourceType":"Discovered","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/wwwroot/","BasePath":"_content/Media.RCL","RelativePath":"js/mediaInterop#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"j3t2utpur3","Integrity":"z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/js/mediaInterop.js","FileLength":2220,"LastWriteTime":"2025-12-24T09:42:14.8236034+00:00"},"QRGaxMOaSW5cZOpo7j9Y41yBSz/GLWJr5jn6AYPdhyg=":{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/wwwroot/lib/cropper.min.css","SourceId":"Media.RCL","SourceType":"Discovered","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/wwwroot/","BasePath":"_content/Media.RCL","RelativePath":"lib/cropper.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"tef8z25zm7","Integrity":"BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/cropper.min.css","FileLength":3804,"LastWriteTime":"2025-08-11T12:38:41.9671175+00:00"},"4tLh/SCa06cmFJUhI7r4y650fNymmYCYRJgDLYLk9uY=":{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/wwwroot/lib/cropper.min.js","SourceId":"Media.RCL","SourceType":"Discovered","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/wwwroot/","BasePath":"_content/Media.RCL","RelativePath":"lib/cropper.min#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"9ydfkw1ttr","Integrity":"YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/cropper.min.js","FileLength":37035,"LastWriteTime":"2025-08-11T12:38:41.9684516+00:00"}},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/obj/Debug/net10.0/staticwebassets.build.endpoints.json b/obj/Debug/net10.0/staticwebassets.build.endpoints.json new file mode 100644 index 0000000..211d61a --- /dev/null +++ b/obj/Debug/net10.0/staticwebassets.build.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[{"Route":"css/cropper.min.css","AssetFile":"css/cropper.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000749063670"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1334"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"MpKPXxBxrKehFS516PaXmpBvJtPuwJm+pYkcNqI9Epo=\""},{"Name":"Last-Modified","Value":"Thu, 05 Feb 2026 09:45:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4="},{"Name":"original-resource","Value":"\"LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4=\""}]},{"Route":"css/cropper.min.css","AssetFile":"css/cropper.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4947"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4=\""},{"Name":"Last-Modified","Value":"Sun, 21 Dec 2025 15:00:39 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4="}]},{"Route":"css/cropper.min.css.gz","AssetFile":"css/cropper.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1334"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"MpKPXxBxrKehFS516PaXmpBvJtPuwJm+pYkcNqI9Epo=\""},{"Name":"Last-Modified","Value":"Thu, 05 Feb 2026 09:45:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MpKPXxBxrKehFS516PaXmpBvJtPuwJm+pYkcNqI9Epo="}]},{"Route":"css/cropper.min.ozxrxjrq84.css","AssetFile":"css/cropper.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000749063670"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1334"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"MpKPXxBxrKehFS516PaXmpBvJtPuwJm+pYkcNqI9Epo=\""},{"Name":"Last-Modified","Value":"Thu, 05 Feb 2026 09:45:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ozxrxjrq84"},{"Name":"integrity","Value":"sha256-LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4="},{"Name":"label","Value":"css/cropper.min.css"},{"Name":"original-resource","Value":"\"LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4=\""}]},{"Route":"css/cropper.min.ozxrxjrq84.css","AssetFile":"css/cropper.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4947"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4=\""},{"Name":"Last-Modified","Value":"Sun, 21 Dec 2025 15:00:39 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ozxrxjrq84"},{"Name":"integrity","Value":"sha256-LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4="},{"Name":"label","Value":"css/cropper.min.css"}]},{"Route":"css/cropper.min.ozxrxjrq84.css.gz","AssetFile":"css/cropper.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1334"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"MpKPXxBxrKehFS516PaXmpBvJtPuwJm+pYkcNqI9Epo=\""},{"Name":"Last-Modified","Value":"Thu, 05 Feb 2026 09:45:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ozxrxjrq84"},{"Name":"integrity","Value":"sha256-MpKPXxBxrKehFS516PaXmpBvJtPuwJm+pYkcNqI9Epo="},{"Name":"label","Value":"css/cropper.min.css.gz"}]},{"Route":"js/crop.js","AssetFile":"js/crop.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001088139282"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"918"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4PKrXFgldfdLg4sTPCbLiDNGFl8cb0xvISy3R1WxV/A=\""},{"Name":"Last-Modified","Value":"Thu, 05 Feb 2026 09:45:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI="},{"Name":"original-resource","Value":"\"2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI=\""}]},{"Route":"js/crop.js","AssetFile":"js/crop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"2474"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI=\""},{"Name":"Last-Modified","Value":"Tue, 23 Dec 2025 11:59:06 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI="}]},{"Route":"js/crop.js.gz","AssetFile":"js/crop.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"918"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4PKrXFgldfdLg4sTPCbLiDNGFl8cb0xvISy3R1WxV/A=\""},{"Name":"Last-Modified","Value":"Thu, 05 Feb 2026 09:45:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4PKrXFgldfdLg4sTPCbLiDNGFl8cb0xvISy3R1WxV/A="}]},{"Route":"js/crop.rzaytjouo0.js","AssetFile":"js/crop.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001088139282"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"918"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4PKrXFgldfdLg4sTPCbLiDNGFl8cb0xvISy3R1WxV/A=\""},{"Name":"Last-Modified","Value":"Thu, 05 Feb 2026 09:45:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rzaytjouo0"},{"Name":"integrity","Value":"sha256-2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI="},{"Name":"label","Value":"js/crop.js"},{"Name":"original-resource","Value":"\"2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI=\""}]},{"Route":"js/crop.rzaytjouo0.js","AssetFile":"js/crop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"2474"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI=\""},{"Name":"Last-Modified","Value":"Tue, 23 Dec 2025 11:59:06 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rzaytjouo0"},{"Name":"integrity","Value":"sha256-2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI="},{"Name":"label","Value":"js/crop.js"}]},{"Route":"js/crop.rzaytjouo0.js.gz","AssetFile":"js/crop.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"918"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4PKrXFgldfdLg4sTPCbLiDNGFl8cb0xvISy3R1WxV/A=\""},{"Name":"Last-Modified","Value":"Thu, 05 Feb 2026 09:45:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rzaytjouo0"},{"Name":"integrity","Value":"sha256-4PKrXFgldfdLg4sTPCbLiDNGFl8cb0xvISy3R1WxV/A="},{"Name":"label","Value":"js/crop.js.gz"}]},{"Route":"js/cropper.min.js","AssetFile":"js/cropper.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000156323277"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6396"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"foJ0q5a8aDAR6XNITGSl1z7UCT1gz628l6VhbhipoeE=\""},{"Name":"Last-Modified","Value":"Thu, 05 Feb 2026 09:45:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI="},{"Name":"original-resource","Value":"\"Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI=\""}]},{"Route":"js/cropper.min.js","AssetFile":"js/cropper.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"22252"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI=\""},{"Name":"Last-Modified","Value":"Sun, 21 Dec 2025 18:23:00 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI="}]},{"Route":"js/cropper.min.js.gz","AssetFile":"js/cropper.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6396"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"foJ0q5a8aDAR6XNITGSl1z7UCT1gz628l6VhbhipoeE=\""},{"Name":"Last-Modified","Value":"Thu, 05 Feb 2026 09:45:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-foJ0q5a8aDAR6XNITGSl1z7UCT1gz628l6VhbhipoeE="}]},{"Route":"js/cropper.min.llc9n82qda.js","AssetFile":"js/cropper.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000156323277"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6396"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"foJ0q5a8aDAR6XNITGSl1z7UCT1gz628l6VhbhipoeE=\""},{"Name":"Last-Modified","Value":"Thu, 05 Feb 2026 09:45:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"llc9n82qda"},{"Name":"integrity","Value":"sha256-Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI="},{"Name":"label","Value":"js/cropper.min.js"},{"Name":"original-resource","Value":"\"Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI=\""}]},{"Route":"js/cropper.min.llc9n82qda.js","AssetFile":"js/cropper.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"22252"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI=\""},{"Name":"Last-Modified","Value":"Sun, 21 Dec 2025 18:23:00 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"llc9n82qda"},{"Name":"integrity","Value":"sha256-Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI="},{"Name":"label","Value":"js/cropper.min.js"}]},{"Route":"js/cropper.min.llc9n82qda.js.gz","AssetFile":"js/cropper.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6396"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"foJ0q5a8aDAR6XNITGSl1z7UCT1gz628l6VhbhipoeE=\""},{"Name":"Last-Modified","Value":"Thu, 05 Feb 2026 09:45:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"llc9n82qda"},{"Name":"integrity","Value":"sha256-foJ0q5a8aDAR6XNITGSl1z7UCT1gz628l6VhbhipoeE="},{"Name":"label","Value":"js/cropper.min.js.gz"}]},{"Route":"js/mediaInterop.j3t2utpur3.js","AssetFile":"js/mediaInterop.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001831501832"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"545"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"T3/OBNOu36GO1osR/HPqSS4Kvfy+F1WbctC8XyL0RT8=\""},{"Name":"Last-Modified","Value":"Thu, 05 Feb 2026 09:45:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j3t2utpur3"},{"Name":"integrity","Value":"sha256-z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA="},{"Name":"label","Value":"js/mediaInterop.js"},{"Name":"original-resource","Value":"\"z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA=\""}]},{"Route":"js/mediaInterop.j3t2utpur3.js","AssetFile":"js/mediaInterop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"2220"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA=\""},{"Name":"Last-Modified","Value":"Wed, 24 Dec 2025 09:42:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j3t2utpur3"},{"Name":"integrity","Value":"sha256-z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA="},{"Name":"label","Value":"js/mediaInterop.js"}]},{"Route":"js/mediaInterop.j3t2utpur3.js.gz","AssetFile":"js/mediaInterop.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"545"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"T3/OBNOu36GO1osR/HPqSS4Kvfy+F1WbctC8XyL0RT8=\""},{"Name":"Last-Modified","Value":"Thu, 05 Feb 2026 09:45:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j3t2utpur3"},{"Name":"integrity","Value":"sha256-T3/OBNOu36GO1osR/HPqSS4Kvfy+F1WbctC8XyL0RT8="},{"Name":"label","Value":"js/mediaInterop.js.gz"}]},{"Route":"js/mediaInterop.js","AssetFile":"js/mediaInterop.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001831501832"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"545"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"T3/OBNOu36GO1osR/HPqSS4Kvfy+F1WbctC8XyL0RT8=\""},{"Name":"Last-Modified","Value":"Thu, 05 Feb 2026 09:45:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA="},{"Name":"original-resource","Value":"\"z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA=\""}]},{"Route":"js/mediaInterop.js","AssetFile":"js/mediaInterop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"2220"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA=\""},{"Name":"Last-Modified","Value":"Wed, 24 Dec 2025 09:42:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA="}]},{"Route":"js/mediaInterop.js.gz","AssetFile":"js/mediaInterop.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"545"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"T3/OBNOu36GO1osR/HPqSS4Kvfy+F1WbctC8XyL0RT8=\""},{"Name":"Last-Modified","Value":"Thu, 05 Feb 2026 09:45:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-T3/OBNOu36GO1osR/HPqSS4Kvfy+F1WbctC8XyL0RT8="}]},{"Route":"lib/cropper.min.9ydfkw1ttr.js","AssetFile":"lib/cropper.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000081799591"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12224"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CmAvCeXmzS67802QckdNfDy5ysuJ97AgSVrZr21Ayx4=\""},{"Name":"Last-Modified","Value":"Thu, 05 Feb 2026 09:45:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9ydfkw1ttr"},{"Name":"integrity","Value":"sha256-YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc="},{"Name":"label","Value":"lib/cropper.min.js"},{"Name":"original-resource","Value":"\"YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc=\""}]},{"Route":"lib/cropper.min.9ydfkw1ttr.js","AssetFile":"lib/cropper.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"37035"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc=\""},{"Name":"Last-Modified","Value":"Mon, 11 Aug 2025 12:38:41 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9ydfkw1ttr"},{"Name":"integrity","Value":"sha256-YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc="},{"Name":"label","Value":"lib/cropper.min.js"}]},{"Route":"lib/cropper.min.9ydfkw1ttr.js.gz","AssetFile":"lib/cropper.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12224"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CmAvCeXmzS67802QckdNfDy5ysuJ97AgSVrZr21Ayx4=\""},{"Name":"Last-Modified","Value":"Thu, 05 Feb 2026 09:45:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9ydfkw1ttr"},{"Name":"integrity","Value":"sha256-CmAvCeXmzS67802QckdNfDy5ysuJ97AgSVrZr21Ayx4="},{"Name":"label","Value":"lib/cropper.min.js.gz"}]},{"Route":"lib/cropper.min.css","AssetFile":"lib/cropper.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000788643533"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1267"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"NSflKeEMawOcrQQ9CCT+62GRXfxdx7lRqbo6s837Rco=\""},{"Name":"Last-Modified","Value":"Thu, 05 Feb 2026 09:45:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8="},{"Name":"original-resource","Value":"\"BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8=\""}]},{"Route":"lib/cropper.min.css","AssetFile":"lib/cropper.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"3804"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8=\""},{"Name":"Last-Modified","Value":"Mon, 11 Aug 2025 12:38:41 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8="}]},{"Route":"lib/cropper.min.css.gz","AssetFile":"lib/cropper.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1267"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"NSflKeEMawOcrQQ9CCT+62GRXfxdx7lRqbo6s837Rco=\""},{"Name":"Last-Modified","Value":"Thu, 05 Feb 2026 09:45:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NSflKeEMawOcrQQ9CCT+62GRXfxdx7lRqbo6s837Rco="}]},{"Route":"lib/cropper.min.js","AssetFile":"lib/cropper.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000081799591"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12224"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CmAvCeXmzS67802QckdNfDy5ysuJ97AgSVrZr21Ayx4=\""},{"Name":"Last-Modified","Value":"Thu, 05 Feb 2026 09:45:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc="},{"Name":"original-resource","Value":"\"YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc=\""}]},{"Route":"lib/cropper.min.js","AssetFile":"lib/cropper.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"37035"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc=\""},{"Name":"Last-Modified","Value":"Mon, 11 Aug 2025 12:38:41 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc="}]},{"Route":"lib/cropper.min.js.gz","AssetFile":"lib/cropper.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12224"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CmAvCeXmzS67802QckdNfDy5ysuJ97AgSVrZr21Ayx4=\""},{"Name":"Last-Modified","Value":"Thu, 05 Feb 2026 09:45:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CmAvCeXmzS67802QckdNfDy5ysuJ97AgSVrZr21Ayx4="}]},{"Route":"lib/cropper.min.tef8z25zm7.css","AssetFile":"lib/cropper.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000788643533"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1267"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"NSflKeEMawOcrQQ9CCT+62GRXfxdx7lRqbo6s837Rco=\""},{"Name":"Last-Modified","Value":"Thu, 05 Feb 2026 09:45:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tef8z25zm7"},{"Name":"integrity","Value":"sha256-BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8="},{"Name":"label","Value":"lib/cropper.min.css"},{"Name":"original-resource","Value":"\"BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8=\""}]},{"Route":"lib/cropper.min.tef8z25zm7.css","AssetFile":"lib/cropper.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3804"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8=\""},{"Name":"Last-Modified","Value":"Mon, 11 Aug 2025 12:38:41 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tef8z25zm7"},{"Name":"integrity","Value":"sha256-BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8="},{"Name":"label","Value":"lib/cropper.min.css"}]},{"Route":"lib/cropper.min.tef8z25zm7.css.gz","AssetFile":"lib/cropper.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1267"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"NSflKeEMawOcrQQ9CCT+62GRXfxdx7lRqbo6s837Rco=\""},{"Name":"Last-Modified","Value":"Thu, 05 Feb 2026 09:45:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tef8z25zm7"},{"Name":"integrity","Value":"sha256-NSflKeEMawOcrQQ9CCT+62GRXfxdx7lRqbo6s837Rco="},{"Name":"label","Value":"lib/cropper.min.css.gz"}]}]} \ No newline at end of file diff --git a/obj/Debug/net10.0/staticwebassets.build.json b/obj/Debug/net10.0/staticwebassets.build.json new file mode 100644 index 0000000..930b81e --- /dev/null +++ b/obj/Debug/net10.0/staticwebassets.build.json @@ -0,0 +1 @@ +{"Version":1,"Hash":"5XdjEAzZpJ9km/5jJJCstp8UVPgI8EIsuacehJpicKs=","Source":"Media.RCL","BasePath":"_content/Media.RCL","Mode":"Default","ManifestType":"Build","ReferencedProjectsConfiguration":[],"DiscoveryPatterns":[{"Name":"Media.RCL/wwwroot","Source":"Media.RCL","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/wwwroot/","BasePath":"_content/Media.RCL","Pattern":"**"}],"Assets":[{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/compressed/8rzz1ly4wd-{0}-j3t2utpur3-j3t2utpur3.gz","SourceId":"Media.RCL","SourceType":"Discovered","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/compressed/","BasePath":"_content/Media.RCL","RelativePath":"js/mediaInterop#[.{fingerprint=j3t2utpur3}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/wwwroot/js/mediaInterop.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"lr5mqwekj4","Integrity":"T3/OBNOu36GO1osR/HPqSS4Kvfy+F1WbctC8XyL0RT8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/wwwroot/js/mediaInterop.js","FileLength":545,"LastWriteTime":"2026-02-05T09:45:38+00:00"},{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/compressed/c4qv7zag90-{0}-llc9n82qda-llc9n82qda.gz","SourceId":"Media.RCL","SourceType":"Discovered","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/compressed/","BasePath":"_content/Media.RCL","RelativePath":"js/cropper.min#[.{fingerprint=llc9n82qda}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/wwwroot/js/cropper.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"in7fmyx85p","Integrity":"foJ0q5a8aDAR6XNITGSl1z7UCT1gz628l6VhbhipoeE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/wwwroot/js/cropper.min.js","FileLength":6396,"LastWriteTime":"2026-02-05T09:45:38+00:00"},{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/compressed/hk7nq8n70x-{0}-rzaytjouo0-rzaytjouo0.gz","SourceId":"Media.RCL","SourceType":"Discovered","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/compressed/","BasePath":"_content/Media.RCL","RelativePath":"js/crop#[.{fingerprint=rzaytjouo0}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/wwwroot/js/crop.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"oa685rju99","Integrity":"4PKrXFgldfdLg4sTPCbLiDNGFl8cb0xvISy3R1WxV/A=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/wwwroot/js/crop.js","FileLength":918,"LastWriteTime":"2026-02-05T09:45:38+00:00"},{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/compressed/ke9t4lehyl-{0}-9ydfkw1ttr-9ydfkw1ttr.gz","SourceId":"Media.RCL","SourceType":"Discovered","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/compressed/","BasePath":"_content/Media.RCL","RelativePath":"lib/cropper.min#[.{fingerprint=9ydfkw1ttr}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/wwwroot/lib/cropper.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"mo4tr6x4yf","Integrity":"CmAvCeXmzS67802QckdNfDy5ysuJ97AgSVrZr21Ayx4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/wwwroot/lib/cropper.min.js","FileLength":12224,"LastWriteTime":"2026-02-05T09:45:38+00:00"},{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/compressed/nsvlrsxof5-{0}-tef8z25zm7-tef8z25zm7.gz","SourceId":"Media.RCL","SourceType":"Discovered","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/compressed/","BasePath":"_content/Media.RCL","RelativePath":"lib/cropper.min#[.{fingerprint=tef8z25zm7}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/wwwroot/lib/cropper.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"36bdfox6nl","Integrity":"NSflKeEMawOcrQQ9CCT+62GRXfxdx7lRqbo6s837Rco=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/wwwroot/lib/cropper.min.css","FileLength":1267,"LastWriteTime":"2026-02-05T09:45:38+00:00"},{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/compressed/w5z14dlnee-{0}-ozxrxjrq84-ozxrxjrq84.gz","SourceId":"Media.RCL","SourceType":"Discovered","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/compressed/","BasePath":"_content/Media.RCL","RelativePath":"css/cropper.min#[.{fingerprint=ozxrxjrq84}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/wwwroot/css/cropper.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"u8tf0v9vye","Integrity":"MpKPXxBxrKehFS516PaXmpBvJtPuwJm+pYkcNqI9Epo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/wwwroot/css/cropper.min.css","FileLength":1334,"LastWriteTime":"2026-02-05T09:45:38+00:00"},{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/wwwroot/css/cropper.min.css","SourceId":"Media.RCL","SourceType":"Discovered","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/wwwroot/","BasePath":"_content/Media.RCL","RelativePath":"css/cropper.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"ozxrxjrq84","Integrity":"LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/css/cropper.min.css","FileLength":4947,"LastWriteTime":"2025-12-21T15:00:39+00:00"},{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/wwwroot/js/crop.js","SourceId":"Media.RCL","SourceType":"Discovered","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/wwwroot/","BasePath":"_content/Media.RCL","RelativePath":"js/crop#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"rzaytjouo0","Integrity":"2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/js/crop.js","FileLength":2474,"LastWriteTime":"2025-12-23T11:59:06+00:00"},{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/wwwroot/js/cropper.min.js","SourceId":"Media.RCL","SourceType":"Discovered","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/wwwroot/","BasePath":"_content/Media.RCL","RelativePath":"js/cropper.min#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"llc9n82qda","Integrity":"Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/js/cropper.min.js","FileLength":22252,"LastWriteTime":"2025-12-21T18:23:00+00:00"},{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/wwwroot/js/mediaInterop.js","SourceId":"Media.RCL","SourceType":"Discovered","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/wwwroot/","BasePath":"_content/Media.RCL","RelativePath":"js/mediaInterop#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"j3t2utpur3","Integrity":"z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/js/mediaInterop.js","FileLength":2220,"LastWriteTime":"2025-12-24T09:42:14+00:00"},{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/wwwroot/lib/cropper.min.css","SourceId":"Media.RCL","SourceType":"Discovered","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/wwwroot/","BasePath":"_content/Media.RCL","RelativePath":"lib/cropper.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"tef8z25zm7","Integrity":"BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/cropper.min.css","FileLength":3804,"LastWriteTime":"2025-08-11T12:38:41+00:00"},{"Identity":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/wwwroot/lib/cropper.min.js","SourceId":"Media.RCL","SourceType":"Discovered","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/wwwroot/","BasePath":"_content/Media.RCL","RelativePath":"lib/cropper.min#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"9ydfkw1ttr","Integrity":"YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/cropper.min.js","FileLength":37035,"LastWriteTime":"2025-08-11T12:38:41+00:00"}],"Endpoints":[{"Route":"css/cropper.min.css","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/compressed/w5z14dlnee-{0}-ozxrxjrq84-ozxrxjrq84.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000749063670"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1334"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"MpKPXxBxrKehFS516PaXmpBvJtPuwJm+pYkcNqI9Epo=\""},{"Name":"Last-Modified","Value":"Thu, 05 Feb 2026 09:45:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4="},{"Name":"original-resource","Value":"\"LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4=\""}]},{"Route":"css/cropper.min.css","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/wwwroot/css/cropper.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4947"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4=\""},{"Name":"Last-Modified","Value":"Sun, 21 Dec 2025 15:00:39 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4="}]},{"Route":"css/cropper.min.css.gz","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/compressed/w5z14dlnee-{0}-ozxrxjrq84-ozxrxjrq84.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1334"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"MpKPXxBxrKehFS516PaXmpBvJtPuwJm+pYkcNqI9Epo=\""},{"Name":"Last-Modified","Value":"Thu, 05 Feb 2026 09:45:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MpKPXxBxrKehFS516PaXmpBvJtPuwJm+pYkcNqI9Epo="}]},{"Route":"css/cropper.min.ozxrxjrq84.css","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/compressed/w5z14dlnee-{0}-ozxrxjrq84-ozxrxjrq84.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000749063670"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1334"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"MpKPXxBxrKehFS516PaXmpBvJtPuwJm+pYkcNqI9Epo=\""},{"Name":"Last-Modified","Value":"Thu, 05 Feb 2026 09:45:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ozxrxjrq84"},{"Name":"integrity","Value":"sha256-LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4="},{"Name":"label","Value":"css/cropper.min.css"},{"Name":"original-resource","Value":"\"LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4=\""}]},{"Route":"css/cropper.min.ozxrxjrq84.css","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/wwwroot/css/cropper.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4947"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4=\""},{"Name":"Last-Modified","Value":"Sun, 21 Dec 2025 15:00:39 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ozxrxjrq84"},{"Name":"integrity","Value":"sha256-LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4="},{"Name":"label","Value":"css/cropper.min.css"}]},{"Route":"css/cropper.min.ozxrxjrq84.css.gz","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/compressed/w5z14dlnee-{0}-ozxrxjrq84-ozxrxjrq84.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1334"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"MpKPXxBxrKehFS516PaXmpBvJtPuwJm+pYkcNqI9Epo=\""},{"Name":"Last-Modified","Value":"Thu, 05 Feb 2026 09:45:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ozxrxjrq84"},{"Name":"integrity","Value":"sha256-MpKPXxBxrKehFS516PaXmpBvJtPuwJm+pYkcNqI9Epo="},{"Name":"label","Value":"css/cropper.min.css.gz"}]},{"Route":"js/crop.js","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/compressed/hk7nq8n70x-{0}-rzaytjouo0-rzaytjouo0.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001088139282"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"918"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4PKrXFgldfdLg4sTPCbLiDNGFl8cb0xvISy3R1WxV/A=\""},{"Name":"Last-Modified","Value":"Thu, 05 Feb 2026 09:45:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI="},{"Name":"original-resource","Value":"\"2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI=\""}]},{"Route":"js/crop.js","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/wwwroot/js/crop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"2474"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI=\""},{"Name":"Last-Modified","Value":"Tue, 23 Dec 2025 11:59:06 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI="}]},{"Route":"js/crop.js.gz","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/compressed/hk7nq8n70x-{0}-rzaytjouo0-rzaytjouo0.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"918"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4PKrXFgldfdLg4sTPCbLiDNGFl8cb0xvISy3R1WxV/A=\""},{"Name":"Last-Modified","Value":"Thu, 05 Feb 2026 09:45:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4PKrXFgldfdLg4sTPCbLiDNGFl8cb0xvISy3R1WxV/A="}]},{"Route":"js/crop.rzaytjouo0.js","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/compressed/hk7nq8n70x-{0}-rzaytjouo0-rzaytjouo0.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001088139282"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"918"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4PKrXFgldfdLg4sTPCbLiDNGFl8cb0xvISy3R1WxV/A=\""},{"Name":"Last-Modified","Value":"Thu, 05 Feb 2026 09:45:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rzaytjouo0"},{"Name":"integrity","Value":"sha256-2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI="},{"Name":"label","Value":"js/crop.js"},{"Name":"original-resource","Value":"\"2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI=\""}]},{"Route":"js/crop.rzaytjouo0.js","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/wwwroot/js/crop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"2474"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI=\""},{"Name":"Last-Modified","Value":"Tue, 23 Dec 2025 11:59:06 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rzaytjouo0"},{"Name":"integrity","Value":"sha256-2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI="},{"Name":"label","Value":"js/crop.js"}]},{"Route":"js/crop.rzaytjouo0.js.gz","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/compressed/hk7nq8n70x-{0}-rzaytjouo0-rzaytjouo0.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"918"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4PKrXFgldfdLg4sTPCbLiDNGFl8cb0xvISy3R1WxV/A=\""},{"Name":"Last-Modified","Value":"Thu, 05 Feb 2026 09:45:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rzaytjouo0"},{"Name":"integrity","Value":"sha256-4PKrXFgldfdLg4sTPCbLiDNGFl8cb0xvISy3R1WxV/A="},{"Name":"label","Value":"js/crop.js.gz"}]},{"Route":"js/cropper.min.js","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/compressed/c4qv7zag90-{0}-llc9n82qda-llc9n82qda.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000156323277"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6396"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"foJ0q5a8aDAR6XNITGSl1z7UCT1gz628l6VhbhipoeE=\""},{"Name":"Last-Modified","Value":"Thu, 05 Feb 2026 09:45:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI="},{"Name":"original-resource","Value":"\"Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI=\""}]},{"Route":"js/cropper.min.js","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/wwwroot/js/cropper.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"22252"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI=\""},{"Name":"Last-Modified","Value":"Sun, 21 Dec 2025 18:23:00 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI="}]},{"Route":"js/cropper.min.js.gz","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/compressed/c4qv7zag90-{0}-llc9n82qda-llc9n82qda.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6396"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"foJ0q5a8aDAR6XNITGSl1z7UCT1gz628l6VhbhipoeE=\""},{"Name":"Last-Modified","Value":"Thu, 05 Feb 2026 09:45:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-foJ0q5a8aDAR6XNITGSl1z7UCT1gz628l6VhbhipoeE="}]},{"Route":"js/cropper.min.llc9n82qda.js","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/compressed/c4qv7zag90-{0}-llc9n82qda-llc9n82qda.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000156323277"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6396"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"foJ0q5a8aDAR6XNITGSl1z7UCT1gz628l6VhbhipoeE=\""},{"Name":"Last-Modified","Value":"Thu, 05 Feb 2026 09:45:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"llc9n82qda"},{"Name":"integrity","Value":"sha256-Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI="},{"Name":"label","Value":"js/cropper.min.js"},{"Name":"original-resource","Value":"\"Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI=\""}]},{"Route":"js/cropper.min.llc9n82qda.js","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/wwwroot/js/cropper.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"22252"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI=\""},{"Name":"Last-Modified","Value":"Sun, 21 Dec 2025 18:23:00 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"llc9n82qda"},{"Name":"integrity","Value":"sha256-Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI="},{"Name":"label","Value":"js/cropper.min.js"}]},{"Route":"js/cropper.min.llc9n82qda.js.gz","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/compressed/c4qv7zag90-{0}-llc9n82qda-llc9n82qda.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6396"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"foJ0q5a8aDAR6XNITGSl1z7UCT1gz628l6VhbhipoeE=\""},{"Name":"Last-Modified","Value":"Thu, 05 Feb 2026 09:45:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"llc9n82qda"},{"Name":"integrity","Value":"sha256-foJ0q5a8aDAR6XNITGSl1z7UCT1gz628l6VhbhipoeE="},{"Name":"label","Value":"js/cropper.min.js.gz"}]},{"Route":"js/mediaInterop.j3t2utpur3.js","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/compressed/8rzz1ly4wd-{0}-j3t2utpur3-j3t2utpur3.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001831501832"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"545"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"T3/OBNOu36GO1osR/HPqSS4Kvfy+F1WbctC8XyL0RT8=\""},{"Name":"Last-Modified","Value":"Thu, 05 Feb 2026 09:45:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j3t2utpur3"},{"Name":"integrity","Value":"sha256-z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA="},{"Name":"label","Value":"js/mediaInterop.js"},{"Name":"original-resource","Value":"\"z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA=\""}]},{"Route":"js/mediaInterop.j3t2utpur3.js","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/wwwroot/js/mediaInterop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"2220"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA=\""},{"Name":"Last-Modified","Value":"Wed, 24 Dec 2025 09:42:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j3t2utpur3"},{"Name":"integrity","Value":"sha256-z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA="},{"Name":"label","Value":"js/mediaInterop.js"}]},{"Route":"js/mediaInterop.j3t2utpur3.js.gz","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/compressed/8rzz1ly4wd-{0}-j3t2utpur3-j3t2utpur3.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"545"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"T3/OBNOu36GO1osR/HPqSS4Kvfy+F1WbctC8XyL0RT8=\""},{"Name":"Last-Modified","Value":"Thu, 05 Feb 2026 09:45:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j3t2utpur3"},{"Name":"integrity","Value":"sha256-T3/OBNOu36GO1osR/HPqSS4Kvfy+F1WbctC8XyL0RT8="},{"Name":"label","Value":"js/mediaInterop.js.gz"}]},{"Route":"js/mediaInterop.js","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/compressed/8rzz1ly4wd-{0}-j3t2utpur3-j3t2utpur3.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001831501832"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"545"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"T3/OBNOu36GO1osR/HPqSS4Kvfy+F1WbctC8XyL0RT8=\""},{"Name":"Last-Modified","Value":"Thu, 05 Feb 2026 09:45:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA="},{"Name":"original-resource","Value":"\"z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA=\""}]},{"Route":"js/mediaInterop.js","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/wwwroot/js/mediaInterop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"2220"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA=\""},{"Name":"Last-Modified","Value":"Wed, 24 Dec 2025 09:42:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA="}]},{"Route":"js/mediaInterop.js.gz","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/compressed/8rzz1ly4wd-{0}-j3t2utpur3-j3t2utpur3.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"545"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"T3/OBNOu36GO1osR/HPqSS4Kvfy+F1WbctC8XyL0RT8=\""},{"Name":"Last-Modified","Value":"Thu, 05 Feb 2026 09:45:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-T3/OBNOu36GO1osR/HPqSS4Kvfy+F1WbctC8XyL0RT8="}]},{"Route":"lib/cropper.min.9ydfkw1ttr.js","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/compressed/ke9t4lehyl-{0}-9ydfkw1ttr-9ydfkw1ttr.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000081799591"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12224"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CmAvCeXmzS67802QckdNfDy5ysuJ97AgSVrZr21Ayx4=\""},{"Name":"Last-Modified","Value":"Thu, 05 Feb 2026 09:45:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9ydfkw1ttr"},{"Name":"integrity","Value":"sha256-YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc="},{"Name":"label","Value":"lib/cropper.min.js"},{"Name":"original-resource","Value":"\"YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc=\""}]},{"Route":"lib/cropper.min.9ydfkw1ttr.js","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/wwwroot/lib/cropper.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"37035"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc=\""},{"Name":"Last-Modified","Value":"Mon, 11 Aug 2025 12:38:41 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9ydfkw1ttr"},{"Name":"integrity","Value":"sha256-YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc="},{"Name":"label","Value":"lib/cropper.min.js"}]},{"Route":"lib/cropper.min.9ydfkw1ttr.js.gz","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/compressed/ke9t4lehyl-{0}-9ydfkw1ttr-9ydfkw1ttr.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12224"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CmAvCeXmzS67802QckdNfDy5ysuJ97AgSVrZr21Ayx4=\""},{"Name":"Last-Modified","Value":"Thu, 05 Feb 2026 09:45:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9ydfkw1ttr"},{"Name":"integrity","Value":"sha256-CmAvCeXmzS67802QckdNfDy5ysuJ97AgSVrZr21Ayx4="},{"Name":"label","Value":"lib/cropper.min.js.gz"}]},{"Route":"lib/cropper.min.css","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/compressed/nsvlrsxof5-{0}-tef8z25zm7-tef8z25zm7.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000788643533"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1267"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"NSflKeEMawOcrQQ9CCT+62GRXfxdx7lRqbo6s837Rco=\""},{"Name":"Last-Modified","Value":"Thu, 05 Feb 2026 09:45:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8="},{"Name":"original-resource","Value":"\"BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8=\""}]},{"Route":"lib/cropper.min.css","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/wwwroot/lib/cropper.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"3804"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8=\""},{"Name":"Last-Modified","Value":"Mon, 11 Aug 2025 12:38:41 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8="}]},{"Route":"lib/cropper.min.css.gz","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/compressed/nsvlrsxof5-{0}-tef8z25zm7-tef8z25zm7.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1267"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"NSflKeEMawOcrQQ9CCT+62GRXfxdx7lRqbo6s837Rco=\""},{"Name":"Last-Modified","Value":"Thu, 05 Feb 2026 09:45:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NSflKeEMawOcrQQ9CCT+62GRXfxdx7lRqbo6s837Rco="}]},{"Route":"lib/cropper.min.js","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/compressed/ke9t4lehyl-{0}-9ydfkw1ttr-9ydfkw1ttr.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000081799591"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12224"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CmAvCeXmzS67802QckdNfDy5ysuJ97AgSVrZr21Ayx4=\""},{"Name":"Last-Modified","Value":"Thu, 05 Feb 2026 09:45:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc="},{"Name":"original-resource","Value":"\"YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc=\""}]},{"Route":"lib/cropper.min.js","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/wwwroot/lib/cropper.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"37035"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc=\""},{"Name":"Last-Modified","Value":"Mon, 11 Aug 2025 12:38:41 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc="}]},{"Route":"lib/cropper.min.js.gz","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/compressed/ke9t4lehyl-{0}-9ydfkw1ttr-9ydfkw1ttr.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12224"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CmAvCeXmzS67802QckdNfDy5ysuJ97AgSVrZr21Ayx4=\""},{"Name":"Last-Modified","Value":"Thu, 05 Feb 2026 09:45:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CmAvCeXmzS67802QckdNfDy5ysuJ97AgSVrZr21Ayx4="}]},{"Route":"lib/cropper.min.tef8z25zm7.css","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/compressed/nsvlrsxof5-{0}-tef8z25zm7-tef8z25zm7.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000788643533"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1267"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"NSflKeEMawOcrQQ9CCT+62GRXfxdx7lRqbo6s837Rco=\""},{"Name":"Last-Modified","Value":"Thu, 05 Feb 2026 09:45:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tef8z25zm7"},{"Name":"integrity","Value":"sha256-BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8="},{"Name":"label","Value":"lib/cropper.min.css"},{"Name":"original-resource","Value":"\"BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8=\""}]},{"Route":"lib/cropper.min.tef8z25zm7.css","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/wwwroot/lib/cropper.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3804"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8=\""},{"Name":"Last-Modified","Value":"Mon, 11 Aug 2025 12:38:41 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tef8z25zm7"},{"Name":"integrity","Value":"sha256-BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8="},{"Name":"label","Value":"lib/cropper.min.css"}]},{"Route":"lib/cropper.min.tef8z25zm7.css.gz","AssetFile":"/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/compressed/nsvlrsxof5-{0}-tef8z25zm7-tef8z25zm7.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1267"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"NSflKeEMawOcrQQ9CCT+62GRXfxdx7lRqbo6s837Rco=\""},{"Name":"Last-Modified","Value":"Thu, 05 Feb 2026 09:45:38 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tef8z25zm7"},{"Name":"integrity","Value":"sha256-NSflKeEMawOcrQQ9CCT+62GRXfxdx7lRqbo6s837Rco="},{"Name":"label","Value":"lib/cropper.min.css.gz"}]}]} \ No newline at end of file diff --git a/obj/Debug/net10.0/staticwebassets.build.json.cache b/obj/Debug/net10.0/staticwebassets.build.json.cache new file mode 100644 index 0000000..2020afa --- /dev/null +++ b/obj/Debug/net10.0/staticwebassets.build.json.cache @@ -0,0 +1 @@ +5XdjEAzZpJ9km/5jJJCstp8UVPgI8EIsuacehJpicKs= \ No newline at end of file diff --git a/obj/Debug/net10.0/staticwebassets.development.json b/obj/Debug/net10.0/staticwebassets.development.json new file mode 100644 index 0000000..4204ecf --- /dev/null +++ b/obj/Debug/net10.0/staticwebassets.development.json @@ -0,0 +1 @@ +{"ContentRoots":["/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/wwwroot/","/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/obj/Debug/net10.0/compressed/"],"Root":{"Children":{"css":{"Children":{"cropper.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/cropper.min.css"},"Patterns":null},"cropper.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"w5z14dlnee-{0}-ozxrxjrq84-ozxrxjrq84.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"crop.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/crop.js"},"Patterns":null},"crop.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"hk7nq8n70x-{0}-rzaytjouo0-rzaytjouo0.gz"},"Patterns":null},"cropper.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/cropper.min.js"},"Patterns":null},"cropper.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"c4qv7zag90-{0}-llc9n82qda-llc9n82qda.gz"},"Patterns":null},"mediaInterop.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/mediaInterop.js"},"Patterns":null},"mediaInterop.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"8rzz1ly4wd-{0}-j3t2utpur3-j3t2utpur3.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"lib":{"Children":{"cropper.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/cropper.min.css"},"Patterns":null},"cropper.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"nsvlrsxof5-{0}-tef8z25zm7-tef8z25zm7.gz"},"Patterns":null},"cropper.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/cropper.min.js"},"Patterns":null},"cropper.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ke9t4lehyl-{0}-9ydfkw1ttr-9ydfkw1ttr.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}} \ No newline at end of file diff --git a/obj/Debug/net10.0/staticwebassets.pack.json b/obj/Debug/net10.0/staticwebassets.pack.json new file mode 100644 index 0000000..8bba920 --- /dev/null +++ b/obj/Debug/net10.0/staticwebassets.pack.json @@ -0,0 +1,49 @@ +{ + "Files": [ + { + "Id": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/wwwroot/css/cropper.min.css", + "PackagePath": "staticwebassets/css/cropper.min.css" + }, + { + "Id": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/wwwroot/js/crop.js", + "PackagePath": "staticwebassets/js/crop.js" + }, + { + "Id": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/wwwroot/js/cropper.min.js", + "PackagePath": "staticwebassets/js/cropper.min.js" + }, + { + "Id": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/wwwroot/js/mediaInterop.js", + "PackagePath": "staticwebassets/js/mediaInterop.js" + }, + { + "Id": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/wwwroot/lib/cropper.min.css", + "PackagePath": "staticwebassets/lib/cropper.min.css" + }, + { + "Id": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/wwwroot/lib/cropper.min.js", + "PackagePath": "staticwebassets/lib/cropper.min.js" + }, + { + "Id": "obj/Debug/net10.0/staticwebassets/msbuild.Media.RCL.Microsoft.AspNetCore.StaticWebAssetEndpoints.props", + "PackagePath": "build\\Microsoft.AspNetCore.StaticWebAssetEndpoints.props" + }, + { + "Id": "obj/Debug/net10.0/staticwebassets/msbuild.Media.RCL.Microsoft.AspNetCore.StaticWebAssets.props", + "PackagePath": "build\\Microsoft.AspNetCore.StaticWebAssets.props" + }, + { + "Id": "obj/Debug/net10.0/staticwebassets/msbuild.build.Media.RCL.props", + "PackagePath": "build\\Media.RCL.props" + }, + { + "Id": "obj/Debug/net10.0/staticwebassets/msbuild.buildMultiTargeting.Media.RCL.props", + "PackagePath": "buildMultiTargeting\\Media.RCL.props" + }, + { + "Id": "obj/Debug/net10.0/staticwebassets/msbuild.buildTransitive.Media.RCL.props", + "PackagePath": "buildTransitive\\Media.RCL.props" + } + ], + "ElementsToRemove": [] +} \ No newline at end of file diff --git a/obj/Debug/net10.0/staticwebassets/msbuild.Media.Microsoft.AspNetCore.StaticWebAssetEndpoints.props b/obj/Debug/net10.0/staticwebassets/msbuild.Media.Microsoft.AspNetCore.StaticWebAssetEndpoints.props new file mode 100644 index 0000000..65d6272 --- /dev/null +++ b/obj/Debug/net10.0/staticwebassets/msbuild.Media.Microsoft.AspNetCore.StaticWebAssetEndpoints.props @@ -0,0 +1,76 @@ + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\css\cropper.min.css')) + + + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\css\cropper.min.css')) + + + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\js\crop.js')) + + + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\js\crop.js')) + + + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\js\cropper.min.js')) + + + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\js\cropper.min.js')) + + + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\js\mediaInterop.js')) + + + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\js\mediaInterop.js')) + + + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\lib\cropper.min.js')) + + + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\lib\cropper.min.css')) + + + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\lib\cropper.min.js')) + + + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\lib\cropper.min.css')) + + + + + + \ No newline at end of file diff --git a/obj/Debug/net10.0/staticwebassets/msbuild.Media.Microsoft.AspNetCore.StaticWebAssets.props b/obj/Debug/net10.0/staticwebassets/msbuild.Media.Microsoft.AspNetCore.StaticWebAssets.props new file mode 100644 index 0000000..1f4dab5 --- /dev/null +++ b/obj/Debug/net10.0/staticwebassets/msbuild.Media.Microsoft.AspNetCore.StaticWebAssets.props @@ -0,0 +1,124 @@ + + + + Package + Media + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/Media + css/cropper.min.css + All + All + Primary + + + + ozxrxjrq84 + LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4= + Never + PreserveNewest + 4947 + Sun, 21 Dec 2025 15:00:39 GMT + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\css\cropper.min.css')) + + + Package + Media + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/Media + js/crop.js + All + All + Primary + + + + rzaytjouo0 + 2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI= + Never + PreserveNewest + 2474 + Tue, 23 Dec 2025 11:59:06 GMT + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\js\crop.js')) + + + Package + Media + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/Media + js/cropper.min.js + All + All + Primary + + + + llc9n82qda + Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI= + Never + PreserveNewest + 22252 + Sun, 21 Dec 2025 18:23:00 GMT + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\js\cropper.min.js')) + + + Package + Media + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/Media + js/mediaInterop.js + All + All + Primary + + + + j3t2utpur3 + z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA= + Never + PreserveNewest + 2220 + Wed, 24 Dec 2025 09:42:14 GMT + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\js\mediaInterop.js')) + + + Package + Media + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/Media + lib/cropper.min.css + All + All + Primary + + + + tef8z25zm7 + BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8= + Never + PreserveNewest + 3804 + Mon, 11 Aug 2025 12:38:41 GMT + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\lib\cropper.min.css')) + + + Package + Media + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/Media + lib/cropper.min.js + All + All + Primary + + + + 9ydfkw1ttr + YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc= + Never + PreserveNewest + 37035 + Mon, 11 Aug 2025 12:38:41 GMT + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\lib\cropper.min.js')) + + + \ No newline at end of file diff --git a/obj/Debug/net10.0/staticwebassets/msbuild.Media.RCL.Microsoft.AspNetCore.StaticWebAssetEndpoints.props b/obj/Debug/net10.0/staticwebassets/msbuild.Media.RCL.Microsoft.AspNetCore.StaticWebAssetEndpoints.props new file mode 100644 index 0000000..a5a0309 --- /dev/null +++ b/obj/Debug/net10.0/staticwebassets/msbuild.Media.RCL.Microsoft.AspNetCore.StaticWebAssetEndpoints.props @@ -0,0 +1,76 @@ + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\css\cropper.min.css')) + + + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\css\cropper.min.css')) + + + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\js\crop.js')) + + + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\js\crop.js')) + + + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\js\cropper.min.js')) + + + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\js\cropper.min.js')) + + + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\js\mediaInterop.js')) + + + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\js\mediaInterop.js')) + + + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\lib\cropper.min.js')) + + + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\lib\cropper.min.css')) + + + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\lib\cropper.min.js')) + + + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\lib\cropper.min.css')) + + + + + + \ No newline at end of file diff --git a/obj/Debug/net10.0/staticwebassets/msbuild.Media.RCL.Microsoft.AspNetCore.StaticWebAssets.props b/obj/Debug/net10.0/staticwebassets/msbuild.Media.RCL.Microsoft.AspNetCore.StaticWebAssets.props new file mode 100644 index 0000000..10c1259 --- /dev/null +++ b/obj/Debug/net10.0/staticwebassets/msbuild.Media.RCL.Microsoft.AspNetCore.StaticWebAssets.props @@ -0,0 +1,124 @@ + + + + Package + Media.RCL + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/Media.RCL + css/cropper.min.css + All + All + Primary + + + + ozxrxjrq84 + LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4= + Never + PreserveNewest + 4947 + Sun, 21 Dec 2025 15:00:39 GMT + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\css\cropper.min.css')) + + + Package + Media.RCL + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/Media.RCL + js/crop.js + All + All + Primary + + + + rzaytjouo0 + 2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI= + Never + PreserveNewest + 2474 + Tue, 23 Dec 2025 11:59:06 GMT + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\js\crop.js')) + + + Package + Media.RCL + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/Media.RCL + js/cropper.min.js + All + All + Primary + + + + llc9n82qda + Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI= + Never + PreserveNewest + 22252 + Sun, 21 Dec 2025 18:23:00 GMT + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\js\cropper.min.js')) + + + Package + Media.RCL + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/Media.RCL + js/mediaInterop.js + All + All + Primary + + + + j3t2utpur3 + z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA= + Never + PreserveNewest + 2220 + Wed, 24 Dec 2025 09:42:14 GMT + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\js\mediaInterop.js')) + + + Package + Media.RCL + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/Media.RCL + lib/cropper.min.css + All + All + Primary + + + + tef8z25zm7 + BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8= + Never + PreserveNewest + 3804 + Mon, 11 Aug 2025 12:38:41 GMT + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\lib\cropper.min.css')) + + + Package + Media.RCL + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/Media.RCL + lib/cropper.min.js + All + All + Primary + + + + 9ydfkw1ttr + YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc= + Never + PreserveNewest + 37035 + Mon, 11 Aug 2025 12:38:41 GMT + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\lib\cropper.min.js')) + + + \ No newline at end of file diff --git a/obj/Debug/net10.0/staticwebassets/msbuild.build.Media.RCL.props b/obj/Debug/net10.0/staticwebassets/msbuild.build.Media.RCL.props new file mode 100644 index 0000000..ddaed44 --- /dev/null +++ b/obj/Debug/net10.0/staticwebassets/msbuild.build.Media.RCL.props @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/obj/Debug/net10.0/staticwebassets/msbuild.build.Media.props b/obj/Debug/net10.0/staticwebassets/msbuild.build.Media.props new file mode 100644 index 0000000..ddaed44 --- /dev/null +++ b/obj/Debug/net10.0/staticwebassets/msbuild.build.Media.props @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/obj/Debug/net10.0/staticwebassets/msbuild.buildMultiTargeting.Media.RCL.props b/obj/Debug/net10.0/staticwebassets/msbuild.buildMultiTargeting.Media.RCL.props new file mode 100644 index 0000000..cddb7f2 --- /dev/null +++ b/obj/Debug/net10.0/staticwebassets/msbuild.buildMultiTargeting.Media.RCL.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/obj/Debug/net10.0/staticwebassets/msbuild.buildMultiTargeting.Media.props b/obj/Debug/net10.0/staticwebassets/msbuild.buildMultiTargeting.Media.props new file mode 100644 index 0000000..b1919fc --- /dev/null +++ b/obj/Debug/net10.0/staticwebassets/msbuild.buildMultiTargeting.Media.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/obj/Debug/net10.0/staticwebassets/msbuild.buildTransitive.Media.RCL.props b/obj/Debug/net10.0/staticwebassets/msbuild.buildTransitive.Media.RCL.props new file mode 100644 index 0000000..393f322 --- /dev/null +++ b/obj/Debug/net10.0/staticwebassets/msbuild.buildTransitive.Media.RCL.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/obj/Debug/net10.0/staticwebassets/msbuild.buildTransitive.Media.props b/obj/Debug/net10.0/staticwebassets/msbuild.buildTransitive.Media.props new file mode 100644 index 0000000..41ef465 --- /dev/null +++ b/obj/Debug/net10.0/staticwebassets/msbuild.buildTransitive.Media.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/obj/Debug/net10.0/swae.build.ex.cache b/obj/Debug/net10.0/swae.build.ex.cache new file mode 100644 index 0000000..e69de29 diff --git a/obj/Debug/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs b/obj/Debug/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs new file mode 100644 index 0000000..feda5e9 --- /dev/null +++ b/obj/Debug/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v9.0", FrameworkDisplayName = ".NET 9.0")] diff --git a/obj/Debug/net9.0/Generic.Media.AssemblyInfo.cs b/obj/Debug/net9.0/Generic.Media.AssemblyInfo.cs new file mode 100644 index 0000000..2b7c59d --- /dev/null +++ b/obj/Debug/net9.0/Generic.Media.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Generic.Media")] +[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("Generic.Media")] +[assembly: System.Reflection.AssemblyTitleAttribute("Generic.Media")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/obj/Debug/net9.0/Generic.Media.AssemblyInfoInputs.cache b/obj/Debug/net9.0/Generic.Media.AssemblyInfoInputs.cache new file mode 100644 index 0000000..1848777 --- /dev/null +++ b/obj/Debug/net9.0/Generic.Media.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +f70c379481ee7316fd2f4e7412924169fcde1132f029a932456ed5219a700b08 diff --git a/obj/Debug/net9.0/Generic.Media.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net9.0/Generic.Media.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..2f44903 --- /dev/null +++ b/obj/Debug/net9.0/Generic.Media.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,45 @@ +is_global = true +build_property.TargetFramework = net9.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows,browser +build_property.RootNamespace = Generic.Media +build_property.RootNamespace = Generic.Media +build_property.ProjectDir = /mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.RazorLangVersion = 9.0 +build_property.SupportLocalizedComponentNames = +build_property.GenerateRazorMetadataSourceChecksumAttributes = +build_property.MSBuildProjectDirectory = /mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media +build_property._RazorSourceGeneratorDebug = +build_property.EffectiveAnalysisLevelStyle = 9.0 +build_property.EnableCodeStyleSeverity = + +[/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/Components/ExternalLinkInput.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9FeHRlcm5hbExpbmtJbnB1dC5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = b-ba8eakrqiz + +[/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/Components/ImageCropper.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9JbWFnZUNyb3BwZXIucmF6b3I= +build_metadata.AdditionalFiles.CssScope = b-h9ebm3bi59 + +[/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/Components/MediaDropZone.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9NZWRpYURyb3Bab25lLnJhem9y +build_metadata.AdditionalFiles.CssScope = b-s2uvluvhrd + +[/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/Components/MediaItemCard.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9NZWRpYUl0ZW1DYXJkLnJhem9y +build_metadata.AdditionalFiles.CssScope = b-h9vymkbw48 + +[/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/Components/MediaUploadContainer.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9NZWRpYVVwbG9hZENvbnRhaW5lci5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = b-ga67n73403 + +[/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/Components/SortableMediaList.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9Tb3J0YWJsZU1lZGlhTGlzdC5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = b-2ro0qdxrpc diff --git a/obj/Debug/net9.0/Generic.Media.GlobalUsings.g.cs b/obj/Debug/net9.0/Generic.Media.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/obj/Debug/net9.0/Generic.Media.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/obj/Debug/net9.0/Generic.Media.assets.cache b/obj/Debug/net9.0/Generic.Media.assets.cache new file mode 100644 index 0000000..425f263 Binary files /dev/null and b/obj/Debug/net9.0/Generic.Media.assets.cache differ diff --git a/obj/Debug/net9.0/Generic.Media.csproj.AssemblyReference.cache b/obj/Debug/net9.0/Generic.Media.csproj.AssemblyReference.cache new file mode 100644 index 0000000..ef80a19 Binary files /dev/null and b/obj/Debug/net9.0/Generic.Media.csproj.AssemblyReference.cache differ diff --git a/obj/Debug/net9.0/Generic.Media.csproj.CoreCompileInputs.cache b/obj/Debug/net9.0/Generic.Media.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..bad3c20 --- /dev/null +++ b/obj/Debug/net9.0/Generic.Media.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +50baf9ed7b930996b51b3531dab8a153cf895bfe9f3da6dfe60ca0c8ca4072f5 diff --git a/obj/Debug/net9.0/Generic.Media.csproj.FileListAbsolute.txt b/obj/Debug/net9.0/Generic.Media.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..b1cc905 --- /dev/null +++ b/obj/Debug/net9.0/Generic.Media.csproj.FileListAbsolute.txt @@ -0,0 +1,38 @@ +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/Generic.Media.csproj.AssemblyReference.cache +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/rpswa.dswa.cache.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/Generic.Media.GeneratedMSBuildEditorConfig.editorconfig +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/Generic.Media.AssemblyInfoInputs.cache +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/Generic.Media.AssemblyInfo.cs +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/Generic.Media.csproj.CoreCompileInputs.cache +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/bin/Debug/net9.0/Generic.Media.staticwebassets.runtime.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/bin/Debug/net9.0/Generic.Media.staticwebassets.endpoints.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/bin/Debug/net9.0/Generic.Media.deps.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/bin/Debug/net9.0/Generic.Media.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/bin/Debug/net9.0/Generic.Media.pdb +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/rjimswa.dswa.cache.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/rjsmrazor.dswa.cache.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/rjsmcshtml.dswa.cache.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/scopedcss/Components/ExternalLinkInput.razor.rz.scp.css +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/scopedcss/Components/ImageCropper.razor.rz.scp.css +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/scopedcss/Components/MediaDropZone.razor.rz.scp.css +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/scopedcss/Components/MediaItemCard.razor.rz.scp.css +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/scopedcss/Components/MediaUploadContainer.razor.rz.scp.css +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/scopedcss/Components/SortableMediaList.razor.rz.scp.css +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/scopedcss/bundle/Generic.Media.styles.css +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/scopedcss/projectbundle/Generic.Media.bundle.scp.css +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/compressed/gn7dnb4sy6-utf1jbkre2.gz +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/compressed/7uwt1i8ou6-utf1jbkre2.gz +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/staticwebassets.build.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/staticwebassets.build.json.cache +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/staticwebassets.development.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/staticwebassets.build.endpoints.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/staticwebassets/msbuild.Generic.Media.Microsoft.AspNetCore.StaticWebAssets.props +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/staticwebassets/msbuild.Generic.Media.Microsoft.AspNetCore.StaticWebAssetEndpoints.props +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/staticwebassets/msbuild.build.Generic.Media.props +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/staticwebassets/msbuild.buildMultiTargeting.Generic.Media.props +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/staticwebassets/msbuild.buildTransitive.Generic.Media.props +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/staticwebassets.pack.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/Generic.Media.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/refint/Generic.Media.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/Generic.Media.pdb +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/ref/Generic.Media.dll diff --git a/obj/Debug/net9.0/Generic.Media.dll b/obj/Debug/net9.0/Generic.Media.dll new file mode 100644 index 0000000..ecd7b21 Binary files /dev/null and b/obj/Debug/net9.0/Generic.Media.dll differ diff --git a/obj/Debug/net9.0/Generic.Media.pdb b/obj/Debug/net9.0/Generic.Media.pdb new file mode 100644 index 0000000..bc92a4e Binary files /dev/null and b/obj/Debug/net9.0/Generic.Media.pdb differ diff --git a/obj/Debug/net9.0/Media.AssemblyInfo.cs b/obj/Debug/net9.0/Media.AssemblyInfo.cs new file mode 100644 index 0000000..6a9e7cc --- /dev/null +++ b/obj/Debug/net9.0/Media.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Media")] +[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("Media")] +[assembly: System.Reflection.AssemblyTitleAttribute("Media")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/obj/Debug/net9.0/Media.AssemblyInfoInputs.cache b/obj/Debug/net9.0/Media.AssemblyInfoInputs.cache new file mode 100644 index 0000000..2c45f63 --- /dev/null +++ b/obj/Debug/net9.0/Media.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +8a8cf2a30cbf24199b8398c214e783c86dd4e82dbcdf7af3347ae9814c45ea4c diff --git a/obj/Debug/net9.0/Media.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net9.0/Media.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..0d9d2a9 --- /dev/null +++ b/obj/Debug/net9.0/Media.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,59 @@ +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.Media +build_property.RootNamespace = Generic.Media +build_property.ProjectDir = /mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/ +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/Media +build_property._RazorSourceGeneratorDebug = +build_property.EffectiveAnalysisLevelStyle = 9.0 +build_property.EnableCodeStyleSeverity = + +[/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Components/Cropper.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9Dcm9wcGVyLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Components/ExternalLinkInput.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9FeHRlcm5hbExpbmtJbnB1dC5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Components/ImageCropper.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9JbWFnZUNyb3BwZXIucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Components/Media.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9NZWRpYS5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Components/MediaDropZone.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9NZWRpYURyb3Bab25lLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Components/MediaItemCard.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9NZWRpYUl0ZW1DYXJkLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Components/MediaUploadContainer.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9NZWRpYVVwbG9hZENvbnRhaW5lci5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Components/SortableMediaList.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9Tb3J0YWJsZU1lZGlhTGlzdC5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/_Imports.razor] +build_metadata.AdditionalFiles.TargetPath = X0ltcG9ydHMucmF6b3I= +build_metadata.AdditionalFiles.CssScope = diff --git a/obj/Debug/net9.0/Media.GlobalUsings.g.cs b/obj/Debug/net9.0/Media.GlobalUsings.g.cs new file mode 100644 index 0000000..d12bcbc --- /dev/null +++ b/obj/Debug/net9.0/Media.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using System; +global using System.Collections.Generic; +global using System.IO; +global using System.Linq; +global using System.Net.Http; +global using System.Threading; +global using System.Threading.Tasks; diff --git a/obj/Debug/net9.0/Media.assets.cache b/obj/Debug/net9.0/Media.assets.cache new file mode 100644 index 0000000..17177c7 Binary files /dev/null and b/obj/Debug/net9.0/Media.assets.cache differ diff --git a/obj/Debug/net9.0/Media.csproj.AssemblyReference.cache b/obj/Debug/net9.0/Media.csproj.AssemblyReference.cache new file mode 100644 index 0000000..3c7987b Binary files /dev/null and b/obj/Debug/net9.0/Media.csproj.AssemblyReference.cache differ diff --git a/obj/Debug/net9.0/Media.csproj.CoreCompileInputs.cache b/obj/Debug/net9.0/Media.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..1fe0e38 --- /dev/null +++ b/obj/Debug/net9.0/Media.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +99d0a715c684c8dfdd5dcf91d4edea489882da565cf085fb84789da71156a850 diff --git a/obj/Debug/net9.0/Media.csproj.FileListAbsolute.txt b/obj/Debug/net9.0/Media.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..c8e8663 --- /dev/null +++ b/obj/Debug/net9.0/Media.csproj.FileListAbsolute.txt @@ -0,0 +1,71 @@ +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/Media.csproj.AssemblyReference.cache +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/rpswa.dswa.cache.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/Media.GeneratedMSBuildEditorConfig.editorconfig +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/Media.AssemblyInfoInputs.cache +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/Media.AssemblyInfo.cs +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/Media.csproj.CoreCompileInputs.cache +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/bin/Debug/net9.0/Media.staticwebassets.runtime.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/bin/Debug/net9.0/Media.staticwebassets.endpoints.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/bin/Debug/net9.0/Media.deps.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/bin/Debug/net9.0/Media.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/bin/Debug/net9.0/Media.pdb +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/rjimswa.dswa.cache.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/rjsmrazor.dswa.cache.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/rjsmcshtml.dswa.cache.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/scopedcss/bundle/Media.styles.css +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/compressed/cfog6n5tcn-ozxrxjrq84.gz +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/compressed/6475xpiqob-rzaytjouo0.gz +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/compressed/a1l3n5r079-llc9n82qda.gz +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/compressed/ozu905yipp-tef8z25zm7.gz +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/compressed/dqwik5h0u9-9ydfkw1ttr.gz +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/staticwebassets.build.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/staticwebassets.build.json.cache +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/staticwebassets.development.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/staticwebassets.build.endpoints.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/staticwebassets/msbuild.Media.Microsoft.AspNetCore.StaticWebAssets.props +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/staticwebassets/msbuild.Media.Microsoft.AspNetCore.StaticWebAssetEndpoints.props +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/staticwebassets/msbuild.build.Media.props +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/staticwebassets/msbuild.buildMultiTargeting.Media.props +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/staticwebassets/msbuild.buildTransitive.Media.props +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/staticwebassets.pack.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/Media.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/refint/Media.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/Media.pdb +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/ref/Media.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/compressed/e9z9tclwgg-j3t2utpur3.gz +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/bin/Debug/net9.0/Media.staticwebassets.endpoints.json +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/bin/Debug/net9.0/Media.staticwebassets.runtime.json +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/bin/Debug/net9.0/Media.deps.json +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/bin/Debug/net9.0/Media.dll +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/bin/Debug/net9.0/Media.pdb +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/Media.csproj.AssemblyReference.cache +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/rpswa.dswa.cache.json +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/Media.GeneratedMSBuildEditorConfig.editorconfig +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/Media.AssemblyInfoInputs.cache +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/Media.AssemblyInfo.cs +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/Media.csproj.CoreCompileInputs.cache +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/rjimswa.dswa.cache.json +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/rjsmrazor.dswa.cache.json +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/rjsmcshtml.dswa.cache.json +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/scopedcss/bundle/Media.styles.css +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/staticwebassets.build.json +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/staticwebassets.build.json.cache +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/staticwebassets.development.json +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/staticwebassets.build.endpoints.json +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/staticwebassets/msbuild.Media.Microsoft.AspNetCore.StaticWebAssets.props +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/staticwebassets/msbuild.Media.Microsoft.AspNetCore.StaticWebAssetEndpoints.props +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/staticwebassets/msbuild.build.Media.props +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/staticwebassets/msbuild.buildMultiTargeting.Media.props +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/staticwebassets/msbuild.buildTransitive.Media.props +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/staticwebassets.pack.json +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/Media.dll +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/refint/Media.dll +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/Media.pdb +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/ref/Media.dll +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/compressed/63e88vs3br-{0}-ozxrxjrq84-ozxrxjrq84.gz +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/compressed/lps60iqv38-{0}-rzaytjouo0-rzaytjouo0.gz +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/compressed/srub7l4ycb-{0}-llc9n82qda-llc9n82qda.gz +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/compressed/do8do2nz96-{0}-j3t2utpur3-j3t2utpur3.gz +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/compressed/0m7r05w73h-{0}-tef8z25zm7-tef8z25zm7.gz +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/compressed/xgz1hv2puc-{0}-9ydfkw1ttr-9ydfkw1ttr.gz +/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/swae.build.ex.cache diff --git a/obj/Debug/net9.0/Media.dll b/obj/Debug/net9.0/Media.dll new file mode 100644 index 0000000..9678c8f Binary files /dev/null and b/obj/Debug/net9.0/Media.dll differ diff --git a/obj/Debug/net9.0/Media.pdb b/obj/Debug/net9.0/Media.pdb new file mode 100644 index 0000000..069131a Binary files /dev/null and b/obj/Debug/net9.0/Media.pdb differ diff --git a/obj/Debug/net9.0/compressed/0m7r05w73h-{0}-tef8z25zm7-tef8z25zm7.gz b/obj/Debug/net9.0/compressed/0m7r05w73h-{0}-tef8z25zm7-tef8z25zm7.gz new file mode 100644 index 0000000..c5c8719 Binary files /dev/null and b/obj/Debug/net9.0/compressed/0m7r05w73h-{0}-tef8z25zm7-tef8z25zm7.gz differ diff --git a/obj/Debug/net9.0/compressed/63e88vs3br-{0}-ozxrxjrq84-ozxrxjrq84.gz b/obj/Debug/net9.0/compressed/63e88vs3br-{0}-ozxrxjrq84-ozxrxjrq84.gz new file mode 100644 index 0000000..84df594 Binary files /dev/null and b/obj/Debug/net9.0/compressed/63e88vs3br-{0}-ozxrxjrq84-ozxrxjrq84.gz differ diff --git a/obj/Debug/net9.0/compressed/7uwt1i8ou6-utf1jbkre2.gz b/obj/Debug/net9.0/compressed/7uwt1i8ou6-utf1jbkre2.gz new file mode 100644 index 0000000..da4ac34 Binary files /dev/null and b/obj/Debug/net9.0/compressed/7uwt1i8ou6-utf1jbkre2.gz differ diff --git a/obj/Debug/net9.0/compressed/do8do2nz96-{0}-j3t2utpur3-j3t2utpur3.gz b/obj/Debug/net9.0/compressed/do8do2nz96-{0}-j3t2utpur3-j3t2utpur3.gz new file mode 100644 index 0000000..d33a034 Binary files /dev/null and b/obj/Debug/net9.0/compressed/do8do2nz96-{0}-j3t2utpur3-j3t2utpur3.gz differ diff --git a/obj/Debug/net9.0/compressed/gn7dnb4sy6-utf1jbkre2.gz b/obj/Debug/net9.0/compressed/gn7dnb4sy6-utf1jbkre2.gz new file mode 100644 index 0000000..da4ac34 Binary files /dev/null and b/obj/Debug/net9.0/compressed/gn7dnb4sy6-utf1jbkre2.gz differ diff --git a/obj/Debug/net9.0/compressed/lps60iqv38-{0}-rzaytjouo0-rzaytjouo0.gz b/obj/Debug/net9.0/compressed/lps60iqv38-{0}-rzaytjouo0-rzaytjouo0.gz new file mode 100644 index 0000000..e846831 Binary files /dev/null and b/obj/Debug/net9.0/compressed/lps60iqv38-{0}-rzaytjouo0-rzaytjouo0.gz differ diff --git a/obj/Debug/net9.0/compressed/srub7l4ycb-{0}-llc9n82qda-llc9n82qda.gz b/obj/Debug/net9.0/compressed/srub7l4ycb-{0}-llc9n82qda-llc9n82qda.gz new file mode 100644 index 0000000..609cafe Binary files /dev/null and b/obj/Debug/net9.0/compressed/srub7l4ycb-{0}-llc9n82qda-llc9n82qda.gz differ diff --git a/obj/Debug/net9.0/compressed/xgz1hv2puc-{0}-9ydfkw1ttr-9ydfkw1ttr.gz b/obj/Debug/net9.0/compressed/xgz1hv2puc-{0}-9ydfkw1ttr-9ydfkw1ttr.gz new file mode 100644 index 0000000..a04c7c0 Binary files /dev/null and b/obj/Debug/net9.0/compressed/xgz1hv2puc-{0}-9ydfkw1ttr-9ydfkw1ttr.gz differ diff --git a/obj/Debug/net9.0/rbcswa.dswa.cache.json b/obj/Debug/net9.0/rbcswa.dswa.cache.json new file mode 100644 index 0000000..b0c681f --- /dev/null +++ b/obj/Debug/net9.0/rbcswa.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"2ilJ2M8+ZdH0swl4cXFj9Ji8kay0R08ISE/fEc+OL0o=","FingerprintPatternsHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["CZQL6KhulWkMfFhH19ywOfvpxTHYVpPOQJUZMr9oRjc=","nYRZsOdHN0j5IhRUtoe2\u002BKr92u2Zt6lAGa/no1rPqfQ=","t7W8qehfr80n4/iJDRR/BLIzIa0ZEkvM7/Ax/UtKB6c=","ImD3bZ8iQfg7IsXj2tmTET6tW/bUAqSBs\u002Bzsw2K9D2E=","/VJR81jR/2ADWg0Fijck\u002BPeeZot9x4\u002BtzVonKoiM4EM=","om6efvNbI58vy8AcSQrS3MWKdKd3vgB6BD1bXYl4DTI="],"CachedAssets":{"/VJR81jR/2ADWg0Fijck\u002BPeeZot9x4\u002BtzVonKoiM4EM=":{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/compressed/0m7r05w73h-{0}-tef8z25zm7-tef8z25zm7.gz","SourceId":"Media","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/compressed/","BasePath":"_content/Media","RelativePath":"lib/cropper.min#[.{fingerprint=tef8z25zm7}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/lib/cropper.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"36bdfox6nl","Integrity":"NSflKeEMawOcrQQ9CCT\u002B62GRXfxdx7lRqbo6s837Rco=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/lib/cropper.min.css","FileLength":1267,"LastWriteTime":"2026-01-18T19:12:03.5435203+00:00"},"ImD3bZ8iQfg7IsXj2tmTET6tW/bUAqSBs\u002Bzsw2K9D2E=":{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/compressed/do8do2nz96-{0}-j3t2utpur3-j3t2utpur3.gz","SourceId":"Media","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/compressed/","BasePath":"_content/Media","RelativePath":"js/mediaInterop#[.{fingerprint=j3t2utpur3}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/js/mediaInterop.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"lr5mqwekj4","Integrity":"T3/OBNOu36GO1osR/HPqSS4Kvfy\u002BF1WbctC8XyL0RT8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/js/mediaInterop.js","FileLength":545,"LastWriteTime":"2026-01-18T19:12:03.5455203+00:00"},"om6efvNbI58vy8AcSQrS3MWKdKd3vgB6BD1bXYl4DTI=":{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/compressed/xgz1hv2puc-{0}-9ydfkw1ttr-9ydfkw1ttr.gz","SourceId":"Media","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/compressed/","BasePath":"_content/Media","RelativePath":"lib/cropper.min#[.{fingerprint=9ydfkw1ttr}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/lib/cropper.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"mo4tr6x4yf","Integrity":"CmAvCeXmzS67802QckdNfDy5ysuJ97AgSVrZr21Ayx4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/lib/cropper.min.js","FileLength":12224,"LastWriteTime":"2026-01-18T19:12:03.5445203+00:00"},"t7W8qehfr80n4/iJDRR/BLIzIa0ZEkvM7/Ax/UtKB6c=":{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/compressed/srub7l4ycb-{0}-llc9n82qda-llc9n82qda.gz","SourceId":"Media","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/compressed/","BasePath":"_content/Media","RelativePath":"js/cropper.min#[.{fingerprint=llc9n82qda}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/js/cropper.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"in7fmyx85p","Integrity":"foJ0q5a8aDAR6XNITGSl1z7UCT1gz628l6VhbhipoeE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/js/cropper.min.js","FileLength":6396,"LastWriteTime":"2026-01-18T19:12:03.5455203+00:00"},"nYRZsOdHN0j5IhRUtoe2\u002BKr92u2Zt6lAGa/no1rPqfQ=":{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/compressed/lps60iqv38-{0}-rzaytjouo0-rzaytjouo0.gz","SourceId":"Media","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/compressed/","BasePath":"_content/Media","RelativePath":"js/crop#[.{fingerprint=rzaytjouo0}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/js/crop.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"oa685rju99","Integrity":"4PKrXFgldfdLg4sTPCbLiDNGFl8cb0xvISy3R1WxV/A=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/js/crop.js","FileLength":918,"LastWriteTime":"2026-01-18T19:12:03.5435203+00:00"},"CZQL6KhulWkMfFhH19ywOfvpxTHYVpPOQJUZMr9oRjc=":{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/compressed/63e88vs3br-{0}-ozxrxjrq84-ozxrxjrq84.gz","SourceId":"Media","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/compressed/","BasePath":"_content/Media","RelativePath":"css/cropper.min#[.{fingerprint=ozxrxjrq84}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/css/cropper.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"u8tf0v9vye","Integrity":"MpKPXxBxrKehFS516PaXmpBvJtPuwJm\u002BpYkcNqI9Epo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/css/cropper.min.css","FileLength":1334,"LastWriteTime":"2026-01-18T19:12:03.5435203+00:00"}},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/obj/Debug/net9.0/ref/Generic.Media.dll b/obj/Debug/net9.0/ref/Generic.Media.dll new file mode 100644 index 0000000..63219b1 Binary files /dev/null and b/obj/Debug/net9.0/ref/Generic.Media.dll differ diff --git a/obj/Debug/net9.0/ref/Media.dll b/obj/Debug/net9.0/ref/Media.dll new file mode 100644 index 0000000..b10b649 Binary files /dev/null and b/obj/Debug/net9.0/ref/Media.dll differ diff --git a/obj/Debug/net9.0/refint/Generic.Media.dll b/obj/Debug/net9.0/refint/Generic.Media.dll new file mode 100644 index 0000000..63219b1 Binary files /dev/null and b/obj/Debug/net9.0/refint/Generic.Media.dll differ diff --git a/obj/Debug/net9.0/refint/Media.dll b/obj/Debug/net9.0/refint/Media.dll new file mode 100644 index 0000000..b10b649 Binary files /dev/null and b/obj/Debug/net9.0/refint/Media.dll differ diff --git a/obj/Debug/net9.0/rjimswa.dswa.cache.json b/obj/Debug/net9.0/rjimswa.dswa.cache.json new file mode 100644 index 0000000..1859def --- /dev/null +++ b/obj/Debug/net9.0/rjimswa.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"IMUiFuXLkdyGtpA64ieNhi+Vs9b1wgvC8ORlG8YpZ9g=","FingerprintPatternsHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","PropertyOverridesHash":"R7Rea/YQmcweqCbKffD9oUelggfpJQX85r65aYZsas0=","InputHashes":["/E4reVussO7kyS/7aVCcegbRJbjXAW3dkBubYAJZohE=","fQFVOIb9GKgU\u002BhAtxXSc7f8Aqb/8aUQPRb8xXN\u002B58zE=","jS1eQV8eY0vuNkiEuoTfG4l8mG11ke3IoJiuMEuG0O8=","0f\u002BAaT\u002BMLwl\u002BbDT84XR7Xl3kp9hIg\u002Bbus19gBTk7IGI=","Z9nfLm7ROFwCKrRrnLcq15Zjttilje0OxdTOrjx3dLY=","WH/unIqBhoWGPCiotjhWrmpXoiVu4Xo5VlZbuOo92fA="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/obj/Debug/net9.0/rjsmcshtml.dswa.cache.json b/obj/Debug/net9.0/rjsmcshtml.dswa.cache.json new file mode 100644 index 0000000..fe9d52f --- /dev/null +++ b/obj/Debug/net9.0/rjsmcshtml.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"0sGW2uXS5pLq+vhxi4pFIPH53bAtUT8A1DVl4pVDVQk=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["CriX0xlSs4j6bWs\u002Btknwdt1YnlbE35idaAuBqo1mazM=","c3VCCVz46zN1H5cM3wlxM1LyZ3WsdbB4uBdZpX90DCc=","5mwgrzZgAQl94/AZ0umiYVloc4Arbj9eWh4ZFgHw1xo=","2moDi7anNVx/hv53ySh3or7VTtGLZ91U\u002BkuWpOedFsg=","tIxPmQz5bAZdHcWAnA2eJD65GIwyBiPHql\u002BDS7qfRw0=","rak0mglaFHUuky3U8m5n5RnJRDmhzOazxVTWsW\u002BGNcM=","jzpZRMm0/JeAkEAD6xOVR5idF3wsw4evuOVtZ/uPZQE=","j9ehGHf2TdCXan3XbemwoIm\u002BZzpo/M9IQiFLOVddeZc=","tpu7FRBrMthUNjttvmpMF8\u002BngCKPs9Lxq/otmMwTIWs=","XY0v4xWaH946Zk4C1YkTfpxFZyhFsV/ywZIDSb1zbw8=","QniZ\u002B5dKZ33HkJxj6pZCVN6KxxzRA1u\u002BRKBsQdd5hO0=","QsuwZSRPghFjOoNXylFTuzMbD9rHDEnBcSzBCBlp0tA=","AWBrJVnarKlePemi0YvB61r6kcJcU6cRdA7YZYLiVlU=","Oeyx27PVu2iZvPFus400xThNojxX3rRT3/QTw\u002Bp5QKU=","5zciHw44t92FmmQb9lNlhUqDOE34GCe5LglBW/xy6R0="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/obj/Debug/net9.0/rjsmrazor.dswa.cache.json b/obj/Debug/net9.0/rjsmrazor.dswa.cache.json new file mode 100644 index 0000000..c49e6c0 --- /dev/null +++ b/obj/Debug/net9.0/rjsmrazor.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"K41fK4c4srRcHqoLyfH9bg6GZEyIuG27+Tp9Lp+4l0g=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["CriX0xlSs4j6bWs\u002Btknwdt1YnlbE35idaAuBqo1mazM=","c3VCCVz46zN1H5cM3wlxM1LyZ3WsdbB4uBdZpX90DCc=","5mwgrzZgAQl94/AZ0umiYVloc4Arbj9eWh4ZFgHw1xo=","2moDi7anNVx/hv53ySh3or7VTtGLZ91U\u002BkuWpOedFsg=","tIxPmQz5bAZdHcWAnA2eJD65GIwyBiPHql\u002BDS7qfRw0=","rak0mglaFHUuky3U8m5n5RnJRDmhzOazxVTWsW\u002BGNcM=","jzpZRMm0/JeAkEAD6xOVR5idF3wsw4evuOVtZ/uPZQE=","j9ehGHf2TdCXan3XbemwoIm\u002BZzpo/M9IQiFLOVddeZc=","tpu7FRBrMthUNjttvmpMF8\u002BngCKPs9Lxq/otmMwTIWs=","XY0v4xWaH946Zk4C1YkTfpxFZyhFsV/ywZIDSb1zbw8=","QniZ\u002B5dKZ33HkJxj6pZCVN6KxxzRA1u\u002BRKBsQdd5hO0=","QsuwZSRPghFjOoNXylFTuzMbD9rHDEnBcSzBCBlp0tA=","AWBrJVnarKlePemi0YvB61r6kcJcU6cRdA7YZYLiVlU=","Oeyx27PVu2iZvPFus400xThNojxX3rRT3/QTw\u002Bp5QKU=","5zciHw44t92FmmQb9lNlhUqDOE34GCe5LglBW/xy6R0="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/obj/Debug/net9.0/rpswa.dswa.cache.json b/obj/Debug/net9.0/rpswa.dswa.cache.json new file mode 100644 index 0000000..58e6940 --- /dev/null +++ b/obj/Debug/net9.0/rpswa.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"LrfD4NyH+g2IXtWv3hUwY1vVt1i2h0YyxhantVSq5+k=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["CriX0xlSs4j6bWs\u002Btknwdt1YnlbE35idaAuBqo1mazM=","c3VCCVz46zN1H5cM3wlxM1LyZ3WsdbB4uBdZpX90DCc=","5mwgrzZgAQl94/AZ0umiYVloc4Arbj9eWh4ZFgHw1xo=","2moDi7anNVx/hv53ySh3or7VTtGLZ91U\u002BkuWpOedFsg=","tIxPmQz5bAZdHcWAnA2eJD65GIwyBiPHql\u002BDS7qfRw0=","rak0mglaFHUuky3U8m5n5RnJRDmhzOazxVTWsW\u002BGNcM=","jzpZRMm0/JeAkEAD6xOVR5idF3wsw4evuOVtZ/uPZQE=","j9ehGHf2TdCXan3XbemwoIm\u002BZzpo/M9IQiFLOVddeZc=","tpu7FRBrMthUNjttvmpMF8\u002BngCKPs9Lxq/otmMwTIWs=","XY0v4xWaH946Zk4C1YkTfpxFZyhFsV/ywZIDSb1zbw8=","QniZ\u002B5dKZ33HkJxj6pZCVN6KxxzRA1u\u002BRKBsQdd5hO0=","QsuwZSRPghFjOoNXylFTuzMbD9rHDEnBcSzBCBlp0tA=","AWBrJVnarKlePemi0YvB61r6kcJcU6cRdA7YZYLiVlU=","Oeyx27PVu2iZvPFus400xThNojxX3rRT3/QTw\u002Bp5QKU=","5zciHw44t92FmmQb9lNlhUqDOE34GCe5LglBW/xy6R0="],"CachedAssets":{"CriX0xlSs4j6bWs\u002Btknwdt1YnlbE35idaAuBqo1mazM=":{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/css/cropper.min.css","SourceId":"Media","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/","BasePath":"_content/Media","RelativePath":"css/cropper.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"ozxrxjrq84","Integrity":"LP6S4rrMHwW9\u002BZrTEksQX94YXfWAGSn/zoj2yGvz\u002Bx4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/css/cropper.min.css","FileLength":4947,"LastWriteTime":"2025-12-21T15:00:39.7766331+00:00"},"c3VCCVz46zN1H5cM3wlxM1LyZ3WsdbB4uBdZpX90DCc=":{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/js/crop.js","SourceId":"Media","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/","BasePath":"_content/Media","RelativePath":"js/crop#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"rzaytjouo0","Integrity":"2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/js/crop.js","FileLength":2474,"LastWriteTime":"2025-12-23T11:59:06.639292+00:00"},"5mwgrzZgAQl94/AZ0umiYVloc4Arbj9eWh4ZFgHw1xo=":{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/js/cropper.min.js","SourceId":"Media","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/","BasePath":"_content/Media","RelativePath":"js/cropper.min#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"llc9n82qda","Integrity":"Cd\u002B\u002Be8mN4ylC3IhQ\u002BeHydts7i5FpT0rQpyBxiMAEpyI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/js/cropper.min.js","FileLength":22252,"LastWriteTime":"2025-12-21T18:23:00.9832314+00:00"},"2moDi7anNVx/hv53ySh3or7VTtGLZ91U\u002BkuWpOedFsg=":{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/js/mediaInterop.js","SourceId":"Media","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/","BasePath":"_content/Media","RelativePath":"js/mediaInterop#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"j3t2utpur3","Integrity":"z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/js/mediaInterop.js","FileLength":2220,"LastWriteTime":"2025-12-24T09:42:14.8236034+00:00"},"tIxPmQz5bAZdHcWAnA2eJD65GIwyBiPHql\u002BDS7qfRw0=":{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/lib/cropper.min.css","SourceId":"Media","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/","BasePath":"_content/Media","RelativePath":"lib/cropper.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"tef8z25zm7","Integrity":"BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/cropper.min.css","FileLength":3804,"LastWriteTime":"2025-08-11T12:38:41.9671175+00:00"},"rak0mglaFHUuky3U8m5n5RnJRDmhzOazxVTWsW\u002BGNcM=":{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/lib/cropper.min.js","SourceId":"Media","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/","BasePath":"_content/Media","RelativePath":"lib/cropper.min#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"9ydfkw1ttr","Integrity":"YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/cropper.min.js","FileLength":37035,"LastWriteTime":"2025-08-11T12:38:41.9684516+00:00"}},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/obj/Debug/net9.0/scopedcss/bundle/Generic.Media.styles.css b/obj/Debug/net9.0/scopedcss/bundle/Generic.Media.styles.css new file mode 100644 index 0000000..7d58543 --- /dev/null +++ b/obj/Debug/net9.0/scopedcss/bundle/Generic.Media.styles.css @@ -0,0 +1,218 @@ +/* _content/Generic.Media/Components/ExternalLinkInput.razor.rz.scp.css */ +.external-link-input[b-ba8eakrqiz] { + display: flex; + gap: 0.5rem; + margin-top: 1rem; +} + +.link-input[b-ba8eakrqiz] { + flex: 1; + padding: 0.5rem 1rem; + border: 1px solid #ddd; + border-radius: 4px; + font-size: 0.9rem; +} + +.btn-add[b-ba8eakrqiz] { + padding: 0.5rem 1rem; + background: #007bff; + color: white; + border: none; + border-radius: 4px; + cursor: pointer; + font-weight: 500; +} + +.btn-add:disabled[b-ba8eakrqiz] { + background: #ccc; + cursor: not-allowed; +} +/* _content/Generic.Media/Components/ImageCropper.razor.rz.scp.css */ +.image-cropper-modal[b-h9ebm3bi59] { + position: fixed; + top: 0; + left: 0; + width: 100vw; + height: 100vh; + background: rgba(0, 0, 0, 0.5); + display: flex; + align-items: center; + justify-content: center; + z-index: 1000; +} + +.modal-content[b-h9ebm3bi59] { + background: white; + padding: 1.5rem; + border-radius: 8px; + width: 90%; + max-width: 600px; + text-align: center; +} + +.modal-actions[b-h9ebm3bi59] { + display: flex; + justify-content: flex-end; + gap: 1rem; + margin-top: 1rem; +} + +.btn-cancel[b-h9ebm3bi59] { + background: #ccc; + border: none; + padding: 0.5rem 1rem; + border-radius: 4px; + cursor: pointer; +} + +.btn-save[b-h9ebm3bi59] { + background: #007bff; + color: white; + border: none; + padding: 0.5rem 1rem; + border-radius: 4px; + cursor: pointer; +} +/* _content/Generic.Media/Components/MediaDropZone.razor.rz.scp.css */ +.media-drop-zone[b-s2uvluvhrd] { + position: relative; + border: 2px dashed #ccc; + border-radius: 8px; + padding: 2rem; + text-align: center; + transition: all 0.2s ease; + background: #fafafa; + cursor: pointer; +} + +.media-drop-zone:hover[b-s2uvluvhrd], +.media-drop-zone.drag-over[b-s2uvluvhrd] { + border-color: #007bff; + background: #f0f8ff; +} + +.file-input[b-s2uvluvhrd] { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + opacity: 0; + cursor: pointer; +} + +.drop-content[b-s2uvluvhrd] { + pointer-events: none; + /* Let clicks pass to file input */ +} + +.icon-upload[b-s2uvluvhrd] { + font-size: 2rem; + color: #666; + margin-bottom: 0.5rem; + display: block; +} + +.sub-text[b-s2uvluvhrd] { + display: block; + margin-top: 0.5rem; + font-size: 0.875rem; + color: #888; +} +/* _content/Generic.Media/Components/MediaItemCard.razor.rz.scp.css */ +.media-item-card[b-h9vymkbw48] { + position: relative; + border: 1px solid #ddd; + border-radius: 8px; + overflow: hidden; + background: #fff; + transition: transform 0.2s, box-shadow 0.2s; + cursor: grab; +} + +.media-item-card:active[b-h9vymkbw48] { + cursor: grabbing; +} + +.media-preview[b-h9vymkbw48] { + height: 150px; + background: #f0f0f0; + display: flex; + align-items: center; + justify-content: center; + overflow: hidden; +} + +.media-preview img[b-h9vymkbw48] { + width: 100%; + height: 100%; + object-fit: cover; +} + +.video-placeholder[b-h9vymkbw48] { + display: flex; + flex-direction: column; + align-items: center; + color: #888; +} + +.media-actions[b-h9vymkbw48] { + position: absolute; + top: 5px; + right: 5px; + display: flex; + gap: 5px; +} + +.btn-action[b-h9vymkbw48] { + background: rgba(255, 255, 255, 0.9); + border: none; + border-radius: 4px; + width: 28px; + height: 28px; + cursor: pointer; + display: flex; + align-items: center; + justify-content: center; + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); +} + +.btn-action:hover[b-h9vymkbw48] { + background: #fff; +} + +.btn-action.remove[b-h9vymkbw48] { + color: #dc3545; + font-size: 1.2rem; +} + +.media-meta[b-h9vymkbw48] { + padding: 0.5rem; + font-size: 0.8rem; + color: #666; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; +} +/* _content/Generic.Media/Components/MediaUploadContainer.razor.rz.scp.css */ +.media-upload-container[b-ga67n73403] { + display: flex; + flex-direction: column; + gap: 1.5rem; + width: 100%; +} + +.media-drop-zone-wrapper[b-ga67n73403] { + width: 100%; +} + +.media-list-wrapper[b-ga67n73403] { + width: 100%; +} +/* _content/Generic.Media/Components/SortableMediaList.razor.rz.scp.css */ +.sortable-media-list[b-2ro0qdxrpc] { + display: grid; + grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); + gap: 1rem; + padding: 1rem 0; +} diff --git a/obj/Debug/net9.0/scopedcss/projectbundle/Generic.Media.bundle.scp.css b/obj/Debug/net9.0/scopedcss/projectbundle/Generic.Media.bundle.scp.css new file mode 100644 index 0000000..7d58543 --- /dev/null +++ b/obj/Debug/net9.0/scopedcss/projectbundle/Generic.Media.bundle.scp.css @@ -0,0 +1,218 @@ +/* _content/Generic.Media/Components/ExternalLinkInput.razor.rz.scp.css */ +.external-link-input[b-ba8eakrqiz] { + display: flex; + gap: 0.5rem; + margin-top: 1rem; +} + +.link-input[b-ba8eakrqiz] { + flex: 1; + padding: 0.5rem 1rem; + border: 1px solid #ddd; + border-radius: 4px; + font-size: 0.9rem; +} + +.btn-add[b-ba8eakrqiz] { + padding: 0.5rem 1rem; + background: #007bff; + color: white; + border: none; + border-radius: 4px; + cursor: pointer; + font-weight: 500; +} + +.btn-add:disabled[b-ba8eakrqiz] { + background: #ccc; + cursor: not-allowed; +} +/* _content/Generic.Media/Components/ImageCropper.razor.rz.scp.css */ +.image-cropper-modal[b-h9ebm3bi59] { + position: fixed; + top: 0; + left: 0; + width: 100vw; + height: 100vh; + background: rgba(0, 0, 0, 0.5); + display: flex; + align-items: center; + justify-content: center; + z-index: 1000; +} + +.modal-content[b-h9ebm3bi59] { + background: white; + padding: 1.5rem; + border-radius: 8px; + width: 90%; + max-width: 600px; + text-align: center; +} + +.modal-actions[b-h9ebm3bi59] { + display: flex; + justify-content: flex-end; + gap: 1rem; + margin-top: 1rem; +} + +.btn-cancel[b-h9ebm3bi59] { + background: #ccc; + border: none; + padding: 0.5rem 1rem; + border-radius: 4px; + cursor: pointer; +} + +.btn-save[b-h9ebm3bi59] { + background: #007bff; + color: white; + border: none; + padding: 0.5rem 1rem; + border-radius: 4px; + cursor: pointer; +} +/* _content/Generic.Media/Components/MediaDropZone.razor.rz.scp.css */ +.media-drop-zone[b-s2uvluvhrd] { + position: relative; + border: 2px dashed #ccc; + border-radius: 8px; + padding: 2rem; + text-align: center; + transition: all 0.2s ease; + background: #fafafa; + cursor: pointer; +} + +.media-drop-zone:hover[b-s2uvluvhrd], +.media-drop-zone.drag-over[b-s2uvluvhrd] { + border-color: #007bff; + background: #f0f8ff; +} + +.file-input[b-s2uvluvhrd] { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + opacity: 0; + cursor: pointer; +} + +.drop-content[b-s2uvluvhrd] { + pointer-events: none; + /* Let clicks pass to file input */ +} + +.icon-upload[b-s2uvluvhrd] { + font-size: 2rem; + color: #666; + margin-bottom: 0.5rem; + display: block; +} + +.sub-text[b-s2uvluvhrd] { + display: block; + margin-top: 0.5rem; + font-size: 0.875rem; + color: #888; +} +/* _content/Generic.Media/Components/MediaItemCard.razor.rz.scp.css */ +.media-item-card[b-h9vymkbw48] { + position: relative; + border: 1px solid #ddd; + border-radius: 8px; + overflow: hidden; + background: #fff; + transition: transform 0.2s, box-shadow 0.2s; + cursor: grab; +} + +.media-item-card:active[b-h9vymkbw48] { + cursor: grabbing; +} + +.media-preview[b-h9vymkbw48] { + height: 150px; + background: #f0f0f0; + display: flex; + align-items: center; + justify-content: center; + overflow: hidden; +} + +.media-preview img[b-h9vymkbw48] { + width: 100%; + height: 100%; + object-fit: cover; +} + +.video-placeholder[b-h9vymkbw48] { + display: flex; + flex-direction: column; + align-items: center; + color: #888; +} + +.media-actions[b-h9vymkbw48] { + position: absolute; + top: 5px; + right: 5px; + display: flex; + gap: 5px; +} + +.btn-action[b-h9vymkbw48] { + background: rgba(255, 255, 255, 0.9); + border: none; + border-radius: 4px; + width: 28px; + height: 28px; + cursor: pointer; + display: flex; + align-items: center; + justify-content: center; + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); +} + +.btn-action:hover[b-h9vymkbw48] { + background: #fff; +} + +.btn-action.remove[b-h9vymkbw48] { + color: #dc3545; + font-size: 1.2rem; +} + +.media-meta[b-h9vymkbw48] { + padding: 0.5rem; + font-size: 0.8rem; + color: #666; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; +} +/* _content/Generic.Media/Components/MediaUploadContainer.razor.rz.scp.css */ +.media-upload-container[b-ga67n73403] { + display: flex; + flex-direction: column; + gap: 1.5rem; + width: 100%; +} + +.media-drop-zone-wrapper[b-ga67n73403] { + width: 100%; +} + +.media-list-wrapper[b-ga67n73403] { + width: 100%; +} +/* _content/Generic.Media/Components/SortableMediaList.razor.rz.scp.css */ +.sortable-media-list[b-2ro0qdxrpc] { + display: grid; + grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); + gap: 1rem; + padding: 1rem 0; +} diff --git a/obj/Debug/net9.0/staticwebassets.build.endpoints.json b/obj/Debug/net9.0/staticwebassets.build.endpoints.json new file mode 100644 index 0000000..ece6fdb --- /dev/null +++ b/obj/Debug/net9.0/staticwebassets.build.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[{"Route":"css/cropper.min.css","AssetFile":"css/cropper.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000749063670"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1334"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"MpKPXxBxrKehFS516PaXmpBvJtPuwJm+pYkcNqI9Epo=\""},{"Name":"ETag","Value":"W/\"LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4="}]},{"Route":"css/cropper.min.css","AssetFile":"css/cropper.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4947"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4=\""},{"Name":"Last-Modified","Value":"Sun, 21 Dec 2025 15:00:39 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4="}]},{"Route":"css/cropper.min.css.gz","AssetFile":"css/cropper.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1334"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"MpKPXxBxrKehFS516PaXmpBvJtPuwJm+pYkcNqI9Epo=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MpKPXxBxrKehFS516PaXmpBvJtPuwJm+pYkcNqI9Epo="}]},{"Route":"css/cropper.min.ozxrxjrq84.css","AssetFile":"css/cropper.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000749063670"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1334"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"MpKPXxBxrKehFS516PaXmpBvJtPuwJm+pYkcNqI9Epo=\""},{"Name":"ETag","Value":"W/\"LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ozxrxjrq84"},{"Name":"integrity","Value":"sha256-LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4="},{"Name":"label","Value":"css/cropper.min.css"}]},{"Route":"css/cropper.min.ozxrxjrq84.css","AssetFile":"css/cropper.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4947"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4=\""},{"Name":"Last-Modified","Value":"Sun, 21 Dec 2025 15:00:39 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ozxrxjrq84"},{"Name":"integrity","Value":"sha256-LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4="},{"Name":"label","Value":"css/cropper.min.css"}]},{"Route":"css/cropper.min.ozxrxjrq84.css.gz","AssetFile":"css/cropper.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1334"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"MpKPXxBxrKehFS516PaXmpBvJtPuwJm+pYkcNqI9Epo=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ozxrxjrq84"},{"Name":"integrity","Value":"sha256-MpKPXxBxrKehFS516PaXmpBvJtPuwJm+pYkcNqI9Epo="},{"Name":"label","Value":"css/cropper.min.css.gz"}]},{"Route":"js/crop.js","AssetFile":"js/crop.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001088139282"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"918"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4PKrXFgldfdLg4sTPCbLiDNGFl8cb0xvISy3R1WxV/A=\""},{"Name":"ETag","Value":"W/\"2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI="}]},{"Route":"js/crop.js","AssetFile":"js/crop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"2474"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI=\""},{"Name":"Last-Modified","Value":"Tue, 23 Dec 2025 11:59:06 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI="}]},{"Route":"js/crop.js.gz","AssetFile":"js/crop.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"918"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4PKrXFgldfdLg4sTPCbLiDNGFl8cb0xvISy3R1WxV/A=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4PKrXFgldfdLg4sTPCbLiDNGFl8cb0xvISy3R1WxV/A="}]},{"Route":"js/crop.rzaytjouo0.js","AssetFile":"js/crop.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001088139282"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"918"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4PKrXFgldfdLg4sTPCbLiDNGFl8cb0xvISy3R1WxV/A=\""},{"Name":"ETag","Value":"W/\"2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rzaytjouo0"},{"Name":"integrity","Value":"sha256-2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI="},{"Name":"label","Value":"js/crop.js"}]},{"Route":"js/crop.rzaytjouo0.js","AssetFile":"js/crop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"2474"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI=\""},{"Name":"Last-Modified","Value":"Tue, 23 Dec 2025 11:59:06 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rzaytjouo0"},{"Name":"integrity","Value":"sha256-2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI="},{"Name":"label","Value":"js/crop.js"}]},{"Route":"js/crop.rzaytjouo0.js.gz","AssetFile":"js/crop.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"918"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4PKrXFgldfdLg4sTPCbLiDNGFl8cb0xvISy3R1WxV/A=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rzaytjouo0"},{"Name":"integrity","Value":"sha256-4PKrXFgldfdLg4sTPCbLiDNGFl8cb0xvISy3R1WxV/A="},{"Name":"label","Value":"js/crop.js.gz"}]},{"Route":"js/cropper.min.js","AssetFile":"js/cropper.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000156323277"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6396"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"foJ0q5a8aDAR6XNITGSl1z7UCT1gz628l6VhbhipoeE=\""},{"Name":"ETag","Value":"W/\"Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI="}]},{"Route":"js/cropper.min.js","AssetFile":"js/cropper.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"22252"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI=\""},{"Name":"Last-Modified","Value":"Sun, 21 Dec 2025 18:23:00 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI="}]},{"Route":"js/cropper.min.js.gz","AssetFile":"js/cropper.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6396"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"foJ0q5a8aDAR6XNITGSl1z7UCT1gz628l6VhbhipoeE=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-foJ0q5a8aDAR6XNITGSl1z7UCT1gz628l6VhbhipoeE="}]},{"Route":"js/cropper.min.llc9n82qda.js","AssetFile":"js/cropper.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000156323277"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6396"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"foJ0q5a8aDAR6XNITGSl1z7UCT1gz628l6VhbhipoeE=\""},{"Name":"ETag","Value":"W/\"Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"llc9n82qda"},{"Name":"integrity","Value":"sha256-Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI="},{"Name":"label","Value":"js/cropper.min.js"}]},{"Route":"js/cropper.min.llc9n82qda.js","AssetFile":"js/cropper.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"22252"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI=\""},{"Name":"Last-Modified","Value":"Sun, 21 Dec 2025 18:23:00 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"llc9n82qda"},{"Name":"integrity","Value":"sha256-Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI="},{"Name":"label","Value":"js/cropper.min.js"}]},{"Route":"js/cropper.min.llc9n82qda.js.gz","AssetFile":"js/cropper.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6396"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"foJ0q5a8aDAR6XNITGSl1z7UCT1gz628l6VhbhipoeE=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"llc9n82qda"},{"Name":"integrity","Value":"sha256-foJ0q5a8aDAR6XNITGSl1z7UCT1gz628l6VhbhipoeE="},{"Name":"label","Value":"js/cropper.min.js.gz"}]},{"Route":"js/mediaInterop.j3t2utpur3.js","AssetFile":"js/mediaInterop.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001831501832"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"545"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"T3/OBNOu36GO1osR/HPqSS4Kvfy+F1WbctC8XyL0RT8=\""},{"Name":"ETag","Value":"W/\"z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j3t2utpur3"},{"Name":"integrity","Value":"sha256-z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA="},{"Name":"label","Value":"js/mediaInterop.js"}]},{"Route":"js/mediaInterop.j3t2utpur3.js","AssetFile":"js/mediaInterop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"2220"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA=\""},{"Name":"Last-Modified","Value":"Wed, 24 Dec 2025 09:42:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j3t2utpur3"},{"Name":"integrity","Value":"sha256-z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA="},{"Name":"label","Value":"js/mediaInterop.js"}]},{"Route":"js/mediaInterop.j3t2utpur3.js.gz","AssetFile":"js/mediaInterop.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"545"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"T3/OBNOu36GO1osR/HPqSS4Kvfy+F1WbctC8XyL0RT8=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j3t2utpur3"},{"Name":"integrity","Value":"sha256-T3/OBNOu36GO1osR/HPqSS4Kvfy+F1WbctC8XyL0RT8="},{"Name":"label","Value":"js/mediaInterop.js.gz"}]},{"Route":"js/mediaInterop.js","AssetFile":"js/mediaInterop.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001831501832"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"545"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"T3/OBNOu36GO1osR/HPqSS4Kvfy+F1WbctC8XyL0RT8=\""},{"Name":"ETag","Value":"W/\"z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA="}]},{"Route":"js/mediaInterop.js","AssetFile":"js/mediaInterop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"2220"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA=\""},{"Name":"Last-Modified","Value":"Wed, 24 Dec 2025 09:42:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA="}]},{"Route":"js/mediaInterop.js.gz","AssetFile":"js/mediaInterop.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"545"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"T3/OBNOu36GO1osR/HPqSS4Kvfy+F1WbctC8XyL0RT8=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-T3/OBNOu36GO1osR/HPqSS4Kvfy+F1WbctC8XyL0RT8="}]},{"Route":"lib/cropper.min.9ydfkw1ttr.js","AssetFile":"lib/cropper.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000081799591"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12224"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CmAvCeXmzS67802QckdNfDy5ysuJ97AgSVrZr21Ayx4=\""},{"Name":"ETag","Value":"W/\"YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9ydfkw1ttr"},{"Name":"integrity","Value":"sha256-YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc="},{"Name":"label","Value":"lib/cropper.min.js"}]},{"Route":"lib/cropper.min.9ydfkw1ttr.js","AssetFile":"lib/cropper.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"37035"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc=\""},{"Name":"Last-Modified","Value":"Mon, 11 Aug 2025 12:38:41 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9ydfkw1ttr"},{"Name":"integrity","Value":"sha256-YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc="},{"Name":"label","Value":"lib/cropper.min.js"}]},{"Route":"lib/cropper.min.9ydfkw1ttr.js.gz","AssetFile":"lib/cropper.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12224"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CmAvCeXmzS67802QckdNfDy5ysuJ97AgSVrZr21Ayx4=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9ydfkw1ttr"},{"Name":"integrity","Value":"sha256-CmAvCeXmzS67802QckdNfDy5ysuJ97AgSVrZr21Ayx4="},{"Name":"label","Value":"lib/cropper.min.js.gz"}]},{"Route":"lib/cropper.min.css","AssetFile":"lib/cropper.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000788643533"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1267"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"NSflKeEMawOcrQQ9CCT+62GRXfxdx7lRqbo6s837Rco=\""},{"Name":"ETag","Value":"W/\"BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8="}]},{"Route":"lib/cropper.min.css","AssetFile":"lib/cropper.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"3804"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8=\""},{"Name":"Last-Modified","Value":"Mon, 11 Aug 2025 12:38:41 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8="}]},{"Route":"lib/cropper.min.css.gz","AssetFile":"lib/cropper.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1267"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"NSflKeEMawOcrQQ9CCT+62GRXfxdx7lRqbo6s837Rco=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NSflKeEMawOcrQQ9CCT+62GRXfxdx7lRqbo6s837Rco="}]},{"Route":"lib/cropper.min.js","AssetFile":"lib/cropper.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000081799591"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12224"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CmAvCeXmzS67802QckdNfDy5ysuJ97AgSVrZr21Ayx4=\""},{"Name":"ETag","Value":"W/\"YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc="}]},{"Route":"lib/cropper.min.js","AssetFile":"lib/cropper.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"37035"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc=\""},{"Name":"Last-Modified","Value":"Mon, 11 Aug 2025 12:38:41 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc="}]},{"Route":"lib/cropper.min.js.gz","AssetFile":"lib/cropper.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12224"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CmAvCeXmzS67802QckdNfDy5ysuJ97AgSVrZr21Ayx4=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CmAvCeXmzS67802QckdNfDy5ysuJ97AgSVrZr21Ayx4="}]},{"Route":"lib/cropper.min.tef8z25zm7.css","AssetFile":"lib/cropper.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000788643533"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1267"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"NSflKeEMawOcrQQ9CCT+62GRXfxdx7lRqbo6s837Rco=\""},{"Name":"ETag","Value":"W/\"BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tef8z25zm7"},{"Name":"integrity","Value":"sha256-BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8="},{"Name":"label","Value":"lib/cropper.min.css"}]},{"Route":"lib/cropper.min.tef8z25zm7.css","AssetFile":"lib/cropper.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3804"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8=\""},{"Name":"Last-Modified","Value":"Mon, 11 Aug 2025 12:38:41 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tef8z25zm7"},{"Name":"integrity","Value":"sha256-BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8="},{"Name":"label","Value":"lib/cropper.min.css"}]},{"Route":"lib/cropper.min.tef8z25zm7.css.gz","AssetFile":"lib/cropper.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1267"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"NSflKeEMawOcrQQ9CCT+62GRXfxdx7lRqbo6s837Rco=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tef8z25zm7"},{"Name":"integrity","Value":"sha256-NSflKeEMawOcrQQ9CCT+62GRXfxdx7lRqbo6s837Rco="},{"Name":"label","Value":"lib/cropper.min.css.gz"}]}]} \ No newline at end of file diff --git a/obj/Debug/net9.0/staticwebassets.build.json b/obj/Debug/net9.0/staticwebassets.build.json new file mode 100644 index 0000000..a0ebf0f --- /dev/null +++ b/obj/Debug/net9.0/staticwebassets.build.json @@ -0,0 +1 @@ +{"Version":1,"Hash":"vrZ4FJYjgtQ1M3JMzFTOd/Ji5ZN/DdsDPU2PC9QBKOc=","Source":"Media","BasePath":"_content/Media","Mode":"Default","ManifestType":"Build","ReferencedProjectsConfiguration":[],"DiscoveryPatterns":[{"Name":"Media/wwwroot","Source":"Media","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/","BasePath":"_content/Media","Pattern":"**"}],"Assets":[{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/compressed/0m7r05w73h-{0}-tef8z25zm7-tef8z25zm7.gz","SourceId":"Media","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/compressed/","BasePath":"_content/Media","RelativePath":"lib/cropper.min#[.{fingerprint=tef8z25zm7}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/lib/cropper.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"36bdfox6nl","Integrity":"NSflKeEMawOcrQQ9CCT+62GRXfxdx7lRqbo6s837Rco=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/lib/cropper.min.css","FileLength":1267,"LastWriteTime":"2026-01-18T19:12:03+00:00"},{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/compressed/63e88vs3br-{0}-ozxrxjrq84-ozxrxjrq84.gz","SourceId":"Media","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/compressed/","BasePath":"_content/Media","RelativePath":"css/cropper.min#[.{fingerprint=ozxrxjrq84}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/css/cropper.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"u8tf0v9vye","Integrity":"MpKPXxBxrKehFS516PaXmpBvJtPuwJm+pYkcNqI9Epo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/css/cropper.min.css","FileLength":1334,"LastWriteTime":"2026-01-18T19:12:03+00:00"},{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/compressed/do8do2nz96-{0}-j3t2utpur3-j3t2utpur3.gz","SourceId":"Media","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/compressed/","BasePath":"_content/Media","RelativePath":"js/mediaInterop#[.{fingerprint=j3t2utpur3}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/js/mediaInterop.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"lr5mqwekj4","Integrity":"T3/OBNOu36GO1osR/HPqSS4Kvfy+F1WbctC8XyL0RT8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/js/mediaInterop.js","FileLength":545,"LastWriteTime":"2026-01-18T19:12:03+00:00"},{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/compressed/lps60iqv38-{0}-rzaytjouo0-rzaytjouo0.gz","SourceId":"Media","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/compressed/","BasePath":"_content/Media","RelativePath":"js/crop#[.{fingerprint=rzaytjouo0}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/js/crop.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"oa685rju99","Integrity":"4PKrXFgldfdLg4sTPCbLiDNGFl8cb0xvISy3R1WxV/A=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/js/crop.js","FileLength":918,"LastWriteTime":"2026-01-18T19:12:03+00:00"},{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/compressed/srub7l4ycb-{0}-llc9n82qda-llc9n82qda.gz","SourceId":"Media","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/compressed/","BasePath":"_content/Media","RelativePath":"js/cropper.min#[.{fingerprint=llc9n82qda}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/js/cropper.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"in7fmyx85p","Integrity":"foJ0q5a8aDAR6XNITGSl1z7UCT1gz628l6VhbhipoeE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/js/cropper.min.js","FileLength":6396,"LastWriteTime":"2026-01-18T19:12:03+00:00"},{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/compressed/xgz1hv2puc-{0}-9ydfkw1ttr-9ydfkw1ttr.gz","SourceId":"Media","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/compressed/","BasePath":"_content/Media","RelativePath":"lib/cropper.min#[.{fingerprint=9ydfkw1ttr}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/lib/cropper.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"mo4tr6x4yf","Integrity":"CmAvCeXmzS67802QckdNfDy5ysuJ97AgSVrZr21Ayx4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/lib/cropper.min.js","FileLength":12224,"LastWriteTime":"2026-01-18T19:12:03+00:00"},{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/css/cropper.min.css","SourceId":"Media","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/","BasePath":"_content/Media","RelativePath":"css/cropper.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"ozxrxjrq84","Integrity":"LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/css/cropper.min.css","FileLength":4947,"LastWriteTime":"2025-12-21T15:00:39+00:00"},{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/js/crop.js","SourceId":"Media","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/","BasePath":"_content/Media","RelativePath":"js/crop#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"rzaytjouo0","Integrity":"2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/js/crop.js","FileLength":2474,"LastWriteTime":"2025-12-23T11:59:06+00:00"},{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/js/cropper.min.js","SourceId":"Media","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/","BasePath":"_content/Media","RelativePath":"js/cropper.min#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"llc9n82qda","Integrity":"Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/js/cropper.min.js","FileLength":22252,"LastWriteTime":"2025-12-21T18:23:00+00:00"},{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/js/mediaInterop.js","SourceId":"Media","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/","BasePath":"_content/Media","RelativePath":"js/mediaInterop#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"j3t2utpur3","Integrity":"z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/js/mediaInterop.js","FileLength":2220,"LastWriteTime":"2025-12-24T09:42:14+00:00"},{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/lib/cropper.min.css","SourceId":"Media","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/","BasePath":"_content/Media","RelativePath":"lib/cropper.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"tef8z25zm7","Integrity":"BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/cropper.min.css","FileLength":3804,"LastWriteTime":"2025-08-11T12:38:41+00:00"},{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/lib/cropper.min.js","SourceId":"Media","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/","BasePath":"_content/Media","RelativePath":"lib/cropper.min#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"9ydfkw1ttr","Integrity":"YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/lib/cropper.min.js","FileLength":37035,"LastWriteTime":"2025-08-11T12:38:41+00:00"}],"Endpoints":[{"Route":"css/cropper.min.css","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/compressed/63e88vs3br-{0}-ozxrxjrq84-ozxrxjrq84.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000749063670"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1334"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"MpKPXxBxrKehFS516PaXmpBvJtPuwJm+pYkcNqI9Epo=\""},{"Name":"ETag","Value":"W/\"LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4="}]},{"Route":"css/cropper.min.css","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/css/cropper.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4947"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4=\""},{"Name":"Last-Modified","Value":"Sun, 21 Dec 2025 15:00:39 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4="}]},{"Route":"css/cropper.min.css.gz","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/compressed/63e88vs3br-{0}-ozxrxjrq84-ozxrxjrq84.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1334"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"MpKPXxBxrKehFS516PaXmpBvJtPuwJm+pYkcNqI9Epo=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MpKPXxBxrKehFS516PaXmpBvJtPuwJm+pYkcNqI9Epo="}]},{"Route":"css/cropper.min.ozxrxjrq84.css","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/compressed/63e88vs3br-{0}-ozxrxjrq84-ozxrxjrq84.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000749063670"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1334"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"MpKPXxBxrKehFS516PaXmpBvJtPuwJm+pYkcNqI9Epo=\""},{"Name":"ETag","Value":"W/\"LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ozxrxjrq84"},{"Name":"integrity","Value":"sha256-LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4="},{"Name":"label","Value":"css/cropper.min.css"}]},{"Route":"css/cropper.min.ozxrxjrq84.css","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/css/cropper.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4947"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4=\""},{"Name":"Last-Modified","Value":"Sun, 21 Dec 2025 15:00:39 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ozxrxjrq84"},{"Name":"integrity","Value":"sha256-LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4="},{"Name":"label","Value":"css/cropper.min.css"}]},{"Route":"css/cropper.min.ozxrxjrq84.css.gz","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/compressed/63e88vs3br-{0}-ozxrxjrq84-ozxrxjrq84.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1334"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"MpKPXxBxrKehFS516PaXmpBvJtPuwJm+pYkcNqI9Epo=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ozxrxjrq84"},{"Name":"integrity","Value":"sha256-MpKPXxBxrKehFS516PaXmpBvJtPuwJm+pYkcNqI9Epo="},{"Name":"label","Value":"css/cropper.min.css.gz"}]},{"Route":"js/crop.js","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/compressed/lps60iqv38-{0}-rzaytjouo0-rzaytjouo0.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001088139282"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"918"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4PKrXFgldfdLg4sTPCbLiDNGFl8cb0xvISy3R1WxV/A=\""},{"Name":"ETag","Value":"W/\"2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI="}]},{"Route":"js/crop.js","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/js/crop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"2474"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI=\""},{"Name":"Last-Modified","Value":"Tue, 23 Dec 2025 11:59:06 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI="}]},{"Route":"js/crop.js.gz","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/compressed/lps60iqv38-{0}-rzaytjouo0-rzaytjouo0.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"918"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4PKrXFgldfdLg4sTPCbLiDNGFl8cb0xvISy3R1WxV/A=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4PKrXFgldfdLg4sTPCbLiDNGFl8cb0xvISy3R1WxV/A="}]},{"Route":"js/crop.rzaytjouo0.js","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/compressed/lps60iqv38-{0}-rzaytjouo0-rzaytjouo0.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001088139282"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"918"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4PKrXFgldfdLg4sTPCbLiDNGFl8cb0xvISy3R1WxV/A=\""},{"Name":"ETag","Value":"W/\"2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rzaytjouo0"},{"Name":"integrity","Value":"sha256-2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI="},{"Name":"label","Value":"js/crop.js"}]},{"Route":"js/crop.rzaytjouo0.js","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/js/crop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"2474"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI=\""},{"Name":"Last-Modified","Value":"Tue, 23 Dec 2025 11:59:06 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rzaytjouo0"},{"Name":"integrity","Value":"sha256-2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI="},{"Name":"label","Value":"js/crop.js"}]},{"Route":"js/crop.rzaytjouo0.js.gz","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/compressed/lps60iqv38-{0}-rzaytjouo0-rzaytjouo0.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"918"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4PKrXFgldfdLg4sTPCbLiDNGFl8cb0xvISy3R1WxV/A=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rzaytjouo0"},{"Name":"integrity","Value":"sha256-4PKrXFgldfdLg4sTPCbLiDNGFl8cb0xvISy3R1WxV/A="},{"Name":"label","Value":"js/crop.js.gz"}]},{"Route":"js/cropper.min.js","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/compressed/srub7l4ycb-{0}-llc9n82qda-llc9n82qda.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000156323277"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6396"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"foJ0q5a8aDAR6XNITGSl1z7UCT1gz628l6VhbhipoeE=\""},{"Name":"ETag","Value":"W/\"Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI="}]},{"Route":"js/cropper.min.js","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/js/cropper.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"22252"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI=\""},{"Name":"Last-Modified","Value":"Sun, 21 Dec 2025 18:23:00 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI="}]},{"Route":"js/cropper.min.js.gz","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/compressed/srub7l4ycb-{0}-llc9n82qda-llc9n82qda.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6396"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"foJ0q5a8aDAR6XNITGSl1z7UCT1gz628l6VhbhipoeE=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-foJ0q5a8aDAR6XNITGSl1z7UCT1gz628l6VhbhipoeE="}]},{"Route":"js/cropper.min.llc9n82qda.js","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/compressed/srub7l4ycb-{0}-llc9n82qda-llc9n82qda.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000156323277"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6396"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"foJ0q5a8aDAR6XNITGSl1z7UCT1gz628l6VhbhipoeE=\""},{"Name":"ETag","Value":"W/\"Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"llc9n82qda"},{"Name":"integrity","Value":"sha256-Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI="},{"Name":"label","Value":"js/cropper.min.js"}]},{"Route":"js/cropper.min.llc9n82qda.js","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/js/cropper.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"22252"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI=\""},{"Name":"Last-Modified","Value":"Sun, 21 Dec 2025 18:23:00 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"llc9n82qda"},{"Name":"integrity","Value":"sha256-Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI="},{"Name":"label","Value":"js/cropper.min.js"}]},{"Route":"js/cropper.min.llc9n82qda.js.gz","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/compressed/srub7l4ycb-{0}-llc9n82qda-llc9n82qda.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6396"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"foJ0q5a8aDAR6XNITGSl1z7UCT1gz628l6VhbhipoeE=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"llc9n82qda"},{"Name":"integrity","Value":"sha256-foJ0q5a8aDAR6XNITGSl1z7UCT1gz628l6VhbhipoeE="},{"Name":"label","Value":"js/cropper.min.js.gz"}]},{"Route":"js/mediaInterop.j3t2utpur3.js","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/compressed/do8do2nz96-{0}-j3t2utpur3-j3t2utpur3.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001831501832"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"545"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"T3/OBNOu36GO1osR/HPqSS4Kvfy+F1WbctC8XyL0RT8=\""},{"Name":"ETag","Value":"W/\"z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j3t2utpur3"},{"Name":"integrity","Value":"sha256-z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA="},{"Name":"label","Value":"js/mediaInterop.js"}]},{"Route":"js/mediaInterop.j3t2utpur3.js","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/js/mediaInterop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"2220"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA=\""},{"Name":"Last-Modified","Value":"Wed, 24 Dec 2025 09:42:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j3t2utpur3"},{"Name":"integrity","Value":"sha256-z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA="},{"Name":"label","Value":"js/mediaInterop.js"}]},{"Route":"js/mediaInterop.j3t2utpur3.js.gz","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/compressed/do8do2nz96-{0}-j3t2utpur3-j3t2utpur3.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"545"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"T3/OBNOu36GO1osR/HPqSS4Kvfy+F1WbctC8XyL0RT8=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j3t2utpur3"},{"Name":"integrity","Value":"sha256-T3/OBNOu36GO1osR/HPqSS4Kvfy+F1WbctC8XyL0RT8="},{"Name":"label","Value":"js/mediaInterop.js.gz"}]},{"Route":"js/mediaInterop.js","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/compressed/do8do2nz96-{0}-j3t2utpur3-j3t2utpur3.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001831501832"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"545"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"T3/OBNOu36GO1osR/HPqSS4Kvfy+F1WbctC8XyL0RT8=\""},{"Name":"ETag","Value":"W/\"z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA="}]},{"Route":"js/mediaInterop.js","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/js/mediaInterop.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"2220"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA=\""},{"Name":"Last-Modified","Value":"Wed, 24 Dec 2025 09:42:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA="}]},{"Route":"js/mediaInterop.js.gz","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/compressed/do8do2nz96-{0}-j3t2utpur3-j3t2utpur3.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"545"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"T3/OBNOu36GO1osR/HPqSS4Kvfy+F1WbctC8XyL0RT8=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-T3/OBNOu36GO1osR/HPqSS4Kvfy+F1WbctC8XyL0RT8="}]},{"Route":"lib/cropper.min.9ydfkw1ttr.js","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/compressed/xgz1hv2puc-{0}-9ydfkw1ttr-9ydfkw1ttr.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000081799591"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12224"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CmAvCeXmzS67802QckdNfDy5ysuJ97AgSVrZr21Ayx4=\""},{"Name":"ETag","Value":"W/\"YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9ydfkw1ttr"},{"Name":"integrity","Value":"sha256-YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc="},{"Name":"label","Value":"lib/cropper.min.js"}]},{"Route":"lib/cropper.min.9ydfkw1ttr.js","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/lib/cropper.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"37035"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc=\""},{"Name":"Last-Modified","Value":"Mon, 11 Aug 2025 12:38:41 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9ydfkw1ttr"},{"Name":"integrity","Value":"sha256-YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc="},{"Name":"label","Value":"lib/cropper.min.js"}]},{"Route":"lib/cropper.min.9ydfkw1ttr.js.gz","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/compressed/xgz1hv2puc-{0}-9ydfkw1ttr-9ydfkw1ttr.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12224"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CmAvCeXmzS67802QckdNfDy5ysuJ97AgSVrZr21Ayx4=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9ydfkw1ttr"},{"Name":"integrity","Value":"sha256-CmAvCeXmzS67802QckdNfDy5ysuJ97AgSVrZr21Ayx4="},{"Name":"label","Value":"lib/cropper.min.js.gz"}]},{"Route":"lib/cropper.min.css","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/compressed/0m7r05w73h-{0}-tef8z25zm7-tef8z25zm7.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000788643533"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1267"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"NSflKeEMawOcrQQ9CCT+62GRXfxdx7lRqbo6s837Rco=\""},{"Name":"ETag","Value":"W/\"BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8="}]},{"Route":"lib/cropper.min.css","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/lib/cropper.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"3804"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8=\""},{"Name":"Last-Modified","Value":"Mon, 11 Aug 2025 12:38:41 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8="}]},{"Route":"lib/cropper.min.css.gz","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/compressed/0m7r05w73h-{0}-tef8z25zm7-tef8z25zm7.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1267"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"NSflKeEMawOcrQQ9CCT+62GRXfxdx7lRqbo6s837Rco=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-NSflKeEMawOcrQQ9CCT+62GRXfxdx7lRqbo6s837Rco="}]},{"Route":"lib/cropper.min.js","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/compressed/xgz1hv2puc-{0}-9ydfkw1ttr-9ydfkw1ttr.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000081799591"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12224"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CmAvCeXmzS67802QckdNfDy5ysuJ97AgSVrZr21Ayx4=\""},{"Name":"ETag","Value":"W/\"YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc="}]},{"Route":"lib/cropper.min.js","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/lib/cropper.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"37035"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc=\""},{"Name":"Last-Modified","Value":"Mon, 11 Aug 2025 12:38:41 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc="}]},{"Route":"lib/cropper.min.js.gz","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/compressed/xgz1hv2puc-{0}-9ydfkw1ttr-9ydfkw1ttr.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12224"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CmAvCeXmzS67802QckdNfDy5ysuJ97AgSVrZr21Ayx4=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CmAvCeXmzS67802QckdNfDy5ysuJ97AgSVrZr21Ayx4="}]},{"Route":"lib/cropper.min.tef8z25zm7.css","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/compressed/0m7r05w73h-{0}-tef8z25zm7-tef8z25zm7.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000788643533"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1267"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"NSflKeEMawOcrQQ9CCT+62GRXfxdx7lRqbo6s837Rco=\""},{"Name":"ETag","Value":"W/\"BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tef8z25zm7"},{"Name":"integrity","Value":"sha256-BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8="},{"Name":"label","Value":"lib/cropper.min.css"}]},{"Route":"lib/cropper.min.tef8z25zm7.css","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/lib/cropper.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3804"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8=\""},{"Name":"Last-Modified","Value":"Mon, 11 Aug 2025 12:38:41 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tef8z25zm7"},{"Name":"integrity","Value":"sha256-BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8="},{"Name":"label","Value":"lib/cropper.min.css"}]},{"Route":"lib/cropper.min.tef8z25zm7.css.gz","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/compressed/0m7r05w73h-{0}-tef8z25zm7-tef8z25zm7.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1267"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"NSflKeEMawOcrQQ9CCT+62GRXfxdx7lRqbo6s837Rco=\""},{"Name":"Last-Modified","Value":"Sun, 18 Jan 2026 19:12:03 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tef8z25zm7"},{"Name":"integrity","Value":"sha256-NSflKeEMawOcrQQ9CCT+62GRXfxdx7lRqbo6s837Rco="},{"Name":"label","Value":"lib/cropper.min.css.gz"}]}]} \ No newline at end of file diff --git a/obj/Debug/net9.0/staticwebassets.build.json.cache b/obj/Debug/net9.0/staticwebassets.build.json.cache new file mode 100644 index 0000000..05be2f7 --- /dev/null +++ b/obj/Debug/net9.0/staticwebassets.build.json.cache @@ -0,0 +1 @@ +vrZ4FJYjgtQ1M3JMzFTOd/Ji5ZN/DdsDPU2PC9QBKOc= \ No newline at end of file diff --git a/obj/Debug/net9.0/staticwebassets.development.json b/obj/Debug/net9.0/staticwebassets.development.json new file mode 100644 index 0000000..a33c048 --- /dev/null +++ b/obj/Debug/net9.0/staticwebassets.development.json @@ -0,0 +1 @@ +{"ContentRoots":["/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/","/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/obj/Debug/net9.0/compressed/"],"Root":{"Children":{"css":{"Children":{"cropper.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/cropper.min.css"},"Patterns":null},"cropper.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"63e88vs3br-{0}-ozxrxjrq84-ozxrxjrq84.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"crop.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/crop.js"},"Patterns":null},"crop.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lps60iqv38-{0}-rzaytjouo0-rzaytjouo0.gz"},"Patterns":null},"cropper.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/cropper.min.js"},"Patterns":null},"cropper.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"srub7l4ycb-{0}-llc9n82qda-llc9n82qda.gz"},"Patterns":null},"mediaInterop.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/mediaInterop.js"},"Patterns":null},"mediaInterop.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"do8do2nz96-{0}-j3t2utpur3-j3t2utpur3.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"lib":{"Children":{"cropper.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/cropper.min.css"},"Patterns":null},"cropper.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"0m7r05w73h-{0}-tef8z25zm7-tef8z25zm7.gz"},"Patterns":null},"cropper.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/cropper.min.js"},"Patterns":null},"cropper.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"xgz1hv2puc-{0}-9ydfkw1ttr-9ydfkw1ttr.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}} \ No newline at end of file diff --git a/obj/Debug/net9.0/staticwebassets.pack.json b/obj/Debug/net9.0/staticwebassets.pack.json new file mode 100644 index 0000000..75dcb12 --- /dev/null +++ b/obj/Debug/net9.0/staticwebassets.pack.json @@ -0,0 +1,49 @@ +{ + "Files": [ + { + "Id": "/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/css/cropper.min.css", + "PackagePath": "staticwebassets/css/cropper.min.css" + }, + { + "Id": "/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/js/crop.js", + "PackagePath": "staticwebassets/js/crop.js" + }, + { + "Id": "/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/js/cropper.min.js", + "PackagePath": "staticwebassets/js/cropper.min.js" + }, + { + "Id": "/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/js/mediaInterop.js", + "PackagePath": "staticwebassets/js/mediaInterop.js" + }, + { + "Id": "/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/lib/cropper.min.css", + "PackagePath": "staticwebassets/lib/cropper.min.css" + }, + { + "Id": "/mnt/Dataa/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/wwwroot/lib/cropper.min.js", + "PackagePath": "staticwebassets/lib/cropper.min.js" + }, + { + "Id": "obj/Debug/net9.0/staticwebassets/msbuild.Media.Microsoft.AspNetCore.StaticWebAssetEndpoints.props", + "PackagePath": "build\\Microsoft.AspNetCore.StaticWebAssetEndpoints.props" + }, + { + "Id": "obj/Debug/net9.0/staticwebassets/msbuild.Media.Microsoft.AspNetCore.StaticWebAssets.props", + "PackagePath": "build\\Microsoft.AspNetCore.StaticWebAssets.props" + }, + { + "Id": "obj/Debug/net9.0/staticwebassets/msbuild.build.Media.props", + "PackagePath": "build\\Media.props" + }, + { + "Id": "obj/Debug/net9.0/staticwebassets/msbuild.buildMultiTargeting.Media.props", + "PackagePath": "buildMultiTargeting\\Media.props" + }, + { + "Id": "obj/Debug/net9.0/staticwebassets/msbuild.buildTransitive.Media.props", + "PackagePath": "buildTransitive\\Media.props" + } + ], + "ElementsToRemove": [] +} \ No newline at end of file diff --git a/obj/Debug/net9.0/staticwebassets/msbuild.Generic.Media.Microsoft.AspNetCore.StaticWebAssetEndpoints.props b/obj/Debug/net9.0/staticwebassets/msbuild.Generic.Media.Microsoft.AspNetCore.StaticWebAssetEndpoints.props new file mode 100644 index 0000000..ab419cf --- /dev/null +++ b/obj/Debug/net9.0/staticwebassets/msbuild.Generic.Media.Microsoft.AspNetCore.StaticWebAssetEndpoints.props @@ -0,0 +1,16 @@ + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\Generic.Media.utf1jbkre2.bundle.scp.css')) + + + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\Generic.Media.utf1jbkre2.bundle.scp.css')) + + + + + + \ No newline at end of file diff --git a/obj/Debug/net9.0/staticwebassets/msbuild.Generic.Media.Microsoft.AspNetCore.StaticWebAssets.props b/obj/Debug/net9.0/staticwebassets/msbuild.Generic.Media.Microsoft.AspNetCore.StaticWebAssets.props new file mode 100644 index 0000000..f57cd67 --- /dev/null +++ b/obj/Debug/net9.0/staticwebassets/msbuild.Generic.Media.Microsoft.AspNetCore.StaticWebAssets.props @@ -0,0 +1,24 @@ + + + + Package + Generic.Media + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/Generic.Media + Generic.Media.utf1jbkre2.bundle.scp.css + All + Reference + Primary + + ScopedCss + ProjectBundle + utf1jbkre2 + nvrOLlRb1mr0LMAgVfeABhxTxgWSN9632m9bf1dnrvo= + Never + PreserveNewest + 4439 + Sun, 21 Dec 2025 08:28:48 GMT + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\Generic.Media.utf1jbkre2.bundle.scp.css')) + + + \ No newline at end of file diff --git a/obj/Debug/net9.0/staticwebassets/msbuild.Media.Microsoft.AspNetCore.StaticWebAssetEndpoints.props b/obj/Debug/net9.0/staticwebassets/msbuild.Media.Microsoft.AspNetCore.StaticWebAssetEndpoints.props new file mode 100644 index 0000000..65d6272 --- /dev/null +++ b/obj/Debug/net9.0/staticwebassets/msbuild.Media.Microsoft.AspNetCore.StaticWebAssetEndpoints.props @@ -0,0 +1,76 @@ + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\css\cropper.min.css')) + + + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\css\cropper.min.css')) + + + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\js\crop.js')) + + + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\js\crop.js')) + + + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\js\cropper.min.js')) + + + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\js\cropper.min.js')) + + + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\js\mediaInterop.js')) + + + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\js\mediaInterop.js')) + + + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\lib\cropper.min.js')) + + + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\lib\cropper.min.css')) + + + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\lib\cropper.min.js')) + + + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\lib\cropper.min.css')) + + + + + + \ No newline at end of file diff --git a/obj/Debug/net9.0/staticwebassets/msbuild.Media.Microsoft.AspNetCore.StaticWebAssets.props b/obj/Debug/net9.0/staticwebassets/msbuild.Media.Microsoft.AspNetCore.StaticWebAssets.props new file mode 100644 index 0000000..1f4dab5 --- /dev/null +++ b/obj/Debug/net9.0/staticwebassets/msbuild.Media.Microsoft.AspNetCore.StaticWebAssets.props @@ -0,0 +1,124 @@ + + + + Package + Media + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/Media + css/cropper.min.css + All + All + Primary + + + + ozxrxjrq84 + LP6S4rrMHwW9+ZrTEksQX94YXfWAGSn/zoj2yGvz+x4= + Never + PreserveNewest + 4947 + Sun, 21 Dec 2025 15:00:39 GMT + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\css\cropper.min.css')) + + + Package + Media + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/Media + js/crop.js + All + All + Primary + + + + rzaytjouo0 + 2SoZlGJu7cSw41qamc1nZbh4pEcYQX6cTJZgVupofUI= + Never + PreserveNewest + 2474 + Tue, 23 Dec 2025 11:59:06 GMT + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\js\crop.js')) + + + Package + Media + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/Media + js/cropper.min.js + All + All + Primary + + + + llc9n82qda + Cd++e8mN4ylC3IhQ+eHydts7i5FpT0rQpyBxiMAEpyI= + Never + PreserveNewest + 22252 + Sun, 21 Dec 2025 18:23:00 GMT + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\js\cropper.min.js')) + + + Package + Media + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/Media + js/mediaInterop.js + All + All + Primary + + + + j3t2utpur3 + z4FSiazsvklZJPd1MxajT7Y0BKBTchNkqd8aBmP/LgA= + Never + PreserveNewest + 2220 + Wed, 24 Dec 2025 09:42:14 GMT + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\js\mediaInterop.js')) + + + Package + Media + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/Media + lib/cropper.min.css + All + All + Primary + + + + tef8z25zm7 + BVucHOVAB74kQI49AuWE6CxgqaUs0ceA5f8IMYodeH8= + Never + PreserveNewest + 3804 + Mon, 11 Aug 2025 12:38:41 GMT + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\lib\cropper.min.css')) + + + Package + Media + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/Media + lib/cropper.min.js + All + All + Primary + + + + 9ydfkw1ttr + YVg1EQ0H2YQtHAqZXp/Hn7TfqNLBuHn/DWSFcHFO4cc= + Never + PreserveNewest + 37035 + Mon, 11 Aug 2025 12:38:41 GMT + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\lib\cropper.min.js')) + + + \ No newline at end of file diff --git a/obj/Debug/net9.0/staticwebassets/msbuild.build.Generic.Media.props b/obj/Debug/net9.0/staticwebassets/msbuild.build.Generic.Media.props new file mode 100644 index 0000000..ddaed44 --- /dev/null +++ b/obj/Debug/net9.0/staticwebassets/msbuild.build.Generic.Media.props @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/obj/Debug/net9.0/staticwebassets/msbuild.build.Media.props b/obj/Debug/net9.0/staticwebassets/msbuild.build.Media.props new file mode 100644 index 0000000..ddaed44 --- /dev/null +++ b/obj/Debug/net9.0/staticwebassets/msbuild.build.Media.props @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/obj/Debug/net9.0/staticwebassets/msbuild.buildMultiTargeting.Generic.Media.props b/obj/Debug/net9.0/staticwebassets/msbuild.buildMultiTargeting.Generic.Media.props new file mode 100644 index 0000000..4239d17 --- /dev/null +++ b/obj/Debug/net9.0/staticwebassets/msbuild.buildMultiTargeting.Generic.Media.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/obj/Debug/net9.0/staticwebassets/msbuild.buildMultiTargeting.Media.props b/obj/Debug/net9.0/staticwebassets/msbuild.buildMultiTargeting.Media.props new file mode 100644 index 0000000..b1919fc --- /dev/null +++ b/obj/Debug/net9.0/staticwebassets/msbuild.buildMultiTargeting.Media.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/obj/Debug/net9.0/staticwebassets/msbuild.buildTransitive.Generic.Media.props b/obj/Debug/net9.0/staticwebassets/msbuild.buildTransitive.Generic.Media.props new file mode 100644 index 0000000..3661027 --- /dev/null +++ b/obj/Debug/net9.0/staticwebassets/msbuild.buildTransitive.Generic.Media.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/obj/Debug/net9.0/staticwebassets/msbuild.buildTransitive.Media.props b/obj/Debug/net9.0/staticwebassets/msbuild.buildTransitive.Media.props new file mode 100644 index 0000000..41ef465 --- /dev/null +++ b/obj/Debug/net9.0/staticwebassets/msbuild.buildTransitive.Media.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/obj/Debug/net9.0/swae.build.ex.cache b/obj/Debug/net9.0/swae.build.ex.cache new file mode 100644 index 0000000..e69de29 diff --git a/obj/Generic.Media.csproj.nuget.dgspec.json b/obj/Generic.Media.csproj.nuget.dgspec.json new file mode 100644 index 0000000..facd3d4 --- /dev/null +++ b/obj/Generic.Media.csproj.nuget.dgspec.json @@ -0,0 +1,74 @@ +{ + "format": 1, + "restore": { + "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/Generic.Media.csproj": {} + }, + "projects": { + "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/Generic.Media.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/Generic.Media.csproj", + "projectName": "Generic.Media", + "projectPath": "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/Generic.Media.csproj", + "packagesPath": "/home/yla/.nuget/packages/", + "outputPath": "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Frontend/Libs/Generic/Media/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/yla/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net9.0" + ], + "sources": { + "/usr/share/dotnet/library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "9.0.300" + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "dependencies": { + "Microsoft.AspNetCore.Components.Web": { + "target": "Package", + "version": "[9.0.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/9.0.306/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/obj/Generic.Media.csproj.nuget.g.props b/obj/Generic.Media.csproj.nuget.g.props new file mode 100644 index 0000000..37b7f19 --- /dev/null +++ b/obj/Generic.Media.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + /home/yla/.nuget/packages/ + /home/yla/.nuget/packages/ + PackageReference + 6.14.0 + + + + + \ No newline at end of file diff --git a/obj/Generic.Media.csproj.nuget.g.targets b/obj/Generic.Media.csproj.nuget.g.targets new file mode 100644 index 0000000..c75e92e --- /dev/null +++ b/obj/Generic.Media.csproj.nuget.g.targets @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/obj/Media.RCL.csproj.nuget.dgspec.json b/obj/Media.RCL.csproj.nuget.dgspec.json new file mode 100644 index 0000000..70169be --- /dev/null +++ b/obj/Media.RCL.csproj.nuget.dgspec.json @@ -0,0 +1,363 @@ +{ + "format": 1, + "restore": { + "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/Media.RCL.csproj": {} + }, + "projects": { + "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/Media.RCL.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/Media.RCL.csproj", + "projectName": "Media.RCL", + "projectPath": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/Media.RCL.csproj", + "packagesPath": "/home/yla/.nuget/packages/", + "outputPath": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.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": { + "Blazored.LocalStorage": { + "target": "Package", + "version": "[4.5.0, )" + }, + "Microsoft.AspNetCore.Components.Authorization": { + "target": "Package", + "version": "[10.0.1, )" + }, + "Microsoft.AspNetCore.Components.Web": { + "target": "Package", + "version": "[10.0.1, )" + }, + "Microsoft.Extensions.Http": { + "target": "Package", + "version": "[10.0.1, )" + }, + "Microsoft.Extensions.Localization": { + "target": "Package", + "version": "[10.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/10.0.102/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + } + } +} \ No newline at end of file diff --git a/obj/Media.RCL.csproj.nuget.g.props b/obj/Media.RCL.csproj.nuget.g.props new file mode 100644 index 0000000..ac65a2f --- /dev/null +++ b/obj/Media.RCL.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + /home/yla/.nuget/packages/ + /home/yla/.nuget/packages/ + PackageReference + 7.0.0 + + + + + \ No newline at end of file diff --git a/obj/Media.RCL.csproj.nuget.g.targets b/obj/Media.RCL.csproj.nuget.g.targets new file mode 100644 index 0000000..7e0826c --- /dev/null +++ b/obj/Media.RCL.csproj.nuget.g.targets @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/obj/Media.csproj.nuget.dgspec.json b/obj/Media.csproj.nuget.dgspec.json new file mode 100644 index 0000000..3b0a1db --- /dev/null +++ b/obj/Media.csproj.nuget.dgspec.json @@ -0,0 +1,363 @@ +{ + "format": 1, + "restore": { + "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.csproj": {} + }, + "projects": { + "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.csproj", + "projectName": "Media", + "projectPath": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.csproj", + "packagesPath": "/home/yla/.nuget/packages/", + "outputPath": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/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": { + "Blazored.LocalStorage": { + "target": "Package", + "version": "[4.5.0, )" + }, + "Microsoft.AspNetCore.Components.Authorization": { + "target": "Package", + "version": "[10.0.1, )" + }, + "Microsoft.AspNetCore.Components.Web": { + "target": "Package", + "version": "[10.0.1, )" + }, + "Microsoft.Extensions.Http": { + "target": "Package", + "version": "[10.0.1, )" + }, + "Microsoft.Extensions.Localization": { + "target": "Package", + "version": "[10.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/10.0.102/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + } + } +} \ No newline at end of file diff --git a/obj/Media.csproj.nuget.g.props b/obj/Media.csproj.nuget.g.props new file mode 100644 index 0000000..ac65a2f --- /dev/null +++ b/obj/Media.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + /home/yla/.nuget/packages/ + /home/yla/.nuget/packages/ + PackageReference + 7.0.0 + + + + + \ No newline at end of file diff --git a/obj/Media.csproj.nuget.g.targets b/obj/Media.csproj.nuget.g.targets new file mode 100644 index 0000000..7e0826c --- /dev/null +++ b/obj/Media.csproj.nuget.g.targets @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/obj/project.assets.json b/obj/project.assets.json new file mode 100644 index 0000000..3643f2f --- /dev/null +++ b/obj/project.assets.json @@ -0,0 +1,1468 @@ +{ + "version": 3, + "targets": { + "net10.0": { + "Blazored.LocalStorage/4.5.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Components.Web": "8.0.0" + }, + "compile": { + "lib/net8.0/Blazored.LocalStorage.dll": {} + }, + "runtime": { + "lib/net8.0/Blazored.LocalStorage.dll": {} + } + }, + "Microsoft.AspNetCore.Authorization/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Metadata": "10.0.1", + "Microsoft.Extensions.Diagnostics": "10.0.1", + "Microsoft.Extensions.Logging.Abstractions": "10.0.1", + "Microsoft.Extensions.Options": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.AspNetCore.Authorization.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.Authorization.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Components/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Authorization": "10.0.1", + "Microsoft.AspNetCore.Components.Analyzers": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.AspNetCore.Components.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.Components.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Components.Analyzers/10.0.1": { + "type": "package", + "build": { + "buildTransitive/netstandard2.0/Microsoft.AspNetCore.Components.Analyzers.targets": {} + } + }, + "Microsoft.AspNetCore.Components.Authorization/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Authorization": "10.0.1", + "Microsoft.AspNetCore.Components": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.AspNetCore.Components.Authorization.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.Components.Authorization.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Components.Forms/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Components": "10.0.1", + "Microsoft.Extensions.Validation": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.AspNetCore.Components.Forms.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.Components.Forms.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Components.Web/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Components": "10.0.1", + "Microsoft.AspNetCore.Components.Forms": "10.0.1", + "Microsoft.Extensions.DependencyInjection": "10.0.1", + "Microsoft.Extensions.Primitives": "10.0.1", + "Microsoft.JSInterop": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.AspNetCore.Components.Web.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.Components.Web.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Metadata/10.0.1": { + "type": "package", + "compile": { + "lib/net10.0/Microsoft.AspNetCore.Metadata.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.Metadata.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Configuration/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "10.0.1", + "Microsoft.Extensions.Primitives": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Binder/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "10.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Configuration.Binder.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Configuration.Binder.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets": {} + } + }, + "Microsoft.Extensions.DependencyInjection/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.1": { + "type": "package", + "compile": { + "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Diagnostics/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "10.0.1", + "Microsoft.Extensions.Diagnostics.Abstractions": "10.0.1", + "Microsoft.Extensions.Options.ConfigurationExtensions": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Diagnostics.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Diagnostics.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Diagnostics.Abstractions/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.1", + "Microsoft.Extensions.Options": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Http/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "10.0.1", + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.1", + "Microsoft.Extensions.Diagnostics": "10.0.1", + "Microsoft.Extensions.Logging": "10.0.1", + "Microsoft.Extensions.Logging.Abstractions": "10.0.1", + "Microsoft.Extensions.Options": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Http.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Http.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Localization/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.1", + "Microsoft.Extensions.Localization.Abstractions": "10.0.1", + "Microsoft.Extensions.Logging.Abstractions": "10.0.1", + "Microsoft.Extensions.Options": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Localization.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Localization.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Localization.Abstractions/10.0.1": { + "type": "package", + "compile": { + "lib/net10.0/Microsoft.Extensions.Localization.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Localization.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Logging/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "10.0.1", + "Microsoft.Extensions.Logging.Abstractions": "10.0.1", + "Microsoft.Extensions.Options": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.Options/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.1", + "Microsoft.Extensions.Primitives": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.Extensions.Options.targets": {} + } + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "10.0.1", + "Microsoft.Extensions.Configuration.Binder": "10.0.1", + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.1", + "Microsoft.Extensions.Options": "10.0.1", + "Microsoft.Extensions.Primitives": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Primitives/10.0.1": { + "type": "package", + "compile": { + "lib/net10.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Validation/10.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.1", + "Microsoft.Extensions.Options": "10.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Validation.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Validation.dll": { + "related": ".xml" + } + } + }, + "Microsoft.JSInterop/10.0.1": { + "type": "package", + "compile": { + "lib/net10.0/Microsoft.JSInterop.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.JSInterop.dll": { + "related": ".xml" + } + } + } + } + }, + "libraries": { + "Blazored.LocalStorage/4.5.0": { + "sha512": "6nZuJwA7zNIKx83IsObiHXZb09ponJOpCClU3en+hI8ZFvrOKXeOw+H7TegQZQrvdR1n9fkrVkEBQZg8vx6ZTw==", + "type": "package", + "path": "blazored.localstorage/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "blazored.localstorage.4.5.0.nupkg.sha512", + "blazored.localstorage.nuspec", + "icon.png", + "lib/net6.0/Blazored.LocalStorage.dll", + "lib/net7.0/Blazored.LocalStorage.dll", + "lib/net8.0/Blazored.LocalStorage.dll" + ] + }, + "Microsoft.AspNetCore.Authorization/10.0.1": { + "sha512": "Y9QE0gH4Q4cR7ZRToFju47c1MoeqxaLHdpzOviqD2TmnGGAeDMT9AV56j2BOVm5CsJAVyI/USxLYrkk2NVinZA==", + "type": "package", + "path": "microsoft.aspnetcore.authorization/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net10.0/Microsoft.AspNetCore.Authorization.dll", + "lib/net10.0/Microsoft.AspNetCore.Authorization.xml", + "lib/net462/Microsoft.AspNetCore.Authorization.dll", + "lib/net462/Microsoft.AspNetCore.Authorization.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.xml", + "microsoft.aspnetcore.authorization.10.0.1.nupkg.sha512", + "microsoft.aspnetcore.authorization.nuspec" + ] + }, + "Microsoft.AspNetCore.Components/10.0.1": { + "sha512": "SbABcQ7soM9jC/HvPKrg/smQxsMD2gW9iHBRFtBiYTMSs5Vqh7+i47BTOe3OM3IGzly2FiOmeNHJhMYK7YFGWA==", + "type": "package", + "path": "microsoft.aspnetcore.components/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.txt", + "lib/net10.0/Microsoft.AspNetCore.Components.dll", + "lib/net10.0/Microsoft.AspNetCore.Components.xml", + "microsoft.aspnetcore.components.10.0.1.nupkg.sha512", + "microsoft.aspnetcore.components.nuspec" + ] + }, + "Microsoft.AspNetCore.Components.Analyzers/10.0.1": { + "sha512": "V4nOq0mNoX9OWz9pJz4uLcAu4GXWUKKHeoxKwugYhFOh4Yh3n7/+xXfgSXK1PZZOIQ3e1vJ7CNvB6evv4YphEA==", + "type": "package", + "path": "microsoft.aspnetcore.components.analyzers/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.txt", + "analyzers/dotnet/cs/Microsoft.AspNetCore.Components.Analyzers.dll", + "build/netstandard2.0/Microsoft.AspNetCore.Components.Analyzers.targets", + "buildTransitive/netstandard2.0/Microsoft.AspNetCore.Components.Analyzers.targets", + "microsoft.aspnetcore.components.analyzers.10.0.1.nupkg.sha512", + "microsoft.aspnetcore.components.analyzers.nuspec" + ] + }, + "Microsoft.AspNetCore.Components.Authorization/10.0.1": { + "sha512": "Ahez1F0EfsPqIT/X/TcdJCDYjVACHJwIPgZSof33wqLXaENUJNDnzphkmXOiBY1tvok/ZIUVEpeFLWdkLh0IyA==", + "type": "package", + "path": "microsoft.aspnetcore.components.authorization/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.txt", + "lib/net10.0/Microsoft.AspNetCore.Components.Authorization.dll", + "lib/net10.0/Microsoft.AspNetCore.Components.Authorization.xml", + "microsoft.aspnetcore.components.authorization.10.0.1.nupkg.sha512", + "microsoft.aspnetcore.components.authorization.nuspec" + ] + }, + "Microsoft.AspNetCore.Components.Forms/10.0.1": { + "sha512": "aWUpLOz749gwMMaKe81tet+INC8nfskbauF2VO5Qr3lspj/l8S24zNLr95Bl8EwAizvBCNqwb8fPFU1dnn3WbA==", + "type": "package", + "path": "microsoft.aspnetcore.components.forms/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.txt", + "lib/net10.0/Microsoft.AspNetCore.Components.Forms.dll", + "lib/net10.0/Microsoft.AspNetCore.Components.Forms.xml", + "microsoft.aspnetcore.components.forms.10.0.1.nupkg.sha512", + "microsoft.aspnetcore.components.forms.nuspec" + ] + }, + "Microsoft.AspNetCore.Components.Web/10.0.1": { + "sha512": "hX74ijqAiUfIo6WpvLWignGYp7tkrRR3KRVBErwFSAcsiHeaCxGM81fYRXd9rf+gkFUNoKvcSxYyVZc2vFJVXg==", + "type": "package", + "path": "microsoft.aspnetcore.components.web/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.txt", + "lib/net10.0/Microsoft.AspNetCore.Components.Web.dll", + "lib/net10.0/Microsoft.AspNetCore.Components.Web.xml", + "microsoft.aspnetcore.components.web.10.0.1.nupkg.sha512", + "microsoft.aspnetcore.components.web.nuspec" + ] + }, + "Microsoft.AspNetCore.Metadata/10.0.1": { + "sha512": "6JrG03xROuR4mQIHGcT8OnaKVBoPLLbto5RicKQIUV3JIU7cZYKIWDAnk0SQcl7ziQr6R327D6QBOo+PbYnnrw==", + "type": "package", + "path": "microsoft.aspnetcore.metadata/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net10.0/Microsoft.AspNetCore.Metadata.dll", + "lib/net10.0/Microsoft.AspNetCore.Metadata.xml", + "lib/net462/Microsoft.AspNetCore.Metadata.dll", + "lib/net462/Microsoft.AspNetCore.Metadata.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Metadata.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Metadata.xml", + "microsoft.aspnetcore.metadata.10.0.1.nupkg.sha512", + "microsoft.aspnetcore.metadata.nuspec" + ] + }, + "Microsoft.Extensions.Configuration/10.0.1": { + "sha512": "njoRekyMIK+smav8B6KL2YgIfUtlsRNuT7wvurpLW+m/hoRKVnoELk2YxnUnWRGScCd1rukLMxShwLqEOKowDg==", + "type": "package", + "path": "microsoft.extensions.configuration/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.targets", + "lib/net10.0/Microsoft.Extensions.Configuration.dll", + "lib/net10.0/Microsoft.Extensions.Configuration.xml", + "lib/net462/Microsoft.Extensions.Configuration.dll", + "lib/net462/Microsoft.Extensions.Configuration.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.xml", + "lib/net9.0/Microsoft.Extensions.Configuration.dll", + "lib/net9.0/Microsoft.Extensions.Configuration.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml", + "microsoft.extensions.configuration.10.0.1.nupkg.sha512", + "microsoft.extensions.configuration.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Abstractions/10.0.1": { + "sha512": "kPlU11hql+L9RjrN2N9/0GcRcRcZrNFlLLjadasFWeBORT6pL6OE+RYRk90GGCyVGSxTK+e1/f3dsMj5zpFFiQ==", + "type": "package", + "path": "microsoft.extensions.configuration.abstractions/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Abstractions.targets", + "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net462/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "microsoft.extensions.configuration.abstractions.10.0.1.nupkg.sha512", + "microsoft.extensions.configuration.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Binder/10.0.1": { + "sha512": "Lp4CZIuTVXtlvkAnTq6QvMSW7+H62gX2cU2vdFxHQUxvrWTpi7LwYI3X+YAyIS0r12/p7gaosco7efIxL4yFNw==", + "type": "package", + "path": "microsoft.extensions.configuration.binder/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/cs/Microsoft.Extensions.Configuration.Binder.SourceGeneration.dll", + "analyzers/dotnet/cs/cs/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/de/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/es/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/fr/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/it/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/ja/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/ko/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/pl/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/pt-BR/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/ru/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/tr/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/zh-Hans/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/zh-Hant/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets", + "lib/net10.0/Microsoft.Extensions.Configuration.Binder.dll", + "lib/net10.0/Microsoft.Extensions.Configuration.Binder.xml", + "lib/net462/Microsoft.Extensions.Configuration.Binder.dll", + "lib/net462/Microsoft.Extensions.Configuration.Binder.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.Binder.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.Binder.xml", + "lib/net9.0/Microsoft.Extensions.Configuration.Binder.dll", + "lib/net9.0/Microsoft.Extensions.Configuration.Binder.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml", + "microsoft.extensions.configuration.binder.10.0.1.nupkg.sha512", + "microsoft.extensions.configuration.binder.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection/10.0.1": { + "sha512": "zerXV0GAR9LCSXoSIApbWn+Dq1/T+6vbXMHGduq1LoVQRHT0BXsGQEau0jeLUBUcsoF/NaUT8ADPu8b+eNcIyg==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets", + "lib/net10.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net10.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/net462/Microsoft.Extensions.DependencyInjection.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml", + "microsoft.extensions.dependencyinjection.10.0.1.nupkg.sha512", + "microsoft.extensions.dependencyinjection.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.1": { + "sha512": "oIy8fQxxbUsSrrOvgBqlVgOeCtDmrcynnTG+FQufcUWBrwyPfwlUkCDB2vaiBeYPyT+20u9/HeuHeBf+H4F/8g==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "microsoft.extensions.dependencyinjection.abstractions.10.0.1.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Diagnostics/10.0.1": { + "sha512": "YaocqxscJLxLit0F5yq2XyB+9C7rSRfeTL7MJIl7XwaOoUO3i0EqfO2kmtjiRduYWw7yjcSINEApYZbzjau2gQ==", + "type": "package", + "path": "microsoft.extensions.diagnostics/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Diagnostics.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Diagnostics.targets", + "lib/net10.0/Microsoft.Extensions.Diagnostics.dll", + "lib/net10.0/Microsoft.Extensions.Diagnostics.xml", + "lib/net462/Microsoft.Extensions.Diagnostics.dll", + "lib/net462/Microsoft.Extensions.Diagnostics.xml", + "lib/net8.0/Microsoft.Extensions.Diagnostics.dll", + "lib/net8.0/Microsoft.Extensions.Diagnostics.xml", + "lib/net9.0/Microsoft.Extensions.Diagnostics.dll", + "lib/net9.0/Microsoft.Extensions.Diagnostics.xml", + "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.dll", + "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.xml", + "microsoft.extensions.diagnostics.10.0.1.nupkg.sha512", + "microsoft.extensions.diagnostics.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Diagnostics.Abstractions/10.0.1": { + "sha512": "QMoMrkNpnQym5mpfdxfxpRDuqLpsOuztguFvzH9p+Ex+do+uLFoi7UkAsBO4e9/tNR3eMFraFf2fOAi2cp3jjA==", + "type": "package", + "path": "microsoft.extensions.diagnostics.abstractions/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Diagnostics.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Diagnostics.Abstractions.targets", + "lib/net10.0/Microsoft.Extensions.Diagnostics.Abstractions.dll", + "lib/net10.0/Microsoft.Extensions.Diagnostics.Abstractions.xml", + "lib/net462/Microsoft.Extensions.Diagnostics.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Diagnostics.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.Diagnostics.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.Diagnostics.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.Abstractions.xml", + "microsoft.extensions.diagnostics.abstractions.10.0.1.nupkg.sha512", + "microsoft.extensions.diagnostics.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Http/10.0.1": { + "sha512": "ZXJup9ReE1Ot3M8jqcw1b/lnc8USxyYS3cyLsssU39u04TES9JNGviWUGIvP3K7mMU3TF7kQl2aS0SmVwegflw==", + "type": "package", + "path": "microsoft.extensions.http/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Http.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Http.targets", + "lib/net10.0/Microsoft.Extensions.Http.dll", + "lib/net10.0/Microsoft.Extensions.Http.xml", + "lib/net462/Microsoft.Extensions.Http.dll", + "lib/net462/Microsoft.Extensions.Http.xml", + "lib/net8.0/Microsoft.Extensions.Http.dll", + "lib/net8.0/Microsoft.Extensions.Http.xml", + "lib/net9.0/Microsoft.Extensions.Http.dll", + "lib/net9.0/Microsoft.Extensions.Http.xml", + "lib/netstandard2.0/Microsoft.Extensions.Http.dll", + "lib/netstandard2.0/Microsoft.Extensions.Http.xml", + "microsoft.extensions.http.10.0.1.nupkg.sha512", + "microsoft.extensions.http.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Localization/10.0.1": { + "sha512": "yJBI3IRm9uTRu7cPc7i90/8+CuiiJJ5M4khj6iWQcYnq6VrG+H2U5GzpRLtkVCsgxc1LjtkNMEbSDatfBA+z5g==", + "type": "package", + "path": "microsoft.extensions.localization/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net10.0/Microsoft.Extensions.Localization.dll", + "lib/net10.0/Microsoft.Extensions.Localization.xml", + "lib/net462/Microsoft.Extensions.Localization.dll", + "lib/net462/Microsoft.Extensions.Localization.xml", + "lib/netstandard2.0/Microsoft.Extensions.Localization.dll", + "lib/netstandard2.0/Microsoft.Extensions.Localization.xml", + "microsoft.extensions.localization.10.0.1.nupkg.sha512", + "microsoft.extensions.localization.nuspec" + ] + }, + "Microsoft.Extensions.Localization.Abstractions/10.0.1": { + "sha512": "TQSQWF+iZdtGNgPiu7gKUqrTEeRD/mhk7KeYiuEwmTUPbawsYfPSNzSvOOeueJ0nU1697X8HZ2vCp2ByHNHkZg==", + "type": "package", + "path": "microsoft.extensions.localization.abstractions/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net10.0/Microsoft.Extensions.Localization.Abstractions.dll", + "lib/net10.0/Microsoft.Extensions.Localization.Abstractions.xml", + "lib/net462/Microsoft.Extensions.Localization.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Localization.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.xml", + "microsoft.extensions.localization.abstractions.10.0.1.nupkg.sha512", + "microsoft.extensions.localization.abstractions.nuspec" + ] + }, + "Microsoft.Extensions.Logging/10.0.1": { + "sha512": "9ItMpMLFZFJFqCuHLLbR3LiA4ahA8dMtYuXpXl2YamSDWZhYS9BruPprkftY0tYi2bQ0slNrixdFm+4kpz1g5w==", + "type": "package", + "path": "microsoft.extensions.logging/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Logging.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets", + "lib/net10.0/Microsoft.Extensions.Logging.dll", + "lib/net10.0/Microsoft.Extensions.Logging.xml", + "lib/net462/Microsoft.Extensions.Logging.dll", + "lib/net462/Microsoft.Extensions.Logging.xml", + "lib/net8.0/Microsoft.Extensions.Logging.dll", + "lib/net8.0/Microsoft.Extensions.Logging.xml", + "lib/net9.0/Microsoft.Extensions.Logging.dll", + "lib/net9.0/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.1/Microsoft.Extensions.Logging.xml", + "microsoft.extensions.logging.10.0.1.nupkg.sha512", + "microsoft.extensions.logging.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/10.0.1": { + "sha512": "YkmyiPIWAXVb+lPIrM0LE5bbtLOJkCiRTFiHpkVOvhI7uTvCfoOHLEN0LcsY56GpSD7NqX3gJNpsaDe87/B3zg==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", + "microsoft.extensions.logging.abstractions.10.0.1.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Options/10.0.1": { + "sha512": "G6VVwywpJI4XIobetGHwg7wDOYC2L2XBYdtskxLaKF/Ynb5QBwLl7Q//wxAR2aVCLkMpoQrjSP9VoORkyddsNQ==", + "type": "package", + "path": "microsoft.extensions.options/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Options.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "buildTransitive/net461/Microsoft.Extensions.Options.targets", + "buildTransitive/net462/Microsoft.Extensions.Options.targets", + "buildTransitive/net8.0/Microsoft.Extensions.Options.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Options.targets", + "lib/net10.0/Microsoft.Extensions.Options.dll", + "lib/net10.0/Microsoft.Extensions.Options.xml", + "lib/net462/Microsoft.Extensions.Options.dll", + "lib/net462/Microsoft.Extensions.Options.xml", + "lib/net8.0/Microsoft.Extensions.Options.dll", + "lib/net8.0/Microsoft.Extensions.Options.xml", + "lib/net9.0/Microsoft.Extensions.Options.dll", + "lib/net9.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.0/Microsoft.Extensions.Options.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.1/Microsoft.Extensions.Options.dll", + "lib/netstandard2.1/Microsoft.Extensions.Options.xml", + "microsoft.extensions.options.10.0.1.nupkg.sha512", + "microsoft.extensions.options.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/10.0.1": { + "sha512": "pL78/Im7O3WmxHzlKUsWTYchKL881udU7E26gCD3T0+/tPhWVfjPwMzfN/MRKU7aoFYcOiqcG2k1QTlH5woWow==", + "type": "package", + "path": "microsoft.extensions.options.configurationextensions/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Options.ConfigurationExtensions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.ConfigurationExtensions.targets", + "lib/net10.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll", + "lib/net10.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml", + "lib/net462/Microsoft.Extensions.Options.ConfigurationExtensions.dll", + "lib/net462/Microsoft.Extensions.Options.ConfigurationExtensions.xml", + "lib/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll", + "lib/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml", + "lib/net9.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll", + "lib/net9.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml", + "microsoft.extensions.options.configurationextensions.10.0.1.nupkg.sha512", + "microsoft.extensions.options.configurationextensions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Primitives/10.0.1": { + "sha512": "DO8XrJkp5x4PddDuc/CH37yDBCs9BYN6ijlKyR3vMb55BP1Vwh90vOX8bNfnKxr5B2qEI3D8bvbY1fFbDveDHQ==", + "type": "package", + "path": "microsoft.extensions.primitives/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Primitives.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets", + "lib/net10.0/Microsoft.Extensions.Primitives.dll", + "lib/net10.0/Microsoft.Extensions.Primitives.xml", + "lib/net462/Microsoft.Extensions.Primitives.dll", + "lib/net462/Microsoft.Extensions.Primitives.xml", + "lib/net8.0/Microsoft.Extensions.Primitives.dll", + "lib/net8.0/Microsoft.Extensions.Primitives.xml", + "lib/net9.0/Microsoft.Extensions.Primitives.dll", + "lib/net9.0/Microsoft.Extensions.Primitives.xml", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", + "microsoft.extensions.primitives.10.0.1.nupkg.sha512", + "microsoft.extensions.primitives.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Validation/10.0.1": { + "sha512": "5bcu9zWhgY8AZUN1ERNH0BQKFh10xlx4UrCh+0cDn7wB01QkrK4S6Jh45fCgEqmWJWVGqBS2g8MN0Lu/99Zgdg==", + "type": "package", + "path": "microsoft.extensions.validation/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/cs/Microsoft.Extensions.Validation.ValidationsGenerator.dll", + "lib/net10.0/Microsoft.Extensions.Validation.dll", + "lib/net10.0/Microsoft.Extensions.Validation.xml", + "microsoft.extensions.validation.10.0.1.nupkg.sha512", + "microsoft.extensions.validation.nuspec" + ] + }, + "Microsoft.JSInterop/10.0.1": { + "sha512": "pTfoYBjs7HKmTEk9cNWcSySdTKT8USjviLgmMaSs/YA0+oONufKy9hqqZ5EE4CNy9y24SDDc9lerXfV7aiVfWA==", + "type": "package", + "path": "microsoft.jsinterop/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net10.0/Microsoft.JSInterop.dll", + "lib/net10.0/Microsoft.JSInterop.xml", + "microsoft.jsinterop.10.0.1.nupkg.sha512", + "microsoft.jsinterop.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "net10.0": [ + "Blazored.LocalStorage >= 4.5.0", + "Microsoft.AspNetCore.Components.Authorization >= 10.0.1", + "Microsoft.AspNetCore.Components.Web >= 10.0.1", + "Microsoft.Extensions.Http >= 10.0.1", + "Microsoft.Extensions.Localization >= 10.0.1" + ] + }, + "packageFolders": { + "/home/yla/.nuget/packages/": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/Media.RCL.csproj", + "projectName": "Media.RCL", + "projectPath": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/Media.RCL.csproj", + "packagesPath": "/home/yla/.nuget/packages/", + "outputPath": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.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": { + "Blazored.LocalStorage": { + "target": "Package", + "version": "[4.5.0, )" + }, + "Microsoft.AspNetCore.Components.Authorization": { + "target": "Package", + "version": "[10.0.1, )" + }, + "Microsoft.AspNetCore.Components.Web": { + "target": "Package", + "version": "[10.0.1, )" + }, + "Microsoft.Extensions.Http": { + "target": "Package", + "version": "[10.0.1, )" + }, + "Microsoft.Extensions.Localization": { + "target": "Package", + "version": "[10.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/10.0.102/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + } +} \ No newline at end of file diff --git a/obj/project.nuget.cache b/obj/project.nuget.cache new file mode 100644 index 0000000..50fc9e1 --- /dev/null +++ b/obj/project.nuget.cache @@ -0,0 +1,34 @@ +{ + "version": 2, + "dgSpecHash": "Nwv1dplQCsc=", + "success": true, + "projectFilePath": "/mnt/data/Work/Programming/MainProgram/Frontend/Libs/Generic/Media/Media.RCL/Media.RCL.csproj", + "expectedPackageFiles": [ + "/home/yla/.nuget/packages/blazored.localstorage/4.5.0/blazored.localstorage.4.5.0.nupkg.sha512", + "/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.authorization/10.0.1/microsoft.aspnetcore.components.authorization.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.http/10.0.1/microsoft.extensions.http.10.0.1.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.localization/10.0.1/microsoft.extensions.localization.10.0.1.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.localization.abstractions/10.0.1/microsoft.extensions.localization.abstractions.10.0.1.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.logging/10.0.1/microsoft.extensions.logging.10.0.1.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.logging.abstractions/10.0.1/microsoft.extensions.logging.abstractions.10.0.1.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.options/10.0.1/microsoft.extensions.options.10.0.1.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.options.configurationextensions/10.0.1/microsoft.extensions.options.configurationextensions.10.0.1.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.primitives/10.0.1/microsoft.extensions.primitives.10.0.1.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.validation/10.0.1/microsoft.extensions.validation.10.0.1.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.jsinterop/10.0.1/microsoft.jsinterop.10.0.1.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/wwwroot/css/cropper.min.css b/wwwroot/css/cropper.min.css new file mode 100644 index 0000000..c600854 --- /dev/null +++ b/wwwroot/css/cropper.min.css @@ -0,0 +1,304 @@ +/*! + * Cropper.js v1.6.1 + * https://fengyuanchen.github.io/cropperjs + * + * Copyright 2015-present Chen Fengyuan + * Released under the MIT license + * + * Date: 2023-09-17T03:44:17.565Z + */ +.cropper-container { + direction: ltr; + font-size: 0; + line-height: 0; + position: relative; + -ms-touch-action: none; + touch-action: none; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none +} + +.cropper-container img { + backface-visibility: hidden; + display: block; + height: 100%; + image-orientation: 0deg; + max-height: none !important; + max-width: none !important; + min-height: 0 !important; + min-width: 0 !important; + width: 100% +} + +.cropper-canvas, +.cropper-crop-box, +.cropper-drag-box, +.cropper-modal, +.cropper-wrap-box { + bottom: 0; + left: 0; + position: absolute; + right: 0; + top: 0 +} + +.cropper-canvas, +.cropper-wrap-box { + overflow: hidden +} + +.cropper-drag-box { + background-color: #fff; + opacity: 0 +} + +.cropper-modal { + background-color: #000; + opacity: .5 +} + +.cropper-view-box { + display: block; + height: 100%; + outline: 1px solid #39f; + outline-color: rgba(51, 153, 255, .75); + overflow: hidden; + width: 100% +} + +.cropper-dashed { + border: 0 dashed #eee; + display: block; + opacity: .5; + position: absolute +} + +.cropper-dashed.dashed-h { + border-bottom-width: 1px; + border-top-width: 1px; + height: 33.33333%; + left: 0; + top: 33.33333%; + width: 100% +} + +.cropper-dashed.dashed-v { + border-left-width: 1px; + border-right-width: 1px; + height: 100%; + left: 33.33333%; + top: 0; + width: 33.33333% +} + +.cropper-center { + display: block; + height: 0; + left: 50%; + opacity: .75; + position: absolute; + top: 50%; + width: 0 +} + +.cropper-center:after, +.cropper-center:before { + background-color: #eee; + content: " "; + display: block; + position: absolute +} + +.cropper-center:before { + height: 1px; + left: -3px; + top: 0; + width: 7px +} + +.cropper-center:after { + height: 7px; + left: 0; + top: -3px; + width: 1px +} + +.cropper-face, +.cropper-line, +.cropper-point { + display: block; + height: 100%; + opacity: .1; + position: absolute; + width: 100% +} + +.cropper-face { + background-color: #fff; + left: 0; + top: 0 +} + +.cropper-line { + background-color: #39f +} + +.cropper-line.line-e { + cursor: ew-resize; + right: -3px; + top: 0; + width: 5px +} + +.cropper-line.line-n { + cursor: ns-resize; + height: 5px; + left: 0; + top: -3px +} + +.cropper-line.line-w { + cursor: ew-resize; + left: -3px; + top: 0; + width: 5px +} + +.cropper-line.line-s { + bottom: -3px; + cursor: ns-resize; + height: 5px; + left: 0 +} + +.cropper-point { + background-color: #39f; + height: 5px; + opacity: .75; + width: 5px +} + +.cropper-point.point-e { + cursor: ew-resize; + margin-top: -3px; + right: -3px; + top: 50% +} + +.cropper-point.point-n { + cursor: ns-resize; + left: 50%; + margin-left: -3px; + top: -3px +} + +.cropper-point.point-w { + cursor: ew-resize; + left: -3px; + margin-top: -3px; + top: 50% +} + +.cropper-point.point-s { + bottom: -3px; + cursor: s-resize; + left: 50%; + margin-left: -3px +} + +.cropper-point.point-ne { + cursor: nesw-resize; + right: -3px; + top: -3px +} + +.cropper-point.point-nw { + cursor: nwse-resize; + left: -3px; + top: -3px +} + +.cropper-point.point-sw { + bottom: -3px; + cursor: nesw-resize; + left: -3px +} + +.cropper-point.point-se { + bottom: -3px; + cursor: nwse-resize; + height: 20px; + opacity: 1; + right: -3px; + width: 20px +} + +@media (min-width:768px) { + .cropper-point.point-se { + height: 15px; + width: 15px + } +} + +@media (min-width:992px) { + .cropper-point.point-se { + height: 10px; + width: 10px + } +} + +@media (min-width:1200px) { + .cropper-point.point-se { + height: 5px; + opacity: .75; + width: 5px + } +} + +.cropper-point.point-se:before { + background-color: #39f; + bottom: -50%; + content: " "; + display: block; + height: 200%; + opacity: 0; + position: absolute; + right: -50%; + width: 200% +} + +.cropper-invisible { + opacity: 0 +} + +.cropper-bg { + background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAQMAAAAlPW0iAAAAA3NCSVQICAjb4U/gAAAABlBMVEXMzMz////TjRV2AAAACXBIWXMAAArrAAAK6wGCiw1aAAAAHHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3MgQ1M26LyyjAAAABFJREFUCJlj+M/AgBVhF/0PAH6/D/HkDxOGAAAAAElFTkSuQmCC") +} + +.cropper-hide { + display: block; + height: 0; + position: absolute; + width: 0 +} + +.cropper-hidden { + display: none !important +} + +.cropper-move { + cursor: move +} + +.cropper-crop { + cursor: crosshair +} + +.cropper-disabled .cropper-drag-box, +.cropper-disabled .cropper-face, +.cropper-disabled .cropper-line, +.cropper-disabled .cropper-point { + cursor: not-allowed +} \ No newline at end of file diff --git a/wwwroot/js/crop.js b/wwwroot/js/crop.js new file mode 100644 index 0000000..dfbb888 --- /dev/null +++ b/wwwroot/js/crop.js @@ -0,0 +1,112 @@ + +var modal; +var cropper; +var myDropzone; +var dropzone; +var cropped; +var croppedImage; + +function startCropper() { + console.log("startcropper") + dropzone = document.getElementById('dropzone') + cropped = document.getElementById('cropped') + croppedImage = document.getElementById('cropped-image') + initTingle(); + + Dropzone.autoDiscover = false + myDropzone = new Dropzone("div#dropzone", { + url: "test", + maxFiles: 1, + autoProcessQueue: false, + addedfile: file => { + myDropzone.removeAllFiles(); + modal.open(); + openCropper(file) + }, + maxfilesexceeded: () => { + console.log("max File Exceeded") + } + }); +} + + +function openCropper(file) { + + var pic = new FileReader(); + pic.readAsDataURL(file) + console.log(file) + if (cropper !== undefined) { + cropper.destroy(); + } + + pic.onload = function () { + image.src = pic.result + cropper = new Cropper(image, { + aspectRatio: 16 / 9, + crop(event) { + + }, + }); + } +} + + +function initTingle() { + modal = new tingle.modal({ + footer: true, + stickyFooter: false, + closeMethods: ['button', 'escape'], + closeLabel: "Close", + cssClass: ['custom-class-1', 'custom-class-2'], + onOpen: function () { + }, + onClose: function () { + + }, + beforeClose: function () { + // here's goes some logic + // e.g. save content before closing the modal + + return true; // close the modal + return false; // nothing happens + }, + + }); + + // set content + modal.setContent(`
`); + + // add a button + modal.addFooterBtn('Button label', 'tingle-btn tingle-btn--primary', function () { + crop(); + + modal.close(); + }); + + // add another button + modal.addFooterBtn('Dangerous action !', 'tingle-btn tingle-btn--danger', function () { + // here goes some logic + modal.close(); + + }); + + // open modal + +} + +function crop() { + croppedImage.src = cropper.getCroppedCanvas().toDataURL('image/jpeg') + + dropzone.classList.toggle("hidden"); + cropped.classList.toggle("hidden"); + + return croppedImage.src; +} + +function removeCropped() { + croppedImage.removeAttribute('src') + + dropzone.classList.toggle("hidden"); + cropped.classList.toggle("hidden"); +} + diff --git a/wwwroot/js/cropper.min.js b/wwwroot/js/cropper.min.js new file mode 100644 index 0000000..672e5ea --- /dev/null +++ b/wwwroot/js/cropper.min.js @@ -0,0 +1,19 @@ +/*! + * Cropper.js v1.6.1 + * https://fengyuanchen.github.io/cropperjs + * + * Copyright 2015-present Chen Fengyuan + * Released under the MIT license + * + * Date: 2023-09-17T03:40:53.332Z + */ +!function (t, e) { "object" == typeof exports && "undefined" != typeof module ? module.exports = e() : "function" == typeof define && define.amd ? define(e) : (t = "undefined" != typeof globalThis ? globalThis : t || self).Cropper = e() }(this, (function () { + "use strict"; function t(t, e) { var i = Object.keys(t); if (Object.getOwnPropertySymbols) { var a = Object.getOwnPropertySymbols(t); e && (a = a.filter((function (e) { return Object.getOwnPropertyDescriptor(t, e).enumerable }))), i.push.apply(i, a) } return i } function e(e) { for (var i = 1; i < arguments.length; i++) { var a = null != arguments[i] ? arguments[i] : {}; i % 2 ? t(Object(a), !0).forEach((function (t) { r(e, t, a[t]) })) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(a)) : t(Object(a)).forEach((function (t) { Object.defineProperty(e, t, Object.getOwnPropertyDescriptor(a, t)) })) } return e } function i(t) { return i = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (t) { return typeof t } : function (t) { return t && "function" == typeof Symbol && t.constructor === Symbol && t !== Symbol.prototype ? "symbol" : typeof t }, i(t) } function a(t, e) { if (!(t instanceof e)) throw new TypeError("Cannot call a class as a function") } function n(t, e) { for (var i = 0; i < e.length; i++) { var a = e[i]; a.enumerable = a.enumerable || !1, a.configurable = !0, "value" in a && (a.writable = !0), Object.defineProperty(t, o(a.key), a) } } function o(t) { var e = function (t, e) { if ("object" != i(t) || !t) return t; var a = t[Symbol.toPrimitive]; if (void 0 !== a) { var n = a.call(t, e || "default"); if ("object" != i(n)) return n; throw new TypeError("@@toPrimitive must return a primitive value.") } return ("string" === e ? String : Number)(t) }(t, "string"); return "symbol" == i(e) ? e : String(e) } function r(t, e, i) { return (e = o(e)) in t ? Object.defineProperty(t, e, { value: i, enumerable: !0, configurable: !0, writable: !0 }) : t[e] = i, t } function s(t) { return c(t) || h(t) || l(t) || d() } function c(t) { if (Array.isArray(t)) return u(t) } function h(t) { if ("undefined" != typeof Symbol && null != t[Symbol.iterator] || null != t["@@iterator"]) return Array.from(t) } function l(t, e) { if (t) { if ("string" == typeof t) return u(t, e); var i = Object.prototype.toString.call(t).slice(8, -1); return "Object" === i && t.constructor && (i = t.constructor.name), "Map" === i || "Set" === i ? Array.from(t) : "Arguments" === i || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(i) ? u(t, e) : void 0 } } function u(t, e) { (null == e || e > t.length) && (e = t.length); for (var i = 0, a = new Array(e); i < e; i++)a[i] = t[i]; return a } function d() { throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.") } var p = "undefined" != typeof window && void 0 !== window.document, f = p ? window : ({}), m = !!p && "ontouchstart" in f.document.documentElement, g = !!p && "PointerEvent" in f, v = "cropper", w = "all", b = "crop", y = "move", x = "zoom", M = "e", $ = "w", C = "s", D = "n", k = "ne", B = "nw", E = "se", O = "sw", T = "".concat(v, "-crop"), W = "".concat(v, "-disabled"), H = "".concat(v, "-hidden"), z = "".concat(v, "-hide"), L = "".concat(v, "-invisible"), Y = "".concat(v, "-modal"), X = "".concat(v, "-move"), R = "".concat(v, "-action"), S = "".concat(v, "-preview"), A = "".concat(v, "-bg"), I = "".concat(v, "-wrap"), j = "".concat(v, "-mask"), U = "".concat(v, "-canvas"), N = "".concat(v, "-drag-box"), P = "".concat(v, "-crop-box"), q = "".concat(v, "-dashed"), K = "".concat(v, "-line"), Z = "".concat(v, "-point"), F = "".concat(v, "-face"), G = "".concat(v, "-view-box"), Q = "low", V = "medium", J = "high", _ = "cropstart", tt = "cropmove", et = "cropend", it = "crop", at = "zoom", nt = "ready", ot = "error", rt = "dblclick", st = "pointerdown", ct = "pointermove", ht = "pointerup l", lt = "pointercancel", ut = "touchstart", dt = "touchmove", pt = "touchend touchcancel", ft = "mousedown", mt = "mousemove", gt = "mouseup", vt = "wheel", wt = "resize", bt = "image", yt = "canvas", xt = "timeline", Mt = "contain", $t = "cover", Ct = "none", Dt = "n", kt = "w", Bt = "s", Et = "e", Ot = "nw", Tt = "sw", Wt = "ne", Ht = "se", zt = { translate: 1, rotate: 1, scaleX: 1, scaleY: 1, skewX: 1, skewY: 1 }, Lt = { aspectRatio: NaN, autoCrop: !0, autoCropArea: .8, autoCropUtilityClass: null, background: !0, checkCrossOrigin: !0, checkOrientation: !0, cropBoxMovable: !0, cropBoxResizable: !0, data: null, dragMode: b, guides: !0, highlight: !0, initialAspectRatio: NaN, minCanvasHeight: 0, minCanvasWidth: 0, minContainerHeight: 200, minContainerWidth: 100, minCropBoxHeight: 0, minCropBoxWidth: 0, modal: !0, movable: !0, preview: "", responsive: !0, restore: !0, rotatable: !0, scalable: !0, toggleDragModeOnDblclick: !0, viewMode: 0, wheelZoomRatio: .1, zoomOnTouch: !0, zoomOnWheel: !0, zoomable: !0, crop: null, cropend: null, cropmove: null, cropstart: null, ready: null, zoom: null }, Yt = Number.isNaN || f.isNaN; function Xt(t) { return "number" == typeof t && !Yt(t) } function Rt(t) { return void 0 === t } function St(t) { return "object" === i(t) && null !== t } var At = Object.prototype.hasOwnProperty; function It(t) { if (!St(t)) return !1; try { var e = t.constructor, i = e.prototype; return e && i && At.call(i, "isPrototypeOf") } catch (t) { return !1 } } function jt(t) { return "function" == typeof t } function Ut(t) { return Array.isArray(t) } function Nt(t) { return "string" == typeof t } function Pt(t) { return "boolean" == typeof t } function qt(t) { return t.getElementsByTagName } function Kt(t) { return t.getContext } function Zt(t) { return t instanceof HTMLImageElement } function Ft(t) { return t instanceof HTMLCanvasElement } function Gt(t) { return t instanceof HTMLVideoElement } function Qt(t) { var e = t.trim(), i = e.replace(/\s+/g, " "); if (i !== e) { for (var a = i.length, n = e.length, o = 0; o < n; o++) { var r = e.charCodeAt(o); if (32 === r) { if (32 !== e.charCodeAt(o - 1) && 32 !== e.charCodeAt(o + 1)) { var s = e.indexOf(i); s > 0 && o > s && (a += o - s - 1) } } else 32 !== r && (a -= 1) } i = e.length > a ? e.substr(0, a) : e } return i } function Vt(t) { return t.length > 0 && t[t.length - 1].trim().length > 0 } function Jt(t) { return void 0 !== t } function _t(t) { var e = new Error(t); return e.code = "JS_ERROR", e } function te(t) { return t.replace(/[-_]+(.)?/g, (function (t, e) { return e ? e.toUpperCase() : "" })) } function ee(t, e) { return t.style[e] || t.currentStyle && t.currentStyle[e] } function ie(t, e) { if (t.style) { var i = t.style[e]; if (Jt(i)) return i; var a = te(e); return a !== e ? ie(t, a) : void 0 } return ee(t, e) } function ae(t, e) { if (t.style) { var i = t.style[e]; if (Jt(i)) return i } return ee(t, e) } function ne(t, e, i) { i = Jt(i) ? i : 1; (t = Math.abs(t)) >= 100 ? i = 2 : t >= 10 && (i = 1); return e = e || "0", ((t = String(t)).length < i ? e.repeat(i - t.length) : "") + t } function oe(t, e, i) { var a = "Event" === e.substr(-5), n = new CustomEvent(e, { detail: i, bubbles: !0, cancelable: !0 }); return t.dispatchEvent(n) } function re(t) { var e = t.target; return e || (e = t.srcElement || document), 3 === e.nodeType && (e = e.parentNode), e } function se(t) { var e = t.originalEvent || t; if (e.touches && e.touches.length) { var i = e.touches[0]; return { pageX: i.pageX, pageY: i.pageY, clientX: i.clientX, clientY: i.clientY } } return { pageX: e.pageX, pageY: e.pageY, clientX: e.clientX, clientY: e.clientY } } function ce(t, e, i) { var a = t.getBoundingClientRect(), n = se(e); return { x: n.clientX - a.left - (i ? 0 : window.pageXOffset), y: n.clientY - a.top - (i ? 0 : window.pageYOffset) } } function he(t) { return /^(?:img|canvas|video)$/i.test(t.tagName) } function le(t) { return "img" === t.tagName.toLowerCase() } function ue(t) { return "canvas" === t.tagName.toLowerCase() } function de(t) { return "video" === t.tagName.toLowerCase() } function pe(t) { return t.naturalWidth || t.width } function fe(t) { return t.naturalHeight || t.height } function me(t, e) { if (t.style) { var i = t.style[e]; if (void 0 !== i) return i } return t.currentStyle && t.currentStyle[e] } function ge(t, e) { var i = arguments.length > 2 && void 0 !== arguments[2] ? arguments[2] : null; return (t = t || new Image).onload = function () { e.call(i, this) }, t.src = "string" == typeof t ? t : URL.createObjectURL(t), t } function ve(t, e) { return t.toDataURL(e) } function we(t, e) { return t.toBlob ? new Promise((function (i) { t.toBlob(i, e) })) : Promise.resolve(ve(t, e)) } function be(t) { var e = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : 1, i = arguments.length > 2 && void 0 !== arguments[2] ? arguments[2] : 1, a = document.createElement("canvas"), n = a.getContext("2d"); if (a.width = t.naturalWidth, a.height = t.naturalHeight, n.save(), e === Mt) if (a.width > i) a.width = i, a.height = a.width / t.naturalWidth * t.naturalHeight; else if (a.height > i) a.height = i, a.width = a.height / t.naturalHeight * t.naturalWidth; else { if (!(e === $t)) return; if (a.width < i) a.width = i, a.height = a.width / t.naturalWidth * t.naturalHeight; else if (a.height < i) a.height = i, a.width = a.height / t.naturalHeight * t.naturalWidth } return n.drawImage(t, 0, 0, a.width, a.height), n.restore(), a } function ye(t) { var e = t.split(","), i = e[0].match(/:(.*?);/)[1], a = atob(e[1]), n = a.length, o = new Uint8Array(n); for (; n--;)o[n] = a.charCodeAt(n); return new Blob([o], { type: i }) } function xe(t, e, i) { var a = document.createElement("a"); a.href = t, a.download = e, i && (a.target = "_blank"), document.body.appendChild(a), a.click(), document.body.removeChild(a) } function Me(t, e) { return e ? Math.round(t / e) * e : t } function $e(t, e, i, a) { var n = Math.abs(t), o = Math.abs(e), r = Math.abs(i), s = Math.abs(a); return n >= r && t > 0 && e > 0 || n >= s && t < 0 && e > 0 || o >= r && e > 0 && t > 0 || o >= s && e < 0 && t > 0 ? Math.atan2(Math.abs(t - i), Math.abs(e - a)) * (180 / Math.PI) : 0 } function Ce(t) { var e = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : 0, i = document.createElement("span"), a = document.createElement("span"); i.style.cssText = "height:0;width:0;outline:0;border:0;padding:0;margin:0;box-sizing:content-box;", a.style.cssText = i.style.cssText, i.textContent = t, a.textContent = "s", document.body.appendChild(i), document.body.appendChild(a); var n = i.offsetWidth, o = a.offsetWidth; return document.body.removeChild(i), document.body.removeChild(a), n > o ? n : 0 } return function () { + function t(e) { var i = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : {}; a(this, t), this.element = e, this.options = Object.assign({}, Lt, St(i) && i), this.isLoaded = !1, this.isImg = !1, this.isCanvas = !1, this.completed = !1, this.image = null, this.canvas = null, this.dragBox = null, this.cropBox = null, this.viewBox = null, this.pointers = {}, this.init() } return n(t, [{ key: "init", value: function () { var t = this.element, e = t.tagName.toLowerCase(), i = this.options; if (!t || !he(t)) throw new Error("The first argument is required and must be an or element."); this.isImg = le(t), this.isCanvas = ue(t), this.isImg ? t.src ? this.load() : this.isLoaded = !1 : this.isCanvas && t.width && t.height ? this.load() : this.isLoaded = !1, this.initContainer(), this.initCanvas(), this.initCropBox(), this.render(), this.isLoaded && this.bind() } }, { key: "load", value: function (t) { var e = this; if (t && (this.element.src = t), this.isImg) { if (!this.element.complete) { var i = function () { e.element.removeEventListener("load", i), e.load() }; this.element.addEventListener("load", i), setTimeout((function () { e.element.complete && (e.element.removeEventListener("load", i), e.load()) }), 0) } else this.start() } else this.isCanvas && this.start() } }, { key: "start", value: function () { var t = this; if (this.isLoaded = !0, this.options.checkOrientation) { var e = new Image; e.onload = function () { var i = e.width, a = e.height, n = 1; i > a ? n = i / a : a > i && (n = a / i), t.start2(n) }, e.src = this.element.src } else this.start2() } }, { key: "start2", value: function (t) { var e = this, i = this.element, a = this.options, n = document.createElement("div"); n.className = I, this.container = n, i.parentNode.insertBefore(n, i), n.appendChild(i), this.initPreview(); var o = function () { e.bind(), e.trigger(nt) }; t ? this.render(o) : this.image.onload = function () { e.render(o) } } }, { key: "initContainer", value: function () { var t = this.options, e = this.element, i = this.container, a = this.image; i.style.width = ne(e.offsetWidth) + "px", i.style.height = ne(e.offsetHeight) + "px", a && (a.style.width = ne(e.offsetWidth) + "px", a.style.height = ne(e.offsetHeight) + "px") } }, { key: "initCanvas", value: function () { var t = this.options.viewMode, e = this.container.offsetWidth, i = this.container.offsetHeight, a = this.image.naturalWidth, n = this.image.naturalHeight, o = a / n, r = e / i; t ? o > r ? i = e / o : e = i * o : o > r ? e = i * o : i = e / o, this.canvas = { left: (this.container.offsetWidth - e) / 2, top: (this.container.offsetHeight - i) / 2, width: e, height: i, oldLeft: 0, oldTop: 0, oldWidth: e, oldHeight: i }, this.renderCanvas(!0) } }, { key: "initCropBox", value: function () { var t = this.options, e = this.canvas, i = t.aspectRatio, a = Number(t.autoCropArea) || .8, n = e.width, o = e.height, r = n, s = o; i && (n / o > i ? n = o * i : o = n / i), this.cropBox = { left: e.left + (e.width - n) / 2, top: e.top + (e.height - o) / 2, width: n, height: o, oldLeft: 0, oldTop: 0, oldWidth: n, oldHeight: o }, this.limitCropBox(!0, (!0)), this.initDragger() } }, { key: "render", value: function (t) { this.renderCanvas(), this.renderCropBox(), t && t() } }, { key: "renderCanvas", value: function (t) { var e = this.canvas, i = this.image; if (i) { var a = e.width, n = e.height, o = e.left, r = e.top; i.style.width = ne(a) + "px", i.style.height = ne(n) + "px", i.style.marginLeft = ne(o) + "px", i.style.marginTop = ne(r) + "px", this.transformCanvas(t) } } }, { key: "renderCropBox", value: function () { var t = this.options, e = this.cropBox; if (e.width > e.height * t.aspectRatio ? (e.left = e.left + (e.width - e.height * t.aspectRatio) / 2, e.width = e.height * t.aspectRatio) : (e.top = e.top + (e.height - e.width / t.aspectRatio) / 2, e.height = e.width / t.aspectRatio), this.dragBox) { var i = this.dragBox; i.style.width = ne(e.width) + "px", i.style.height = ne(e.height) + "px", i.style.left = ne(e.left) + "px", i.style.top = ne(e.top) + "px" } this.renderFace() } }, { key: "renderFace", value: function () { if (this.cropBox) { var t = this.cropBox, e = t.width, i = t.height, a = this.dragBox; if (a) { var n = a.getElementsByClassName(F)[0]; n && (n.style.width = ne(e) + "px", n.style.height = ne(i) + "px", n.style.left = ne(t.left) + "px", n.style.top = ne(t.top) + "px") } } } }, { key: "initDragger", value: function () { var t = this.dragBox; t || (t = document.createElement("div"), t.className = P, this.container.appendChild(t), this.dragBox = t), this.bindDragger() } }, { key: "bind", value: function () { var t = this, e = this.options, i = this.container; i.addEventListener(ft, this.cropStart.bind(this)), i.addEventListener(ut, this.cropStart.bind(this)), e.zoomable && i.addEventListener(vt, this.wheel.bind(this)); var a = function (e) { t.cropMove(e) }, n = function (e) { t.cropEnd(e) }; document.addEventListener(mt, a), document.addEventListener(dt, a), document.addEventListener(gt, n), document.addEventListener(pt, n) } }, { key: "unbind", value: function () { var t = this.container; t.removeEventListener(ft, this.cropStart), t.removeEventListener(ut, this.cropStart), t.removeEventListener(vt, this.wheel), document.removeEventListener(mt, this.cropMove), document.removeEventListener(dt, this.cropMove), document.removeEventListener(gt, this.cropEnd), document.removeEventListener(pt, this.cropEnd) } }, { key: "bindDragger", value: function () { } }, { key: "reset", value: function () { this.initCanvas(), this.initCropBox(), this.renderCanvas(), this.renderCropBox() } }, { key: "clear", value: function () { this.cropBox = { left: 0, top: 0, width: 0, height: 0 }, this.renderCropBox(), this.disable() } }, { key: "replace", value: function (t, e) { this.load(t), e && (this.options = Object.assign({}, this.options, e), this.init()) } }, { key: "enable", value: function () { this.completed = !1, this.bind(), this.trigger(nt) } }, { key: "disable", value: function () { this.completed = !0, this.unbind(), this.trigger(ot) } }, { key: "destroy", value: function () { var t = this.container; t && (this.unbind(), t.parentNode.removeChild(t)) } }, { key: "move", value: function (t, e) { var i = this.canvas; i.left += t, i.top += e, this.renderCanvas(!0) } }, { key: "zoom", value: function (t, e) { var i = this.canvas; t = Number(t), t < 0 ? t = 1 / (1 - t) : t += 1; var a = i.width * t, n = i.height * t, o = i.left - (a - i.width) / 2, r = i.top - (n - i.height) / 2; e && (e = se(e), o = e.pageX - this.container.getBoundingClientRect().left - (e.pageX - this.container.getBoundingClientRect().left - i.left) * t, r = e.pageY - this.container.getBoundingClientRect().top - (e.pageY - this.container.getBoundingClientRect().top - i.top) * t), i.width = a, i.height = n, i.left = o, i.top = r, this.renderCanvas(!0) } }, { key: "rotate", value: function (t) { var e = this.image, i = e.style.transform; e.style.transform = i ? i + " rotate(" + t + "deg)" : "rotate(" + t + "deg)" } }, { + key: "scaleX", value: function (t) { + var e = this.image, i = e.style.transform; e.style.transform = i ? i + " scaleX(" + t + ")" : "scaleX(" + t + + ")" + } + }, { key: "scaleY", value: function (t) { var e = this.image, i = e.style.transform; e.style.transform = i ? i + " scaleY(" + t + ")" : "scaleY(" + t + ")" } }, { key: "getData", value: function (t) { var e = this.options, i = this.image, a = this.canvas, n = this.cropBox, o = i.naturalWidth, r = i.naturalHeight, s = a.width, c = a.height, h = n.width, l = n.height, u = n.left - a.left, d = n.top - a.top, p = u / s, f = d / c, m = h / s, g = l / c, v = o * p, w = r * f, b = o * m, y = r * g; return t && (v = Math.round(v), w = Math.round(w), b = Math.round(b), y = Math.round(y)), { x: v, y: w, width: b, height: y, rotate: 0, scaleX: 1, scaleY: 1 } } }, { key: "setData", value: function (t) { var e = this.options, i = this.image, a = this.canvas, n = t.x, o = t.y, r = t.width, s = t.height, c = i.naturalWidth, h = i.naturalHeight, l = a.width, u = a.height, d = n / c, p = o / h, f = r / c, m = s / h, g = l * d + a.left, v = u * p + a.top, w = l * f, b = u * m; this.cropBox = { left: g, top: v, width: w, height: b }, this.renderCropBox() } }, { key: "getContainerData", value: function () { return { width: this.container.offsetWidth, height: this.container.offsetHeight } } }, { key: "getImageData", value: function () { return { left: this.canvas.left, top: this.canvas.top, width: this.canvas.width, height: this.canvas.height, naturalWidth: this.image.naturalWidth, naturalHeight: this.image.naturalHeight, aspectRatio: this.image.naturalWidth / this.image.naturalHeight } } }, { key: "getCanvasData", value: function () { var t = this.canvas, e = t.left, i = t.top, a = t.width, n = t.height; return { left: e, top: i, width: a, height: n, naturalWidth: this.image.naturalWidth, naturalHeight: this.image.naturalHeight } } }, { key: "setCanvasData", value: function (t) { var e = this.canvas, i = t.left, a = t.top, n = t.width, o = t.height; Jt(i) && (e.left = i), Jt(a) && (e.top = a), Jt(n) && (e.width = n), Jt(o) && (e.height = o), this.renderCanvas(!0) } }, { key: "getCropBoxData", value: function () { var t = this.cropBox, e = t.left, i = t.top, a = t.width, n = t.height; return { left: e, top: i, width: a, height: n } } }, { key: "setCropBoxData", value: function (t) { var e = this.cropBox, i = t.left, a = t.top, n = t.width, o = t.height; Jt(i) && (e.left = i), Jt(a) && (e.top = a), Jt(n) && (e.width = n), Jt(o) && (e.height = o), this.renderCropBox() } }, { key: "getCroppedCanvas", value: function (t) { var e = this.getData(), i = this.image, a = i.naturalWidth, n = i.naturalHeight, o = e.width, r = e.height, s = document.createElement("canvas"); s.width = o, s.height = r; var c = s.getContext("2d"); return c.drawImage(i, e.x, e.y, o, r, 0, 0, o, r), s } }, { key: "setAspectRatio", value: function (t) { this.options.aspectRatio = t, this.renderCropBox() } }, { key: "setDragMode", value: function (t) { this.options.dragMode = t } }, { key: "trigger", value: function (t, e) { var i; this.options[t] && this.options[t].apply(this, e || []), (i = oe(this.element, v + t, e)) } }, { key: "cropStart", value: function (t) { if (!this.completed) { var e = t.originalEvent || t, i = e.touches && e.touches.length ? e.touches[0] : e; if (this.dragBox.contains(i.target)) { this.trigger(_); var a = i.pageX, n = i.pageY; this.pointers = { startX: a, startY: n }, this.dragMode = this.options.dragMode } } } }, { key: "cropMove", value: function (t) { if (!this.completed) { var e = t.originalEvent || t, i = e.touches && e.touches.length ? e.touches[0] : e; if (this.pointers) { var a = i.pageX, n = i.pageY, o = a - this.pointers.startX, r = n - this.pointers.startY; this.pointers = { startX: a, startY: n }, this.trigger(tt), this.move(o, r) } } } }, { key: "cropEnd", value: function (t) { this.pointers && (this.trigger(et), this.pointers = null) } }, { key: "wheel", value: function (t) { var e = t.originalEvent || t, i = e.deltaY, a = this.options.wheelZoomRatio; i > 0 ? this.zoom(-a, e) : this.zoom(a, e), t.preventDefault() } }]), t + }(); +})); \ No newline at end of file diff --git a/wwwroot/js/mediaInterop.js b/wwwroot/js/mediaInterop.js new file mode 100644 index 0000000..fb4def2 --- /dev/null +++ b/wwwroot/js/mediaInterop.js @@ -0,0 +1,79 @@ +class CropperInterop { + static initCropper(imgId, options, dotNetObject) { + const image = document.getElementById(imgId); + if (!image) return; + + // Clean up existing instance if any + if (image.cropper) { + image.cropper.destroy(); + } + + new Cropper(image, { + ...options, + ready() { + // Optional: notify dotnet that it's ready + } + }); + } + + static getCroppedCanvasData(imgId) { + const image = document.getElementById(imgId); + if (!image || !image.cropper) return null; + + return image.cropper.getCroppedCanvas().toDataURL(); + } + + static setAspectRatio(imgId, ratio) { + const image = document.getElementById(imgId); + if (!image || !image.cropper) return; + + image.cropper.setAspectRatio(ratio); + } + + static destroy(imgId) { + const image = document.getElementById(imgId); + if (image && image.cropper) { + image.cropper.destroy(); + } + } + + static setFullWidth(imgId) { + const image = document.getElementById(imgId); + if (!image || !image.cropper) return; + const data = image.cropper.getImageData(); + // Use setData for natural dimensions + image.cropper.setData({ x: 0, width: data.naturalWidth }); + } + + static setFullHeight(imgId) { + const image = document.getElementById(imgId); + if (!image || !image.cropper) return; + const data = image.cropper.getImageData(); + // Use setData for natural dimensions + image.cropper.setData({ y: 0, height: data.naturalHeight }); + } +} + +window.initCropper = (imgId, options, dotNetHelper) => { + CropperInterop.initCropper(imgId, options, dotNetHelper); +}; + +window.getCroppedImage = (imgId) => { + return CropperInterop.getCroppedCanvasData(imgId); +}; + +window.setCropperAspectRatio = (imgId, ratio) => { + CropperInterop.setAspectRatio(imgId, ratio); +}; + +window.destroyCropper = (imgId) => { + CropperInterop.destroy(imgId); +}; + +window.setCropperFullWidth = (imgId) => { + CropperInterop.setFullWidth(imgId); +}; + +window.setCropperFullHeight = (imgId) => { + CropperInterop.setFullHeight(imgId); +}; diff --git a/wwwroot/lib/cropper.min.css b/wwwroot/lib/cropper.min.css new file mode 100755 index 0000000..e97743a --- /dev/null +++ b/wwwroot/lib/cropper.min.css @@ -0,0 +1,9 @@ +/*! + * Cropper.js v1.5.13 + * https://fengyuanchen.github.io/cropperjs + * + * Copyright 2015-present Chen Fengyuan + * Released under the MIT license + * + * Date: 2022-11-20T05:30:43.444Z + */.cropper-container{direction:ltr;font-size:0;line-height:0;position:relative;-ms-touch-action:none;touch-action:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.cropper-container img{-webkit-backface-visibility:hidden;backface-visibility:hidden;display:block;height:100%;image-orientation:0deg;max-height:none!important;max-width:none!important;min-height:0!important;min-width:0!important;width:100%}.cropper-canvas,.cropper-crop-box,.cropper-drag-box,.cropper-modal,.cropper-wrap-box{bottom:0;left:0;position:absolute;right:0;top:0}.cropper-canvas,.cropper-wrap-box{overflow:hidden}.cropper-drag-box{background-color:#fff;opacity:0}.cropper-modal{background-color:#000;opacity:.5}.cropper-view-box{display:block;height:100%;outline:1px solid #39f;outline-color:rgba(51,153,255,.75);overflow:hidden;width:100%}.cropper-dashed{border:0 dashed #eee;display:block;opacity:.5;position:absolute}.cropper-dashed.dashed-h{border-bottom-width:1px;border-top-width:1px;height:33.33333%;left:0;top:33.33333%;width:100%}.cropper-dashed.dashed-v{border-left-width:1px;border-right-width:1px;height:100%;left:33.33333%;top:0;width:33.33333%}.cropper-center{display:block;height:0;left:50%;opacity:.75;position:absolute;top:50%;width:0}.cropper-center:after,.cropper-center:before{background-color:#eee;content:" ";display:block;position:absolute}.cropper-center:before{height:1px;left:-3px;top:0;width:7px}.cropper-center:after{height:7px;left:0;top:-3px;width:1px}.cropper-face,.cropper-line,.cropper-point{display:block;height:100%;opacity:.1;position:absolute;width:100%}.cropper-face{background-color:#fff;left:0;top:0}.cropper-line{background-color:#39f}.cropper-line.line-e{cursor:ew-resize;right:-3px;top:0;width:5px}.cropper-line.line-n{cursor:ns-resize;height:5px;left:0;top:-3px}.cropper-line.line-w{cursor:ew-resize;left:-3px;top:0;width:5px}.cropper-line.line-s{bottom:-3px;cursor:ns-resize;height:5px;left:0}.cropper-point{background-color:#39f;height:5px;opacity:.75;width:5px}.cropper-point.point-e{cursor:ew-resize;margin-top:-3px;right:-3px;top:50%}.cropper-point.point-n{cursor:ns-resize;left:50%;margin-left:-3px;top:-3px}.cropper-point.point-w{cursor:ew-resize;left:-3px;margin-top:-3px;top:50%}.cropper-point.point-s{bottom:-3px;cursor:s-resize;left:50%;margin-left:-3px}.cropper-point.point-ne{cursor:nesw-resize;right:-3px;top:-3px}.cropper-point.point-nw{cursor:nwse-resize;left:-3px;top:-3px}.cropper-point.point-sw{bottom:-3px;cursor:nesw-resize;left:-3px}.cropper-point.point-se{bottom:-3px;cursor:nwse-resize;height:20px;opacity:1;right:-3px;width:20px}@media (min-width:768px){.cropper-point.point-se{height:15px;width:15px}}@media (min-width:992px){.cropper-point.point-se{height:10px;width:10px}}@media (min-width:1200px){.cropper-point.point-se{height:5px;opacity:.75;width:5px}}.cropper-point.point-se:before{background-color:#39f;bottom:-50%;content:" ";display:block;height:200%;opacity:0;position:absolute;right:-50%;width:200%}.cropper-invisible{opacity:0}.cropper-bg{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAQMAAAAlPW0iAAAAA3NCSVQICAjb4U/gAAAABlBMVEXMzMz////TjRV2AAAACXBIWXMAAArrAAAK6wGCiw1aAAAAHHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3MgQ1M26LyyjAAAABFJREFUCJlj+M/AgBVhF/0PAH6/D/HkDxOGAAAAAElFTkSuQmCC")}.cropper-hide{display:block;height:0;position:absolute;width:0}.cropper-hidden{display:none!important}.cropper-move{cursor:move}.cropper-crop{cursor:crosshair}.cropper-disabled .cropper-drag-box,.cropper-disabled .cropper-face,.cropper-disabled .cropper-line,.cropper-disabled .cropper-point{cursor:not-allowed} \ No newline at end of file diff --git a/wwwroot/lib/cropper.min.js b/wwwroot/lib/cropper.min.js new file mode 100755 index 0000000..03aed4c --- /dev/null +++ b/wwwroot/lib/cropper.min.js @@ -0,0 +1,10 @@ +/*! + * Cropper.js v1.5.13 + * https://fengyuanchen.github.io/cropperjs + * + * Copyright 2015-present Chen Fengyuan + * Released under the MIT license + * + * Date: 2022-11-20T05:30:46.114Z + */ +!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):(t="undefined"!=typeof globalThis?globalThis:t||self).Cropper=e()}(this,function(){"use strict";function C(e,t){var i,a=Object.keys(e);return Object.getOwnPropertySymbols&&(i=Object.getOwnPropertySymbols(e),t&&(i=i.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),a.push.apply(a,i)),a}function S(a){for(var t=1;tt.length)&&(e=t.length);for(var i=0,a=new Array(e);it.width?3===i?o=t.height*e:h=t.width/e:3===i?h=t.width/e:o=t.height*e,{aspectRatio:e,naturalWidth:n,naturalHeight:a,width:o,height:h});this.canvasData=e,this.limited=1===i||2===i,this.limitCanvas(!0,!0),e.width=Math.min(Math.max(e.width,e.minWidth),e.maxWidth),e.height=Math.min(Math.max(e.height,e.minHeight),e.maxHeight),e.left=(t.width-e.width)/2,e.top=(t.height-e.height)/2,e.oldLeft=e.left,e.oldTop=e.top,this.initialCanvasData=g({},e)},limitCanvas:function(t,e){var i=this.options,a=this.containerData,n=this.canvasData,o=this.cropBoxData,h=i.viewMode,r=n.aspectRatio,s=this.cropped&&o;t&&(t=Number(i.minCanvasWidth)||0,i=Number(i.minCanvasHeight)||0,1=a.width&&(n.minLeft=Math.min(0,r),n.maxLeft=Math.max(0,r)),n.height>=a.height)&&(n.minTop=Math.min(0,t),n.maxTop=Math.max(0,t))):(n.minLeft=-n.width,n.minTop=-n.height,n.maxLeft=a.width,n.maxTop=a.height))},renderCanvas:function(t,e){var i,a,n,o,h=this.canvasData,r=this.imageData;e&&(e={width:r.naturalWidth*Math.abs(r.scaleX||1),height:r.naturalHeight*Math.abs(r.scaleY||1),degree:r.rotate||0},r=e.width,o=e.height,e=e.degree,i=90==(e=Math.abs(e)%180)?{width:o,height:r}:(a=e%90*Math.PI/180,i=Math.sin(a),n=r*(a=Math.cos(a))+o*i,r=r*i+o*a,90h.maxWidth||h.widthh.maxHeight||h.heighte.width?a.height=a.width/i:a.width=a.height*i),this.cropBoxData=a,this.limitCropBox(!0,!0),a.width=Math.min(Math.max(a.width,a.minWidth),a.maxWidth),a.height=Math.min(Math.max(a.height,a.minHeight),a.maxHeight),a.width=Math.max(a.minWidth,a.width*t),a.height=Math.max(a.minHeight,a.height*t),a.left=e.left+(e.width-a.width)/2,a.top=e.top+(e.height-a.height)/2,a.oldLeft=a.left,a.oldTop=a.top,this.initialCropBoxData=g({},a)},limitCropBox:function(t,e){var i,a,n=this.options,o=this.containerData,h=this.canvasData,r=this.cropBoxData,s=this.limited,c=n.aspectRatio;t&&(t=Number(n.minCropBoxWidth)||0,n=Number(n.minCropBoxHeight)||0,i=s?Math.min(o.width,h.width,h.width+h.left,o.width-h.left):o.width,a=s?Math.min(o.height,h.height,h.height+h.top,o.height-h.top):o.height,t=Math.min(t,o.width),n=Math.min(n,o.height),c&&(t&&n?ti.maxWidth||i.widthi.maxHeight||i.height=e.width&&i.height>=e.height?U:P),f(this.cropBox,g({width:i.width,height:i.height},x({translateX:i.left,translateY:i.top}))),this.cropped&&this.limited&&this.limitCanvas(!0,!0),this.disabled||this.output()},output:function(){this.preview(),y(this.element,_,this.getData())}},i={initPreview:function(){var t=this.element,i=this.crossOrigin,e=this.options.preview,a=i?this.crossOriginUrl:this.url,n=t.alt||"The image to preview",o=document.createElement("img");i&&(o.crossOrigin=i),o.src=a,o.alt=n,this.viewBox.appendChild(o),this.viewBoxImage=o,e&&("string"==typeof(o=e)?o=t.ownerDocument.querySelectorAll(e):e.querySelector&&(o=[e]),z(this.previews=o,function(t){var e=document.createElement("img");w(t,m,{width:t.offsetWidth,height:t.offsetHeight,html:t.innerHTML}),i&&(e.crossOrigin=i),e.src=a,e.alt=n,e.style.cssText='display:block;width:100%;height:auto;min-width:0!important;min-height:0!important;max-width:none!important;max-height:none!important;image-orientation:0deg!important;"',t.innerHTML="",t.appendChild(e)}))},resetPreview:function(){z(this.previews,function(e){var i=Dt(e,m),i=(f(e,{width:i.width,height:i.height}),e.innerHTML=i.html,e),e=m;if(o(i[e]))try{delete i[e]}catch(t){i[e]=void 0}else if(i.dataset)try{delete i.dataset[e]}catch(t){i.dataset[e]=void 0}else i.removeAttribute("data-".concat(Ct(e)))})},preview:function(){var h=this.imageData,t=this.canvasData,e=this.cropBoxData,r=e.width,s=e.height,c=h.width,d=h.height,l=e.left-t.left-h.left,p=e.top-t.top-h.top;this.cropped&&!this.disabled&&(f(this.viewBoxImage,g({width:c,height:d},x(g({translateX:-l,translateY:-p},h)))),z(this.previews,function(t){var e=Dt(t,m),i=e.width,e=e.height,a=i,n=e,o=1;r&&(n=s*(o=i/r)),s&&eMath.abs(a-1)?i:a)&&(t.restore&&(o=this.getCanvasData(),h=this.getCropBoxData()),this.render(),t.restore)&&(this.setCanvasData(z(o,function(t,e){o[e]=t*n})),this.setCropBoxData(z(h,function(t,e){h[e]=t*n}))))},dblclick:function(){var t,e;this.disabled||this.options.dragMode===J||this.setDragMode((t=this.dragBox,e=$,(t.classList?t.classList.contains(e):-1y&&(D.x=y-f);break;case k:p+D.xx&&(D.y=x-v)}}var i,a,o,n=this.options,h=this.canvasData,r=this.containerData,s=this.cropBoxData,c=this.pointers,d=this.action,l=n.aspectRatio,p=s.left,m=s.top,u=s.width,g=s.height,f=p+u,v=m+g,w=0,b=0,y=r.width,x=r.height,M=!0,C=(!l&&t.shiftKey&&(l=u&&g?u/g:1),this.limited&&(w=s.minLeft,b=s.minTop,y=w+Math.min(r.width,h.width,h.left+h.width),x=b+Math.min(r.height,h.height,h.top+h.height)),c[Object.keys(c)[0]]),D={x:C.endX-C.startX,y:C.endY-C.startY};switch(d){case P:p+=D.x,m+=D.y;break;case B:0<=D.x&&(y<=f||l&&(m<=b||x<=v))?M=!1:(e(B),(u+=D.x)<0&&(d=k,p-=u=-u),l&&(m+=(s.height-(g=u/l))/2));break;case T:D.y<=0&&(m<=b||l&&(p<=w||y<=f))?M=!1:(e(T),g-=D.y,m+=D.y,g<0&&(d=O,m-=g=-g),l&&(p+=(s.width-(u=g*l))/2));break;case k:D.x<=0&&(p<=w||l&&(m<=b||x<=v))?M=!1:(e(k),u-=D.x,p+=D.x,u<0&&(d=B,p-=u=-u),l&&(m+=(s.height-(g=u/l))/2));break;case O:0<=D.y&&(x<=v||l&&(p<=w||y<=f))?M=!1:(e(O),(g+=D.y)<0&&(d=T,m-=g=-g),l&&(p+=(s.width-(u=g*l))/2));break;case E:if(l){if(D.y<=0&&(m<=b||y<=f)){M=!1;break}e(T),g-=D.y,m+=D.y,u=g*l}else e(T),e(B),!(0<=D.x)||fMath.abs(o)&&(o=i)})}),o),t),M=!1;break;case I:D.x&&D.y?(i=Et(this.cropper),p=C.startX-i.left,m=C.startY-i.top,u=s.minWidth,g=s.minHeight,0 or element.");this.element=t,this.options=g({},mt,u(e)&&e),this.cropped=!1,this.disabled=!1,this.pointers={},this.ready=!1,this.reloading=!1,this.replaced=!1,this.sized=!1,this.sizing=!1,this.init()}var t,e,i;return t=n,i=[{key:"noConflict",value:function(){return window.Cropper=jt,n}},{key:"setDefaults",value:function(t){g(mt,u(t)&&t)}}],(e=[{key:"init",value:function(){var t,e=this.element,i=e.tagName.toLowerCase();if(!e[c]){if(e[c]=this,"img"===i){if(this.isImg=!0,t=e.getAttribute("src")||"",!(this.originalUrl=t))return;t=e.src}else"canvas"===i&&window.HTMLCanvasElement&&(t=e.toDataURL());this.load(t)}}},{key:"load",value:function(t){var e,i,a,n,o,h,r=this;t&&(this.url=t,this.imageData={},e=this.element,(i=this.options).rotatable||i.scalable||(i.checkOrientation=!1),i.checkOrientation&&window.ArrayBuffer?dt.test(t)?lt.test(t)?this.read((h=(h=t).replace(Yt,""),a=atob(h),h=new ArrayBuffer(a.length),z(n=new Uint8Array(h),function(t,e){n[e]=a.charCodeAt(e)}),h)):this.clone():(o=new XMLHttpRequest,h=this.clone.bind(this),this.reloading=!0,(this.xhr=o).onabort=h,o.onerror=h,o.ontimeout=h,o.onprogress=function(){o.getResponseHeader("content-type")!==st&&o.abort()},o.onload=function(){r.read(o.response)},o.onloadend=function(){r.reloading=!1,r.xhr=null},i.checkCrossOrigin&&Nt(t)&&e.crossOrigin&&(t=Lt(t)),o.open("GET",t,!0),o.responseType="arraybuffer",o.withCredentials="use-credentials"===e.crossOrigin,o.send()):this.clone())}},{key:"read",value:function(t){var e=this.options,i=this.imageData,a=Xt(t),n=0,o=1,h=1;1
',o=(n=n.querySelector(".".concat(c,"-container"))).querySelector(".".concat(c,"-canvas")),h=n.querySelector(".".concat(c,"-drag-box")),s=(r=n.querySelector(".".concat(c,"-crop-box"))).querySelector(".".concat(c,"-face")),this.container=a,this.cropper=n,this.canvas=o,this.dragBox=h,this.cropBox=r,this.viewBox=n.querySelector(".".concat(c,"-view-box")),this.face=s,o.appendChild(i),v(t,L),a.insertBefore(n,t.nextSibling),X(i,K),this.initPreview(),this.bind(),e.initialAspectRatio=Math.max(0,e.initialAspectRatio)||NaN,e.aspectRatio=Math.max(0,e.aspectRatio)||NaN,e.viewMode=Math.max(0,Math.min(3,Math.round(e.viewMode)))||0,v(r,L),e.guides||v(r.getElementsByClassName("".concat(c,"-dashed")),L),e.center||v(r.getElementsByClassName("".concat(c,"-center")),L),e.background&&v(n,"".concat(c,"-bg")),e.highlight||v(s,Z),e.cropBoxMovable&&(v(s,G),w(s,d,P)),e.cropBoxResizable||(v(r.getElementsByClassName("".concat(c,"-line")),L),v(r.getElementsByClassName("".concat(c,"-point")),L)),this.render(),this.ready=!0,this.setDragMode(e.dragMode),e.autoCrop&&this.crop(),this.setData(e.data),l(e.ready)&&b(t,"ready",e.ready,{once:!0}),y(t,"ready"))}},{key:"unbuild",value:function(){var t;this.ready&&(this.ready=!1,this.unbind(),this.resetPreview(),(t=this.cropper.parentNode)&&t.removeChild(this.cropper),X(this.element,L))}},{key:"uncreate",value:function(){this.ready?(this.unbuild(),this.ready=!1,this.cropped=!1):this.sizing?(this.sizingImage.onload=null,this.sizing=!1,this.sized=!1):this.reloading?(this.xhr.onabort=null,this.xhr.abort()):this.image&&this.stop()}}])&&A(t.prototype,e),i&&A(t,i),Object.defineProperty(t,"prototype",{writable:!1}),n}();return g(Pt.prototype,t,i,e,Rt,St,At),Pt}); \ No newline at end of file