diff --git a/OpenArchival.Blazor.AdminPages/ArchiveConfiguration.razor b/OpenArchival.Blazor.AdminPages/ArchiveConfiguration.razor new file mode 100644 index 0000000..73eb223 --- /dev/null +++ b/OpenArchival.Blazor.AdminPages/ArchiveConfiguration.razor @@ -0,0 +1,34 @@ +@namespace OpenArchival.Blazor.AdminPages +@page "/archiveadmin" + +@using Microsoft.AspNetCore.Authorization +@using MudBlazor + +@attribute [Authorize(Roles = "Admin")] + + + + + + + + + + + + + + + + +@inject ArtifactEntrySharedHelpers Helpers; +@inject IDialogService DialogService; + +@code { +} diff --git a/OpenArchival.Blazor.AdminPages/ArchiveItems/AddArchiveGroupingComponent.razor b/OpenArchival.Blazor.AdminPages/ArchiveItems/AddArchiveGroupingComponent.razor new file mode 100644 index 0000000..32eb14c --- /dev/null +++ b/OpenArchival.Blazor.AdminPages/ArchiveItems/AddArchiveGroupingComponent.razor @@ -0,0 +1,358 @@ +@namespace OpenArchival.Blazor.AdminPages + +@using Microsoft.AspNetCore.Components.Web +@using System.ComponentModel.DataAnnotations +@using MudBlazor +@using global::OpenArchival.DataAccess +@using OpenArchival.Blazor.CustomComponents + +@inject IDialogService DialogService +@inject NavigationManager NavigationManager; +@inject IArchiveCategoryProvider CategoryProvider; +@inject ArtifactEntrySharedHelpers Helpers; + + + Add an Archive Item + + + + @foreach (var result in ValidationResults) + { + @result.ErrorMessage + } + + + + + + + + + + + + + +
+ + + Archive Item Identifier + + + + + + Grouping Title + + + + Grouping Description + + + + Grouping Type + + + + + + + + @if (Model is not null) + { + @for (int index = 0; index < Model.ArtifactEntries.Count; ++index) + { + // Capture the current item in a local variable for the lambda + var currentEntry = Model.ArtifactEntries[index]; + + + } + } +
+ + + + + + + @if (FormButtonsEnabled) + { + + Cancel + + + + Publish + + } + + + +@code { + [Parameter] + public bool ClearOnPublish { get; set; } = true; + + /// + /// The URI to navigate to if cancel is pressed. null to navigate to no page + /// + [Parameter] + public string? BackLink { get; set; } = null; + + /// + /// The URI to navigate to if publish is pressed, null to navigate to no page + /// + [Parameter] + public string? ForwardLink { get; set; } = null; + + /// + /// Called when publish is clicked + /// + [Parameter] + public EventCallback GroupingPublished { get; set; } + + /// + /// The model to display on the form + /// + [Parameter] + public ArtifactGroupingValidationModel Model { get; set; } = new(); + + /// + /// Determines if the cancel and publish buttons should be show to the user or if the containing component will + /// handle their functionality (ie if used in a dialog and you want to use the dialog buttons instead of this component's handlers) + /// + [Parameter] + public bool FormButtonsEnabled { get; set; } = true; + + private UploadDropBox _uploadComponent = default!; + + private IdentifierTextBox _identifierTextBox = default!; + + private ElementReference _formDiv = default!; + + private bool _isFormDivVisible = false; + + private string _formDivStyle => _isFormDivVisible ? "" : "display: none;"; + + public List DatesData { get; set; } = []; + + public List Categories { get; set; } = new(); + + private List _filePathListings = new(); + + private bool _categorySelected = false; + + public bool IsValid { get; set; } = false; + + public List ValidationResults { get; private set; } = []; + + // Used to store the files that have already been uploaded if this component is being displayed + // with a filled in model. Used to populate the upload drop box + private List ExistingFiles { get; set; } = new(); + + protected override async Task OnParametersSetAsync() + { + // Ensure to reload the component if a model has been supplied so that the full + // component will render + if (Model?.Category is not null) + { + await OnCategoryChanged(); + } + + if (Model is not null && Model.Category is not null) + { + // The data entry should only be shown if a category has been selected + _isFormDivVisible = true; + } else + { + _isFormDivVisible = false; + } + + if (Model is not null) + { + ExistingFiles = Model.ArtifactEntries + .Where(e => e.Files.Any()) + .Select(e => e.Files[0]) + .ToList(); + } + + StateHasChanged(); + } + + private async Task PublishClicked(MouseEventArgs args) + { + var validationContext = new ValidationContext(Model); + var validationResult = new List(); + + IsValid = Validator.TryValidateObject(Model, validationContext, validationResult); + ArtifactGroupingValidationModel oldModel = Model; + if (ForwardLink is not null) + { + if (IsValid) + { + NavigationManager.NavigateTo(ForwardLink); + } + } + + if (IsValid && ClearOnPublish) + { + Model = new(); + await _uploadComponent.ClearClicked.InvokeAsync(); + StateHasChanged(); + } + + await GroupingPublished.InvokeAsync(oldModel); + } + + private void CancelClicked(MouseEventArgs args) + { + if (BackLink is not null) { + NavigationManager.NavigateTo(BackLink); + } + else + { + throw new ArgumentNullException("No back link provided for the add archive item page."); + } + } + + private async Task HandleEntryUpdate(ArtifactEntryValidationModel originalEntry, ArtifactEntryValidationModel updatedEntry) + { + // Find the index of the original object in our list + var index = Model.ArtifactEntries.IndexOf(originalEntry); + + // If found, replace it with the updated version + if (index != -1) + { + Model.ArtifactEntries[index] = updatedEntry; + } + + // Now, run the validation logic + await OnChanged(); + } + + // You can now simplify your OnFilesUploaded method slightly + private async Task OnFilesUploaded(List args) + { + _filePathListings = args; + + // This part is tricky. Adding items while iterating can be problematic. + // A better approach is to create the entries first, then tell Blazor to render. + var newEntries = new List(); + foreach (var file in args) + { + // Associate the file with the entry if needed + newEntries.Add(new ArtifactEntryValidationModel { Files = [file]}); + } + Model.ArtifactEntries.AddRange(newEntries); + + // StateHasChanged() is implicitly called by OnChanged() if validation passes + await OnChanged(); + } + + private async Task OnClearFilesClicked() + { + _filePathListings = []; + Model.ArtifactEntries = []; + StateHasChanged(); + await OnChanged(); + } + + async Task OnChanged() + { + var validationContext = new ValidationContext(Model); + var validationResult = new List(); + + IsValid = Validator.TryValidateObject(Model, validationContext, validationResult); + + if (IsValid) + { + StateHasChanged(); + } + } + + async Task OnCategoryChanged() + { + if (Model.Category is not null && _identifierTextBox is not null) + { + _identifierTextBox.VerifyFormatCategory = Model.Category; + _isFormDivVisible = true; + if (!_categorySelected) + { + _categorySelected = true; + } + StateHasChanged(); + } + + await OnChanged(); + } + + public async Task OnAddCategoryClicked() + { + var options = new DialogOptions { CloseOnEscapeKey = true, BackdropClick = false }; + var dialog = await DialogService.ShowAsync("Create a Category", options); + + var result = await dialog.Result; + + if (result is not null && !result.Canceled) + { + await CategoryProvider.CreateCategoryAsync(CategoryValidationModel.ToArchiveCategory((CategoryValidationModel)result.Data)); + StateHasChanged(); + await OnChanged(); + } + } + + private async Task> SearchCategory(string value, CancellationToken cancellationToken) + { + List categories; + if (string.IsNullOrEmpty(value)) + { + categories = new(await CategoryProvider.Top(25) ?? []); + } + else + { + categories = new((await CategoryProvider.Search(value) ?? [])); + } + + return categories; + } + + private async void OnDeleteEntryClicked((int index, string filename) data) + { + Model.ArtifactEntries.RemoveAt(data.index); + _uploadComponent.RemoveFile(data.filename); + StateHasChanged(); + } +} diff --git a/OpenArchival.Blazor.AdminPages/ArchiveItems/AddGroupingDialog.razor b/OpenArchival.Blazor.AdminPages/ArchiveItems/AddGroupingDialog.razor new file mode 100644 index 0000000..69c3b16 --- /dev/null +++ b/OpenArchival.Blazor.AdminPages/ArchiveItems/AddGroupingDialog.razor @@ -0,0 +1,41 @@ +@namespace OpenArchival.Blazor.AdminPages +@using Microsoft.AspNetCore.Components.Web +@using MudBlazor + + + + Edit a Category + + + + + + + + Cancel + OK + + + +@code { + [Parameter] + public required ArtifactGroupingValidationModel Model { get; set; } + + [CascadingParameter] + IMudDialogInstance MudDialog { get; set; } + + [Parameter] + public bool IsUpdate { get; set; } = false; + + + private void OnCancel(MouseEventArgs args) + { + MudDialog.Cancel(); + } + private void OnSubmit(MouseEventArgs args) + { + MudDialog.Close(DialogResult.Ok(Model)); + } +} diff --git a/OpenArchival.Blazor.AdminPages/ArchiveItems/ArchiveEntryCreatorCard.razor b/OpenArchival.Blazor.AdminPages/ArchiveItems/ArchiveEntryCreatorCard.razor new file mode 100644 index 0000000..38bee11 --- /dev/null +++ b/OpenArchival.Blazor.AdminPages/ArchiveItems/ArchiveEntryCreatorCard.razor @@ -0,0 +1,326 @@ +@namespace OpenArchival.Blazor.AdminPages +@using Microsoft.AspNetCore.Components.Web +@using OpenArchival.DataAccess +@using System.ComponentModel.DataAnnotations +@using OpenArchival.Blazor.CustomComponents +@using MudBlazor + +@inject ArtifactEntrySharedHelpers Helpers; +@inject IArtifactDefectProvider DefectsProvider; +@inject IArtifactStorageLocationProvider StorageLocationProvider; +@inject IArchiveEntryTagProvider TagsProvider; +@inject IArtifactTypeProvider TypesProvider; +@inject IListedNameProvider ListedNameProvider; + + + + + @if (Model.Files.Count > 0) { + @(Model.Files[0].OriginalName) + } + + + Delete + + + + + @foreach (var error in ValidationResults) + { + + @error.ErrorMessage + + } + + Archive Item Title + + + + Archive Item Numbering + Enter a unique ID for this entry + + + + Item Description + + + + Storage Location + + + + Artifact Type + + + + @* Tags entry *@ + Tags + + + + + + + + + Listed Names + Enter any names of the people associated with this entry. + + + + + + + + + Associated Dates + + + + + + + + + + + + + Defects + + + + + + + + + Related Artifacts + Tag this entry with the identifier of any other entry to link them. + + + + + + + + + Artifact Text Contents + Input the text transcription of the words on the artifact if applicable to aid the search engine. + + + + Additional files + + + + +@code { + [Parameter] + public required FilePathListing MainFilePath { get; set; } + + [Parameter] + public EventCallback ModelChanged { get; set; } + + [Parameter] + public EventCallback InputsChanged { get; set; } + + [Parameter] + public required ArtifactEntryValidationModel Model { get; set; } = new() { StorageLocation = "hello", Title = "Hello" }; + + [Parameter] + public required int ArtifactEntryIndex {get; set;} + + [Parameter] + public EventCallback<(int index, string filename)> OnEntryDeletedClicked { get; set; } + + private ChipContainer _tagsChipContainer; + + private string _tagsInputValue { get; set; } = ""; + + private ChipContainer _assocaitedDatesChipContainer; + + private DateTime? _associatedDateInputValue { get; set; } = default; + + private ChipContainer _listedNamesChipContainer; + + private string _listedNamesInputValue { get; set; } = ""; + + private ChipContainer _defectsChipContainer; + + private string _defectsInputValue = ""; + + private ChipContainer _assocaitedArtifactsChipContainer; + + private ArtifactEntry? _associatedArtifactValue = null; + + private string _artifactTextContent = ""; + + public bool IsValid { get; set; } + + public List ValidationResults { get; private set; } = []; + + public UploadDropBox _uploadDropBox = default!; + + protected override Task OnParametersSetAsync() + { + if (_uploadDropBox is not null && Model is not null && Model.Files is not null) + { + _uploadDropBox.ExistingFiles = Model.Files.GetRange(1, Model.Files.Count - 1); + } + + if (Model.Files is not null && Model.Files.Any()) + { + MainFilePath = Model.Files[0]; + } + + return base.OnParametersSetAsync(); + } + + public async Task OnInputsChanged() + { + // 1. Clear previous validation errors + ValidationResults.Clear(); + + var validationContext = new ValidationContext(Model); + + // 2. Run the validator + IsValid = Validator.TryValidateObject(Model, validationContext, ValidationResults, validateAllProperties: true); + // 3. REMOVE this line. Let the parent's update trigger the re-render. + // StateHasChanged(); + + await InputsChanged.InvokeAsync(); + } + + private async Task OnFilesUploaded(List filePathListings) + { + if (MainFilePath is not null) + { + var oldFiles = Model.Files.GetRange(1, Model.Files.Count - 1); + Model.Files = [MainFilePath]; + Model.Files.AddRange(oldFiles); + Model.Files.AddRange(filePathListings); + } else + { + Model.Files = []; + } + Model.Files.AddRange(filePathListings); + + StateHasChanged(); + } + + private async Task OnFilesCleared() + { + if (MainFilePath is not null) { + Model.Files = [MainFilePath]; + } else + { + Model.Files = []; + } + } + + private Task OnDefectsValueChanged(string text) + { + _defectsInputValue = text; + return ModelChanged.InvokeAsync(Model); + } + + private Task OnTagsInputTextChanged(string text) + { + _tagsInputValue = text; + return ModelChanged.InvokeAsync(Model); + } + + private Task OnListedNamesTextChanged(string text) + { + _listedNamesInputValue = text; + return ModelChanged.InvokeAsync(Model); + } + + private Task OnAssociatedArtifactChanged(ArtifactEntry grouping) + { + if (grouping is not null) + { + _associatedArtifactValue = grouping; + return ModelChanged.InvokeAsync(Model); + } + + return ModelChanged.InvokeAsync(Model); + } + + private Task OnArtifactTextContentChanged(string value) + { + Model.FileTextContent = value; + return ModelChanged.InvokeAsync(Model); + } + + public async Task HandleChipContainerEnter(KeyboardEventArgs args, ChipContainer container, Type value, Action resetInputAction) + { + if (args.Key == "Enter") + { + await container.AddItem(value); + resetInputAction?.Invoke(); + StateHasChanged(); + await ModelChanged.InvokeAsync(Model); + } + } + + public async Task HandleAssociatedDateChipContainerAdd(MouseEventArgs args) + { + if (_associatedDateInputValue is not null) + { + DateTime unspecifiedDate = (DateTime)_associatedDateInputValue; + + DateTime utcDate = DateTime.SpecifyKind(unspecifiedDate, DateTimeKind.Utc); + + await _assocaitedDatesChipContainer.AddItem(utcDate); + + _associatedDateInputValue = default; + } + } + private async Task OnDeleteEntryClicked(MouseEventArgs args) + { + await OnEntryDeletedClicked.InvokeAsync((ArtifactEntryIndex, MainFilePath.OriginalName)); + } +} \ No newline at end of file diff --git a/OpenArchival.Blazor.AdminPages/ArchiveItems/ArchiveGroupingsTable.razor b/OpenArchival.Blazor.AdminPages/ArchiveItems/ArchiveGroupingsTable.razor new file mode 100644 index 0000000..b0fd604 --- /dev/null +++ b/OpenArchival.Blazor.AdminPages/ArchiveItems/ArchiveGroupingsTable.razor @@ -0,0 +1,176 @@ +@namespace OpenArchival.Blazor.AdminPages +@using Microsoft.AspNetCore.Components.Web +@using MudBlazor +@using MudExtensions +@using OpenArchival.DataAccess + + + + + Delete + + + + + + + + + + + + + + + + Edit + + + + + + + + + + + +@inject IArtifactGroupingProvider GroupingProvider; +@inject IDialogService DialogService; +@inject IArtifactGroupingProvider GroupingProvider; +@inject ArtifactEntrySharedHelpers Helpers; + +@code +{ + public List ArtifactGroupingRows { get; set; } = new(); + + public MudDataGrid DataGrid { get; set; } = default!; + + protected override async Task OnInitializedAsync() + { + // Load inital data + List groupings = await GroupingProvider.GetGroupingsPaged(1, 25); + SetGroupingRows(groupings); + + await base.OnInitializedAsync(); + StateHasChanged(); + } + + private void SetGroupingRows(IEnumerable groupings) + { + ArtifactGroupingRows.Clear(); + + foreach (var grouping in groupings) + { + ArtifactGroupingRows.Add(new ArtifactGroupingRowElement() + { + ArtifactGroupingIdentifier=grouping.ArtifactGroupingIdentifier ?? throw new ArgumentNullException(nameof(grouping), "Got a null grouping identifier"), + CategoryName=grouping.Category.Name, + Title=grouping.Title, + IsPublicallyVisible=grouping.IsPublicallyVisible, + Id=grouping.Id + } + ); + } + } + + private async Task OnRowEditClick(ArtifactGroupingRowElement row) + { + var parameters = new DialogParameters(); + + var model = await GroupingProvider.GetGroupingAsync(row.Id); + + parameters.Add("Model", ArtifactGroupingValidationModel.ToValidationModel(model)); + + var options = new DialogOptions() + { + MaxWidth = MaxWidth.ExtraExtraLarge, + FullWidth = true + }; + + var dialog = await DialogService.ShowAsync("Edit Grouping", parameters, options); + + var result = await dialog.Result; + + if (result is not null && !result.Canceled) + { + var validationModel = (ArtifactGroupingValidationModel)result.Data!; + + await Helpers.OnGroupingPublished(validationModel); + + await DataGrid.ReloadServerData(); + } + } + + private async Task OnDeleteClicked(MouseEventArgs args) + { + HashSet selected = DataGrid.SelectedItems; + + bool? confirmed = await DialogService.ShowMessageBox + ( + new MessageBoxOptions(){ + Message=$"Are you sure you want to delete {selected.Count} groupings?", + Title="Delete Groupings", + CancelText="Cancel", + YesText="Delete" + }); + + if (confirmed is not null && (confirmed ?? throw new ArgumentNullException("confirmed was null"))) + { + foreach (var grouping in selected) + { + await GroupingProvider.DeleteGroupingAsync(grouping.Id); + StateHasChanged(); + } + } + } + + private async Task> ServerReload(GridState state) + { + int totalItems = await GroupingProvider.GetTotalCount(); + + IEnumerable groupings = await GroupingProvider.GetGroupingsPaged(state.Page + 1, state.PageSize); + + var pagedItems = groupings.Select(grouping => new ArtifactGroupingRowElement() + { + Id = grouping.Id, + Title = grouping.Title, + ArtifactGroupingIdentifier = grouping.ArtifactGroupingIdentifier ?? throw new ArgumentNullException(nameof(grouping), "Got a null ArtifactGroupingIdentifier"), + CategoryName = grouping.Category.Name, + IsPublicallyVisible = grouping.IsPublicallyVisible, + }); + + return new GridData() + { + TotalItems = totalItems, + Items = pagedItems + }; + } +} \ No newline at end of file diff --git a/OpenArchival.Blazor.AdminPages/ArchiveItems/ArtifactEntrySharedHelpers.cs b/OpenArchival.Blazor.AdminPages/ArchiveItems/ArtifactEntrySharedHelpers.cs new file mode 100644 index 0000000..d5b60ee --- /dev/null +++ b/OpenArchival.Blazor.AdminPages/ArchiveItems/ArtifactEntrySharedHelpers.cs @@ -0,0 +1,259 @@ +namespace OpenArchival.Blazor.AdminPages; +using Microsoft.EntityFrameworkCore; +using OpenArchival.DataAccess; + +public class ArtifactEntrySharedHelpers +{ + IArtifactDefectProvider DefectsProvider { get; set; } + + IArtifactStorageLocationProvider StorageLocationProvider { get; set; } + + IArchiveEntryTagProvider TagsProvider { get; set; } + + IArtifactTypeProvider TypesProvider { get; set; } + + IListedNameProvider ListedNameProvider { get; set; } + + IDbContextFactory DbContextFactory { get; set; } + + IArtifactGroupingProvider GroupingProvider { get; set; } + + + public ArtifactEntrySharedHelpers(IArtifactDefectProvider defectsProvider, IArtifactStorageLocationProvider storageLocationProvider, IArchiveEntryTagProvider tagsProvider, IArtifactTypeProvider typesProvider, IListedNameProvider listedNamesProvider, IDbContextFactory contextFactory, IArtifactGroupingProvider groupingProvider) + { + DefectsProvider = defectsProvider; + StorageLocationProvider = storageLocationProvider; + TagsProvider = tagsProvider; + TypesProvider = typesProvider; + ListedNameProvider = listedNamesProvider; + DbContextFactory = contextFactory; + GroupingProvider = groupingProvider; + } + + public async Task> SearchDefects(string value, CancellationToken cancellationToken) + { + List defects; + if (string.IsNullOrEmpty(value)) + { + defects = new((await DefectsProvider.Top(25) ?? []).Select(prop => prop.Description)); + } + else + { + defects = new((await DefectsProvider.Search(value) ?? []).Select(prop => prop.Description)); + } + + return defects; + } + + public async Task> SearchStorageLocation(string value, CancellationToken cancellationToken) + { + List storageLocations; + if (string.IsNullOrEmpty(value)) + { + storageLocations = new((await StorageLocationProvider.Top(25) ?? []).Select(prop => prop.Location)); + } + else + { + storageLocations = new((await StorageLocationProvider.Search(value) ?? []).Select(prop => prop.Location)); + } + + return storageLocations; + } + + public async Task> SearchTags(string value, CancellationToken cancellationToken) + { + List tags; + if (string.IsNullOrEmpty(value)) + { + tags = new((await TagsProvider.Top(25) ?? []).Select(prop => prop.Name)); + } + else + { + tags = new((await TagsProvider.Search(value) ?? []).Select(prop => prop.Name)); + } + + return tags; + } + + public async Task> SearchItemTypes(string value, CancellationToken cancellationToken) + { + List itemTypes; + if (string.IsNullOrEmpty(value)) + { + itemTypes = new((await TypesProvider.Top(25) ?? []).Select(prop => prop.Name)); + } + else + { + itemTypes = new((await TypesProvider.Search(value) ?? []).Select(prop => prop.Name)); + } + + return itemTypes; + } + + public async Task> SearchListedNames(string value, CancellationToken cancellationToken) + { + List names; + if (string.IsNullOrEmpty(value)) + { + names = new((await ListedNameProvider.Top(25) ?? [])); + } + else + { + names = new((await ListedNameProvider.Search(value) ?? [])); + } + + return names.Select(p => p.Value); + } + + /* + public async Task OnGroupingPublished(ArtifactGroupingValidationModel model) + { + await using var context = await DbContextFactory.CreateDbContextAsync(); + + + + + + + + + var grouping = model.ToArtifactGrouping(); + + // The old logic for attaching the category is still good. + context.Attach(grouping.Category); + + // 1. Handle ArtifactType (no change, this was fine) + if (grouping.Type is not null) + { + var existingType = await context.ArtifactTypes + .FirstOrDefaultAsync(t => t.Name == grouping.Type.Name); + + if (existingType is not null) + { + grouping.Type = existingType; + } + } + + // 2. Process ChildArtifactEntries + foreach (var entry in grouping.ChildArtifactEntries) + { + // Handle ArtifactStorageLocation (no change, this was fine) + var existingLocation = await context.ArtifactStorageLocations + .FirstOrDefaultAsync(l => l.Location == entry.StorageLocation.Location); + + if (existingLocation is not null) + { + entry.StorageLocation = existingLocation; + } + + // Handle Defects + if (entry.Defects is not null && entry.Defects.Any()) + { + var defectDescriptions = entry.Defects.Select(d => d.Description).ToList(); + var existingDefects = await context.ArtifactDefects + .Where(d => defectDescriptions.Contains(d.Description)) + .ToListAsync(); + + // Replace in-memory defects with existing ones + for (int i = 0; i < entry.Defects.Count; i++) + { + var existingDefect = existingDefects + .FirstOrDefault(ed => ed.Description == entry.Defects[i].Description); + + if (existingDefect is not null) + { + entry.Defects[i] = existingDefect; + } + } + } + + // Handle ListedNames + if (entry.ListedNames is not null && entry.ListedNames.Any()) + { + var listedNamesValues = entry.ListedNames.Select(n => n.Value).ToList(); + var existingNames = await context.ArtifactAssociatedNames + .Where(n => listedNamesValues.Contains(n.Value)) + .ToListAsync(); + + for (int i = 0; i < entry.ListedNames.Count; i++) + { + var existingName = existingNames + .FirstOrDefault(en => en.Value == entry.ListedNames[i].Value); + + if (existingName is not null) + { + entry.ListedNames[i] = existingName; + } + } + } + + // Handle Tags + if (entry.Tags is not null && entry.Tags.Any()) + { + var tagNames = entry.Tags.Select(t => t.Name).ToList(); + var existingTags = await context.ArtifactEntryTags + .Where(t => tagNames.Contains(t.Name)) + .ToListAsync(); + + for (int i = 0; i < entry.Tags.Count; i++) + { + var existingTag = existingTags + .FirstOrDefault(et => et.Name == entry.Tags[i].Name); + + if (existingTag is not null) + { + entry.Tags[i] = existingTag; + } + } + } + + // 💡 NEW: Handle pre-existing FilePathListings + // This is the key change to resolve the exception + if (entry.Files is not null) + { + foreach (var filepath in entry.Files) + { + // The issue is trying to add a new entity that has an existing primary key. + // Since you stated that all files are pre-added, you must attach them. + // Attach() tells EF Core to track the entity, assuming it already exists. + context.Attach(filepath); + // Also ensure the parent-child relationship is set correctly, though it's likely set by ToArtifactGrouping + filepath.ParentArtifactEntry = entry; + } + } + // Tag each entry with the parent grouping so it is linked correctly in the database + entry.ArtifactGrouping = grouping; + } + + // 3. Add the main grouping object and let EF Core handle the graph + // The previous issues with the graph are resolved, so this line should now work. + context.ArtifactGroupings.Add(grouping); + + // 4. Save all changes in a single transaction + await context.SaveChangesAsync(); + } + */ + + public async Task OnGroupingPublished(ArtifactGroupingValidationModel model) + { + // The OnGroupingPublished method in this class should not contain DbContext logic. + // It should orchestrate the data flow by calling the appropriate provider methods. + var isNew = model.Id == 0 || model.Id is null; + + // Convert the validation model to an entity + var grouping = model.ToArtifactGrouping(); + + if (isNew) + { + // For a new grouping, use the CreateGroupingAsync method. + // The provider method will handle the file path logic. + await GroupingProvider.CreateGroupingAsync(grouping); + } + else + { + // For an existing grouping, use the UpdateGroupingAsync method. + // The provider method will handle the change tracking. + await GroupingProvider.UpdateGroupingAsync(grouping); + } + } +} diff --git a/OpenArchival.Blazor.AdminPages/ArchiveItems/IdentifierTextBox.razor b/OpenArchival.Blazor.AdminPages/ArchiveItems/IdentifierTextBox.razor new file mode 100644 index 0000000..8441830 --- /dev/null +++ b/OpenArchival.Blazor.AdminPages/ArchiveItems/IdentifierTextBox.razor @@ -0,0 +1,111 @@ +@namespace OpenArchival.Blazor.AdminPages +@using System.Text +@using MudBlazor + +Item Identifier: @Value +@if (_identifierError) +{ + + All identifier fields must be filled in. + +} + + + + @for (int index = 0; index < IdentifierFields.Count; index++) + { + // You must create a local variable inside the loop for binding to work correctly. + var field = IdentifierFields[index]; + + + + + + @if (index < IdentifierFields.Count - 1) + { + + @FieldSeparator + + } + } + + +@using OpenArchival.DataAccess; +@inject IArchiveCategoryProvider CategoryProvider; + +@code { + [Parameter] + public required string FieldSeparator { get; set; } = "-"; + + private List _identifierFields = new(); + + [Parameter] + public required List IdentifierFields + { + get => _identifierFields; + set => _identifierFields = value ?? new(); + } + + [Parameter] + public EventCallback ValueChanged { get; set; } + + private ArchiveCategory _verifyFormatCategory; + public ArchiveCategory? VerifyFormatCategory + { + get + { + return _verifyFormatCategory; + } + set + { + if (value is not null) + { + _identifierFields.Clear(); + _verifyFormatCategory = value; + foreach (var field in value.FieldNames) + { + _identifierFields.Add(new IdentifierFieldValidationModel() {Name=field, Value=""}); + } + } + } + } + + public bool IsValid { get; set; } = false; + + // Computed property that builds the final string + public string Value => string.Join(FieldSeparator, IdentifierFields.Select(f => f.Value).Where(v => !string.IsNullOrEmpty(v))); + + private bool _identifierError = false; + + /// + /// This runs when parameters are first set, ensuring the initial state is correct. + /// + protected override void OnParametersSet() + { + ValidateFields(); + StateHasChanged(); + } + + /// + /// This runs after the user types into a field. + /// + private async Task OnInputChanged() + { + ValidateFields(); + await ValueChanged.InvokeAsync(this.Value); + } + + /// + /// Reusable method to check the validity of the identifier fields. + /// + private void ValidateFields() + { + // Set to true if ANY field is empty or null. + _identifierError = IdentifierFields.Any(f => string.IsNullOrEmpty(f.Value)); + IsValid = !_identifierError; + } +} \ No newline at end of file diff --git a/OpenArchival.Blazor.AdminPages/ArchiveItems/ValidationModels/ArtifactEntryValidationModel.cs b/OpenArchival.Blazor.AdminPages/ArchiveItems/ValidationModels/ArtifactEntryValidationModel.cs new file mode 100644 index 0000000..6076ae9 --- /dev/null +++ b/OpenArchival.Blazor.AdminPages/ArchiveItems/ValidationModels/ArtifactEntryValidationModel.cs @@ -0,0 +1,94 @@ +namespace OpenArchival.Blazor; + +using OpenArchival.DataAccess; +using System.ComponentModel.DataAnnotations; + +public class ArtifactEntryValidationModel +{ + /// + /// Used when translating between the validation model and the database model + /// + public int? Id { get; set; } + + [Required(AllowEmptyStrings = false, ErrorMessage = "An artifact numbering must be supplied")] + public string? ArtifactNumber { get; set; } + + [Required(AllowEmptyStrings = false, ErrorMessage = "A title must be provided")] + public string? Title { get; set; } + + public string? Description { get; set; } + + public string? Type { get; set; } + + public string? StorageLocation { get; set; } + + public List? Tags { get; set; } = []; + + public List? ListedNames { get; set; } = []; + + public List? AssociatedDates { get; set; } = []; + + public List? Defects { get; set; } = []; + + public List? Links { get; set; } = []; + + public List? Files { get; set; } = []; + + public string? FileTextContent { get; set; } + + public List RelatedArtifacts { get; set; } = []; + + public bool IsPublicallyVisible { get; set; } = true; + + public ArtifactEntry ToArtifactEntry(ArtifactGrouping? parent = null) + { + List tags = new(); + if (Tags is not null) + { + foreach (var tag in Tags) + { + tags.Add(new ArtifactEntryTag() { Name = tag }); + } + } + + List defects = new(); + foreach (var defect in Defects) + { + defects.Add(new ArtifactDefect() { Description=defect}); + } + + var entry = new ArtifactEntry() + { + Id = Id ?? 0, + Files = Files, + Type = new DataAccess.ArtifactType() { Name = Type }, + ArtifactNumber = ArtifactNumber, + AssociatedDates = AssociatedDates, + Defects = defects, + Links = Links, + StorageLocation = null, + Description = Description, + FileTextContent = FileTextContent, + IsPubliclyVisible = IsPublicallyVisible, + Tags = tags, + Title = Title, + ArtifactGrouping = parent, + RelatedTo = RelatedArtifacts, + }; + + List listedNames = new(); + foreach (var name in ListedNames) + { + listedNames.Add(new ListedName() { Value=name }); + } + + entry.ListedNames = listedNames; + + if (!string.IsNullOrEmpty(StorageLocation)) + { + entry.StorageLocation = new ArtifactStorageLocation() { Location = StorageLocation }; + } + + return entry; + } +} diff --git a/OpenArchival.Blazor.AdminPages/ArchiveItems/ValidationModels/ArtifactGroupingValidationModel.cs b/OpenArchival.Blazor.AdminPages/ArchiveItems/ValidationModels/ArtifactGroupingValidationModel.cs new file mode 100644 index 0000000..ed8093f --- /dev/null +++ b/OpenArchival.Blazor.AdminPages/ArchiveItems/ValidationModels/ArtifactGroupingValidationModel.cs @@ -0,0 +1,139 @@ +using OpenArchival.DataAccess; +using System.ComponentModel.DataAnnotations; + +namespace OpenArchival.Blazor; + +public class ArtifactGroupingValidationModel : IValidatableObject +{ + /// + /// Used by update code to track the database record that corresponds to the data within this DTO + /// + public int? Id { get; set; } + + [Required(ErrorMessage = "A grouping title is required.")] + public string? Title { get; set; } + + [Required(ErrorMessage = "A grouping description is required.")] + public string? Description { get; set; } + + [Required(ErrorMessage = "A type is required.")] + public string? Type { get; set; } + + public ArchiveCategory? Category { get; set; } + + public List IdentifierFieldValues { get; set; } = new(); + + public List ArtifactEntries { get; set; } = new(); + + public bool IsPublicallyVisible { get; set; } = true; + + public ArtifactGrouping ToArtifactGrouping() + { + IdentifierFields identifierFields = new(); + identifierFields.Values = IdentifierFieldValues.Select(p => p.Value).ToList(); + + List entries = []; + foreach (var entry in ArtifactEntries) + { + entries.Add(entry.ToArtifactEntry()); + } + + var grouping = new ArtifactGrouping() + { + Id = Id ?? default, + Title = Title, + Description = Description, + Category = Category, + IdentifierFields = identifierFields, + IsPublicallyVisible = true, + ChildArtifactEntries = entries, + Type = new ArtifactType() { Name = Type } + }; + + // Create the parent link + foreach (var entry in grouping.ChildArtifactEntries) + { + entry.ArtifactGrouping = grouping; + } + + return grouping; + } + + public static ArtifactGroupingValidationModel ToValidationModel(ArtifactGrouping grouping) + { + var entries = new List(); + + foreach (var entry in grouping.ChildArtifactEntries) + { + var defects = new List(); + + if (entry.Defects is not null) + { + defects.AddRange(entry.Defects.Select(defect => defect.Description)); + } + + var validationModel = new ArtifactEntryValidationModel() + { + Id = entry.Id, + Title = entry.Title, + StorageLocation = entry.StorageLocation.Location, + ArtifactNumber = entry.ArtifactNumber, + AssociatedDates = entry.AssociatedDates, + Defects = entry?.Defects?.Select(defect => defect.Description).ToList(), + Description = entry?.Description, + Files = entry?.Files, + FileTextContent = entry?.FileTextContent, + IsPublicallyVisible = entry.IsPubliclyVisible, + Links = entry.Links, + ListedNames = entry?.ListedNames?.Select(name => name.Value).ToList(), + RelatedArtifacts = entry.RelatedTo, + Tags = entry?.Tags?.Select(tag => tag.Name).ToList(), + Type = entry?.Type.Name, + }; + + entries.Add(validationModel); + } + + var identifierFieldsStrings = grouping.IdentifierFields.Values; + List identifierFields = new(); + for (int index = 0; index < identifierFieldsStrings.Count; ++index) + { + identifierFields.Add(new IdentifierFieldValidationModel() + { + Value = identifierFieldsStrings[index], + Name = grouping.Category.FieldNames[index] + }); + } + return new ArtifactGroupingValidationModel() + { + Id = grouping.Id, + Title = grouping.Title, + ArtifactEntries = entries, + Category = grouping.Category, + Description = grouping.Description, + IdentifierFieldValues = identifierFields, + IsPublicallyVisible = grouping.IsPublicallyVisible, + Type = grouping.Type.Name + }; + } + + public IEnumerable Validate(ValidationContext validationContext) + { + foreach (var entry in ArtifactEntries) + { + var context = new ValidationContext(entry); + var validationResult = new List(); + + bool valid = Validator.TryValidateObject(entry, context, validationResult); + foreach (var result in validationResult) + { + yield return result; + } + } + + if (ArtifactEntries.Count > 0) + { + yield return new ValidationResult("Must upload one or more files"); + } + } +} diff --git a/OpenArchival.Blazor.AdminPages/ArchiveItems/ValidationModels/IdentifierFieldValidationModel.cs b/OpenArchival.Blazor.AdminPages/ArchiveItems/ValidationModels/IdentifierFieldValidationModel.cs new file mode 100644 index 0000000..c727dfa --- /dev/null +++ b/OpenArchival.Blazor.AdminPages/ArchiveItems/ValidationModels/IdentifierFieldValidationModel.cs @@ -0,0 +1,7 @@ +namespace OpenArchival.Blazor; + +public class IdentifierFieldValidationModel +{ + public string Name { get; set; } = ""; + public string Value { get; set; } = ""; +} diff --git a/OpenArchival.Blazor.AdminPages/Categories/CategoriesListComponent.razor b/OpenArchival.Blazor.AdminPages/Categories/CategoriesListComponent.razor new file mode 100644 index 0000000..1bf2978 --- /dev/null +++ b/OpenArchival.Blazor.AdminPages/Categories/CategoriesListComponent.razor @@ -0,0 +1,86 @@ +@namespace OpenArchival.Blazor.AdminPages +@using Microsoft.EntityFrameworkCore; +@using Microsoft.Extensions.Logging +@using MudBlazor.Interfaces +@using OpenArchival.DataAccess +@using MudBlazor +@using MudExtensions + +@page "/categorieslist" + + + Categories + + + @foreach (ArchiveCategory category in _categories) + { + + @category.Name + @if (ShowDeleteButton) + { + + + + } + + } + + @ChildContent + + +@inject IArchiveCategoryProvider CategoryProvider; +@inject ILogger Logger; + +@code { + [Parameter] + public RenderFragment ChildContent { get; set; } = default!; + + [Parameter] + public bool ShowDeleteButton { get; set; } = false; + + [Parameter] + public EventCallback ListItemClickedCallback { get; set; } + + [Parameter] + public EventCallback OnDeleteClickedCallback { get; set; } + + private List _categories = new(); + + protected override async Task OnInitializedAsync() + { + await LoadCategories(); + } + + private async Task LoadCategories() + { + var categories = await CategoryProvider.GetAllArchiveCategories(); + if (categories is null) + { + Logger.LogError("There were no categories in the database when attempting to load the list of categories."); + _categories.Clear(); + return; + } + _categories = categories.ToList(); + } + + public async Task RefreshData() + { + await LoadCategories(); + StateHasChanged(); + } + + private async Task OnCategoryItemClicked(ArchiveCategory category) + { + await ListItemClickedCallback.InvokeAsync(category); + } + + private async Task HandleDeleteClick(ArchiveCategory category) + { + await OnDeleteClickedCallback.InvokeAsync(category); + } +} \ No newline at end of file diff --git a/OpenArchival.Blazor.AdminPages/Categories/CategoryCreatorDialog.razor b/OpenArchival.Blazor.AdminPages/Categories/CategoryCreatorDialog.razor new file mode 100644 index 0000000..ddd8b3c --- /dev/null +++ b/OpenArchival.Blazor.AdminPages/Categories/CategoryCreatorDialog.razor @@ -0,0 +1,165 @@ +@namespace OpenArchival.Blazor.AdminPages +@using System.ComponentModel.DataAnnotations; +@using OpenArchival.DataAccess; +@using MudBlazor + + + + Create a Category + + + + + + + + Item Tag Identifier + This will be the format of the identifier used for each archive entry. + + + Format Preview: + @FormatPreview + + + + + + + + + + + + @for (int index = 0; index < ValidationModel.FieldNames.Count; ++index) + { + var localIndex = index; + + + + + } + + + + + Cancel + OK + + + +@inject IArchiveCategoryProvider CategoryProvider; + +@code { + [CascadingParameter] + private IMudDialogInstance MudDialog { get; set; } = default!; + + [Parameter] + public CategoryValidationModel ValidationModel { get; set; } = default!; + + [Parameter] + public bool IsUpdate { get; set; } + + [Parameter] + public string OriginalName { get; set; } = string.Empty; + + + private MudForm _form = default!; + private string FormatPreview { get; set; } = string.Empty; + + protected override void OnParametersSet() + { + if (ValidationModel is null) + { + ValidationModel = new CategoryValidationModel { NumFields = 1 }; + } else + { + ValidationModel.NumFields = ValidationModel.FieldNames.Count; + } + } + + private void OnNumFieldsChanged(int newCount) + { + if (newCount < 1) return; + ValidationModel.NumFields = newCount; + UpdateStateFromModel(); + } + + private void UpdateStateFromModel() + { + ValidationModel.FieldNames ??= new List(); + ValidationModel.FieldDescriptions ??= new List(); + + while (ValidationModel.FieldNames.Count < ValidationModel.NumFields) + { + ValidationModel.FieldNames.Add($"Field {ValidationModel.FieldNames.Count + 1}"); + } + while (ValidationModel.FieldNames.Count > ValidationModel.NumFields) + { + ValidationModel.FieldNames.RemoveAt(ValidationModel.FieldNames.Count - 1); + } + + while (ValidationModel.FieldDescriptions.Count < ValidationModel.NumFields) + { + ValidationModel.FieldDescriptions.Add(""); + } + while (ValidationModel.FieldDescriptions.Count > ValidationModel.NumFields) + { + ValidationModel.FieldDescriptions.RemoveAt(ValidationModel.FieldDescriptions.Count - 1); + } + + UpdateFormatPreview(); + StateHasChanged(); + } + + private void UpdateFormatPreview() + { + var fieldNames = ValidationModel.FieldNames.Select(name => string.IsNullOrEmpty(name) ? "<...>" : $"<{name}>"); + FormatPreview = string.Join(ValidationModel.FieldSeparator, fieldNames); + } + + private async Task Submit() + { + await _form.Validate(); + if (!_form.IsValid) return; + + MudDialog.Close(DialogResult.Ok(ValidationModel)); + } + + private void Cancel() => MudDialog.Cancel(); + + // In your MudDialog component's @code block + + private void HandleNameUpdate((int Index, string NewValue) data) + { + if (data.Index < ValidationModel.FieldNames.Count) + { + ValidationModel.FieldNames[data.Index] = data.NewValue; + UpdateFormatPreview(); // Update the preview in real-time + } + } + + private void HandleDescriptionUpdate((int Index, string NewValue) data) + { + if (data.Index < ValidationModel.FieldDescriptions.Count) + { + ValidationModel.FieldDescriptions[data.Index] = data.NewValue; + } + } +} \ No newline at end of file diff --git a/OpenArchival.Blazor.AdminPages/Categories/CategoryFieldCardComponent.razor b/OpenArchival.Blazor.AdminPages/Categories/CategoryFieldCardComponent.razor new file mode 100644 index 0000000..08de591 --- /dev/null +++ b/OpenArchival.Blazor.AdminPages/Categories/CategoryFieldCardComponent.razor @@ -0,0 +1,42 @@ +@namespace OpenArchival.Blazor.AdminPages +@using MudBlazor + + + + + + + + + +@code { + [Parameter] public int Index { get; set; } + + [Parameter] public string FieldName { get; set; } = ""; + [Parameter] public string FieldDescription { get; set; } = ""; + + [Parameter] public EventCallback<(int Index, string NewValue)> OnNameUpdate { get; set; } + [Parameter] public EventCallback<(int Index, string NewValue)> OnDescriptionUpdate { get; set; } + + private async Task OnNameChanged() + { + await OnNameUpdate.InvokeAsync((Index, FieldName)); + } + + private async Task OnDescriptionChanged() + { + await OnDescriptionUpdate.InvokeAsync((Index, FieldDescription)); + } +} \ No newline at end of file diff --git a/OpenArchival.Blazor.AdminPages/Categories/ValidationModels/ArtifactGroupingRowElement.cs b/OpenArchival.Blazor.AdminPages/Categories/ValidationModels/ArtifactGroupingRowElement.cs new file mode 100644 index 0000000..f162864 --- /dev/null +++ b/OpenArchival.Blazor.AdminPages/Categories/ValidationModels/ArtifactGroupingRowElement.cs @@ -0,0 +1,25 @@ +namespace OpenArchival.Blazor; + +public class ArtifactGroupingRowElement +{ + public required int Id { get; set; } + + public required string ArtifactGroupingIdentifier { get; set; } + + public required string CategoryName { get; set; } + + public required string Title { get; set; } + + public bool IsPublicallyVisible { get; set; } + + public bool Equals(ArtifactGroupingRowElement? other) + { + if (other is null) return false; + if (ReferenceEquals(this, other)) return true; + return Id == other.Id; // Compare based on the unique Id + } + + public override bool Equals(object? obj) => Equals(obj as ArtifactGroupingRowElement); + + public override int GetHashCode() => Id.GetHashCode(); +} \ No newline at end of file diff --git a/OpenArchival.Blazor.AdminPages/Categories/ValidationModels/CategoryValidationModel.cs b/OpenArchival.Blazor.AdminPages/Categories/ValidationModels/CategoryValidationModel.cs new file mode 100644 index 0000000..5f25fb7 --- /dev/null +++ b/OpenArchival.Blazor.AdminPages/Categories/ValidationModels/CategoryValidationModel.cs @@ -0,0 +1,74 @@ +namespace OpenArchival.Blazor; + +using Microsoft.IdentityModel.Abstractions; +using Microsoft.IdentityModel.Tokens; +using OpenArchival.DataAccess; + +using System.ComponentModel.DataAnnotations; + +public class CategoryValidationModel +{ + public int? DatabaseId { get; set; } + + [Required(ErrorMessage = "Category name is required.")] + public string? Name { get; set; } + + public string? Description { get; set; } + + [Required(ErrorMessage = "Field separator is required.")] + [StringLength(1, ErrorMessage = "Separator must be a single character.")] + public string FieldSeparator { get; set; } = "-"; + + [Required(ErrorMessage = "At least one field is needed")] + [Range(1, int.MaxValue, ErrorMessage = "At least one field must be created.")] + public int NumFields { get; set; } = 1; + + public List FieldNames { get; set; } = [""]; + + public List FieldDescriptions { get; set; } = [""]; + + public IEnumerable Validate(ValidationContext context) + { + if ((FieldNames is null || FieldNames.Count == 0) || (FieldDescriptions is null || FieldDescriptions.Count > 0)) + { + yield return new ValidationResult( + "Either the FieldNames or FieldDescriptions were null or empty. At least one is required", + new[] { nameof(FieldNames), nameof(FieldDescriptions) } + ); + } + } + + public static CategoryValidationModel FromArchiveCategory(ArchiveCategory category) + { + return new CategoryValidationModel() + { + Name = category.Name, + Description = category.Description, + DatabaseId = category.Id, + FieldSeparator = category.FieldSeparator, + FieldNames = category.FieldNames, + FieldDescriptions = category.FieldDescriptions, + }; + } + + public static ArchiveCategory ToArchiveCategory(CategoryValidationModel model) + { + return new ArchiveCategory() + { + Name = model.Name, + FieldSeparator = model.FieldSeparator, + Description = model.Description, + FieldNames = model.FieldNames, + FieldDescriptions = model.FieldDescriptions + }; + } + + public static void UpdateArchiveValidationModel(CategoryValidationModel model, ArchiveCategory category) + { + category.Name = model.Name ?? throw new ArgumentNullException(nameof(model.Name), "The model name was null."); + category.Description = model.Description; + category.FieldSeparator = model.FieldSeparator; + category.FieldNames = model.FieldNames; + category.FieldDescriptions = model.FieldDescriptions; + } +} \ No newline at end of file diff --git a/OpenArchival.Blazor.AdminPages/Categories/ViewAddCategoriesComponent.razor b/OpenArchival.Blazor.AdminPages/Categories/ViewAddCategoriesComponent.razor new file mode 100644 index 0000000..4be0e5f --- /dev/null +++ b/OpenArchival.Blazor.AdminPages/Categories/ViewAddCategoriesComponent.razor @@ -0,0 +1,86 @@ +@page "/categories" + +@namespace OpenArchival.Blazor.AdminPages +@using Microsoft.AspNetCore.Components.Web +@using Microsoft.EntityFrameworkCore +@using Microsoft.Extensions.Logging +@using MudBlazor +@using OpenArchival.DataAccess; + +@inject IDialogService DialogService +@inject IArchiveCategoryProvider CategoryProvider; +@inject IDbContextFactory DbContextFactory; +@inject ILogger Logger; + + + Add Category + + + +@code { + CategoriesListComponent _categoriesListComponent = default!; + + private async Task DeleteCategory(ArchiveCategory category) + { + // 1. Show a confirmation dialog (recommended) + var confirmed = await DialogService.ShowMessageBox("Confirm", $"Delete {category.Name}?", yesText:"Delete", cancelText:"Cancel"); + if (confirmed != true) return; + + await CategoryProvider.DeleteCategoryAsync(category); + await _categoriesListComponent.RefreshData(); + StateHasChanged(); + } + + private async Task ShowFilledDialog(ArchiveCategory category) + { + CategoryValidationModel validationModel = CategoryValidationModel.FromArchiveCategory(category); + + var parameters = new DialogParameters { ["ValidationModel"] = validationModel, ["IsUpdate"] = true, ["OriginalName"] = category.Name}; + + var options = new DialogOptions { CloseOnEscapeKey = true, BackdropClick=false}; + + var dialog = await DialogService.ShowAsync("Create a Category", parameters, options); + var result = await dialog.Result; + + if (result is not null && !result.Canceled && _categoriesListComponent is not null) + { + if (result.Data is null) + { + Logger.LogError($"The new category received by the result had a null data result member."); + throw new NullReferenceException($"The new category received by the result had a null data result member."); + } + + CategoryValidationModel model = (CategoryValidationModel)result.Data; + CategoryValidationModel.UpdateArchiveValidationModel(model, category); + + await using var context = await DbContextFactory.CreateDbContextAsync(); + await context.SaveChangesAsync(); + + StateHasChanged(); + await _categoriesListComponent.RefreshData(); + } + } + + private async Task OnAddClick() + { + var options = new DialogOptions { CloseOnEscapeKey = true, BackdropClick=false }; + var dialog = await DialogService.ShowAsync("Create a Category", options); + + var result = await dialog.Result; + + if (result is not null && !result.Canceled && _categoriesListComponent is not null && result.Data is not null) + { + await using var context = await DbContextFactory.CreateDbContextAsync(); + CategoryValidationModel model = (CategoryValidationModel)result.Data; + context.ArchiveCategories.Add(CategoryValidationModel.ToArchiveCategory(model)); + + await context.SaveChangesAsync(); + StateHasChanged(); + await _categoriesListComponent.RefreshData(); + } + } +} \ No newline at end of file diff --git a/OpenArchival.Blazor.AdminPages/OpenArchival.Blazor.AdminPages.csproj b/OpenArchival.Blazor.AdminPages/OpenArchival.Blazor.AdminPages.csproj new file mode 100644 index 0000000..df03e5f --- /dev/null +++ b/OpenArchival.Blazor.AdminPages/OpenArchival.Blazor.AdminPages.csproj @@ -0,0 +1,28 @@ + + + + net9.0 + enable + enable + true + + + + + + + + + + + + + + + + + + + + + diff --git a/OpenArchival.Blazor.AdminPages/bin/Debug/net9.0/OpenArchival.Blazor.AdminPages.deps.json b/OpenArchival.Blazor.AdminPages/bin/Debug/net9.0/OpenArchival.Blazor.AdminPages.deps.json new file mode 100644 index 0000000..795830a --- /dev/null +++ b/OpenArchival.Blazor.AdminPages/bin/Debug/net9.0/OpenArchival.Blazor.AdminPages.deps.json @@ -0,0 +1,1022 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v9.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v9.0": { + "OpenArchival.Blazor.AdminPages/1.0.0": { + "dependencies": { + "CodeBeam.MudExtensions": "6.3.0", + "Microsoft.IdentityModel.Abstractions": "8.14.0", + "Microsoft.IdentityModel.Tokens": "8.14.0", + "MudBlazor": "8.13.0", + "OpenArchival.Blazor.CustomComponents": "1.0.0", + "OpenArchival.DataAccess": "1.0.0" + }, + "runtime": { + "OpenArchival.Blazor.AdminPages.dll": {} + } + }, + "BuildBundlerMinifier/3.2.449": {}, + "CodeBeam.MudExtensions/6.3.0": { + "dependencies": { + "BuildBundlerMinifier": "3.2.449", + "CsvHelper": "30.0.1", + "Microsoft.AspNetCore.Components": "9.0.1", + "Microsoft.AspNetCore.Components.Web": "9.0.1", + "MudBlazor": "8.13.0" + }, + "runtime": { + "lib/net7.0/CodeBeam.MudExtensions.dll": { + "assemblyVersion": "6.3.0.0", + "fileVersion": "6.3.0.0" + } + } + }, + "CsvHelper/30.0.1": { + "runtime": { + "lib/net6.0/CsvHelper.dll": { + "assemblyVersion": "30.0.0.0", + "fileVersion": "30.0.1.0" + } + } + }, + "EntityFramework/6.5.1": { + "dependencies": { + "Microsoft.CSharp": "4.7.0", + "System.CodeDom": "6.0.0", + "System.ComponentModel.Annotations": "5.0.0", + "System.Configuration.ConfigurationManager": "6.0.1", + "System.Data.SqlClient": "4.8.6" + }, + "runtime": { + "lib/netstandard2.1/EntityFramework.SqlServer.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.500.124.31603" + }, + "lib/netstandard2.1/EntityFramework.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.500.124.31603" + } + } + }, + "Microsoft.AspNetCore.Authorization/9.0.1": { + "dependencies": { + "Microsoft.AspNetCore.Metadata": "9.0.1", + "Microsoft.Extensions.Logging.Abstractions": "9.0.8", + "Microsoft.Extensions.Options": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Authorization.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.124.61009" + } + } + }, + "Microsoft.AspNetCore.Components/9.0.1": { + "dependencies": { + "Microsoft.AspNetCore.Authorization": "9.0.1", + "Microsoft.AspNetCore.Components.Analyzers": "9.0.1" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Components.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.124.61009" + } + } + }, + "Microsoft.AspNetCore.Components.Analyzers/9.0.1": {}, + "Microsoft.AspNetCore.Components.Forms/9.0.1": { + "dependencies": { + "Microsoft.AspNetCore.Components": "9.0.1" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Components.Forms.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.124.61009" + } + } + }, + "Microsoft.AspNetCore.Components.Web/9.0.1": { + "dependencies": { + "Microsoft.AspNetCore.Components": "9.0.1", + "Microsoft.AspNetCore.Components.Forms": "9.0.1", + "Microsoft.Extensions.DependencyInjection": "9.0.8", + "Microsoft.Extensions.Primitives": "9.0.8", + "Microsoft.JSInterop": "9.0.1" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Components.Web.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.124.61009" + } + } + }, + "Microsoft.AspNetCore.Cryptography.Internal/9.0.8": { + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Cryptography.Internal.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36808" + } + } + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/9.0.8": { + "dependencies": { + "Microsoft.AspNetCore.Cryptography.Internal": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36808" + } + } + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore/9.0.8": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Relational": "9.0.8", + "Microsoft.Extensions.Identity.Stores": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": { + "assemblyVersion": "9.0.8.0", + "fileVersion": "9.0.825.36808" + } + } + }, + "Microsoft.AspNetCore.Metadata/9.0.1": { + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Metadata.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.124.61009" + } + } + }, + "Microsoft.CSharp/4.7.0": {}, + "Microsoft.EntityFrameworkCore/9.0.8": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "9.0.8", + "Microsoft.EntityFrameworkCore.Analyzers": "9.0.8", + "Microsoft.Extensions.Caching.Memory": "9.0.8", + "Microsoft.Extensions.Logging": "9.0.8" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.dll": { + "assemblyVersion": "9.0.8.0", + "fileVersion": "9.0.825.36802" + } + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/9.0.8": { + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "assemblyVersion": "9.0.8.0", + "fileVersion": "9.0.825.36802" + } + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/9.0.8": {}, + "Microsoft.EntityFrameworkCore.Relational/9.0.8": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "9.0.8", + "Microsoft.Extensions.Caching.Memory": "9.0.8", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.8", + "Microsoft.Extensions.Logging": "9.0.8" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "assemblyVersion": "9.0.8.0", + "fileVersion": "9.0.825.36802" + } + } + }, + "Microsoft.Extensions.Caching.Abstractions/9.0.8": { + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Extensions.Caching.Memory/9.0.8": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "9.0.8", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8", + "Microsoft.Extensions.Logging.Abstractions": "9.0.8", + "Microsoft.Extensions.Options": "9.0.8", + "Microsoft.Extensions.Primitives": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Caching.Memory.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.8": { + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Extensions.DependencyInjection/9.0.8": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.8": { + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Extensions.Identity.Core/9.0.8": { + "dependencies": { + "Microsoft.AspNetCore.Cryptography.KeyDerivation": "9.0.8", + "Microsoft.Extensions.Logging": "9.0.8", + "Microsoft.Extensions.Options": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Identity.Core.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36808" + } + } + }, + "Microsoft.Extensions.Identity.Stores/9.0.8": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "9.0.8", + "Microsoft.Extensions.Identity.Core": "9.0.8", + "Microsoft.Extensions.Logging": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Identity.Stores.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36808" + } + } + }, + "Microsoft.Extensions.Localization/9.0.1": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8", + "Microsoft.Extensions.Localization.Abstractions": "9.0.1", + "Microsoft.Extensions.Logging.Abstractions": "9.0.8", + "Microsoft.Extensions.Options": "9.0.8" + }, + "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.8": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "9.0.8", + "Microsoft.Extensions.Logging.Abstractions": "9.0.8", + "Microsoft.Extensions.Options": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.8": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Extensions.Options/9.0.8": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8", + "Microsoft.Extensions.Primitives": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Extensions.Primitives/9.0.8": { + "runtime": { + "lib/net9.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.IdentityModel.Abstractions/8.14.0": { + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll": { + "assemblyVersion": "8.14.0.0", + "fileVersion": "8.14.0.60815" + } + } + }, + "Microsoft.IdentityModel.Logging/8.14.0": { + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "8.14.0" + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Logging.dll": { + "assemblyVersion": "8.14.0.0", + "fileVersion": "8.14.0.60815" + } + } + }, + "Microsoft.IdentityModel.Tokens/8.14.0": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "9.0.8", + "Microsoft.IdentityModel.Logging": "8.14.0" + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Tokens.dll": { + "assemblyVersion": "8.14.0.0", + "fileVersion": "8.14.0.60815" + } + } + }, + "Microsoft.JSInterop/9.0.1": { + "runtime": { + "lib/net9.0/Microsoft.JSInterop.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.124.61009" + } + } + }, + "Microsoft.Win32.Registry/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "runtime": { + "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "MudBlazor/8.13.0": { + "dependencies": { + "Microsoft.AspNetCore.Components": "9.0.1", + "Microsoft.AspNetCore.Components.Web": "9.0.1", + "Microsoft.Extensions.Localization": "9.0.1" + }, + "runtime": { + "lib/net9.0/MudBlazor.dll": { + "assemblyVersion": "8.13.0.0", + "fileVersion": "8.13.0.0" + } + } + }, + "Npgsql/9.0.3": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "9.0.8" + }, + "runtime": { + "lib/net8.0/Npgsql.dll": { + "assemblyVersion": "9.0.3.0", + "fileVersion": "9.0.3.0" + } + } + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/9.0.4": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "9.0.8", + "Microsoft.EntityFrameworkCore.Relational": "9.0.8", + "Npgsql": "9.0.3" + }, + "runtime": { + "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { + "assemblyVersion": "9.0.4.0", + "fileVersion": "9.0.4.0" + } + } + }, + "runtime.native.System.Data.SqlClient.sni/4.7.0": { + "dependencies": { + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0" + } + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "runtimeTargets": { + "runtimes/win-arm64/native/sni.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "4.6.25512.1" + } + } + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "runtimeTargets": { + "runtimes/win-x64/native/sni.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "4.6.25512.1" + } + } + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "runtimeTargets": { + "runtimes/win-x86/native/sni.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "4.6.25512.1" + } + } + }, + "System.CodeDom/6.0.0": { + "runtime": { + "lib/net6.0/System.CodeDom.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.ComponentModel.Annotations/5.0.0": {}, + "System.Configuration.ConfigurationManager/6.0.1": { + "dependencies": { + "System.Security.Cryptography.ProtectedData": "6.0.0", + "System.Security.Permissions": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.922.41905" + } + } + }, + "System.Data.SqlClient/4.8.6": { + "dependencies": { + "Microsoft.Win32.Registry": "4.7.0", + "System.Security.Principal.Windows": "4.7.0", + "runtime.native.System.Data.SqlClient.sni": "4.7.0" + }, + "runtime": { + "lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "assemblyVersion": "4.6.1.6", + "fileVersion": "4.700.23.52603" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "4.6.1.6", + "fileVersion": "4.700.23.52603" + }, + "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.6.1.6", + "fileVersion": "4.700.23.52603" + } + } + }, + "System.Drawing.Common/6.0.0": { + "dependencies": { + "Microsoft.Win32.SystemEvents": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Drawing.Common.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + }, + "runtimes/win/lib/net6.0/System.Drawing.Common.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Security.AccessControl/6.0.0": {}, + "System.Security.Cryptography.ProtectedData/6.0.0": { + "runtime": { + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Security.Permissions/6.0.0": { + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Windows.Extensions": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Security.Permissions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Security.Principal.Windows/4.7.0": {}, + "System.Windows.Extensions/6.0.0": { + "dependencies": { + "System.Drawing.Common": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Windows.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "OpenArchival.Blazor.CustomComponents/1.0.0": { + "dependencies": { + "CodeBeam.MudExtensions": "6.3.0", + "MudBlazor": "8.13.0", + "OpenArchival.DataAccess": "1.0.0" + }, + "runtime": { + "OpenArchival.Blazor.CustomComponents.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "OpenArchival.DataAccess/1.0.0": { + "dependencies": { + "EntityFramework": "6.5.1", + "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "9.0.8", + "Microsoft.EntityFrameworkCore": "9.0.8", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8", + "Npgsql": "9.0.3", + "Npgsql.EntityFrameworkCore.PostgreSQL": "9.0.4" + }, + "runtime": { + "OpenArchival.DataAccess.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + } + } + }, + "libraries": { + "OpenArchival.Blazor.AdminPages/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "BuildBundlerMinifier/3.2.449": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uA9sYDy4VepL3xwzBTLcP2LyuVYMt0ZIT3gaSiXvGoX15Ob+rOP+hGydhevlSVd+rFo+Y+VQFEHDuWU8HBW+XA==", + "path": "buildbundlerminifier/3.2.449", + "hashPath": "buildbundlerminifier.3.2.449.nupkg.sha512" + }, + "CodeBeam.MudExtensions/6.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-U5J0IlIg8R166hm9RwVjjbCtbBs3ixLev94NmfQHaBVUn3P4un+DoirfUjcUs96wvKb5K9H9ou39Yq+wBO11IA==", + "path": "codebeam.mudextensions/6.3.0", + "hashPath": "codebeam.mudextensions.6.3.0.nupkg.sha512" + }, + "CsvHelper/30.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rcZtgbWR+As4G3Vpgx0AMNmShGuQLFjkHAPIIflzrfkJCx8/AOd4m96ZRmiU1Wi39qS5UVjV0P8qdgqOo5Cwyg==", + "path": "csvhelper/30.0.1", + "hashPath": "csvhelper.30.0.1.nupkg.sha512" + }, + "EntityFramework/6.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sQRP2lWg1i3aAGWqdliAM8zrGx7LHMUk+9/MoxUjwfTZYGMXvZ2JYZTlyTm1PqDxvn3c9E3U76TWDON7Y5+CVA==", + "path": "entityframework/6.5.1", + "hashPath": "entityframework.6.5.1.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authorization/9.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WgLlLBlMczb2+QLNG6sM95OUZ0EBztz60k/N75tjIgpyu0SdpIfYytAmX/7JJAjRTZF0c/CrWaQV+SH9FuGsrA==", + "path": "microsoft.aspnetcore.authorization/9.0.1", + "hashPath": "microsoft.aspnetcore.authorization.9.0.1.nupkg.sha512" + }, + "Microsoft.AspNetCore.Components/9.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6pwfbQKNtvPkbF4tCGiAKGyt6BVpu58xAXz7u2YXcUKTNmNxrymbG1mEyMc0EPzVdnquDDqTyfXM3mC1EJycxQ==", + "path": "microsoft.aspnetcore.components/9.0.1", + "hashPath": "microsoft.aspnetcore.components.9.0.1.nupkg.sha512" + }, + "Microsoft.AspNetCore.Components.Analyzers/9.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I8Rs4LXT5UQxM5Nin2+Oj8aSY2heszSZ3EyTLgt3mxmfiRPrVO7D8NNSsf1voI2Gb0qFJceof/J5c9E+nfNuHw==", + "path": "microsoft.aspnetcore.components.analyzers/9.0.1", + "hashPath": "microsoft.aspnetcore.components.analyzers.9.0.1.nupkg.sha512" + }, + "Microsoft.AspNetCore.Components.Forms/9.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KyULVU32bLz74LWDwPEwNUEllTehzWJuM7YAsz80rMKEzvR0K8cRjRzO0fnN/nfydMeLRRlbI0xj8wnEAymLVw==", + "path": "microsoft.aspnetcore.components.forms/9.0.1", + "hashPath": "microsoft.aspnetcore.components.forms.9.0.1.nupkg.sha512" + }, + "Microsoft.AspNetCore.Components.Web/9.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LI0vjYEd9MaDZPDQxPCn4gGYDkEC5U9rp1nWZo7rPozJxgTG2zU3WERujxTi2LeAC2ZzdXlOVCrUyPQ55LZV2A==", + "path": "microsoft.aspnetcore.components.web/9.0.1", + "hashPath": "microsoft.aspnetcore.components.web.9.0.1.nupkg.sha512" + }, + "Microsoft.AspNetCore.Cryptography.Internal/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NwGO0wh/IjEthBLGA6fWfIiftsNF/paA5RxWp6ji4wWazetJgQ4truR9nU2thAzzFLiXqlg8vGjdVDA8bHu0zA==", + "path": "microsoft.aspnetcore.cryptography.internal/9.0.8", + "hashPath": "microsoft.aspnetcore.cryptography.internal.9.0.8.nupkg.sha512" + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gK70xxXYwwPiXYKYVmLYMuIO5EOGrRtQghmM6PkgtZ/0lgLEjIs//xgSLvZkV/mroNHA1DEqTcqscEj9OzZ1IA==", + "path": "microsoft.aspnetcore.cryptography.keyderivation/9.0.8", + "hashPath": "microsoft.aspnetcore.cryptography.keyderivation.9.0.8.nupkg.sha512" + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-z4q9roxXMQePwFM5tXXZS5sKkU78yYXVkj56NYYx9xKe+mxGkJMV1MaO0GFE6HnnM8bE3Xxhs0hAPw2jKbse6w==", + "path": "microsoft.aspnetcore.identity.entityframeworkcore/9.0.8", + "hashPath": "microsoft.aspnetcore.identity.entityframeworkcore.9.0.8.nupkg.sha512" + }, + "Microsoft.AspNetCore.Metadata/9.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-EZnHifamF7IFEIyjAKMtJM3I/94OIe72i3P09v5oL0twmsmfQwal6Ni3m8lbB5mge3jWFhMozeW+rUdRSqnXRQ==", + "path": "microsoft.aspnetcore.metadata/9.0.1", + "hashPath": "microsoft.aspnetcore.metadata.9.0.1.nupkg.sha512" + }, + "Microsoft.CSharp/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", + "path": "microsoft.csharp/4.7.0", + "hashPath": "microsoft.csharp.4.7.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bNGdPhN762+BIIO5MFYLjafRqkSS1MqLOc/erd55InvLnFxt9H3N5JNsuag1ZHyBor1VtD42U0CHpgqkWeAYgQ==", + "path": "microsoft.entityframeworkcore/9.0.8", + "hashPath": "microsoft.entityframeworkcore.9.0.8.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Abstractions/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-B2yfAIQRRAQ4zvvWqh+HudD+juV3YoLlpXnrog3tU0PM9AFpuq6xo0+mEglN1P43WgdcUiF+65CWBcZe35s15Q==", + "path": "microsoft.entityframeworkcore.abstractions/9.0.8", + "hashPath": "microsoft.entityframeworkcore.abstractions.9.0.8.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Analyzers/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2EYStCXt4Hi9p3J3EYMQbItJDtASJd064Kcs8C8hj8Jt5srILrR9qlaL0Ryvk8NrWQoCQvIELsmiuqLEZMLvGA==", + "path": "microsoft.entityframeworkcore.analyzers/9.0.8", + "hashPath": "microsoft.entityframeworkcore.analyzers.9.0.8.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Relational/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OVhfyxiHxMvYpwQ8Jy3YZi4koy6TK5/Q7C1oq3z6db+HEGuu6x9L1BX5zDIdJxxlRePMyO4D8ORiXj/D7+MUqw==", + "path": "microsoft.entityframeworkcore.relational/9.0.8", + "hashPath": "microsoft.entityframeworkcore.relational.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Abstractions/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4h7bsVoKoiK+SlPM+euX/ayGnKZhl47pPCidLTiio9xyG+vgVVfcYxcYQgjm0SCrdSxjG0EGIAKF8EFr3G8Ifw==", + "path": "microsoft.extensions.caching.abstractions/9.0.8", + "hashPath": "microsoft.extensions.caching.abstractions.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Memory/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-grR+oPyj8HVn4DT8CFUUdSw2pZZKS13KjytFe4txpHQliGM1GEDotohmjgvyl3hm7RFB3FRqvbouEX3/1ewp5A==", + "path": "microsoft.extensions.caching.memory/9.0.8", + "hashPath": "microsoft.extensions.caching.memory.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yNou2KM35RvzOh4vUFtl2l33rWPvOCoba+nzEDJ+BgD8aOL/jew4WPCibQvntRfOJ2pJU8ARygSMD+pdjvDHuA==", + "path": "microsoft.extensions.configuration.abstractions/9.0.8", + "hashPath": "microsoft.extensions.configuration.abstractions.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JJjI2Fa+QtZcUyuNjbKn04OjIUX5IgFGFu/Xc+qvzh1rXdZHLcnqqVXhR4093bGirTwacRlHiVg1XYI9xum6QQ==", + "path": "microsoft.extensions.dependencyinjection/9.0.8", + "hashPath": "microsoft.extensions.dependencyinjection.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xY3lTjj4+ZYmiKIkyWitddrp1uL5uYiweQjqo4BKBw01ZC4HhcfgLghDpPZcUlppgWAFqFy9SgkiYWOMx365pw==", + "path": "microsoft.extensions.dependencyinjection.abstractions/9.0.8", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Identity.Core/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-giUYz84GHAizDucZp5vWAusDO2s9Jrrg2jQ6HUQNGs5HQMKJVobLPMQSiyg8R4yecH0pIc0QjANh0B/Kw13BHA==", + "path": "microsoft.extensions.identity.core/9.0.8", + "hashPath": "microsoft.extensions.identity.core.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Identity.Stores/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sycaHcq78yI591+KxEdd53a7pJGQEl9H/wDsFkaPNE9g7loyq8vufPcc/9RH3KlGt5joR5Ey7PdoRSrlLjCgJg==", + "path": "microsoft.extensions.identity.stores/9.0.8", + "hashPath": "microsoft.extensions.identity.stores.9.0.8.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.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Z/7ze+0iheT7FJeZPqJKARYvyC2bmwu3whbm/48BJjdlGVvgDguoCqJIkI/67NkroTYobd5geai1WheNQvWrgA==", + "path": "microsoft.extensions.logging/9.0.8", + "hashPath": "microsoft.extensions.logging.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pYnAffJL7ARD/HCnnPvnFKSIHnTSmWz84WIlT9tPeQ4lHNiu0Az7N/8itihWvcF8sT+VVD5lq8V+ckMzu4SbOw==", + "path": "microsoft.extensions.logging.abstractions/9.0.8", + "hashPath": "microsoft.extensions.logging.abstractions.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Options/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OmTaQ0v4gxGQkehpwWIqPoEiwsPuG/u4HUsbOFoWGx4DKET2AXzopnFe/fE608FIhzc/kcg2p8JdyMRCCUzitQ==", + "path": "microsoft.extensions.options/9.0.8", + "hashPath": "microsoft.extensions.options.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tizSIOEsIgSNSSh+hKeUVPK7xmTIjR8s+mJWOu1KXV3htvNQiPMFRMO17OdI1y/4ZApdBVk49u/08QGC9yvLug==", + "path": "microsoft.extensions.primitives/9.0.8", + "hashPath": "microsoft.extensions.primitives.9.0.8.nupkg.sha512" + }, + "Microsoft.IdentityModel.Abstractions/8.14.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iwbCpSjD3ehfTwBhtSNEtKPK0ICun6ov7Ibx6ISNA9bfwIyzI2Siwyi9eJFCJBwxowK9xcA1mj+jBWiigeqgcQ==", + "path": "microsoft.identitymodel.abstractions/8.14.0", + "hashPath": "microsoft.identitymodel.abstractions.8.14.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Logging/8.14.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eqqnemdW38CKZEHS6diA50BV94QICozDZEvSrsvN3SJXUFwVB9gy+/oz76gldP7nZliA16IglXjXTCTdmU/Ejg==", + "path": "microsoft.identitymodel.logging/8.14.0", + "hashPath": "microsoft.identitymodel.logging.8.14.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Tokens/8.14.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lKIZiBiGd36k02TCdMHp1KlNWisyIvQxcYJvIkz7P4gSQ9zi8dgh6S5Grj8NNG7HWYIPfQymGyoZ6JB5d1Lo1g==", + "path": "microsoft.identitymodel.tokens/8.14.0", + "hashPath": "microsoft.identitymodel.tokens.8.14.0.nupkg.sha512" + }, + "Microsoft.JSInterop/9.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/xBwIfb0YoC2Muv6EsHjxpqZw2aKv94+i0g0FWZvqvGv3DeAy+8wipAuECVvKYEs2EIclRD41bjajHLoD6mTtw==", + "path": "microsoft.jsinterop/9.0.1", + "hashPath": "microsoft.jsinterop.9.0.1.nupkg.sha512" + }, + "Microsoft.Win32.Registry/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", + "path": "microsoft.win32.registry/4.7.0", + "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512" + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==", + "path": "microsoft.win32.systemevents/6.0.0", + "hashPath": "microsoft.win32.systemevents.6.0.0.nupkg.sha512" + }, + "MudBlazor/8.13.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Y6JW93zf8tiVhMSkkL0mZ3ruqjOTNftvVoX3sik6NEnIye+Gs0FXI8rhXfrH2LU79Mw/fOtT5ms3L/Q4TKx2kA==", + "path": "mudblazor/8.13.0", + "hashPath": "mudblazor.8.13.0.nupkg.sha512" + }, + "Npgsql/9.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tPvY61CxOAWxNsKLEBg+oR646X4Bc8UmyQ/tJszL/7mEmIXQnnBhVJZrZEEUv0Bstu0mEsHZD5At3EO8zQRAYw==", + "path": "npgsql/9.0.3", + "hashPath": "npgsql.9.0.3.nupkg.sha512" + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/9.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mw5vcY2IEc7L+IeGrxpp/J5OSnCcjkjAgJYCm/eD52wpZze8zsSifdqV7zXslSMmfJG2iIUGZyo3KuDtEFKwMQ==", + "path": "npgsql.entityframeworkcore.postgresql/9.0.4", + "hashPath": "npgsql.entityframeworkcore.postgresql.9.0.4.nupkg.sha512" + }, + "runtime.native.System.Data.SqlClient.sni/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9kyFSIdN3T0qjDQ2R0HRXYIhS3l5psBzQi6qqhdLz+SzFyEy4sVxNOke+yyYv8Cu8rPER12c3RDjLT8wF3WBYQ==", + "path": "runtime.native.system.data.sqlclient.sni/4.7.0", + "hashPath": "runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512" + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==", + "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0", + "hashPath": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==", + "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0", + "hashPath": "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==", + "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0", + "hashPath": "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" + }, + "System.CodeDom/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CPc6tWO1LAer3IzfZufDBRL+UZQcj5uS207NHALQzP84Vp/z6wF0Aa0YZImOQY8iStY0A2zI/e3ihKNPfUm8XA==", + "path": "system.codedom/6.0.0", + "hashPath": "system.codedom.6.0.0.nupkg.sha512" + }, + "System.ComponentModel.Annotations/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==", + "path": "system.componentmodel.annotations/5.0.0", + "hashPath": "system.componentmodel.annotations.5.0.0.nupkg.sha512" + }, + "System.Configuration.ConfigurationManager/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jXw9MlUu/kRfEU0WyTptAVueupqIeE3/rl0EZDMlf8pcvJnitQ8HeVEp69rZdaStXwTV72boi/Bhw8lOeO+U2w==", + "path": "system.configuration.configurationmanager/6.0.1", + "hashPath": "system.configuration.configurationmanager.6.0.1.nupkg.sha512" + }, + "System.Data.SqlClient/4.8.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2Ij/LCaTQRyAi5lAv7UUTV9R2FobC8xN9mE0fXBZohum/xLl8IZVmE98Rq5ugQHjCgTBRKqpXRb4ORulRdA6Ig==", + "path": "system.data.sqlclient/4.8.6", + "hashPath": "system.data.sqlclient.4.8.6.nupkg.sha512" + }, + "System.Drawing.Common/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==", + "path": "system.drawing.common/6.0.0", + "hashPath": "system.drawing.common.6.0.0.nupkg.sha512" + }, + "System.Security.AccessControl/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==", + "path": "system.security.accesscontrol/6.0.0", + "hashPath": "system.security.accesscontrol.6.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.ProtectedData/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==", + "path": "system.security.cryptography.protecteddata/6.0.0", + "hashPath": "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512" + }, + "System.Security.Permissions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==", + "path": "system.security.permissions/6.0.0", + "hashPath": "system.security.permissions.6.0.0.nupkg.sha512" + }, + "System.Security.Principal.Windows/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==", + "path": "system.security.principal.windows/4.7.0", + "hashPath": "system.security.principal.windows.4.7.0.nupkg.sha512" + }, + "System.Windows.Extensions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==", + "path": "system.windows.extensions/6.0.0", + "hashPath": "system.windows.extensions.6.0.0.nupkg.sha512" + }, + "OpenArchival.Blazor.CustomComponents/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "OpenArchival.DataAccess/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/OpenArchival.Blazor.AdminPages/bin/Debug/net9.0/OpenArchival.Blazor.AdminPages.dll b/OpenArchival.Blazor.AdminPages/bin/Debug/net9.0/OpenArchival.Blazor.AdminPages.dll new file mode 100644 index 0000000..ccec9ca Binary files /dev/null and b/OpenArchival.Blazor.AdminPages/bin/Debug/net9.0/OpenArchival.Blazor.AdminPages.dll differ diff --git a/OpenArchival.Blazor.AdminPages/bin/Debug/net9.0/OpenArchival.Blazor.AdminPages.pdb b/OpenArchival.Blazor.AdminPages/bin/Debug/net9.0/OpenArchival.Blazor.AdminPages.pdb new file mode 100644 index 0000000..0e40e46 Binary files /dev/null and b/OpenArchival.Blazor.AdminPages/bin/Debug/net9.0/OpenArchival.Blazor.AdminPages.pdb differ diff --git a/OpenArchival.Blazor.AdminPages/bin/Debug/net9.0/OpenArchival.Blazor.AdminPages.runtimeconfig.json b/OpenArchival.Blazor.AdminPages/bin/Debug/net9.0/OpenArchival.Blazor.AdminPages.runtimeconfig.json new file mode 100644 index 0000000..6e29dbe --- /dev/null +++ b/OpenArchival.Blazor.AdminPages/bin/Debug/net9.0/OpenArchival.Blazor.AdminPages.runtimeconfig.json @@ -0,0 +1,19 @@ +{ + "runtimeOptions": { + "tfm": "net9.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "9.0.0" + }, + { + "name": "Microsoft.AspNetCore.App", + "version": "9.0.0" + } + ], + "configProperties": { + "System.Reflection.NullabilityInfoContext.IsSupported": true, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/OpenArchival.Blazor.AdminPages/bin/Debug/net9.0/OpenArchival.Blazor.AdminPages.staticwebassets.endpoints.json b/OpenArchival.Blazor.AdminPages/bin/Debug/net9.0/OpenArchival.Blazor.AdminPages.staticwebassets.endpoints.json new file mode 100644 index 0000000..a523bab --- /dev/null +++ b/OpenArchival.Blazor.AdminPages/bin/Debug/net9.0/OpenArchival.Blazor.AdminPages.staticwebassets.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.css","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"21465"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk=\""},{"Name":"Last-Modified","Value":"Sun, 26 Feb 2023 14:08:26 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.css","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000295508274"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3383"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"6PJ7t7WR38pQTSYe6IR0pbqo2cIZK5wuW/w26kprtBg=\""},{"Name":"ETag","Value":"W/\"Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:28 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.css.gz","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3383"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"6PJ7t7WR38pQTSYe6IR0pbqo2cIZK5wuW/w26kprtBg=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:28 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6PJ7t7WR38pQTSYe6IR0pbqo2cIZK5wuW/w26kprtBg="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.js","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"328"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc=\""},{"Name":"Last-Modified","Value":"Sun, 26 Feb 2023 14:08:26 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.js","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005076142132"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"196"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"B4PUgpr06+d3lAMWknp0EVkaGxPZJdpp5/UidGHzvnc=\""},{"Name":"ETag","Value":"W/\"FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:28 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.js.gz","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"196"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"B4PUgpr06+d3lAMWknp0EVkaGxPZJdpp5/UidGHzvnc=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:28 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-B4PUgpr06+d3lAMWknp0EVkaGxPZJdpp5/UidGHzvnc="}]},{"Route":"_content/CodeBeam.MudExtensions/Mud_Secondary.png","AssetFile":"_content/CodeBeam.MudExtensions/Mud_Secondary.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4558"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"G3hYUw4Ps9P/IQ3lw2zu96RSZaOf4zU+4QkXkH8Xi3Y=\""},{"Name":"Last-Modified","Value":"Sat, 08 Oct 2022 09:55:02 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G3hYUw4Ps9P/IQ3lw2zu96RSZaOf4zU+4QkXkH8Xi3Y="}]},{"Route":"_content/MudBlazor/MudBlazor.min.css","AssetFile":"_content/MudBlazor/MudBlazor.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"606250"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0=\""},{"Name":"Last-Modified","Value":"Wed, 01 Oct 2025 21:51:05 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0="}]},{"Route":"_content/MudBlazor/MudBlazor.min.css","AssetFile":"_content/MudBlazor/MudBlazor.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015264845"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"65509"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"VcBMO3aXrzxl+jfWY+TaxPKsd3L0UWjeJZliEXOyzzI=\""},{"Name":"ETag","Value":"W/\"TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:28 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0="}]},{"Route":"_content/MudBlazor/MudBlazor.min.css.gz","AssetFile":"_content/MudBlazor/MudBlazor.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"65509"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"VcBMO3aXrzxl+jfWY+TaxPKsd3L0UWjeJZliEXOyzzI=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:28 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VcBMO3aXrzxl+jfWY+TaxPKsd3L0UWjeJZliEXOyzzI="}]},{"Route":"_content/MudBlazor/MudBlazor.min.jk5eo7zo4m.css","AssetFile":"_content/MudBlazor/MudBlazor.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"606250"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0=\""},{"Name":"Last-Modified","Value":"Wed, 01 Oct 2025 21:51:05 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jk5eo7zo4m"},{"Name":"integrity","Value":"sha256-TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.css"}]},{"Route":"_content/MudBlazor/MudBlazor.min.js","AssetFile":"_content/MudBlazor/MudBlazor.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"75165"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw=\""},{"Name":"Last-Modified","Value":"Wed, 01 Oct 2025 21:51:05 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js","AssetFile":"_content/MudBlazor/MudBlazor.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000061150859"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16352"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"0BJxfo+EOJvNKoBv/2ahm4RKrPjv7PhB/R16C3XOHDo=\""},{"Name":"ETag","Value":"W/\"hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:28 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js.gz","AssetFile":"_content/MudBlazor/MudBlazor.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16352"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"0BJxfo+EOJvNKoBv/2ahm4RKrPjv7PhB/R16C3XOHDo=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:28 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0BJxfo+EOJvNKoBv/2ahm4RKrPjv7PhB/R16C3XOHDo="}]},{"Route":"_content/MudBlazor/MudBlazor.min.tjzqk7tnel.js","AssetFile":"_content/MudBlazor/MudBlazor.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"75165"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw=\""},{"Name":"Last-Modified","Value":"Wed, 01 Oct 2025 21:51:05 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tjzqk7tnel"},{"Name":"integrity","Value":"sha256-hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.js"}]}]} \ No newline at end of file diff --git a/OpenArchival.Blazor.AdminPages/bin/Debug/net9.0/OpenArchival.Blazor.AdminPages.staticwebassets.runtime.json b/OpenArchival.Blazor.AdminPages/bin/Debug/net9.0/OpenArchival.Blazor.AdminPages.staticwebassets.runtime.json new file mode 100644 index 0000000..10c2d76 --- /dev/null +++ b/OpenArchival.Blazor.AdminPages/bin/Debug/net9.0/OpenArchival.Blazor.AdminPages.staticwebassets.runtime.json @@ -0,0 +1 @@ +{"ContentRoots":["C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\","C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.AdminPages\\obj\\Debug\\net9.0\\compressed\\","C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\"],"Root":{"Children":{"_content":{"Children":{"CodeBeam.MudExtensions":{"Children":{"Mud_Secondary.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"Mud_Secondary.png"},"Patterns":null},"MudExtensions.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"MudExtensions.min.css"},"Patterns":null},"MudExtensions.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"24gzn4tg1a-qz4batx9cb.gz"},"Patterns":null},"MudExtensions.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"MudExtensions.min.js"},"Patterns":null},"MudExtensions.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"stwk5nfoxp-loe7cozwzj.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"MudBlazor":{"Children":{"MudBlazor.min.css":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"MudBlazor.min.css"},"Patterns":null},"MudBlazor.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"tzxjg6is5z-jk5eo7zo4m.gz"},"Patterns":null},"MudBlazor.min.js":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"MudBlazor.min.js"},"Patterns":null},"MudBlazor.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"0wz98yz2xy-tjzqk7tnel.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}} \ No newline at end of file diff --git a/OpenArchival.Blazor.AdminPages/bin/Debug/net9.0/OpenArchival.Blazor.CustomComponents.dll b/OpenArchival.Blazor.AdminPages/bin/Debug/net9.0/OpenArchival.Blazor.CustomComponents.dll new file mode 100644 index 0000000..898228c Binary files /dev/null and b/OpenArchival.Blazor.AdminPages/bin/Debug/net9.0/OpenArchival.Blazor.CustomComponents.dll differ diff --git a/OpenArchival.Blazor.AdminPages/bin/Debug/net9.0/OpenArchival.Blazor.CustomComponents.pdb b/OpenArchival.Blazor.AdminPages/bin/Debug/net9.0/OpenArchival.Blazor.CustomComponents.pdb new file mode 100644 index 0000000..29f5933 Binary files /dev/null and b/OpenArchival.Blazor.AdminPages/bin/Debug/net9.0/OpenArchival.Blazor.CustomComponents.pdb differ diff --git a/OpenArchival.Blazor.AdminPages/bin/Debug/net9.0/OpenArchival.Blazor.CustomComponents.staticwebassets.endpoints.json b/OpenArchival.Blazor.AdminPages/bin/Debug/net9.0/OpenArchival.Blazor.CustomComponents.staticwebassets.endpoints.json new file mode 100644 index 0000000..615d6e4 --- /dev/null +++ b/OpenArchival.Blazor.AdminPages/bin/Debug/net9.0/OpenArchival.Blazor.CustomComponents.staticwebassets.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.css","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"21465"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk=\""},{"Name":"Last-Modified","Value":"Sun, 26 Feb 2023 14:08:26 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.css","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000295508274"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3383"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"6PJ7t7WR38pQTSYe6IR0pbqo2cIZK5wuW/w26kprtBg=\""},{"Name":"ETag","Value":"W/\"Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:26 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.css.gz","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3383"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"6PJ7t7WR38pQTSYe6IR0pbqo2cIZK5wuW/w26kprtBg=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:26 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6PJ7t7WR38pQTSYe6IR0pbqo2cIZK5wuW/w26kprtBg="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.js","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"328"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc=\""},{"Name":"Last-Modified","Value":"Sun, 26 Feb 2023 14:08:26 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.js","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005076142132"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"196"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"B4PUgpr06+d3lAMWknp0EVkaGxPZJdpp5/UidGHzvnc=\""},{"Name":"ETag","Value":"W/\"FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:26 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.js.gz","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"196"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"B4PUgpr06+d3lAMWknp0EVkaGxPZJdpp5/UidGHzvnc=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:26 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-B4PUgpr06+d3lAMWknp0EVkaGxPZJdpp5/UidGHzvnc="}]},{"Route":"_content/CodeBeam.MudExtensions/Mud_Secondary.png","AssetFile":"_content/CodeBeam.MudExtensions/Mud_Secondary.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4558"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"G3hYUw4Ps9P/IQ3lw2zu96RSZaOf4zU+4QkXkH8Xi3Y=\""},{"Name":"Last-Modified","Value":"Sat, 08 Oct 2022 09:55:02 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G3hYUw4Ps9P/IQ3lw2zu96RSZaOf4zU+4QkXkH8Xi3Y="}]},{"Route":"_content/MudBlazor/MudBlazor.min.css","AssetFile":"_content/MudBlazor/MudBlazor.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"606250"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0=\""},{"Name":"Last-Modified","Value":"Wed, 01 Oct 2025 21:51:05 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0="}]},{"Route":"_content/MudBlazor/MudBlazor.min.css","AssetFile":"_content/MudBlazor/MudBlazor.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015264845"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"65509"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"VcBMO3aXrzxl+jfWY+TaxPKsd3L0UWjeJZliEXOyzzI=\""},{"Name":"ETag","Value":"W/\"TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:26 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0="}]},{"Route":"_content/MudBlazor/MudBlazor.min.css.gz","AssetFile":"_content/MudBlazor/MudBlazor.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"65509"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"VcBMO3aXrzxl+jfWY+TaxPKsd3L0UWjeJZliEXOyzzI=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:26 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VcBMO3aXrzxl+jfWY+TaxPKsd3L0UWjeJZliEXOyzzI="}]},{"Route":"_content/MudBlazor/MudBlazor.min.jk5eo7zo4m.css","AssetFile":"_content/MudBlazor/MudBlazor.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"606250"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0=\""},{"Name":"Last-Modified","Value":"Wed, 01 Oct 2025 21:51:05 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jk5eo7zo4m"},{"Name":"integrity","Value":"sha256-TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.css"}]},{"Route":"_content/MudBlazor/MudBlazor.min.js","AssetFile":"_content/MudBlazor/MudBlazor.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"75165"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw=\""},{"Name":"Last-Modified","Value":"Wed, 01 Oct 2025 21:51:05 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js","AssetFile":"_content/MudBlazor/MudBlazor.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000061150859"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16352"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"0BJxfo+EOJvNKoBv/2ahm4RKrPjv7PhB/R16C3XOHDo=\""},{"Name":"ETag","Value":"W/\"hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:26 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js.gz","AssetFile":"_content/MudBlazor/MudBlazor.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16352"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"0BJxfo+EOJvNKoBv/2ahm4RKrPjv7PhB/R16C3XOHDo=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:26 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0BJxfo+EOJvNKoBv/2ahm4RKrPjv7PhB/R16C3XOHDo="}]},{"Route":"_content/MudBlazor/MudBlazor.min.tjzqk7tnel.js","AssetFile":"_content/MudBlazor/MudBlazor.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"75165"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw=\""},{"Name":"Last-Modified","Value":"Wed, 01 Oct 2025 21:51:05 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tjzqk7tnel"},{"Name":"integrity","Value":"sha256-hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.js"}]}]} \ No newline at end of file diff --git a/OpenArchival.Blazor.AdminPages/bin/Debug/net9.0/OpenArchival.Blazor.CustomComponents.staticwebassets.runtime.json b/OpenArchival.Blazor.AdminPages/bin/Debug/net9.0/OpenArchival.Blazor.CustomComponents.staticwebassets.runtime.json new file mode 100644 index 0000000..389aabf --- /dev/null +++ b/OpenArchival.Blazor.AdminPages/bin/Debug/net9.0/OpenArchival.Blazor.CustomComponents.staticwebassets.runtime.json @@ -0,0 +1 @@ +{"ContentRoots":["C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\","C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\obj\\Debug\\net9.0\\compressed\\","C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\"],"Root":{"Children":{"_content":{"Children":{"CodeBeam.MudExtensions":{"Children":{"Mud_Secondary.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"Mud_Secondary.png"},"Patterns":null},"MudExtensions.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"MudExtensions.min.css"},"Patterns":null},"MudExtensions.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"24gzn4tg1a-qz4batx9cb.gz"},"Patterns":null},"MudExtensions.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"MudExtensions.min.js"},"Patterns":null},"MudExtensions.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"stwk5nfoxp-loe7cozwzj.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"MudBlazor":{"Children":{"MudBlazor.min.css":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"MudBlazor.min.css"},"Patterns":null},"MudBlazor.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"tzxjg6is5z-jk5eo7zo4m.gz"},"Patterns":null},"MudBlazor.min.js":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"MudBlazor.min.js"},"Patterns":null},"MudBlazor.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"0wz98yz2xy-tjzqk7tnel.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}} \ No newline at end of file diff --git a/OpenArchival.Blazor.AdminPages/bin/Debug/net9.0/OpenArchival.DataAccess.deps.json b/OpenArchival.Blazor.AdminPages/bin/Debug/net9.0/OpenArchival.DataAccess.deps.json new file mode 100644 index 0000000..68112d5 --- /dev/null +++ b/OpenArchival.Blazor.AdminPages/bin/Debug/net9.0/OpenArchival.DataAccess.deps.json @@ -0,0 +1,1305 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v9.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v9.0": { + "OpenArchival.DataAccess/1.0.0": { + "dependencies": { + "EntityFramework": "6.5.1", + "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "9.0.8", + "Microsoft.EntityFrameworkCore": "9.0.8", + "Microsoft.EntityFrameworkCore.Design": "9.0.8", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8", + "Npgsql": "9.0.3", + "Npgsql.EntityFrameworkCore.PostgreSQL": "9.0.4" + }, + "runtime": { + "OpenArchival.DataAccess.dll": {} + } + }, + "EntityFramework/6.5.1": { + "dependencies": { + "Microsoft.CSharp": "4.7.0", + "System.CodeDom": "6.0.0", + "System.ComponentModel.Annotations": "5.0.0", + "System.Configuration.ConfigurationManager": "6.0.1", + "System.Data.SqlClient": "4.8.6" + }, + "runtime": { + "lib/netstandard2.1/EntityFramework.SqlServer.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.500.124.31603" + }, + "lib/netstandard2.1/EntityFramework.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.500.124.31603" + } + } + }, + "Humanizer.Core/2.14.1": { + "runtime": { + "lib/net6.0/Humanizer.dll": { + "assemblyVersion": "2.14.0.0", + "fileVersion": "2.14.1.48190" + } + } + }, + "Microsoft.AspNetCore.Cryptography.Internal/9.0.8": { + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Cryptography.Internal.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36808" + } + } + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/9.0.8": { + "dependencies": { + "Microsoft.AspNetCore.Cryptography.Internal": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36808" + } + } + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore/9.0.8": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Relational": "9.0.8", + "Microsoft.Extensions.Identity.Stores": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": { + "assemblyVersion": "9.0.8.0", + "fileVersion": "9.0.825.36808" + } + } + }, + "Microsoft.Bcl.AsyncInterfaces/7.0.0": { + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "Microsoft.Build.Framework/17.8.3": {}, + "Microsoft.Build.Locator/1.7.8": { + "runtime": { + "lib/net6.0/Microsoft.Build.Locator.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.7.8.28074" + } + } + }, + "Microsoft.CodeAnalysis.Analyzers/3.3.4": {}, + "Microsoft.CodeAnalysis.Common/4.8.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "3.3.4", + "System.Collections.Immutable": "7.0.0", + "System.Reflection.Metadata": "7.0.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + } + }, + "resources": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.CSharp/4.8.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "4.8.0" + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.CSharp.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + } + }, + "resources": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.CSharp.Workspaces/4.8.0": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.CodeAnalysis.CSharp": "4.8.0", + "Microsoft.CodeAnalysis.Common": "4.8.0", + "Microsoft.CodeAnalysis.Workspaces.Common": "4.8.0" + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + } + }, + "resources": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.Workspaces.Common/4.8.0": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.Bcl.AsyncInterfaces": "7.0.0", + "Microsoft.CodeAnalysis.Common": "4.8.0", + "System.Composition": "7.0.0", + "System.IO.Pipelines": "7.0.0", + "System.Threading.Channels": "7.0.0" + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + } + }, + "resources": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.Workspaces.MSBuild/4.8.0": { + "dependencies": { + "Microsoft.Build.Framework": "17.8.3", + "Microsoft.CodeAnalysis.Common": "4.8.0", + "Microsoft.CodeAnalysis.Workspaces.Common": "4.8.0", + "System.Text.Json": "9.0.8" + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + }, + "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + } + }, + "resources": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CSharp/4.7.0": {}, + "Microsoft.EntityFrameworkCore/9.0.8": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "9.0.8", + "Microsoft.EntityFrameworkCore.Analyzers": "9.0.8", + "Microsoft.Extensions.Caching.Memory": "9.0.8", + "Microsoft.Extensions.Logging": "9.0.8" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.dll": { + "assemblyVersion": "9.0.8.0", + "fileVersion": "9.0.825.36802" + } + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/9.0.8": { + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "assemblyVersion": "9.0.8.0", + "fileVersion": "9.0.825.36802" + } + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/9.0.8": {}, + "Microsoft.EntityFrameworkCore.Design/9.0.8": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.Build.Framework": "17.8.3", + "Microsoft.Build.Locator": "1.7.8", + "Microsoft.CodeAnalysis.CSharp": "4.8.0", + "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.8.0", + "Microsoft.CodeAnalysis.Workspaces.MSBuild": "4.8.0", + "Microsoft.EntityFrameworkCore.Relational": "9.0.8", + "Microsoft.Extensions.Caching.Memory": "9.0.8", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.8", + "Microsoft.Extensions.DependencyModel": "9.0.8", + "Microsoft.Extensions.Logging": "9.0.8", + "Mono.TextTemplating": "3.0.0", + "System.Text.Json": "9.0.8" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Design.dll": { + "assemblyVersion": "9.0.8.0", + "fileVersion": "9.0.825.36802" + } + } + }, + "Microsoft.EntityFrameworkCore.Relational/9.0.8": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "9.0.8", + "Microsoft.Extensions.Caching.Memory": "9.0.8", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.8", + "Microsoft.Extensions.Logging": "9.0.8" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "assemblyVersion": "9.0.8.0", + "fileVersion": "9.0.825.36802" + } + } + }, + "Microsoft.Extensions.Caching.Abstractions/9.0.8": { + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Extensions.Caching.Memory/9.0.8": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "9.0.8", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8", + "Microsoft.Extensions.Logging.Abstractions": "9.0.8", + "Microsoft.Extensions.Options": "9.0.8", + "Microsoft.Extensions.Primitives": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Caching.Memory.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.8": { + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Extensions.DependencyInjection/9.0.8": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.8": { + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Extensions.DependencyModel/9.0.8": { + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyModel.dll": { + "assemblyVersion": "9.0.0.8", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Extensions.Identity.Core/9.0.8": { + "dependencies": { + "Microsoft.AspNetCore.Cryptography.KeyDerivation": "9.0.8", + "Microsoft.Extensions.Logging": "9.0.8", + "Microsoft.Extensions.Options": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Identity.Core.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36808" + } + } + }, + "Microsoft.Extensions.Identity.Stores/9.0.8": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "9.0.8", + "Microsoft.Extensions.Identity.Core": "9.0.8", + "Microsoft.Extensions.Logging": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Identity.Stores.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36808" + } + } + }, + "Microsoft.Extensions.Logging/9.0.8": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "9.0.8", + "Microsoft.Extensions.Logging.Abstractions": "9.0.8", + "Microsoft.Extensions.Options": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.8": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Extensions.Options/9.0.8": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8", + "Microsoft.Extensions.Primitives": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Extensions.Primitives/9.0.8": { + "runtime": { + "lib/net9.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Win32.Registry/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "runtime": { + "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Mono.TextTemplating/3.0.0": { + "dependencies": { + "System.CodeDom": "6.0.0" + }, + "runtime": { + "lib/net6.0/Mono.TextTemplating.dll": { + "assemblyVersion": "3.0.0.0", + "fileVersion": "3.0.0.1" + } + } + }, + "Npgsql/9.0.3": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "9.0.8" + }, + "runtime": { + "lib/net8.0/Npgsql.dll": { + "assemblyVersion": "9.0.3.0", + "fileVersion": "9.0.3.0" + } + } + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/9.0.4": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "9.0.8", + "Microsoft.EntityFrameworkCore.Relational": "9.0.8", + "Npgsql": "9.0.3" + }, + "runtime": { + "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { + "assemblyVersion": "9.0.4.0", + "fileVersion": "9.0.4.0" + } + } + }, + "runtime.native.System.Data.SqlClient.sni/4.7.0": { + "dependencies": { + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0" + } + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "runtimeTargets": { + "runtimes/win-arm64/native/sni.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "4.6.25512.1" + } + } + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "runtimeTargets": { + "runtimes/win-x64/native/sni.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "4.6.25512.1" + } + } + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "runtimeTargets": { + "runtimes/win-x86/native/sni.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "4.6.25512.1" + } + } + }, + "System.CodeDom/6.0.0": { + "runtime": { + "lib/net6.0/System.CodeDom.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Collections.Immutable/7.0.0": {}, + "System.ComponentModel.Annotations/5.0.0": {}, + "System.Composition/7.0.0": { + "dependencies": { + "System.Composition.AttributedModel": "7.0.0", + "System.Composition.Convention": "7.0.0", + "System.Composition.Hosting": "7.0.0", + "System.Composition.Runtime": "7.0.0", + "System.Composition.TypedParts": "7.0.0" + } + }, + "System.Composition.AttributedModel/7.0.0": { + "runtime": { + "lib/net7.0/System.Composition.AttributedModel.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Composition.Convention/7.0.0": { + "dependencies": { + "System.Composition.AttributedModel": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.Composition.Convention.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Composition.Hosting/7.0.0": { + "dependencies": { + "System.Composition.Runtime": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.Composition.Hosting.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Composition.Runtime/7.0.0": { + "runtime": { + "lib/net7.0/System.Composition.Runtime.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Composition.TypedParts/7.0.0": { + "dependencies": { + "System.Composition.AttributedModel": "7.0.0", + "System.Composition.Hosting": "7.0.0", + "System.Composition.Runtime": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.Composition.TypedParts.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Configuration.ConfigurationManager/6.0.1": { + "dependencies": { + "System.Security.Cryptography.ProtectedData": "6.0.0", + "System.Security.Permissions": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.922.41905" + } + } + }, + "System.Data.SqlClient/4.8.6": { + "dependencies": { + "Microsoft.Win32.Registry": "4.7.0", + "System.Security.Principal.Windows": "4.7.0", + "runtime.native.System.Data.SqlClient.sni": "4.7.0" + }, + "runtime": { + "lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "assemblyVersion": "4.6.1.6", + "fileVersion": "4.700.23.52603" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "4.6.1.6", + "fileVersion": "4.700.23.52603" + }, + "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.6.1.6", + "fileVersion": "4.700.23.52603" + } + } + }, + "System.Drawing.Common/6.0.0": { + "dependencies": { + "Microsoft.Win32.SystemEvents": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Drawing.Common.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + }, + "runtimes/win/lib/net6.0/System.Drawing.Common.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.IO.Pipelines/7.0.0": {}, + "System.Reflection.Metadata/7.0.0": { + "dependencies": { + "System.Collections.Immutable": "7.0.0" + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, + "System.Security.AccessControl/6.0.0": {}, + "System.Security.Cryptography.ProtectedData/6.0.0": { + "runtime": { + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Security.Permissions/6.0.0": { + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Windows.Extensions": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Security.Permissions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Security.Principal.Windows/4.7.0": {}, + "System.Text.Json/9.0.8": {}, + "System.Threading.Channels/7.0.0": {}, + "System.Windows.Extensions/6.0.0": { + "dependencies": { + "System.Drawing.Common": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Windows.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + } + } + }, + "libraries": { + "OpenArchival.DataAccess/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "EntityFramework/6.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sQRP2lWg1i3aAGWqdliAM8zrGx7LHMUk+9/MoxUjwfTZYGMXvZ2JYZTlyTm1PqDxvn3c9E3U76TWDON7Y5+CVA==", + "path": "entityframework/6.5.1", + "hashPath": "entityframework.6.5.1.nupkg.sha512" + }, + "Humanizer.Core/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw==", + "path": "humanizer.core/2.14.1", + "hashPath": "humanizer.core.2.14.1.nupkg.sha512" + }, + "Microsoft.AspNetCore.Cryptography.Internal/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NwGO0wh/IjEthBLGA6fWfIiftsNF/paA5RxWp6ji4wWazetJgQ4truR9nU2thAzzFLiXqlg8vGjdVDA8bHu0zA==", + "path": "microsoft.aspnetcore.cryptography.internal/9.0.8", + "hashPath": "microsoft.aspnetcore.cryptography.internal.9.0.8.nupkg.sha512" + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gK70xxXYwwPiXYKYVmLYMuIO5EOGrRtQghmM6PkgtZ/0lgLEjIs//xgSLvZkV/mroNHA1DEqTcqscEj9OzZ1IA==", + "path": "microsoft.aspnetcore.cryptography.keyderivation/9.0.8", + "hashPath": "microsoft.aspnetcore.cryptography.keyderivation.9.0.8.nupkg.sha512" + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-z4q9roxXMQePwFM5tXXZS5sKkU78yYXVkj56NYYx9xKe+mxGkJMV1MaO0GFE6HnnM8bE3Xxhs0hAPw2jKbse6w==", + "path": "microsoft.aspnetcore.identity.entityframeworkcore/9.0.8", + "hashPath": "microsoft.aspnetcore.identity.entityframeworkcore.9.0.8.nupkg.sha512" + }, + "Microsoft.Bcl.AsyncInterfaces/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3aeMZ1N0lJoSyzqiP03hqemtb1BijhsJADdobn/4nsMJ8V1H+CrpuduUe4hlRdx+ikBQju1VGjMD1GJ3Sk05Eg==", + "path": "microsoft.bcl.asyncinterfaces/7.0.0", + "hashPath": "microsoft.bcl.asyncinterfaces.7.0.0.nupkg.sha512" + }, + "Microsoft.Build.Framework/17.8.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NrQZJW8TlKVPx72yltGb8SVz3P5mNRk9fNiD/ao8jRSk48WqIIdCn99q4IjlVmPcruuQ+yLdjNQLL8Rb4c916g==", + "path": "microsoft.build.framework/17.8.3", + "hashPath": "microsoft.build.framework.17.8.3.nupkg.sha512" + }, + "Microsoft.Build.Locator/1.7.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sPy10x527Ph16S2u0yGME4S6ohBKJ69WfjeGG/bvELYeZVmJdKjxgnlL8cJJJLGV/cZIRqSfB12UDB8ICakOog==", + "path": "microsoft.build.locator/1.7.8", + "hashPath": "microsoft.build.locator.1.7.8.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Analyzers/3.3.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AxkxcPR+rheX0SmvpLVIGLhOUXAKG56a64kV9VQZ4y9gR9ZmPXnqZvHJnmwLSwzrEP6junUF11vuc+aqo5r68g==", + "path": "microsoft.codeanalysis.analyzers/3.3.4", + "hashPath": "microsoft.codeanalysis.analyzers.3.3.4.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Common/4.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/jR+e/9aT+BApoQJABlVCKnnggGQbvGh7BKq2/wI1LamxC+LbzhcLj4Vj7gXCofl1n4E521YfF9w0WcASGg/KA==", + "path": "microsoft.codeanalysis.common/4.8.0", + "hashPath": "microsoft.codeanalysis.common.4.8.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.CSharp/4.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+3+qfdb/aaGD8PZRCrsdobbzGs1m9u119SkkJt8e/mk3xLJz/udLtS2T6nY27OTXxBBw10HzAbC8Z9w08VyP/g==", + "path": "microsoft.codeanalysis.csharp/4.8.0", + "hashPath": "microsoft.codeanalysis.csharp.4.8.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.CSharp.Workspaces/4.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3amm4tq4Lo8/BGvg9p3BJh3S9nKq2wqCXfS7138i69TUpo/bD+XvD0hNurpEBtcNZhi1FyutiomKJqVF39ugYA==", + "path": "microsoft.codeanalysis.csharp.workspaces/4.8.0", + "hashPath": "microsoft.codeanalysis.csharp.workspaces.4.8.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Workspaces.Common/4.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LXyV+MJKsKRu3FGJA3OmSk40OUIa/dQCFLOnm5X8MNcujx7hzGu8o+zjXlb/cy5xUdZK2UKYb9YaQ2E8m9QehQ==", + "path": "microsoft.codeanalysis.workspaces.common/4.8.0", + "hashPath": "microsoft.codeanalysis.workspaces.common.4.8.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Workspaces.MSBuild/4.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IEYreI82QZKklp54yPHxZNG9EKSK6nHEkeuf+0Asie9llgS1gp0V1hw7ODG+QyoB7MuAnNQHmeV1Per/ECpv6A==", + "path": "microsoft.codeanalysis.workspaces.msbuild/4.8.0", + "hashPath": "microsoft.codeanalysis.workspaces.msbuild.4.8.0.nupkg.sha512" + }, + "Microsoft.CSharp/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", + "path": "microsoft.csharp/4.7.0", + "hashPath": "microsoft.csharp.4.7.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bNGdPhN762+BIIO5MFYLjafRqkSS1MqLOc/erd55InvLnFxt9H3N5JNsuag1ZHyBor1VtD42U0CHpgqkWeAYgQ==", + "path": "microsoft.entityframeworkcore/9.0.8", + "hashPath": "microsoft.entityframeworkcore.9.0.8.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Abstractions/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-B2yfAIQRRAQ4zvvWqh+HudD+juV3YoLlpXnrog3tU0PM9AFpuq6xo0+mEglN1P43WgdcUiF+65CWBcZe35s15Q==", + "path": "microsoft.entityframeworkcore.abstractions/9.0.8", + "hashPath": "microsoft.entityframeworkcore.abstractions.9.0.8.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Analyzers/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2EYStCXt4Hi9p3J3EYMQbItJDtASJd064Kcs8C8hj8Jt5srILrR9qlaL0Ryvk8NrWQoCQvIELsmiuqLEZMLvGA==", + "path": "microsoft.entityframeworkcore.analyzers/9.0.8", + "hashPath": "microsoft.entityframeworkcore.analyzers.9.0.8.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Design/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-02e8OcoumSUAES3VkXrMT9EnNCUKWJoifn5+8fFEbAtRhKL3xg2a/Mj6rsAUGF7tkYFox6oKzJCn0jbm6b8Lbw==", + "path": "microsoft.entityframeworkcore.design/9.0.8", + "hashPath": "microsoft.entityframeworkcore.design.9.0.8.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Relational/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OVhfyxiHxMvYpwQ8Jy3YZi4koy6TK5/Q7C1oq3z6db+HEGuu6x9L1BX5zDIdJxxlRePMyO4D8ORiXj/D7+MUqw==", + "path": "microsoft.entityframeworkcore.relational/9.0.8", + "hashPath": "microsoft.entityframeworkcore.relational.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Abstractions/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4h7bsVoKoiK+SlPM+euX/ayGnKZhl47pPCidLTiio9xyG+vgVVfcYxcYQgjm0SCrdSxjG0EGIAKF8EFr3G8Ifw==", + "path": "microsoft.extensions.caching.abstractions/9.0.8", + "hashPath": "microsoft.extensions.caching.abstractions.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Memory/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-grR+oPyj8HVn4DT8CFUUdSw2pZZKS13KjytFe4txpHQliGM1GEDotohmjgvyl3hm7RFB3FRqvbouEX3/1ewp5A==", + "path": "microsoft.extensions.caching.memory/9.0.8", + "hashPath": "microsoft.extensions.caching.memory.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yNou2KM35RvzOh4vUFtl2l33rWPvOCoba+nzEDJ+BgD8aOL/jew4WPCibQvntRfOJ2pJU8ARygSMD+pdjvDHuA==", + "path": "microsoft.extensions.configuration.abstractions/9.0.8", + "hashPath": "microsoft.extensions.configuration.abstractions.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JJjI2Fa+QtZcUyuNjbKn04OjIUX5IgFGFu/Xc+qvzh1rXdZHLcnqqVXhR4093bGirTwacRlHiVg1XYI9xum6QQ==", + "path": "microsoft.extensions.dependencyinjection/9.0.8", + "hashPath": "microsoft.extensions.dependencyinjection.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xY3lTjj4+ZYmiKIkyWitddrp1uL5uYiweQjqo4BKBw01ZC4HhcfgLghDpPZcUlppgWAFqFy9SgkiYWOMx365pw==", + "path": "microsoft.extensions.dependencyinjection.abstractions/9.0.8", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyModel/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3CW02zNjyqJ2eORo8Zkznpw6+QvK+tYUKZgKuKuAIYdy73TRFvpaqCwYws1k6/lMSJ7ZqABfWn0/wa5bRsIJ4w==", + "path": "microsoft.extensions.dependencymodel/9.0.8", + "hashPath": "microsoft.extensions.dependencymodel.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Identity.Core/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-giUYz84GHAizDucZp5vWAusDO2s9Jrrg2jQ6HUQNGs5HQMKJVobLPMQSiyg8R4yecH0pIc0QjANh0B/Kw13BHA==", + "path": "microsoft.extensions.identity.core/9.0.8", + "hashPath": "microsoft.extensions.identity.core.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Identity.Stores/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sycaHcq78yI591+KxEdd53a7pJGQEl9H/wDsFkaPNE9g7loyq8vufPcc/9RH3KlGt5joR5Ey7PdoRSrlLjCgJg==", + "path": "microsoft.extensions.identity.stores/9.0.8", + "hashPath": "microsoft.extensions.identity.stores.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Z/7ze+0iheT7FJeZPqJKARYvyC2bmwu3whbm/48BJjdlGVvgDguoCqJIkI/67NkroTYobd5geai1WheNQvWrgA==", + "path": "microsoft.extensions.logging/9.0.8", + "hashPath": "microsoft.extensions.logging.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pYnAffJL7ARD/HCnnPvnFKSIHnTSmWz84WIlT9tPeQ4lHNiu0Az7N/8itihWvcF8sT+VVD5lq8V+ckMzu4SbOw==", + "path": "microsoft.extensions.logging.abstractions/9.0.8", + "hashPath": "microsoft.extensions.logging.abstractions.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Options/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OmTaQ0v4gxGQkehpwWIqPoEiwsPuG/u4HUsbOFoWGx4DKET2AXzopnFe/fE608FIhzc/kcg2p8JdyMRCCUzitQ==", + "path": "microsoft.extensions.options/9.0.8", + "hashPath": "microsoft.extensions.options.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tizSIOEsIgSNSSh+hKeUVPK7xmTIjR8s+mJWOu1KXV3htvNQiPMFRMO17OdI1y/4ZApdBVk49u/08QGC9yvLug==", + "path": "microsoft.extensions.primitives/9.0.8", + "hashPath": "microsoft.extensions.primitives.9.0.8.nupkg.sha512" + }, + "Microsoft.Win32.Registry/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", + "path": "microsoft.win32.registry/4.7.0", + "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512" + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==", + "path": "microsoft.win32.systemevents/6.0.0", + "hashPath": "microsoft.win32.systemevents.6.0.0.nupkg.sha512" + }, + "Mono.TextTemplating/3.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YqueG52R/Xej4VVbKuRIodjiAhV0HR/XVbLbNrJhCZnzjnSjgMJ/dCdV0akQQxavX6hp/LC6rqLGLcXeQYU7XA==", + "path": "mono.texttemplating/3.0.0", + "hashPath": "mono.texttemplating.3.0.0.nupkg.sha512" + }, + "Npgsql/9.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tPvY61CxOAWxNsKLEBg+oR646X4Bc8UmyQ/tJszL/7mEmIXQnnBhVJZrZEEUv0Bstu0mEsHZD5At3EO8zQRAYw==", + "path": "npgsql/9.0.3", + "hashPath": "npgsql.9.0.3.nupkg.sha512" + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/9.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mw5vcY2IEc7L+IeGrxpp/J5OSnCcjkjAgJYCm/eD52wpZze8zsSifdqV7zXslSMmfJG2iIUGZyo3KuDtEFKwMQ==", + "path": "npgsql.entityframeworkcore.postgresql/9.0.4", + "hashPath": "npgsql.entityframeworkcore.postgresql.9.0.4.nupkg.sha512" + }, + "runtime.native.System.Data.SqlClient.sni/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9kyFSIdN3T0qjDQ2R0HRXYIhS3l5psBzQi6qqhdLz+SzFyEy4sVxNOke+yyYv8Cu8rPER12c3RDjLT8wF3WBYQ==", + "path": "runtime.native.system.data.sqlclient.sni/4.7.0", + "hashPath": "runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512" + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==", + "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0", + "hashPath": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==", + "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0", + "hashPath": "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==", + "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0", + "hashPath": "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" + }, + "System.CodeDom/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CPc6tWO1LAer3IzfZufDBRL+UZQcj5uS207NHALQzP84Vp/z6wF0Aa0YZImOQY8iStY0A2zI/e3ihKNPfUm8XA==", + "path": "system.codedom/6.0.0", + "hashPath": "system.codedom.6.0.0.nupkg.sha512" + }, + "System.Collections.Immutable/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dQPcs0U1IKnBdRDBkrCTi1FoajSTBzLcVTpjO4MBCMC7f4pDOIPzgBoX8JjG7X6uZRJ8EBxsi8+DR1JuwjnzOQ==", + "path": "system.collections.immutable/7.0.0", + "hashPath": "system.collections.immutable.7.0.0.nupkg.sha512" + }, + "System.ComponentModel.Annotations/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==", + "path": "system.componentmodel.annotations/5.0.0", + "hashPath": "system.componentmodel.annotations.5.0.0.nupkg.sha512" + }, + "System.Composition/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tRwgcAkDd85O8Aq6zHDANzQaq380cek9lbMg5Qma46u5BZXq/G+XvIYmu+UI+BIIZ9zssXLYrkTykEqxxvhcmg==", + "path": "system.composition/7.0.0", + "hashPath": "system.composition.7.0.0.nupkg.sha512" + }, + "System.Composition.AttributedModel/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2QzClqjElKxgI1jK1Jztnq44/8DmSuTSGGahXqQ4TdEV0h9s2KikQZIgcEqVzR7OuWDFPGLHIprBJGQEPr8fAQ==", + "path": "system.composition.attributedmodel/7.0.0", + "hashPath": "system.composition.attributedmodel.7.0.0.nupkg.sha512" + }, + "System.Composition.Convention/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IMhTlpCs4HmlD8B+J8/kWfwX7vrBBOs6xyjSTzBlYSs7W4OET4tlkR/Sg9NG8jkdJH9Mymq0qGdYS1VPqRTBnQ==", + "path": "system.composition.convention/7.0.0", + "hashPath": "system.composition.convention.7.0.0.nupkg.sha512" + }, + "System.Composition.Hosting/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eB6gwN9S+54jCTBJ5bpwMOVerKeUfGGTYCzz3QgDr1P55Gg/Wb27ShfPIhLMjmZ3MoAKu8uUSv6fcCdYJTN7Bg==", + "path": "system.composition.hosting/7.0.0", + "hashPath": "system.composition.hosting.7.0.0.nupkg.sha512" + }, + "System.Composition.Runtime/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aZJ1Zr5Txe925rbo4742XifEyW0MIni1eiUebmcrP3HwLXZ3IbXUj4MFMUH/RmnJOAQiS401leg/2Sz1MkApDw==", + "path": "system.composition.runtime/7.0.0", + "hashPath": "system.composition.runtime.7.0.0.nupkg.sha512" + }, + "System.Composition.TypedParts/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZK0KNPfbtxVceTwh+oHNGUOYV2WNOHReX2AXipuvkURC7s/jPwoWfsu3SnDBDgofqbiWr96geofdQ2erm/KTHg==", + "path": "system.composition.typedparts/7.0.0", + "hashPath": "system.composition.typedparts.7.0.0.nupkg.sha512" + }, + "System.Configuration.ConfigurationManager/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jXw9MlUu/kRfEU0WyTptAVueupqIeE3/rl0EZDMlf8pcvJnitQ8HeVEp69rZdaStXwTV72boi/Bhw8lOeO+U2w==", + "path": "system.configuration.configurationmanager/6.0.1", + "hashPath": "system.configuration.configurationmanager.6.0.1.nupkg.sha512" + }, + "System.Data.SqlClient/4.8.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2Ij/LCaTQRyAi5lAv7UUTV9R2FobC8xN9mE0fXBZohum/xLl8IZVmE98Rq5ugQHjCgTBRKqpXRb4ORulRdA6Ig==", + "path": "system.data.sqlclient/4.8.6", + "hashPath": "system.data.sqlclient.4.8.6.nupkg.sha512" + }, + "System.Drawing.Common/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==", + "path": "system.drawing.common/6.0.0", + "hashPath": "system.drawing.common.6.0.0.nupkg.sha512" + }, + "System.IO.Pipelines/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jRn6JYnNPW6xgQazROBLSfpdoczRw694vO5kKvMcNnpXuolEixUyw6IBuBs2Y2mlSX/LdLvyyWmfXhaI3ND1Yg==", + "path": "system.io.pipelines/7.0.0", + "hashPath": "system.io.pipelines.7.0.0.nupkg.sha512" + }, + "System.Reflection.Metadata/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MclTG61lsD9sYdpNz9xsKBzjsmsfCtcMZYXz/IUr2zlhaTaABonlr1ESeompTgM+Xk+IwtGYU7/voh3YWB/fWw==", + "path": "system.reflection.metadata/7.0.0", + "hashPath": "system.reflection.metadata.7.0.0.nupkg.sha512" + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" + }, + "System.Security.AccessControl/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==", + "path": "system.security.accesscontrol/6.0.0", + "hashPath": "system.security.accesscontrol.6.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.ProtectedData/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==", + "path": "system.security.cryptography.protecteddata/6.0.0", + "hashPath": "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512" + }, + "System.Security.Permissions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==", + "path": "system.security.permissions/6.0.0", + "hashPath": "system.security.permissions.6.0.0.nupkg.sha512" + }, + "System.Security.Principal.Windows/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==", + "path": "system.security.principal.windows/4.7.0", + "hashPath": "system.security.principal.windows.4.7.0.nupkg.sha512" + }, + "System.Text.Json/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mIQir9jBqk0V7X0Nw5hzPJZC8DuGdf+2DS3jAVsr6rq5+/VyH5rza0XGcONJUWBrZ+G6BCwNyjWYd9lncBu48A==", + "path": "system.text.json/9.0.8", + "hashPath": "system.text.json.9.0.8.nupkg.sha512" + }, + "System.Threading.Channels/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qmeeYNROMsONF6ndEZcIQ+VxR4Q/TX/7uIVLJqtwIWL7dDWeh0l1UIqgo4wYyjG//5lUNhwkLDSFl+pAWO6oiA==", + "path": "system.threading.channels/7.0.0", + "hashPath": "system.threading.channels.7.0.0.nupkg.sha512" + }, + "System.Windows.Extensions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==", + "path": "system.windows.extensions/6.0.0", + "hashPath": "system.windows.extensions.6.0.0.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/OpenArchival.Blazor.AdminPages/bin/Debug/net9.0/OpenArchival.DataAccess.dll b/OpenArchival.Blazor.AdminPages/bin/Debug/net9.0/OpenArchival.DataAccess.dll new file mode 100644 index 0000000..0a0293e Binary files /dev/null and b/OpenArchival.Blazor.AdminPages/bin/Debug/net9.0/OpenArchival.DataAccess.dll differ diff --git a/OpenArchival.Blazor.AdminPages/bin/Debug/net9.0/OpenArchival.DataAccess.exe b/OpenArchival.Blazor.AdminPages/bin/Debug/net9.0/OpenArchival.DataAccess.exe new file mode 100644 index 0000000..0caa7a8 Binary files /dev/null and b/OpenArchival.Blazor.AdminPages/bin/Debug/net9.0/OpenArchival.DataAccess.exe differ diff --git a/OpenArchival.Blazor.AdminPages/bin/Debug/net9.0/OpenArchival.DataAccess.pdb b/OpenArchival.Blazor.AdminPages/bin/Debug/net9.0/OpenArchival.DataAccess.pdb new file mode 100644 index 0000000..7e038b6 Binary files /dev/null and b/OpenArchival.Blazor.AdminPages/bin/Debug/net9.0/OpenArchival.DataAccess.pdb differ diff --git a/OpenArchival.Blazor.AdminPages/bin/Debug/net9.0/OpenArchival.DataAccess.runtimeconfig.json b/OpenArchival.Blazor.AdminPages/bin/Debug/net9.0/OpenArchival.DataAccess.runtimeconfig.json new file mode 100644 index 0000000..1f6a32f --- /dev/null +++ b/OpenArchival.Blazor.AdminPages/bin/Debug/net9.0/OpenArchival.DataAccess.runtimeconfig.json @@ -0,0 +1,20 @@ +{ + "runtimeOptions": { + "tfm": "net9.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "9.0.0" + }, + { + "name": "Microsoft.AspNetCore.App", + "version": "9.0.0" + } + ], + "configProperties": { + "System.GC.Server": true, + "System.Reflection.NullabilityInfoContext.IsSupported": true, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/OpenArchival.Blazor.AdminPages/bin/Debug/net9.0/OpenArchival.DataAccess.staticwebassets.endpoints.json b/OpenArchival.Blazor.AdminPages/bin/Debug/net9.0/OpenArchival.DataAccess.staticwebassets.endpoints.json new file mode 100644 index 0000000..5576e88 --- /dev/null +++ b/OpenArchival.Blazor.AdminPages/bin/Debug/net9.0/OpenArchival.DataAccess.staticwebassets.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[]} \ No newline at end of file diff --git a/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs b/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs new file mode 100644 index 0000000..feda5e9 --- /dev/null +++ b/OpenArchival.Blazor.AdminPages/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/Docker/DOCKER_REGISTRY.cache b/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/OpenArch.0ED9BC11.Up2Date similarity index 100% rename from obj/Docker/DOCKER_REGISTRY.cache rename to OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/OpenArch.0ED9BC11.Up2Date diff --git a/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/OpenArchival.Blazor.AdminPages.AssemblyInfo.cs b/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/OpenArchival.Blazor.AdminPages.AssemblyInfo.cs new file mode 100644 index 0000000..095f464 --- /dev/null +++ b/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/OpenArchival.Blazor.AdminPages.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// 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("OpenArchival.Blazor.AdminPages")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+781793a27f2e164808340b1adb5ce70e1800b187")] +[assembly: System.Reflection.AssemblyProductAttribute("OpenArchival.Blazor.AdminPages")] +[assembly: System.Reflection.AssemblyTitleAttribute("OpenArchival.Blazor.AdminPages")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/OpenArchival.Blazor.AdminPages.AssemblyInfoInputs.cache b/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/OpenArchival.Blazor.AdminPages.AssemblyInfoInputs.cache new file mode 100644 index 0000000..9923ae8 --- /dev/null +++ b/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/OpenArchival.Blazor.AdminPages.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +03f880883adc090fedb59e9491b447c2933338d46d6d2d065711b931694f9365 diff --git a/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/OpenArchival.Blazor.AdminPages.GeneratedMSBuildEditorConfig.editorconfig b/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/OpenArchival.Blazor.AdminPages.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..6f6f6d1 --- /dev/null +++ b/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/OpenArchival.Blazor.AdminPages.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,64 @@ +is_global = true +build_property.MudDebugAnalyzer = +build_property.MudAllowedAttributePattern = +build_property.MudAllowedAttributeList = +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 +build_property.RootNamespace = OpenArchival.Blazor.AdminPages +build_property.RootNamespace = OpenArchival.Blazor.AdminPages +build_property.ProjectDir = C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.AdminPages\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.RazorLangVersion = 9.0 +build_property.SupportLocalizedComponentNames = +build_property.GenerateRazorMetadataSourceChecksumAttributes = +build_property.MSBuildProjectDirectory = C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.AdminPages +build_property._RazorSourceGeneratorDebug = +build_property.EffectiveAnalysisLevelStyle = 9.0 +build_property.EnableCodeStyleSeverity = + +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor.AdminPages/ArchiveConfiguration.razor] +build_metadata.AdditionalFiles.TargetPath = QXJjaGl2ZUNvbmZpZ3VyYXRpb24ucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor.AdminPages/ArchiveItems/AddArchiveGroupingComponent.razor] +build_metadata.AdditionalFiles.TargetPath = QXJjaGl2ZUl0ZW1zXEFkZEFyY2hpdmVHcm91cGluZ0NvbXBvbmVudC5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor.AdminPages/ArchiveItems/AddGroupingDialog.razor] +build_metadata.AdditionalFiles.TargetPath = QXJjaGl2ZUl0ZW1zXEFkZEdyb3VwaW5nRGlhbG9nLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor.AdminPages/ArchiveItems/ArchiveEntryCreatorCard.razor] +build_metadata.AdditionalFiles.TargetPath = QXJjaGl2ZUl0ZW1zXEFyY2hpdmVFbnRyeUNyZWF0b3JDYXJkLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor.AdminPages/ArchiveItems/ArchiveGroupingsTable.razor] +build_metadata.AdditionalFiles.TargetPath = QXJjaGl2ZUl0ZW1zXEFyY2hpdmVHcm91cGluZ3NUYWJsZS5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor.AdminPages/ArchiveItems/IdentifierTextBox.razor] +build_metadata.AdditionalFiles.TargetPath = QXJjaGl2ZUl0ZW1zXElkZW50aWZpZXJUZXh0Qm94LnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor.AdminPages/Categories/CategoriesListComponent.razor] +build_metadata.AdditionalFiles.TargetPath = Q2F0ZWdvcmllc1xDYXRlZ29yaWVzTGlzdENvbXBvbmVudC5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor.AdminPages/Categories/CategoryCreatorDialog.razor] +build_metadata.AdditionalFiles.TargetPath = Q2F0ZWdvcmllc1xDYXRlZ29yeUNyZWF0b3JEaWFsb2cucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor.AdminPages/Categories/CategoryFieldCardComponent.razor] +build_metadata.AdditionalFiles.TargetPath = Q2F0ZWdvcmllc1xDYXRlZ29yeUZpZWxkQ2FyZENvbXBvbmVudC5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor.AdminPages/Categories/ViewAddCategoriesComponent.razor] +build_metadata.AdditionalFiles.TargetPath = Q2F0ZWdvcmllc1xWaWV3QWRkQ2F0ZWdvcmllc0NvbXBvbmVudC5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = diff --git a/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/OpenArchival.Blazor.AdminPages.GlobalUsings.g.cs b/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/OpenArchival.Blazor.AdminPages.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/OpenArchival.Blazor.AdminPages.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/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/OpenArchival.Blazor.AdminPages.RazorAssemblyInfo.cache b/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/OpenArchival.Blazor.AdminPages.RazorAssemblyInfo.cache new file mode 100644 index 0000000..ecb9c97 --- /dev/null +++ b/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/OpenArchival.Blazor.AdminPages.RazorAssemblyInfo.cache @@ -0,0 +1 @@ +d5ac7ab69059af111e9d7125adeb7b174ca570725d4b64a544cca7bd11ac7ca0 diff --git a/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/OpenArchival.Blazor.AdminPages.RazorAssemblyInfo.cs b/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/OpenArchival.Blazor.AdminPages.RazorAssemblyInfo.cs new file mode 100644 index 0000000..cd3853c --- /dev/null +++ b/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/OpenArchival.Blazor.AdminPages.RazorAssemblyInfo.cs @@ -0,0 +1,18 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ProvideApplicationPartFactoryAttribute("Microsoft.AspNetCore.Mvc.ApplicationParts.ConsolidatedAssemblyApplicationPartFact" + + "ory, Microsoft.AspNetCore.Mvc.Razor")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/OpenArchival.Blazor.AdminPages.assets.cache b/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/OpenArchival.Blazor.AdminPages.assets.cache new file mode 100644 index 0000000..2d836bb Binary files /dev/null and b/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/OpenArchival.Blazor.AdminPages.assets.cache differ diff --git a/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/OpenArchival.Blazor.AdminPages.csproj.AssemblyReference.cache b/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/OpenArchival.Blazor.AdminPages.csproj.AssemblyReference.cache new file mode 100644 index 0000000..28a8750 Binary files /dev/null and b/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/OpenArchival.Blazor.AdminPages.csproj.AssemblyReference.cache differ diff --git a/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/OpenArchival.Blazor.AdminPages.csproj.CoreCompileInputs.cache b/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/OpenArchival.Blazor.AdminPages.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..80ee250 --- /dev/null +++ b/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/OpenArchival.Blazor.AdminPages.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +7b14d6cd8ca2cd454322fa5abee82aff16a4403d21d3bf15fd4c259eff23b076 diff --git a/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/OpenArchival.Blazor.AdminPages.csproj.FileListAbsolute.txt b/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/OpenArchival.Blazor.AdminPages.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..a397c6e --- /dev/null +++ b/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/OpenArchival.Blazor.AdminPages.csproj.FileListAbsolute.txt @@ -0,0 +1,48 @@ +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.AdminPages\bin\Debug\net9.0\OpenArchival.DataAccess.deps.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.AdminPages\bin\Debug\net9.0\OpenArchival.DataAccess.runtimeconfig.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.AdminPages\bin\Debug\net9.0\OpenArchival.DataAccess.staticwebassets.endpoints.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.AdminPages\bin\Debug\net9.0\OpenArchival.DataAccess.exe +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.AdminPages\bin\Debug\net9.0\OpenArchival.Blazor.CustomComponents.staticwebassets.runtime.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.AdminPages\bin\Debug\net9.0\OpenArchival.Blazor.CustomComponents.staticwebassets.endpoints.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.AdminPages\bin\Debug\net9.0\OpenArchival.Blazor.AdminPages.staticwebassets.runtime.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.AdminPages\bin\Debug\net9.0\OpenArchival.Blazor.AdminPages.staticwebassets.endpoints.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.AdminPages\bin\Debug\net9.0\OpenArchival.Blazor.AdminPages.deps.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.AdminPages\bin\Debug\net9.0\OpenArchival.Blazor.AdminPages.runtimeconfig.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.AdminPages\bin\Debug\net9.0\OpenArchival.Blazor.AdminPages.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.AdminPages\bin\Debug\net9.0\OpenArchival.Blazor.AdminPages.pdb +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.AdminPages\bin\Debug\net9.0\OpenArchival.Blazor.CustomComponents.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.AdminPages\bin\Debug\net9.0\OpenArchival.DataAccess.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.AdminPages\bin\Debug\net9.0\OpenArchival.Blazor.CustomComponents.pdb +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.AdminPages\bin\Debug\net9.0\OpenArchival.DataAccess.pdb +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.AdminPages\obj\Debug\net9.0\OpenArchival.Blazor.AdminPages.csproj.AssemblyReference.cache +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.AdminPages\obj\Debug\net9.0\rpswa.dswa.cache.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.AdminPages\obj\Debug\net9.0\OpenArchival.Blazor.AdminPages.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.AdminPages\obj\Debug\net9.0\OpenArchival.Blazor.AdminPages.AssemblyInfoInputs.cache +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.AdminPages\obj\Debug\net9.0\OpenArchival.Blazor.AdminPages.AssemblyInfo.cs +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.AdminPages\obj\Debug\net9.0\OpenArchival.Blazor.AdminPages.csproj.CoreCompileInputs.cache +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.AdminPages\obj\Debug\net9.0\OpenArchival.Blazor.AdminPages.sourcelink.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.AdminPages\obj\Debug\net9.0\rjimswa.dswa.cache.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.AdminPages\obj\Debug\net9.0\rjsmrazor.dswa.cache.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.AdminPages\obj\Debug\net9.0\rjsmcshtml.dswa.cache.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.AdminPages\obj\Debug\net9.0\scopedcss\bundle\OpenArchival.Blazor.AdminPages.styles.css +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.AdminPages\obj\Debug\net9.0\compressed\tzxjg6is5z-jk5eo7zo4m.gz +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.AdminPages\obj\Debug\net9.0\compressed\0wz98yz2xy-tjzqk7tnel.gz +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.AdminPages\obj\Debug\net9.0\compressed\24gzn4tg1a-qz4batx9cb.gz +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.AdminPages\obj\Debug\net9.0\compressed\stwk5nfoxp-loe7cozwzj.gz +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.AdminPages\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.AdminPages\obj\Debug\net9.0\staticwebassets.build.json.cache +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.AdminPages\obj\Debug\net9.0\staticwebassets.development.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.AdminPages\obj\Debug\net9.0\staticwebassets.build.endpoints.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.AdminPages\obj\Debug\net9.0\staticwebassets\msbuild.OpenArchival.Blazor.AdminPages.Microsoft.AspNetCore.StaticWebAssets.props +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.AdminPages\obj\Debug\net9.0\staticwebassets\msbuild.OpenArchival.Blazor.AdminPages.Microsoft.AspNetCore.StaticWebAssetEndpoints.props +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.AdminPages\obj\Debug\net9.0\staticwebassets\msbuild.build.OpenArchival.Blazor.AdminPages.props +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.AdminPages\obj\Debug\net9.0\staticwebassets\msbuild.buildMultiTargeting.OpenArchival.Blazor.AdminPages.props +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.AdminPages\obj\Debug\net9.0\staticwebassets\msbuild.buildTransitive.OpenArchival.Blazor.AdminPages.props +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.AdminPages\obj\Debug\net9.0\staticwebassets.pack.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.AdminPages\obj\Debug\net9.0\staticwebassets.upToDateCheck.txt +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.AdminPages\obj\Debug\net9.0\OpenArch.0ED9BC11.Up2Date +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.AdminPages\obj\Debug\net9.0\OpenArchival.Blazor.AdminPages.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.AdminPages\obj\Debug\net9.0\refint\OpenArchival.Blazor.AdminPages.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.AdminPages\obj\Debug\net9.0\OpenArchival.Blazor.AdminPages.pdb +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.AdminPages\obj\Debug\net9.0\OpenArchival.Blazor.AdminPages.genruntimeconfig.cache +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.AdminPages\obj\Debug\net9.0\ref\OpenArchival.Blazor.AdminPages.dll diff --git a/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/OpenArchival.Blazor.AdminPages.dll b/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/OpenArchival.Blazor.AdminPages.dll new file mode 100644 index 0000000..ccec9ca Binary files /dev/null and b/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/OpenArchival.Blazor.AdminPages.dll differ diff --git a/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/OpenArchival.Blazor.AdminPages.genruntimeconfig.cache b/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/OpenArchival.Blazor.AdminPages.genruntimeconfig.cache new file mode 100644 index 0000000..80f7831 --- /dev/null +++ b/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/OpenArchival.Blazor.AdminPages.genruntimeconfig.cache @@ -0,0 +1 @@ +67d207aeb63062388b5b620fadc77cd4f736081899d2ec9627500cc089e0041d diff --git a/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/OpenArchival.Blazor.AdminPages.pdb b/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/OpenArchival.Blazor.AdminPages.pdb new file mode 100644 index 0000000..0e40e46 Binary files /dev/null and b/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/OpenArchival.Blazor.AdminPages.pdb differ diff --git a/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/OpenArchival.Blazor.AdminPages.sourcelink.json b/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/OpenArchival.Blazor.AdminPages.sourcelink.json new file mode 100644 index 0000000..bd84b90 --- /dev/null +++ b/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/OpenArchival.Blazor.AdminPages.sourcelink.json @@ -0,0 +1 @@ +{"documents":{"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\*":"https://raw.githubusercontent.com/vtallen/Open-Archival/781793a27f2e164808340b1adb5ce70e1800b187/*"}} \ No newline at end of file diff --git a/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/compressed/0wz98yz2xy-tjzqk7tnel.gz b/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/compressed/0wz98yz2xy-tjzqk7tnel.gz new file mode 100644 index 0000000..1be9dc7 Binary files /dev/null and b/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/compressed/0wz98yz2xy-tjzqk7tnel.gz differ diff --git a/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/compressed/24gzn4tg1a-qz4batx9cb.gz b/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/compressed/24gzn4tg1a-qz4batx9cb.gz new file mode 100644 index 0000000..286d510 Binary files /dev/null and b/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/compressed/24gzn4tg1a-qz4batx9cb.gz differ diff --git a/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/compressed/stwk5nfoxp-loe7cozwzj.gz b/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/compressed/stwk5nfoxp-loe7cozwzj.gz new file mode 100644 index 0000000..0a77fee Binary files /dev/null and b/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/compressed/stwk5nfoxp-loe7cozwzj.gz differ diff --git a/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/compressed/tzxjg6is5z-jk5eo7zo4m.gz b/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/compressed/tzxjg6is5z-jk5eo7zo4m.gz new file mode 100644 index 0000000..0bd6298 Binary files /dev/null and b/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/compressed/tzxjg6is5z-jk5eo7zo4m.gz differ diff --git a/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/rbcswa.dswa.cache.json b/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/rbcswa.dswa.cache.json new file mode 100644 index 0000000..3c8f3db --- /dev/null +++ b/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/rbcswa.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"2ilJ2M8+ZdH0swl4cXFj9Ji8kay0R08ISE/fEc+OL0o=","FingerprintPatternsHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["NIIUVBxFVNWalGqMaYRb4Q0pTQcZfvgM\u002BLga0cJRnCk=","NkT/CTXRHggrpy2O1LIl4\u002BJi5JQLfpcuHaZxMH4OmZU=","rb\u002BHPKjKiQ6zdPsR2gvX0QVq699ulWvTMfcPOplKwrs=","t6btITApcWKecgR4\u002BP2MYIM\u002BeXc80LyAcPD1ABXwCBg="],"CachedAssets":{"NIIUVBxFVNWalGqMaYRb4Q0pTQcZfvgM\u002BLga0cJRnCk=":{"Identity":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.AdminPages\\obj\\Debug\\net9.0\\compressed\\tzxjg6is5z-jk5eo7zo4m.gz","SourceId":"MudBlazor","SourceType":"Package","ContentRoot":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.AdminPages\\obj\\Debug\\net9.0\\compressed\\","BasePath":"_content/MudBlazor","RelativePath":"MudBlazor.min.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\MudBlazor.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"93u47y2o0e","Integrity":"VcBMO3aXrzxl\u002BjfWY\u002BTaxPKsd3L0UWjeJZliEXOyzzI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\MudBlazor.min.css","FileLength":65509,"LastWriteTime":"2025-10-08T17:06:28.0919138+00:00"},"NkT/CTXRHggrpy2O1LIl4\u002BJi5JQLfpcuHaZxMH4OmZU=":{"Identity":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.AdminPages\\obj\\Debug\\net9.0\\compressed\\0wz98yz2xy-tjzqk7tnel.gz","SourceId":"MudBlazor","SourceType":"Package","ContentRoot":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.AdminPages\\obj\\Debug\\net9.0\\compressed\\","BasePath":"_content/MudBlazor","RelativePath":"MudBlazor.min.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\MudBlazor.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"c1g0o1u83p","Integrity":"0BJxfo\u002BEOJvNKoBv/2ahm4RKrPjv7PhB/R16C3XOHDo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\MudBlazor.min.js","FileLength":16352,"LastWriteTime":"2025-10-08T17:06:28.0816788+00:00"},"rb\u002BHPKjKiQ6zdPsR2gvX0QVq699ulWvTMfcPOplKwrs=":{"Identity":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.AdminPages\\obj\\Debug\\net9.0\\compressed\\24gzn4tg1a-qz4batx9cb.gz","SourceId":"CodeBeam.MudExtensions","SourceType":"Package","ContentRoot":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.AdminPages\\obj\\Debug\\net9.0\\compressed\\","BasePath":"_content/CodeBeam.MudExtensions","RelativePath":"MudExtensions.min.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\MudExtensions.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"cn6plcuhii","Integrity":"6PJ7t7WR38pQTSYe6IR0pbqo2cIZK5wuW/w26kprtBg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\MudExtensions.min.css","FileLength":3383,"LastWriteTime":"2025-10-08T17:06:28.0771246+00:00"},"t6btITApcWKecgR4\u002BP2MYIM\u002BeXc80LyAcPD1ABXwCBg=":{"Identity":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.AdminPages\\obj\\Debug\\net9.0\\compressed\\stwk5nfoxp-loe7cozwzj.gz","SourceId":"CodeBeam.MudExtensions","SourceType":"Package","ContentRoot":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.AdminPages\\obj\\Debug\\net9.0\\compressed\\","BasePath":"_content/CodeBeam.MudExtensions","RelativePath":"MudExtensions.min.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\MudExtensions.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"z9m1gj6ro7","Integrity":"B4PUgpr06\u002Bd3lAMWknp0EVkaGxPZJdpp5/UidGHzvnc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\MudExtensions.min.js","FileLength":196,"LastWriteTime":"2025-10-08T17:06:28.076114+00:00"}},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/ref/OpenArchival.Blazor.AdminPages.dll b/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/ref/OpenArchival.Blazor.AdminPages.dll new file mode 100644 index 0000000..cd98e5f Binary files /dev/null and b/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/ref/OpenArchival.Blazor.AdminPages.dll differ diff --git a/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/refint/OpenArchival.Blazor.AdminPages.dll b/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/refint/OpenArchival.Blazor.AdminPages.dll new file mode 100644 index 0000000..cd98e5f Binary files /dev/null and b/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/refint/OpenArchival.Blazor.AdminPages.dll differ diff --git a/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/rjsmcshtml.dswa.cache.json b/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/rjsmcshtml.dswa.cache.json new file mode 100644 index 0000000..05f48b8 --- /dev/null +++ b/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/rjsmcshtml.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"MRiB4IDUD95tznQVFDSUB/ZRBiL0l7NqvypMyWisBKY=","FingerprintPatternsHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["we2jLiX5lN\u002BZQJnUIhq1rvzj77lzaJPNQ8/EwgSkE9I=","UTgQbMUBuHpDU6uKT1aobIQNBTFUDdPN9dOXKbIXOxE=","gWjtd7QMqmKugLcjoA\u002Bz7uTk/kPdK0OzWgPxibM4Q80=","i87mXRCUZee30fegWrQI6qa83oxiclvoEj96XEo39xw=","lao90sMVLCx33PwCNC6c7eEpsWPlbqDw7v4MrMzvC8c=","fS8D7hjkphJRf6C\u002Bm/Qnypds9mEqiMfsUqX6crY95Cg=","LTKqIVmh6nq1MbEhySE0uxyFyWff9WrU1ON1M\u002BHeHU8=","sJjcvxwurmrqwAU/4zgO4hND3LvV36eZllxUbJFEZq4=","y1UjlmRucY2a7SZOaTcGmX43sccL/D64K/06s2Lir1U=","S2UnhitwgLXL4NKKJv8zqoaNXqB2nMFTAVHkB/UeLhk="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/rjsmrazor.dswa.cache.json b/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/rjsmrazor.dswa.cache.json new file mode 100644 index 0000000..8ff25fb --- /dev/null +++ b/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/rjsmrazor.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"pFI6wgQWnM801WhA+kBqb87aAQ1SYD4hIz9ddwGuTRY=","FingerprintPatternsHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["we2jLiX5lN\u002BZQJnUIhq1rvzj77lzaJPNQ8/EwgSkE9I=","UTgQbMUBuHpDU6uKT1aobIQNBTFUDdPN9dOXKbIXOxE=","gWjtd7QMqmKugLcjoA\u002Bz7uTk/kPdK0OzWgPxibM4Q80=","i87mXRCUZee30fegWrQI6qa83oxiclvoEj96XEo39xw=","lao90sMVLCx33PwCNC6c7eEpsWPlbqDw7v4MrMzvC8c=","fS8D7hjkphJRf6C\u002Bm/Qnypds9mEqiMfsUqX6crY95Cg=","LTKqIVmh6nq1MbEhySE0uxyFyWff9WrU1ON1M\u002BHeHU8=","sJjcvxwurmrqwAU/4zgO4hND3LvV36eZllxUbJFEZq4=","y1UjlmRucY2a7SZOaTcGmX43sccL/D64K/06s2Lir1U=","S2UnhitwgLXL4NKKJv8zqoaNXqB2nMFTAVHkB/UeLhk="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/rpswa.dswa.cache.json b/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/rpswa.dswa.cache.json new file mode 100644 index 0000000..4bba93b --- /dev/null +++ b/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/rpswa.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"zNJXz5rQrCxSXKP7vOgOdkHaQH0t0RaJ9A6BsbVWhRo=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["VpZyiBGOAkLWHSfBDB2YaWyP5Hs/I5FsfoRDMuTRV7I=","DIwVeRfKzBgDjmyoyXr8pXd5b0nsGSijXl8TRo8v\u002BsY=","NJX1DoLCS76R8Ya2DcTwkSj46QhcH6070l9VbngqqvM=","7PZpI0EUxyt6crDRFnhGnqMAusn7W6e1FMmwHQI0V8Y=","vH6ZV\u002BdjcRzsq5yMoti6BFVvUM8HoPPsA7rcKsMGGGg=","8hUS3woWS6spbIauTI/Y56WYgds/lARH5p2YNH0zZbc=","uRurSxZAEKPpQhTAARkYymmooR4UmE\u002Bgv/DLtdyvYd0=","fQZMXudOPo1zhfhLFcNVfKnr2EUaUQuMoTsXBSpQgbU=","Vd0O9sdyyXroAIEWXKMP0l6ejQ31ESX7qvIwEqJlqQc=","JDq35wZFjR6BR0th1mOaInyWsHAwiS3cadTNqIXpQwM="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/staticwebassets.build.endpoints.json b/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/staticwebassets.build.endpoints.json new file mode 100644 index 0000000..a523bab --- /dev/null +++ b/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/staticwebassets.build.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.css","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"21465"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk=\""},{"Name":"Last-Modified","Value":"Sun, 26 Feb 2023 14:08:26 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.css","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000295508274"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3383"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"6PJ7t7WR38pQTSYe6IR0pbqo2cIZK5wuW/w26kprtBg=\""},{"Name":"ETag","Value":"W/\"Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:28 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.css.gz","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3383"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"6PJ7t7WR38pQTSYe6IR0pbqo2cIZK5wuW/w26kprtBg=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:28 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6PJ7t7WR38pQTSYe6IR0pbqo2cIZK5wuW/w26kprtBg="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.js","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"328"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc=\""},{"Name":"Last-Modified","Value":"Sun, 26 Feb 2023 14:08:26 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.js","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005076142132"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"196"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"B4PUgpr06+d3lAMWknp0EVkaGxPZJdpp5/UidGHzvnc=\""},{"Name":"ETag","Value":"W/\"FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:28 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.js.gz","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"196"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"B4PUgpr06+d3lAMWknp0EVkaGxPZJdpp5/UidGHzvnc=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:28 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-B4PUgpr06+d3lAMWknp0EVkaGxPZJdpp5/UidGHzvnc="}]},{"Route":"_content/CodeBeam.MudExtensions/Mud_Secondary.png","AssetFile":"_content/CodeBeam.MudExtensions/Mud_Secondary.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4558"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"G3hYUw4Ps9P/IQ3lw2zu96RSZaOf4zU+4QkXkH8Xi3Y=\""},{"Name":"Last-Modified","Value":"Sat, 08 Oct 2022 09:55:02 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G3hYUw4Ps9P/IQ3lw2zu96RSZaOf4zU+4QkXkH8Xi3Y="}]},{"Route":"_content/MudBlazor/MudBlazor.min.css","AssetFile":"_content/MudBlazor/MudBlazor.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"606250"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0=\""},{"Name":"Last-Modified","Value":"Wed, 01 Oct 2025 21:51:05 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0="}]},{"Route":"_content/MudBlazor/MudBlazor.min.css","AssetFile":"_content/MudBlazor/MudBlazor.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015264845"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"65509"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"VcBMO3aXrzxl+jfWY+TaxPKsd3L0UWjeJZliEXOyzzI=\""},{"Name":"ETag","Value":"W/\"TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:28 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0="}]},{"Route":"_content/MudBlazor/MudBlazor.min.css.gz","AssetFile":"_content/MudBlazor/MudBlazor.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"65509"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"VcBMO3aXrzxl+jfWY+TaxPKsd3L0UWjeJZliEXOyzzI=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:28 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VcBMO3aXrzxl+jfWY+TaxPKsd3L0UWjeJZliEXOyzzI="}]},{"Route":"_content/MudBlazor/MudBlazor.min.jk5eo7zo4m.css","AssetFile":"_content/MudBlazor/MudBlazor.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"606250"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0=\""},{"Name":"Last-Modified","Value":"Wed, 01 Oct 2025 21:51:05 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jk5eo7zo4m"},{"Name":"integrity","Value":"sha256-TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.css"}]},{"Route":"_content/MudBlazor/MudBlazor.min.js","AssetFile":"_content/MudBlazor/MudBlazor.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"75165"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw=\""},{"Name":"Last-Modified","Value":"Wed, 01 Oct 2025 21:51:05 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js","AssetFile":"_content/MudBlazor/MudBlazor.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000061150859"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16352"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"0BJxfo+EOJvNKoBv/2ahm4RKrPjv7PhB/R16C3XOHDo=\""},{"Name":"ETag","Value":"W/\"hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:28 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js.gz","AssetFile":"_content/MudBlazor/MudBlazor.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16352"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"0BJxfo+EOJvNKoBv/2ahm4RKrPjv7PhB/R16C3XOHDo=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:28 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0BJxfo+EOJvNKoBv/2ahm4RKrPjv7PhB/R16C3XOHDo="}]},{"Route":"_content/MudBlazor/MudBlazor.min.tjzqk7tnel.js","AssetFile":"_content/MudBlazor/MudBlazor.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"75165"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw=\""},{"Name":"Last-Modified","Value":"Wed, 01 Oct 2025 21:51:05 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tjzqk7tnel"},{"Name":"integrity","Value":"sha256-hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.js"}]}]} \ No newline at end of file diff --git a/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/staticwebassets.build.json b/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/staticwebassets.build.json new file mode 100644 index 0000000..aa28181 --- /dev/null +++ b/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/staticwebassets.build.json @@ -0,0 +1 @@ +{"Version":1,"Hash":"56NYWClPRcGDRDv6U0GUX+zrxMWTJCc2DAgjkhrkfVc=","Source":"OpenArchival.Blazor.AdminPages","BasePath":"_content/OpenArchival.Blazor.AdminPages","Mode":"Default","ManifestType":"Build","ReferencedProjectsConfiguration":[{"Identity":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\OpenArchival.Blazor.CustomComponents.csproj","Version":2,"Source":"OpenArchival.Blazor.CustomComponents","GetPublishAssetsTargets":"ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems","AdditionalPublishProperties":"Configuration=Debug;Platform=AnyCPU","AdditionalPublishPropertiesToRemove":"TargetFramework;RuntimeIdentifier;SelfContained","GetBuildAssetsTargets":"GetCurrentProjectBuildStaticWebAssetItems","AdditionalBuildProperties":"Configuration=Debug;Platform=AnyCPU","AdditionalBuildPropertiesToRemove":"TargetFramework;RuntimeIdentifier;SelfContained"},{"Identity":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj","Version":2,"Source":"OpenArchival.DataAccess","GetPublishAssetsTargets":"ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems","AdditionalPublishProperties":"Configuration=Debug;Platform=AnyCPU","AdditionalPublishPropertiesToRemove":"TargetFramework","GetBuildAssetsTargets":"GetCurrentProjectBuildStaticWebAssetItems","AdditionalBuildProperties":"Configuration=Debug;Platform=AnyCPU","AdditionalBuildPropertiesToRemove":"TargetFramework"}],"DiscoveryPatterns":[],"Assets":[{"Identity":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\Mud_Secondary.png","SourceId":"CodeBeam.MudExtensions","SourceType":"Package","ContentRoot":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\","BasePath":"_content/CodeBeam.MudExtensions","RelativePath":"Mud_Secondary.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"tig1qhobl3","Integrity":"G3hYUw4Ps9P/IQ3lw2zu96RSZaOf4zU+4QkXkH8Xi3Y=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\Mud_Secondary.png","FileLength":4558,"LastWriteTime":"2022-10-08T09:55:02+00:00"},{"Identity":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\MudExtensions.min.css","SourceId":"CodeBeam.MudExtensions","SourceType":"Package","ContentRoot":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\","BasePath":"_content/CodeBeam.MudExtensions","RelativePath":"MudExtensions.min.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"qz4batx9cb","Integrity":"Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\MudExtensions.min.css","FileLength":21465,"LastWriteTime":"2023-02-26T14:08:26+00:00"},{"Identity":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\MudExtensions.min.js","SourceId":"CodeBeam.MudExtensions","SourceType":"Package","ContentRoot":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\","BasePath":"_content/CodeBeam.MudExtensions","RelativePath":"MudExtensions.min.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"loe7cozwzj","Integrity":"FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\MudExtensions.min.js","FileLength":328,"LastWriteTime":"2023-02-26T14:08:26+00:00"},{"Identity":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\MudBlazor.min.css","SourceId":"MudBlazor","SourceType":"Package","ContentRoot":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\","BasePath":"_content/MudBlazor","RelativePath":"MudBlazor.min.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"jk5eo7zo4m","Integrity":"TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\MudBlazor.min.css","FileLength":606250,"LastWriteTime":"2025-10-01T21:51:05+00:00"},{"Identity":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\MudBlazor.min.js","SourceId":"MudBlazor","SourceType":"Package","ContentRoot":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\","BasePath":"_content/MudBlazor","RelativePath":"MudBlazor.min.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"tjzqk7tnel","Integrity":"hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\MudBlazor.min.js","FileLength":75165,"LastWriteTime":"2025-10-01T21:51:05+00:00"},{"Identity":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.AdminPages\\obj\\Debug\\net9.0\\compressed\\0wz98yz2xy-tjzqk7tnel.gz","SourceId":"MudBlazor","SourceType":"Package","ContentRoot":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.AdminPages\\obj\\Debug\\net9.0\\compressed\\","BasePath":"_content/MudBlazor","RelativePath":"MudBlazor.min.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\MudBlazor.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"c1g0o1u83p","Integrity":"0BJxfo+EOJvNKoBv/2ahm4RKrPjv7PhB/R16C3XOHDo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\MudBlazor.min.js","FileLength":16352,"LastWriteTime":"2025-10-08T17:06:28+00:00"},{"Identity":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.AdminPages\\obj\\Debug\\net9.0\\compressed\\24gzn4tg1a-qz4batx9cb.gz","SourceId":"CodeBeam.MudExtensions","SourceType":"Package","ContentRoot":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.AdminPages\\obj\\Debug\\net9.0\\compressed\\","BasePath":"_content/CodeBeam.MudExtensions","RelativePath":"MudExtensions.min.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\MudExtensions.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"cn6plcuhii","Integrity":"6PJ7t7WR38pQTSYe6IR0pbqo2cIZK5wuW/w26kprtBg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\MudExtensions.min.css","FileLength":3383,"LastWriteTime":"2025-10-08T17:06:28+00:00"},{"Identity":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.AdminPages\\obj\\Debug\\net9.0\\compressed\\stwk5nfoxp-loe7cozwzj.gz","SourceId":"CodeBeam.MudExtensions","SourceType":"Package","ContentRoot":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.AdminPages\\obj\\Debug\\net9.0\\compressed\\","BasePath":"_content/CodeBeam.MudExtensions","RelativePath":"MudExtensions.min.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\MudExtensions.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"z9m1gj6ro7","Integrity":"B4PUgpr06+d3lAMWknp0EVkaGxPZJdpp5/UidGHzvnc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\MudExtensions.min.js","FileLength":196,"LastWriteTime":"2025-10-08T17:06:28+00:00"},{"Identity":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.AdminPages\\obj\\Debug\\net9.0\\compressed\\tzxjg6is5z-jk5eo7zo4m.gz","SourceId":"MudBlazor","SourceType":"Package","ContentRoot":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.AdminPages\\obj\\Debug\\net9.0\\compressed\\","BasePath":"_content/MudBlazor","RelativePath":"MudBlazor.min.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\MudBlazor.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"93u47y2o0e","Integrity":"VcBMO3aXrzxl+jfWY+TaxPKsd3L0UWjeJZliEXOyzzI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\MudBlazor.min.css","FileLength":65509,"LastWriteTime":"2025-10-08T17:06:28+00:00"}],"Endpoints":[{"Route":"_content/CodeBeam.MudExtensions/Mud_Secondary.png","AssetFile":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\Mud_Secondary.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"4558"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"G3hYUw4Ps9P/IQ3lw2zu96RSZaOf4zU+4QkXkH8Xi3Y=\""},{"Name":"Last-Modified","Value":"Sat, 08 Oct 2022 09:55:02 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G3hYUw4Ps9P/IQ3lw2zu96RSZaOf4zU+4QkXkH8Xi3Y="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.css","AssetFile":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\MudExtensions.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"21465"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk=\""},{"Name":"Last-Modified","Value":"Sun, 26 Feb 2023 14:08:26 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.css","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.AdminPages\\obj\\Debug\\net9.0\\compressed\\24gzn4tg1a-qz4batx9cb.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000295508274"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"3383"},{"Name":"ETag","Value":"\"6PJ7t7WR38pQTSYe6IR0pbqo2cIZK5wuW/w26kprtBg=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:28 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.css.gz","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.AdminPages\\obj\\Debug\\net9.0\\compressed\\24gzn4tg1a-qz4batx9cb.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"3383"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"6PJ7t7WR38pQTSYe6IR0pbqo2cIZK5wuW/w26kprtBg=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:28 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6PJ7t7WR38pQTSYe6IR0pbqo2cIZK5wuW/w26kprtBg="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.js","AssetFile":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\MudExtensions.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"328"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc=\""},{"Name":"Last-Modified","Value":"Sun, 26 Feb 2023 14:08:26 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.js","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.AdminPages\\obj\\Debug\\net9.0\\compressed\\stwk5nfoxp-loe7cozwzj.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005076142132"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"196"},{"Name":"ETag","Value":"\"B4PUgpr06+d3lAMWknp0EVkaGxPZJdpp5/UidGHzvnc=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:28 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"W/\"FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.js.gz","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.AdminPages\\obj\\Debug\\net9.0\\compressed\\stwk5nfoxp-loe7cozwzj.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"196"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"B4PUgpr06+d3lAMWknp0EVkaGxPZJdpp5/UidGHzvnc=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:28 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-B4PUgpr06+d3lAMWknp0EVkaGxPZJdpp5/UidGHzvnc="}]},{"Route":"_content/MudBlazor/MudBlazor.min.css","AssetFile":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\MudBlazor.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"606250"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0=\""},{"Name":"Last-Modified","Value":"Wed, 01 Oct 2025 21:51:05 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0="}]},{"Route":"_content/MudBlazor/MudBlazor.min.css","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.AdminPages\\obj\\Debug\\net9.0\\compressed\\tzxjg6is5z-jk5eo7zo4m.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015264845"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"65509"},{"Name":"ETag","Value":"\"VcBMO3aXrzxl+jfWY+TaxPKsd3L0UWjeJZliEXOyzzI=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:28 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0="}]},{"Route":"_content/MudBlazor/MudBlazor.min.css.gz","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.AdminPages\\obj\\Debug\\net9.0\\compressed\\tzxjg6is5z-jk5eo7zo4m.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"65509"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"VcBMO3aXrzxl+jfWY+TaxPKsd3L0UWjeJZliEXOyzzI=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:28 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VcBMO3aXrzxl+jfWY+TaxPKsd3L0UWjeJZliEXOyzzI="}]},{"Route":"_content/MudBlazor/MudBlazor.min.jk5eo7zo4m.css","AssetFile":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\MudBlazor.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"606250"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0=\""},{"Name":"Last-Modified","Value":"Wed, 01 Oct 2025 21:51:05 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jk5eo7zo4m"},{"Name":"integrity","Value":"sha256-TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.css"}]},{"Route":"_content/MudBlazor/MudBlazor.min.js","AssetFile":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\MudBlazor.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"75165"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw=\""},{"Name":"Last-Modified","Value":"Wed, 01 Oct 2025 21:51:05 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.AdminPages\\obj\\Debug\\net9.0\\compressed\\0wz98yz2xy-tjzqk7tnel.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000061150859"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"16352"},{"Name":"ETag","Value":"\"0BJxfo+EOJvNKoBv/2ahm4RKrPjv7PhB/R16C3XOHDo=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:28 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"W/\"hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js.gz","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.AdminPages\\obj\\Debug\\net9.0\\compressed\\0wz98yz2xy-tjzqk7tnel.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"16352"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"0BJxfo+EOJvNKoBv/2ahm4RKrPjv7PhB/R16C3XOHDo=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:28 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0BJxfo+EOJvNKoBv/2ahm4RKrPjv7PhB/R16C3XOHDo="}]},{"Route":"_content/MudBlazor/MudBlazor.min.tjzqk7tnel.js","AssetFile":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\MudBlazor.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"75165"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw=\""},{"Name":"Last-Modified","Value":"Wed, 01 Oct 2025 21:51:05 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tjzqk7tnel"},{"Name":"integrity","Value":"sha256-hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.js"}]}]} \ No newline at end of file diff --git a/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/staticwebassets.build.json.cache b/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/staticwebassets.build.json.cache new file mode 100644 index 0000000..ac73e16 --- /dev/null +++ b/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/staticwebassets.build.json.cache @@ -0,0 +1 @@ +56NYWClPRcGDRDv6U0GUX+zrxMWTJCc2DAgjkhrkfVc= \ No newline at end of file diff --git a/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/staticwebassets.development.json b/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/staticwebassets.development.json new file mode 100644 index 0000000..10c2d76 --- /dev/null +++ b/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/staticwebassets.development.json @@ -0,0 +1 @@ +{"ContentRoots":["C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\","C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.AdminPages\\obj\\Debug\\net9.0\\compressed\\","C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\"],"Root":{"Children":{"_content":{"Children":{"CodeBeam.MudExtensions":{"Children":{"Mud_Secondary.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"Mud_Secondary.png"},"Patterns":null},"MudExtensions.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"MudExtensions.min.css"},"Patterns":null},"MudExtensions.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"24gzn4tg1a-qz4batx9cb.gz"},"Patterns":null},"MudExtensions.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"MudExtensions.min.js"},"Patterns":null},"MudExtensions.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"stwk5nfoxp-loe7cozwzj.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"MudBlazor":{"Children":{"MudBlazor.min.css":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"MudBlazor.min.css"},"Patterns":null},"MudBlazor.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"tzxjg6is5z-jk5eo7zo4m.gz"},"Patterns":null},"MudBlazor.min.js":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"MudBlazor.min.js"},"Patterns":null},"MudBlazor.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"0wz98yz2xy-tjzqk7tnel.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}} \ No newline at end of file diff --git a/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/staticwebassets.references.upToDateCheck.txt b/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/staticwebassets.references.upToDateCheck.txt new file mode 100644 index 0000000..dbcd812 --- /dev/null +++ b/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/staticwebassets.references.upToDateCheck.txt @@ -0,0 +1,6 @@ +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json diff --git a/obj/Docker/openarchival.blazor/ProjectReferences.cache b/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/staticwebassets.removed.txt similarity index 100% rename from obj/Docker/openarchival.blazor/ProjectReferences.cache rename to OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/staticwebassets.removed.txt diff --git a/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/staticwebassets/msbuild.build.OpenArchival.Blazor.AdminPages.props b/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/staticwebassets/msbuild.build.OpenArchival.Blazor.AdminPages.props new file mode 100644 index 0000000..ddaed44 --- /dev/null +++ b/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/staticwebassets/msbuild.build.OpenArchival.Blazor.AdminPages.props @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/staticwebassets/msbuild.buildMultiTargeting.OpenArchival.Blazor.AdminPages.props b/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/staticwebassets/msbuild.buildMultiTargeting.OpenArchival.Blazor.AdminPages.props new file mode 100644 index 0000000..e936391 --- /dev/null +++ b/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/staticwebassets/msbuild.buildMultiTargeting.OpenArchival.Blazor.AdminPages.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/staticwebassets/msbuild.buildTransitive.OpenArchival.Blazor.AdminPages.props b/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/staticwebassets/msbuild.buildTransitive.OpenArchival.Blazor.AdminPages.props new file mode 100644 index 0000000..8eff29a --- /dev/null +++ b/OpenArchival.Blazor.AdminPages/obj/Debug/net9.0/staticwebassets/msbuild.buildTransitive.OpenArchival.Blazor.AdminPages.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/OpenArchival.Blazor.AdminPages/obj/OpenArchival.Blazor.AdminPages.csproj.nuget.dgspec.json b/OpenArchival.Blazor.AdminPages/obj/OpenArchival.Blazor.AdminPages.csproj.nuget.dgspec.json new file mode 100644 index 0000000..8caf4bf --- /dev/null +++ b/OpenArchival.Blazor.AdminPages/obj/OpenArchival.Blazor.AdminPages.csproj.nuget.dgspec.json @@ -0,0 +1,286 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.AdminPages\\OpenArchival.Blazor.AdminPages.csproj": {} + }, + "projects": { + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.AdminPages\\OpenArchival.Blazor.AdminPages.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.AdminPages\\OpenArchival.Blazor.AdminPages.csproj", + "projectName": "OpenArchival.Blazor.AdminPages", + "projectPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.AdminPages\\OpenArchival.Blazor.AdminPages.csproj", + "packagesPath": "C:\\Users\\vtall\\.nuget\\packages\\", + "outputPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.AdminPages\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\NuGet.Config", + "C:\\Users\\vtall\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net9.0" + ], + "sources": { + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "projectReferences": { + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\OpenArchival.Blazor.CustomComponents.csproj": { + "projectPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\OpenArchival.Blazor.CustomComponents.csproj" + }, + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj": { + "projectPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "9.0.300" + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "dependencies": { + "CodeBeam.MudExtensions": { + "target": "Package", + "version": "[6.3.0, )" + }, + "Microsoft.IdentityModel.Abstractions": { + "target": "Package", + "version": "[8.14.0, )" + }, + "Microsoft.IdentityModel.Tokens": { + "target": "Package", + "version": "[8.14.0, )" + }, + "MudBlazor": { + "target": "Package", + "version": "[8.13.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.304/PortableRuntimeIdentifierGraph.json" + } + } + }, + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\OpenArchival.Blazor.CustomComponents.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\OpenArchival.Blazor.CustomComponents.csproj", + "projectName": "OpenArchival.Blazor.CustomComponents", + "projectPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\OpenArchival.Blazor.CustomComponents.csproj", + "packagesPath": "C:\\Users\\vtall\\.nuget\\packages\\", + "outputPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\NuGet.Config", + "C:\\Users\\vtall\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net9.0" + ], + "sources": { + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "projectReferences": { + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj": { + "projectPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "9.0.300" + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "dependencies": { + "CodeBeam.MudExtensions": { + "target": "Package", + "version": "[6.3.0, )" + }, + "MudBlazor": { + "target": "Package", + "version": "[8.13.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.304/PortableRuntimeIdentifierGraph.json" + } + } + }, + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj", + "projectName": "OpenArchival.DataAccess", + "projectPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj", + "packagesPath": "C:\\Users\\vtall\\.nuget\\packages\\", + "outputPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\NuGet.Config", + "C:\\Users\\vtall\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net9.0" + ], + "sources": { + "C:\\Program Files\\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": { + "EntityFramework": { + "target": "Package", + "version": "[6.5.1, )" + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore": { + "target": "Package", + "version": "[9.0.8, )" + }, + "Microsoft.EntityFrameworkCore": { + "target": "Package", + "version": "[9.0.8, )" + }, + "Microsoft.EntityFrameworkCore.Design": { + "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", + "suppressParent": "All", + "target": "Package", + "version": "[9.0.8, )" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions": { + "target": "Package", + "version": "[9.0.8, )" + }, + "Npgsql": { + "target": "Package", + "version": "[9.0.3, )" + }, + "Npgsql.EntityFrameworkCore.PostgreSQL": { + "target": "Package", + "version": "[9.0.4, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.304/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/OpenArchival.Blazor.AdminPages/obj/OpenArchival.Blazor.AdminPages.csproj.nuget.g.props b/OpenArchival.Blazor.AdminPages/obj/OpenArchival.Blazor.AdminPages.csproj.nuget.g.props new file mode 100644 index 0000000..3606f97 --- /dev/null +++ b/OpenArchival.Blazor.AdminPages/obj/OpenArchival.Blazor.AdminPages.csproj.nuget.g.props @@ -0,0 +1,26 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\vtall\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + PackageReference + 6.14.1 + + + + + + + + + + + + + C:\Users\vtall\.nuget\packages\entityframework\6.5.1 + C:\Users\vtall\.nuget\packages\buildbundlerminifier\3.2.449 + + \ No newline at end of file diff --git a/OpenArchival.Blazor.AdminPages/obj/OpenArchival.Blazor.AdminPages.csproj.nuget.g.targets b/OpenArchival.Blazor.AdminPages/obj/OpenArchival.Blazor.AdminPages.csproj.nuget.g.targets new file mode 100644 index 0000000..1dd74b3 --- /dev/null +++ b/OpenArchival.Blazor.AdminPages/obj/OpenArchival.Blazor.AdminPages.csproj.nuget.g.targets @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/OpenArchival.Blazor.AdminPages/obj/project.assets.json b/OpenArchival.Blazor.AdminPages/obj/project.assets.json new file mode 100644 index 0000000..84b88e4 --- /dev/null +++ b/OpenArchival.Blazor.AdminPages/obj/project.assets.json @@ -0,0 +1,2624 @@ +{ + "version": 3, + "targets": { + "net9.0": { + "BuildBundlerMinifier/3.2.449": { + "type": "package", + "build": { + "build/_._": {} + } + }, + "CodeBeam.MudExtensions/6.3.0": { + "type": "package", + "dependencies": { + "BuildBundlerMinifier": "3.2.449", + "CsvHelper": "30.0.1", + "Microsoft.AspNetCore.Components": "7.0.1", + "Microsoft.AspNetCore.Components.Web": "7.0.1", + "MudBlazor": "6.1.9" + }, + "compile": { + "lib/net7.0/CodeBeam.MudExtensions.dll": {} + }, + "runtime": { + "lib/net7.0/CodeBeam.MudExtensions.dll": {} + }, + "build": { + "buildTransitive/CodeBeam.MudExtensions.props": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/CodeBeam.MudExtensions.props": {} + } + }, + "CsvHelper/30.0.1": { + "type": "package", + "compile": { + "lib/net6.0/CsvHelper.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/CsvHelper.dll": { + "related": ".xml" + } + } + }, + "EntityFramework/6.5.1": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.7.0", + "System.CodeDom": "6.0.0", + "System.ComponentModel.Annotations": "5.0.0", + "System.Configuration.ConfigurationManager": "6.0.1", + "System.Data.SqlClient": "4.8.6" + }, + "compile": { + "lib/netstandard2.1/EntityFramework.SqlServer.dll": { + "related": ".xml" + }, + "lib/netstandard2.1/EntityFramework.dll": { + "related": ".SqlServer.xml;.xml" + } + }, + "runtime": { + "lib/netstandard2.1/EntityFramework.SqlServer.dll": { + "related": ".xml" + }, + "lib/netstandard2.1/EntityFramework.dll": { + "related": ".SqlServer.xml;.xml" + } + }, + "build": { + "buildTransitive/net6.0/EntityFramework.props": {}, + "buildTransitive/net6.0/EntityFramework.targets": {} + } + }, + "Microsoft.AspNetCore.Authorization/9.0.1": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Metadata": "9.0.1", + "Microsoft.Extensions.Logging.Abstractions": "9.0.1", + "Microsoft.Extensions.Options": "9.0.1" + }, + "compile": { + "lib/net9.0/Microsoft.AspNetCore.Authorization.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Authorization.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Components/9.0.1": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Authorization": "9.0.1", + "Microsoft.AspNetCore.Components.Analyzers": "9.0.1" + }, + "compile": { + "lib/net9.0/Microsoft.AspNetCore.Components.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Components.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Components.Analyzers/9.0.1": { + "type": "package", + "build": { + "buildTransitive/netstandard2.0/Microsoft.AspNetCore.Components.Analyzers.targets": {} + } + }, + "Microsoft.AspNetCore.Components.Forms/9.0.1": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Components": "9.0.1" + }, + "compile": { + "lib/net9.0/Microsoft.AspNetCore.Components.Forms.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Components.Forms.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Components.Web/9.0.1": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Components": "9.0.1", + "Microsoft.AspNetCore.Components.Forms": "9.0.1", + "Microsoft.Extensions.DependencyInjection": "9.0.1", + "Microsoft.Extensions.Primitives": "9.0.1", + "Microsoft.JSInterop": "9.0.1" + }, + "compile": { + "lib/net9.0/Microsoft.AspNetCore.Components.Web.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Components.Web.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Cryptography.Internal/9.0.8": { + "type": "package", + "compile": { + "lib/net9.0/Microsoft.AspNetCore.Cryptography.Internal.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Cryptography.Internal.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Cryptography.Internal": "9.0.8" + }, + "compile": { + "lib/net9.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore.Relational": "9.0.8", + "Microsoft.Extensions.Identity.Stores": "9.0.8" + }, + "compile": { + "lib/net9.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Metadata/9.0.1": { + "type": "package", + "compile": { + "lib/net9.0/Microsoft.AspNetCore.Metadata.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Metadata.dll": { + "related": ".xml" + } + } + }, + "Microsoft.CSharp/4.7.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "Microsoft.EntityFrameworkCore/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "9.0.8", + "Microsoft.EntityFrameworkCore.Analyzers": "9.0.8", + "Microsoft.Extensions.Caching.Memory": "9.0.8", + "Microsoft.Extensions.Logging": "9.0.8" + }, + "compile": { + "lib/net8.0/Microsoft.EntityFrameworkCore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.EntityFrameworkCore.props": {} + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/9.0.8": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/9.0.8": { + "type": "package" + }, + "Microsoft.EntityFrameworkCore.Relational/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore": "9.0.8", + "Microsoft.Extensions.Caching.Memory": "9.0.8", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.8", + "Microsoft.Extensions.Logging": "9.0.8" + }, + "compile": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Caching.Abstractions/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.8" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Caching.Memory/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "9.0.8", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8", + "Microsoft.Extensions.Logging.Abstractions": "9.0.8", + "Microsoft.Extensions.Options": "9.0.8", + "Microsoft.Extensions.Primitives": "9.0.8" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Caching.Memory.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Caching.Memory.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.8" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.8": { + "type": "package", + "compile": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Identity.Core/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Cryptography.KeyDerivation": "9.0.8", + "Microsoft.Extensions.Logging": "9.0.8", + "Microsoft.Extensions.Options": "9.0.8" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Identity.Core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Identity.Core.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Identity.Stores/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "9.0.8", + "Microsoft.Extensions.Identity.Core": "9.0.8", + "Microsoft.Extensions.Logging": "9.0.8" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Identity.Stores.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Identity.Stores.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Localization/9.0.1": { + "type": "package", + "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" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Localization.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Localization.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Localization.Abstractions/9.0.1": { + "type": "package", + "compile": { + "lib/net9.0/Microsoft.Extensions.Localization.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Localization.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Logging/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "9.0.8", + "Microsoft.Extensions.Logging.Abstractions": "9.0.8", + "Microsoft.Extensions.Options": "9.0.8" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.Options/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8", + "Microsoft.Extensions.Primitives": "9.0.8" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.Extensions.Options.targets": {} + } + }, + "Microsoft.Extensions.Primitives/9.0.8": { + "type": "package", + "compile": { + "lib/net9.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.IdentityModel.Abstractions/8.14.0": { + "type": "package", + "compile": { + "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Logging/8.14.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "8.14.0" + }, + "compile": { + "lib/net9.0/Microsoft.IdentityModel.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Logging.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Tokens/8.14.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.IdentityModel.Logging": "8.14.0" + }, + "compile": { + "lib/net9.0/Microsoft.IdentityModel.Tokens.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Tokens.dll": { + "related": ".xml" + } + } + }, + "Microsoft.JSInterop/9.0.1": { + "type": "package", + "compile": { + "lib/net9.0/Microsoft.JSInterop.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.JSInterop.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Win32.Registry/4.7.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "MudBlazor/8.13.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Components": "9.0.1", + "Microsoft.AspNetCore.Components.Web": "9.0.1", + "Microsoft.Extensions.Localization": "9.0.1" + }, + "compile": { + "lib/net9.0/MudBlazor.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/MudBlazor.dll": { + "related": ".xml" + } + }, + "build": { + "build/MudBlazor.targets": {}, + "buildTransitive/MudBlazor.props": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/MudBlazor.props": {} + } + }, + "Npgsql/9.0.3": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "8.0.2" + }, + "compile": { + "lib/net8.0/Npgsql.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Npgsql.dll": { + "related": ".xml" + } + } + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/9.0.4": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore": "[9.0.1, 10.0.0)", + "Microsoft.EntityFrameworkCore.Relational": "[9.0.1, 10.0.0)", + "Npgsql": "9.0.3" + }, + "compile": { + "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { + "related": ".xml" + } + } + }, + "runtime.native.System.Data.SqlClient.sni/4.7.0": { + "type": "package", + "dependencies": { + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0" + } + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "runtimeTargets": { + "runtimes/win-arm64/native/sni.dll": { + "assetType": "native", + "rid": "win-arm64" + } + } + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "runtimeTargets": { + "runtimes/win-x64/native/sni.dll": { + "assetType": "native", + "rid": "win-x64" + } + } + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "runtimeTargets": { + "runtimes/win-x86/native/sni.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "System.CodeDom/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.CodeDom.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.CodeDom.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.ComponentModel.Annotations/5.0.0": { + "type": "package", + "compile": { + "ref/netstandard2.1/System.ComponentModel.Annotations.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/System.ComponentModel.Annotations.dll": { + "related": ".xml" + } + } + }, + "System.Configuration.ConfigurationManager/6.0.1": { + "type": "package", + "dependencies": { + "System.Security.Cryptography.ProtectedData": "6.0.0", + "System.Security.Permissions": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Configuration.ConfigurationManager.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Configuration.ConfigurationManager.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Data.SqlClient/4.8.6": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Registry": "4.7.0", + "System.Security.Principal.Windows": "4.7.0", + "runtime.native.System.Data.SqlClient.sni": "4.7.0" + }, + "compile": { + "ref/netcoreapp2.1/System.Data.SqlClient.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Drawing.Common/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Win32.SystemEvents": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Drawing.Common.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Drawing.Common.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/net6.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.AccessControl/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Security.AccessControl.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Security.AccessControl.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Security.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.ProtectedData/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Permissions/6.0.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Windows.Extensions": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Security.Permissions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Security.Permissions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Security.Principal.Windows/4.7.0": { + "type": "package", + "compile": { + "ref/netcoreapp3.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Security.Principal.Windows.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Windows.Extensions/6.0.0": { + "type": "package", + "dependencies": { + "System.Drawing.Common": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Windows.Extensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Windows.Extensions.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "OpenArchival.Blazor.CustomComponents/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v9.0", + "dependencies": { + "CodeBeam.MudExtensions": "6.3.0", + "MudBlazor": "8.13.0", + "OpenArchival.DataAccess": "1.0.0" + }, + "compile": { + "bin/placeholder/OpenArchival.Blazor.CustomComponents.dll": {} + }, + "runtime": { + "bin/placeholder/OpenArchival.Blazor.CustomComponents.dll": {} + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "OpenArchival.DataAccess/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v9.0", + "dependencies": { + "EntityFramework": "6.5.1", + "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "9.0.8", + "Microsoft.EntityFrameworkCore": "9.0.8", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8", + "Npgsql": "9.0.3", + "Npgsql.EntityFrameworkCore.PostgreSQL": "9.0.4" + }, + "compile": { + "bin/placeholder/OpenArchival.DataAccess.dll": {} + }, + "runtime": { + "bin/placeholder/OpenArchival.DataAccess.dll": {} + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + } + } + }, + "libraries": { + "BuildBundlerMinifier/3.2.449": { + "sha512": "uA9sYDy4VepL3xwzBTLcP2LyuVYMt0ZIT3gaSiXvGoX15Ob+rOP+hGydhevlSVd+rFo+Y+VQFEHDuWU8HBW+XA==", + "type": "package", + "path": "buildbundlerminifier/3.2.449", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/BuildBundlerMinifier.targets", + "buildbundlerminifier.3.2.449.nupkg.sha512", + "buildbundlerminifier.nuspec", + "tools/net46/BundlerMinifier.dll", + "tools/net46/NUglify.dll", + "tools/net46/Newtonsoft.Json.dll", + "tools/netcoreapp2.0/BundlerMinifier.dll", + "tools/netcoreapp2.0/NUglify.dll", + "tools/netcoreapp2.0/Newtonsoft.Json.dll", + "tools/netcoreapp3.0/BundlerMinifier.dll", + "tools/netcoreapp3.0/NUglify.dll", + "tools/netcoreapp3.0/Newtonsoft.Json.dll", + "tools/netcoreapp3.1/BundlerMinifier.dll", + "tools/netcoreapp3.1/NUglify.dll", + "tools/netcoreapp3.1/Newtonsoft.Json.dll", + "tools/netstandard1.3/BundlerMinifier.dll", + "tools/netstandard1.3/NUglify.dll", + "tools/netstandard1.3/Newtonsoft.Json.dll" + ] + }, + "CodeBeam.MudExtensions/6.3.0": { + "sha512": "U5J0IlIg8R166hm9RwVjjbCtbBs3ixLev94NmfQHaBVUn3P4un+DoirfUjcUs96wvKb5K9H9ou39Yq+wBO11IA==", + "type": "package", + "path": "codebeam.mudextensions/6.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Mud_Secondary.png", + "build/CodeBeam.MudExtensions.props", + "build/Microsoft.AspNetCore.StaticWebAssets.props", + "buildMultiTargeting/CodeBeam.MudExtensions.props", + "buildTransitive/CodeBeam.MudExtensions.props", + "codebeam.mudextensions.6.3.0.nupkg.sha512", + "codebeam.mudextensions.nuspec", + "lib/net6.0/CodeBeam.MudExtensions.dll", + "lib/net7.0/CodeBeam.MudExtensions.dll", + "staticwebassets/MudExtensions.min.css", + "staticwebassets/MudExtensions.min.js", + "staticwebassets/Mud_Secondary.png" + ] + }, + "CsvHelper/30.0.1": { + "sha512": "rcZtgbWR+As4G3Vpgx0AMNmShGuQLFjkHAPIIflzrfkJCx8/AOd4m96ZRmiU1Wi39qS5UVjV0P8qdgqOo5Cwyg==", + "type": "package", + "path": "csvhelper/30.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "csvhelper.30.0.1.nupkg.sha512", + "csvhelper.nuspec", + "lib/net45/CsvHelper.dll", + "lib/net45/CsvHelper.xml", + "lib/net47/CsvHelper.dll", + "lib/net47/CsvHelper.xml", + "lib/net5.0/CsvHelper.dll", + "lib/net5.0/CsvHelper.xml", + "lib/net6.0/CsvHelper.dll", + "lib/net6.0/CsvHelper.xml", + "lib/netstandard2.0/CsvHelper.dll", + "lib/netstandard2.0/CsvHelper.xml", + "lib/netstandard2.1/CsvHelper.dll", + "lib/netstandard2.1/CsvHelper.xml" + ] + }, + "EntityFramework/6.5.1": { + "sha512": "sQRP2lWg1i3aAGWqdliAM8zrGx7LHMUk+9/MoxUjwfTZYGMXvZ2JYZTlyTm1PqDxvn3c9E3U76TWDON7Y5+CVA==", + "type": "package", + "path": "entityframework/6.5.1", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "README.md", + "build/EntityFramework.DefaultItems.props", + "build/EntityFramework.props", + "build/EntityFramework.targets", + "build/Microsoft.Data.Entity.Build.Tasks.dll", + "build/net6.0/EntityFramework.props", + "build/net6.0/EntityFramework.targets", + "buildTransitive/EntityFramework.props", + "buildTransitive/EntityFramework.targets", + "buildTransitive/net6.0/EntityFramework.props", + "buildTransitive/net6.0/EntityFramework.targets", + "content/net40/App.config.install.xdt", + "content/net40/App.config.transform", + "content/net40/Web.config.install.xdt", + "content/net40/Web.config.transform", + "entityframework.6.5.1.nupkg.sha512", + "entityframework.nuspec", + "lib/net40/EntityFramework.SqlServer.dll", + "lib/net40/EntityFramework.SqlServer.xml", + "lib/net40/EntityFramework.dll", + "lib/net40/EntityFramework.xml", + "lib/net45/EntityFramework.SqlServer.dll", + "lib/net45/EntityFramework.SqlServer.xml", + "lib/net45/EntityFramework.dll", + "lib/net45/EntityFramework.xml", + "lib/netstandard2.1/EntityFramework.SqlServer.dll", + "lib/netstandard2.1/EntityFramework.SqlServer.xml", + "lib/netstandard2.1/EntityFramework.dll", + "lib/netstandard2.1/EntityFramework.xml", + "tools/EntityFramework6.PS2.psd1", + "tools/EntityFramework6.PS2.psm1", + "tools/EntityFramework6.psd1", + "tools/EntityFramework6.psm1", + "tools/about_EntityFramework6.help.txt", + "tools/init.ps1", + "tools/install.ps1", + "tools/net40/any/ef6.exe", + "tools/net40/any/ef6.pdb", + "tools/net40/win-arm64/ef6.exe", + "tools/net40/win-arm64/ef6.pdb", + "tools/net40/win-x86/ef6.exe", + "tools/net40/win-x86/ef6.pdb", + "tools/net45/any/ef6.exe", + "tools/net45/any/ef6.pdb", + "tools/net45/win-arm64/ef6.exe", + "tools/net45/win-arm64/ef6.pdb", + "tools/net45/win-x86/ef6.exe", + "tools/net45/win-x86/ef6.pdb", + "tools/net6.0/any/ef6.dll", + "tools/net6.0/any/ef6.pdb", + "tools/net6.0/any/ef6.runtimeconfig.json" + ] + }, + "Microsoft.AspNetCore.Authorization/9.0.1": { + "sha512": "WgLlLBlMczb2+QLNG6sM95OUZ0EBztz60k/N75tjIgpyu0SdpIfYytAmX/7JJAjRTZF0c/CrWaQV+SH9FuGsrA==", + "type": "package", + "path": "microsoft.aspnetcore.authorization/9.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/Microsoft.AspNetCore.Authorization.dll", + "lib/net462/Microsoft.AspNetCore.Authorization.xml", + "lib/net9.0/Microsoft.AspNetCore.Authorization.dll", + "lib/net9.0/Microsoft.AspNetCore.Authorization.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.xml", + "microsoft.aspnetcore.authorization.9.0.1.nupkg.sha512", + "microsoft.aspnetcore.authorization.nuspec" + ] + }, + "Microsoft.AspNetCore.Components/9.0.1": { + "sha512": "6pwfbQKNtvPkbF4tCGiAKGyt6BVpu58xAXz7u2YXcUKTNmNxrymbG1mEyMc0EPzVdnquDDqTyfXM3mC1EJycxQ==", + "type": "package", + "path": "microsoft.aspnetcore.components/9.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.txt", + "lib/net9.0/Microsoft.AspNetCore.Components.dll", + "lib/net9.0/Microsoft.AspNetCore.Components.xml", + "microsoft.aspnetcore.components.9.0.1.nupkg.sha512", + "microsoft.aspnetcore.components.nuspec" + ] + }, + "Microsoft.AspNetCore.Components.Analyzers/9.0.1": { + "sha512": "I8Rs4LXT5UQxM5Nin2+Oj8aSY2heszSZ3EyTLgt3mxmfiRPrVO7D8NNSsf1voI2Gb0qFJceof/J5c9E+nfNuHw==", + "type": "package", + "path": "microsoft.aspnetcore.components.analyzers/9.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.9.0.1.nupkg.sha512", + "microsoft.aspnetcore.components.analyzers.nuspec" + ] + }, + "Microsoft.AspNetCore.Components.Forms/9.0.1": { + "sha512": "KyULVU32bLz74LWDwPEwNUEllTehzWJuM7YAsz80rMKEzvR0K8cRjRzO0fnN/nfydMeLRRlbI0xj8wnEAymLVw==", + "type": "package", + "path": "microsoft.aspnetcore.components.forms/9.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.txt", + "lib/net9.0/Microsoft.AspNetCore.Components.Forms.dll", + "lib/net9.0/Microsoft.AspNetCore.Components.Forms.xml", + "microsoft.aspnetcore.components.forms.9.0.1.nupkg.sha512", + "microsoft.aspnetcore.components.forms.nuspec" + ] + }, + "Microsoft.AspNetCore.Components.Web/9.0.1": { + "sha512": "LI0vjYEd9MaDZPDQxPCn4gGYDkEC5U9rp1nWZo7rPozJxgTG2zU3WERujxTi2LeAC2ZzdXlOVCrUyPQ55LZV2A==", + "type": "package", + "path": "microsoft.aspnetcore.components.web/9.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.txt", + "lib/net9.0/Microsoft.AspNetCore.Components.Web.dll", + "lib/net9.0/Microsoft.AspNetCore.Components.Web.xml", + "microsoft.aspnetcore.components.web.9.0.1.nupkg.sha512", + "microsoft.aspnetcore.components.web.nuspec" + ] + }, + "Microsoft.AspNetCore.Cryptography.Internal/9.0.8": { + "sha512": "NwGO0wh/IjEthBLGA6fWfIiftsNF/paA5RxWp6ji4wWazetJgQ4truR9nU2thAzzFLiXqlg8vGjdVDA8bHu0zA==", + "type": "package", + "path": "microsoft.aspnetcore.cryptography.internal/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/Microsoft.AspNetCore.Cryptography.Internal.dll", + "lib/net462/Microsoft.AspNetCore.Cryptography.Internal.xml", + "lib/net9.0/Microsoft.AspNetCore.Cryptography.Internal.dll", + "lib/net9.0/Microsoft.AspNetCore.Cryptography.Internal.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.xml", + "microsoft.aspnetcore.cryptography.internal.9.0.8.nupkg.sha512", + "microsoft.aspnetcore.cryptography.internal.nuspec" + ] + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/9.0.8": { + "sha512": "gK70xxXYwwPiXYKYVmLYMuIO5EOGrRtQghmM6PkgtZ/0lgLEjIs//xgSLvZkV/mroNHA1DEqTcqscEj9OzZ1IA==", + "type": "package", + "path": "microsoft.aspnetcore.cryptography.keyderivation/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll", + "lib/net462/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml", + "lib/net9.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll", + "lib/net9.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml", + "microsoft.aspnetcore.cryptography.keyderivation.9.0.8.nupkg.sha512", + "microsoft.aspnetcore.cryptography.keyderivation.nuspec" + ] + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore/9.0.8": { + "sha512": "z4q9roxXMQePwFM5tXXZS5sKkU78yYXVkj56NYYx9xKe+mxGkJMV1MaO0GFE6HnnM8bE3Xxhs0hAPw2jKbse6w==", + "type": "package", + "path": "microsoft.aspnetcore.identity.entityframeworkcore/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net9.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll", + "lib/net9.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.xml", + "microsoft.aspnetcore.identity.entityframeworkcore.9.0.8.nupkg.sha512", + "microsoft.aspnetcore.identity.entityframeworkcore.nuspec" + ] + }, + "Microsoft.AspNetCore.Metadata/9.0.1": { + "sha512": "EZnHifamF7IFEIyjAKMtJM3I/94OIe72i3P09v5oL0twmsmfQwal6Ni3m8lbB5mge3jWFhMozeW+rUdRSqnXRQ==", + "type": "package", + "path": "microsoft.aspnetcore.metadata/9.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/Microsoft.AspNetCore.Metadata.dll", + "lib/net462/Microsoft.AspNetCore.Metadata.xml", + "lib/net9.0/Microsoft.AspNetCore.Metadata.dll", + "lib/net9.0/Microsoft.AspNetCore.Metadata.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Metadata.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Metadata.xml", + "microsoft.aspnetcore.metadata.9.0.1.nupkg.sha512", + "microsoft.aspnetcore.metadata.nuspec" + ] + }, + "Microsoft.CSharp/4.7.0": { + "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", + "type": "package", + "path": "microsoft.csharp/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/Microsoft.CSharp.dll", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.3/Microsoft.CSharp.dll", + "lib/netstandard2.0/Microsoft.CSharp.dll", + "lib/netstandard2.0/Microsoft.CSharp.xml", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/uap10.0.16299/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.csharp.4.7.0.nupkg.sha512", + "microsoft.csharp.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/Microsoft.CSharp.dll", + "ref/netcore50/Microsoft.CSharp.xml", + "ref/netcore50/de/Microsoft.CSharp.xml", + "ref/netcore50/es/Microsoft.CSharp.xml", + "ref/netcore50/fr/Microsoft.CSharp.xml", + "ref/netcore50/it/Microsoft.CSharp.xml", + "ref/netcore50/ja/Microsoft.CSharp.xml", + "ref/netcore50/ko/Microsoft.CSharp.xml", + "ref/netcore50/ru/Microsoft.CSharp.xml", + "ref/netcore50/zh-hans/Microsoft.CSharp.xml", + "ref/netcore50/zh-hant/Microsoft.CSharp.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.0/Microsoft.CSharp.dll", + "ref/netstandard1.0/Microsoft.CSharp.xml", + "ref/netstandard1.0/de/Microsoft.CSharp.xml", + "ref/netstandard1.0/es/Microsoft.CSharp.xml", + "ref/netstandard1.0/fr/Microsoft.CSharp.xml", + "ref/netstandard1.0/it/Microsoft.CSharp.xml", + "ref/netstandard1.0/ja/Microsoft.CSharp.xml", + "ref/netstandard1.0/ko/Microsoft.CSharp.xml", + "ref/netstandard1.0/ru/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml", + "ref/netstandard2.0/Microsoft.CSharp.dll", + "ref/netstandard2.0/Microsoft.CSharp.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.0.16299/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.EntityFrameworkCore/9.0.8": { + "sha512": "bNGdPhN762+BIIO5MFYLjafRqkSS1MqLOc/erd55InvLnFxt9H3N5JNsuag1ZHyBor1VtD42U0CHpgqkWeAYgQ==", + "type": "package", + "path": "microsoft.entityframeworkcore/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "buildTransitive/net8.0/Microsoft.EntityFrameworkCore.props", + "lib/net8.0/Microsoft.EntityFrameworkCore.dll", + "lib/net8.0/Microsoft.EntityFrameworkCore.xml", + "microsoft.entityframeworkcore.9.0.8.nupkg.sha512", + "microsoft.entityframeworkcore.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Abstractions/9.0.8": { + "sha512": "B2yfAIQRRAQ4zvvWqh+HudD+juV3YoLlpXnrog3tU0PM9AFpuq6xo0+mEglN1P43WgdcUiF+65CWBcZe35s15Q==", + "type": "package", + "path": "microsoft.entityframeworkcore.abstractions/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll", + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.xml", + "microsoft.entityframeworkcore.abstractions.9.0.8.nupkg.sha512", + "microsoft.entityframeworkcore.abstractions.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Analyzers/9.0.8": { + "sha512": "2EYStCXt4Hi9p3J3EYMQbItJDtASJd064Kcs8C8hj8Jt5srILrR9qlaL0Ryvk8NrWQoCQvIELsmiuqLEZMLvGA==", + "type": "package", + "path": "microsoft.entityframeworkcore.analyzers/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll", + "docs/PACKAGE.md", + "microsoft.entityframeworkcore.analyzers.9.0.8.nupkg.sha512", + "microsoft.entityframeworkcore.analyzers.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Relational/9.0.8": { + "sha512": "OVhfyxiHxMvYpwQ8Jy3YZi4koy6TK5/Q7C1oq3z6db+HEGuu6x9L1BX5zDIdJxxlRePMyO4D8ORiXj/D7+MUqw==", + "type": "package", + "path": "microsoft.entityframeworkcore.relational/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll", + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.xml", + "microsoft.entityframeworkcore.relational.9.0.8.nupkg.sha512", + "microsoft.entityframeworkcore.relational.nuspec" + ] + }, + "Microsoft.Extensions.Caching.Abstractions/9.0.8": { + "sha512": "4h7bsVoKoiK+SlPM+euX/ayGnKZhl47pPCidLTiio9xyG+vgVVfcYxcYQgjm0SCrdSxjG0EGIAKF8EFr3G8Ifw==", + "type": "package", + "path": "microsoft.extensions.caching.abstractions/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Caching.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml", + "microsoft.extensions.caching.abstractions.9.0.8.nupkg.sha512", + "microsoft.extensions.caching.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Caching.Memory/9.0.8": { + "sha512": "grR+oPyj8HVn4DT8CFUUdSw2pZZKS13KjytFe4txpHQliGM1GEDotohmjgvyl3hm7RFB3FRqvbouEX3/1ewp5A==", + "type": "package", + "path": "microsoft.extensions.caching.memory/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Caching.Memory.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Memory.targets", + "lib/net462/Microsoft.Extensions.Caching.Memory.dll", + "lib/net462/Microsoft.Extensions.Caching.Memory.xml", + "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/net8.0/Microsoft.Extensions.Caching.Memory.xml", + "lib/net9.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/net9.0/Microsoft.Extensions.Caching.Memory.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml", + "microsoft.extensions.caching.memory.9.0.8.nupkg.sha512", + "microsoft.extensions.caching.memory.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.8": { + "sha512": "yNou2KM35RvzOh4vUFtl2l33rWPvOCoba+nzEDJ+BgD8aOL/jew4WPCibQvntRfOJ2pJU8ARygSMD+pdjvDHuA==", + "type": "package", + "path": "microsoft.extensions.configuration.abstractions/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "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/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.9.0.8.nupkg.sha512", + "microsoft.extensions.configuration.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection/9.0.8": { + "sha512": "JJjI2Fa+QtZcUyuNjbKn04OjIUX5IgFGFu/Xc+qvzh1rXdZHLcnqqVXhR4093bGirTwacRlHiVg1XYI9xum6QQ==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets", + "lib/net462/Microsoft.Extensions.DependencyInjection.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml", + "microsoft.extensions.dependencyinjection.9.0.8.nupkg.sha512", + "microsoft.extensions.dependencyinjection.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.8": { + "sha512": "xY3lTjj4+ZYmiKIkyWitddrp1uL5uYiweQjqo4BKBw01ZC4HhcfgLghDpPZcUlppgWAFqFy9SgkiYWOMx365pw==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "microsoft.extensions.dependencyinjection.abstractions.9.0.8.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Identity.Core/9.0.8": { + "sha512": "giUYz84GHAizDucZp5vWAusDO2s9Jrrg2jQ6HUQNGs5HQMKJVobLPMQSiyg8R4yecH0pIc0QjANh0B/Kw13BHA==", + "type": "package", + "path": "microsoft.extensions.identity.core/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/Microsoft.Extensions.Identity.Core.dll", + "lib/net462/Microsoft.Extensions.Identity.Core.xml", + "lib/net9.0/Microsoft.Extensions.Identity.Core.dll", + "lib/net9.0/Microsoft.Extensions.Identity.Core.xml", + "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.dll", + "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.xml", + "microsoft.extensions.identity.core.9.0.8.nupkg.sha512", + "microsoft.extensions.identity.core.nuspec" + ] + }, + "Microsoft.Extensions.Identity.Stores/9.0.8": { + "sha512": "sycaHcq78yI591+KxEdd53a7pJGQEl9H/wDsFkaPNE9g7loyq8vufPcc/9RH3KlGt5joR5Ey7PdoRSrlLjCgJg==", + "type": "package", + "path": "microsoft.extensions.identity.stores/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/Microsoft.Extensions.Identity.Stores.dll", + "lib/net462/Microsoft.Extensions.Identity.Stores.xml", + "lib/net9.0/Microsoft.Extensions.Identity.Stores.dll", + "lib/net9.0/Microsoft.Extensions.Identity.Stores.xml", + "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.dll", + "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.xml", + "microsoft.extensions.identity.stores.9.0.8.nupkg.sha512", + "microsoft.extensions.identity.stores.nuspec" + ] + }, + "Microsoft.Extensions.Localization/9.0.1": { + "sha512": "UgvX4Yb2T3tEsKT30ktZr0H7kTRPapCgEH0bdTwxiEGSdA39/hAQMvvb+vgHpqmevDU5+puyI9ujRkmmbF946w==", + "type": "package", + "path": "microsoft.extensions.localization/9.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/Microsoft.Extensions.Localization.dll", + "lib/net462/Microsoft.Extensions.Localization.xml", + "lib/net9.0/Microsoft.Extensions.Localization.dll", + "lib/net9.0/Microsoft.Extensions.Localization.xml", + "lib/netstandard2.0/Microsoft.Extensions.Localization.dll", + "lib/netstandard2.0/Microsoft.Extensions.Localization.xml", + "microsoft.extensions.localization.9.0.1.nupkg.sha512", + "microsoft.extensions.localization.nuspec" + ] + }, + "Microsoft.Extensions.Localization.Abstractions/9.0.1": { + "sha512": "CABog43lyaZQMjmlktuImCy6zmAzRBaXqN81uPaMQjlp//ISDVYItZPh6KWpWRF4MY/B67X5oDc3JTUpfdocZw==", + "type": "package", + "path": "microsoft.extensions.localization.abstractions/9.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/Microsoft.Extensions.Localization.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Localization.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.Localization.Abstractions.dll", + "lib/net9.0/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.9.0.1.nupkg.sha512", + "microsoft.extensions.localization.abstractions.nuspec" + ] + }, + "Microsoft.Extensions.Logging/9.0.8": { + "sha512": "Z/7ze+0iheT7FJeZPqJKARYvyC2bmwu3whbm/48BJjdlGVvgDguoCqJIkI/67NkroTYobd5geai1WheNQvWrgA==", + "type": "package", + "path": "microsoft.extensions.logging/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "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/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.9.0.8.nupkg.sha512", + "microsoft.extensions.logging.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.8": { + "sha512": "pYnAffJL7ARD/HCnnPvnFKSIHnTSmWz84WIlT9tPeQ4lHNiu0Az7N/8itihWvcF8sT+VVD5lq8V+ckMzu4SbOw==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", + "microsoft.extensions.logging.abstractions.9.0.8.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Options/9.0.8": { + "sha512": "OmTaQ0v4gxGQkehpwWIqPoEiwsPuG/u4HUsbOFoWGx4DKET2AXzopnFe/fE608FIhzc/kcg2p8JdyMRCCUzitQ==", + "type": "package", + "path": "microsoft.extensions.options/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Options.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "buildTransitive/net461/Microsoft.Extensions.Options.targets", + "buildTransitive/net462/Microsoft.Extensions.Options.targets", + "buildTransitive/net8.0/Microsoft.Extensions.Options.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Options.targets", + "lib/net462/Microsoft.Extensions.Options.dll", + "lib/net462/Microsoft.Extensions.Options.xml", + "lib/net8.0/Microsoft.Extensions.Options.dll", + "lib/net8.0/Microsoft.Extensions.Options.xml", + "lib/net9.0/Microsoft.Extensions.Options.dll", + "lib/net9.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.0/Microsoft.Extensions.Options.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.1/Microsoft.Extensions.Options.dll", + "lib/netstandard2.1/Microsoft.Extensions.Options.xml", + "microsoft.extensions.options.9.0.8.nupkg.sha512", + "microsoft.extensions.options.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Primitives/9.0.8": { + "sha512": "tizSIOEsIgSNSSh+hKeUVPK7xmTIjR8s+mJWOu1KXV3htvNQiPMFRMO17OdI1y/4ZApdBVk49u/08QGC9yvLug==", + "type": "package", + "path": "microsoft.extensions.primitives/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Primitives.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets", + "lib/net462/Microsoft.Extensions.Primitives.dll", + "lib/net462/Microsoft.Extensions.Primitives.xml", + "lib/net8.0/Microsoft.Extensions.Primitives.dll", + "lib/net8.0/Microsoft.Extensions.Primitives.xml", + "lib/net9.0/Microsoft.Extensions.Primitives.dll", + "lib/net9.0/Microsoft.Extensions.Primitives.xml", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", + "microsoft.extensions.primitives.9.0.8.nupkg.sha512", + "microsoft.extensions.primitives.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.IdentityModel.Abstractions/8.14.0": { + "sha512": "iwbCpSjD3ehfTwBhtSNEtKPK0ICun6ov7Ibx6ISNA9bfwIyzI2Siwyi9eJFCJBwxowK9xcA1mj+jBWiigeqgcQ==", + "type": "package", + "path": "microsoft.identitymodel.abstractions/8.14.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net462/Microsoft.IdentityModel.Abstractions.dll", + "lib/net462/Microsoft.IdentityModel.Abstractions.xml", + "lib/net472/Microsoft.IdentityModel.Abstractions.dll", + "lib/net472/Microsoft.IdentityModel.Abstractions.xml", + "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll", + "lib/net6.0/Microsoft.IdentityModel.Abstractions.xml", + "lib/net8.0/Microsoft.IdentityModel.Abstractions.dll", + "lib/net8.0/Microsoft.IdentityModel.Abstractions.xml", + "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll", + "lib/net9.0/Microsoft.IdentityModel.Abstractions.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.xml", + "microsoft.identitymodel.abstractions.8.14.0.nupkg.sha512", + "microsoft.identitymodel.abstractions.nuspec" + ] + }, + "Microsoft.IdentityModel.Logging/8.14.0": { + "sha512": "eqqnemdW38CKZEHS6diA50BV94QICozDZEvSrsvN3SJXUFwVB9gy+/oz76gldP7nZliA16IglXjXTCTdmU/Ejg==", + "type": "package", + "path": "microsoft.identitymodel.logging/8.14.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net462/Microsoft.IdentityModel.Logging.dll", + "lib/net462/Microsoft.IdentityModel.Logging.xml", + "lib/net472/Microsoft.IdentityModel.Logging.dll", + "lib/net472/Microsoft.IdentityModel.Logging.xml", + "lib/net6.0/Microsoft.IdentityModel.Logging.dll", + "lib/net6.0/Microsoft.IdentityModel.Logging.xml", + "lib/net8.0/Microsoft.IdentityModel.Logging.dll", + "lib/net8.0/Microsoft.IdentityModel.Logging.xml", + "lib/net9.0/Microsoft.IdentityModel.Logging.dll", + "lib/net9.0/Microsoft.IdentityModel.Logging.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml", + "microsoft.identitymodel.logging.8.14.0.nupkg.sha512", + "microsoft.identitymodel.logging.nuspec" + ] + }, + "Microsoft.IdentityModel.Tokens/8.14.0": { + "sha512": "lKIZiBiGd36k02TCdMHp1KlNWisyIvQxcYJvIkz7P4gSQ9zi8dgh6S5Grj8NNG7HWYIPfQymGyoZ6JB5d1Lo1g==", + "type": "package", + "path": "microsoft.identitymodel.tokens/8.14.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net462/Microsoft.IdentityModel.Tokens.dll", + "lib/net462/Microsoft.IdentityModel.Tokens.xml", + "lib/net472/Microsoft.IdentityModel.Tokens.dll", + "lib/net472/Microsoft.IdentityModel.Tokens.xml", + "lib/net6.0/Microsoft.IdentityModel.Tokens.dll", + "lib/net6.0/Microsoft.IdentityModel.Tokens.xml", + "lib/net8.0/Microsoft.IdentityModel.Tokens.dll", + "lib/net8.0/Microsoft.IdentityModel.Tokens.xml", + "lib/net9.0/Microsoft.IdentityModel.Tokens.dll", + "lib/net9.0/Microsoft.IdentityModel.Tokens.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml", + "microsoft.identitymodel.tokens.8.14.0.nupkg.sha512", + "microsoft.identitymodel.tokens.nuspec" + ] + }, + "Microsoft.JSInterop/9.0.1": { + "sha512": "/xBwIfb0YoC2Muv6EsHjxpqZw2aKv94+i0g0FWZvqvGv3DeAy+8wipAuECVvKYEs2EIclRD41bjajHLoD6mTtw==", + "type": "package", + "path": "microsoft.jsinterop/9.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net9.0/Microsoft.JSInterop.dll", + "lib/net9.0/Microsoft.JSInterop.xml", + "microsoft.jsinterop.9.0.1.nupkg.sha512", + "microsoft.jsinterop.nuspec" + ] + }, + "Microsoft.Win32.Registry/4.7.0": { + "sha512": "KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", + "type": "package", + "path": "microsoft.win32.registry/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.xml", + "lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "microsoft.win32.registry.4.7.0.nupkg.sha512", + "microsoft.win32.registry.nuspec", + "ref/net46/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.xml", + "ref/net472/Microsoft.Win32.Registry.dll", + "ref/net472/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/Microsoft.Win32.Registry.dll", + "ref/netstandard1.3/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml", + "ref/netstandard2.0/Microsoft.Win32.Registry.dll", + "ref/netstandard2.0/Microsoft.Win32.Registry.xml", + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml", + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "sha512": "hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==", + "type": "package", + "path": "microsoft.win32.systemevents/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Win32.SystemEvents.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Win32.SystemEvents.dll", + "lib/net461/Microsoft.Win32.SystemEvents.xml", + "lib/net6.0/Microsoft.Win32.SystemEvents.dll", + "lib/net6.0/Microsoft.Win32.SystemEvents.xml", + "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll", + "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml", + "microsoft.win32.systemevents.6.0.0.nupkg.sha512", + "microsoft.win32.systemevents.nuspec", + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.xml", + "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml", + "useSharedDesignerContext.txt" + ] + }, + "MudBlazor/8.13.0": { + "sha512": "Y6JW93zf8tiVhMSkkL0mZ3ruqjOTNftvVoX3sik6NEnIye+Gs0FXI8rhXfrH2LU79Mw/fOtT5ms3L/Q4TKx2kA==", + "type": "package", + "path": "mudblazor/8.13.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE", + "Nuget.png", + "README.md", + "analyzers/dotnet/cs/MudBlazor.Analyzers.dll", + "build/Microsoft.AspNetCore.StaticWebAssetEndpoints.props", + "build/Microsoft.AspNetCore.StaticWebAssets.props", + "build/MudBlazor.props", + "build/MudBlazor.targets", + "buildMultiTargeting/MudBlazor.props", + "buildTransitive/MudBlazor.props", + "lib/net8.0/MudBlazor.dll", + "lib/net8.0/MudBlazor.xml", + "lib/net9.0/MudBlazor.dll", + "lib/net9.0/MudBlazor.xml", + "mudblazor.8.13.0.nupkg.sha512", + "mudblazor.nuspec", + "staticwebassets/MudBlazor.min.css", + "staticwebassets/MudBlazor.min.js" + ] + }, + "Npgsql/9.0.3": { + "sha512": "tPvY61CxOAWxNsKLEBg+oR646X4Bc8UmyQ/tJszL/7mEmIXQnnBhVJZrZEEUv0Bstu0mEsHZD5At3EO8zQRAYw==", + "type": "package", + "path": "npgsql/9.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net6.0/Npgsql.dll", + "lib/net6.0/Npgsql.xml", + "lib/net8.0/Npgsql.dll", + "lib/net8.0/Npgsql.xml", + "npgsql.9.0.3.nupkg.sha512", + "npgsql.nuspec", + "postgresql.png" + ] + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/9.0.4": { + "sha512": "mw5vcY2IEc7L+IeGrxpp/J5OSnCcjkjAgJYCm/eD52wpZze8zsSifdqV7zXslSMmfJG2iIUGZyo3KuDtEFKwMQ==", + "type": "package", + "path": "npgsql.entityframeworkcore.postgresql/9.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll", + "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.xml", + "npgsql.entityframeworkcore.postgresql.9.0.4.nupkg.sha512", + "npgsql.entityframeworkcore.postgresql.nuspec", + "postgresql.png" + ] + }, + "runtime.native.System.Data.SqlClient.sni/4.7.0": { + "sha512": "9kyFSIdN3T0qjDQ2R0HRXYIhS3l5psBzQi6qqhdLz+SzFyEy4sVxNOke+yyYv8Cu8rPER12c3RDjLT8wF3WBYQ==", + "type": "package", + "path": "runtime.native.system.data.sqlclient.sni/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512", + "runtime.native.system.data.sqlclient.sni.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "sha512": "LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==", + "type": "package", + "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.nuspec", + "runtimes/win-arm64/native/sni.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "sha512": "38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==", + "type": "package", + "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "runtime.win-x64.runtime.native.system.data.sqlclient.sni.nuspec", + "runtimes/win-x64/native/sni.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "sha512": "YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==", + "type": "package", + "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "runtime.win-x86.runtime.native.system.data.sqlclient.sni.nuspec", + "runtimes/win-x86/native/sni.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.CodeDom/6.0.0": { + "sha512": "CPc6tWO1LAer3IzfZufDBRL+UZQcj5uS207NHALQzP84Vp/z6wF0Aa0YZImOQY8iStY0A2zI/e3ihKNPfUm8XA==", + "type": "package", + "path": "system.codedom/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.CodeDom.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.CodeDom.dll", + "lib/net461/System.CodeDom.xml", + "lib/net6.0/System.CodeDom.dll", + "lib/net6.0/System.CodeDom.xml", + "lib/netstandard2.0/System.CodeDom.dll", + "lib/netstandard2.0/System.CodeDom.xml", + "system.codedom.6.0.0.nupkg.sha512", + "system.codedom.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.ComponentModel.Annotations/5.0.0": { + "sha512": "dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==", + "type": "package", + "path": "system.componentmodel.annotations/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.ComponentModel.Annotations.dll", + "lib/netcore50/System.ComponentModel.Annotations.dll", + "lib/netstandard1.4/System.ComponentModel.Annotations.dll", + "lib/netstandard2.0/System.ComponentModel.Annotations.dll", + "lib/netstandard2.1/System.ComponentModel.Annotations.dll", + "lib/netstandard2.1/System.ComponentModel.Annotations.xml", + "lib/portable-net45+win8/_._", + "lib/win8/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.ComponentModel.Annotations.dll", + "ref/net461/System.ComponentModel.Annotations.xml", + "ref/netcore50/System.ComponentModel.Annotations.dll", + "ref/netcore50/System.ComponentModel.Annotations.xml", + "ref/netcore50/de/System.ComponentModel.Annotations.xml", + "ref/netcore50/es/System.ComponentModel.Annotations.xml", + "ref/netcore50/fr/System.ComponentModel.Annotations.xml", + "ref/netcore50/it/System.ComponentModel.Annotations.xml", + "ref/netcore50/ja/System.ComponentModel.Annotations.xml", + "ref/netcore50/ko/System.ComponentModel.Annotations.xml", + "ref/netcore50/ru/System.ComponentModel.Annotations.xml", + "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/System.ComponentModel.Annotations.dll", + "ref/netstandard1.1/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/System.ComponentModel.Annotations.dll", + "ref/netstandard1.3/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/System.ComponentModel.Annotations.dll", + "ref/netstandard1.4/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard2.0/System.ComponentModel.Annotations.dll", + "ref/netstandard2.0/System.ComponentModel.Annotations.xml", + "ref/netstandard2.1/System.ComponentModel.Annotations.dll", + "ref/netstandard2.1/System.ComponentModel.Annotations.xml", + "ref/portable-net45+win8/_._", + "ref/win8/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.annotations.5.0.0.nupkg.sha512", + "system.componentmodel.annotations.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Configuration.ConfigurationManager/6.0.1": { + "sha512": "jXw9MlUu/kRfEU0WyTptAVueupqIeE3/rl0EZDMlf8pcvJnitQ8HeVEp69rZdaStXwTV72boi/Bhw8lOeO+U2w==", + "type": "package", + "path": "system.configuration.configurationmanager/6.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Configuration.ConfigurationManager.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Configuration.ConfigurationManager.dll", + "lib/net461/System.Configuration.ConfigurationManager.xml", + "lib/net6.0/System.Configuration.ConfigurationManager.dll", + "lib/net6.0/System.Configuration.ConfigurationManager.xml", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml", + "runtimes/win/lib/net461/System.Configuration.ConfigurationManager.dll", + "runtimes/win/lib/net461/System.Configuration.ConfigurationManager.xml", + "system.configuration.configurationmanager.6.0.1.nupkg.sha512", + "system.configuration.configurationmanager.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Data.SqlClient/4.8.6": { + "sha512": "2Ij/LCaTQRyAi5lAv7UUTV9R2FobC8xN9mE0fXBZohum/xLl8IZVmE98Rq5ugQHjCgTBRKqpXRb4ORulRdA6Ig==", + "type": "package", + "path": "system.data.sqlclient/4.8.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net451/System.Data.SqlClient.dll", + "lib/net46/System.Data.SqlClient.dll", + "lib/net461/System.Data.SqlClient.dll", + "lib/net461/System.Data.SqlClient.xml", + "lib/netcoreapp2.1/System.Data.SqlClient.dll", + "lib/netcoreapp2.1/System.Data.SqlClient.xml", + "lib/netstandard1.2/System.Data.SqlClient.dll", + "lib/netstandard1.2/System.Data.SqlClient.xml", + "lib/netstandard1.3/System.Data.SqlClient.dll", + "lib/netstandard1.3/System.Data.SqlClient.xml", + "lib/netstandard2.0/System.Data.SqlClient.dll", + "lib/netstandard2.0/System.Data.SqlClient.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net451/System.Data.SqlClient.dll", + "ref/net46/System.Data.SqlClient.dll", + "ref/net461/System.Data.SqlClient.dll", + "ref/net461/System.Data.SqlClient.xml", + "ref/netcoreapp2.1/System.Data.SqlClient.dll", + "ref/netcoreapp2.1/System.Data.SqlClient.xml", + "ref/netstandard1.2/System.Data.SqlClient.dll", + "ref/netstandard1.2/System.Data.SqlClient.xml", + "ref/netstandard1.2/de/System.Data.SqlClient.xml", + "ref/netstandard1.2/es/System.Data.SqlClient.xml", + "ref/netstandard1.2/fr/System.Data.SqlClient.xml", + "ref/netstandard1.2/it/System.Data.SqlClient.xml", + "ref/netstandard1.2/ja/System.Data.SqlClient.xml", + "ref/netstandard1.2/ko/System.Data.SqlClient.xml", + "ref/netstandard1.2/ru/System.Data.SqlClient.xml", + "ref/netstandard1.2/zh-hans/System.Data.SqlClient.xml", + "ref/netstandard1.2/zh-hant/System.Data.SqlClient.xml", + "ref/netstandard1.3/System.Data.SqlClient.dll", + "ref/netstandard1.3/System.Data.SqlClient.xml", + "ref/netstandard1.3/de/System.Data.SqlClient.xml", + "ref/netstandard1.3/es/System.Data.SqlClient.xml", + "ref/netstandard1.3/fr/System.Data.SqlClient.xml", + "ref/netstandard1.3/it/System.Data.SqlClient.xml", + "ref/netstandard1.3/ja/System.Data.SqlClient.xml", + "ref/netstandard1.3/ko/System.Data.SqlClient.xml", + "ref/netstandard1.3/ru/System.Data.SqlClient.xml", + "ref/netstandard1.3/zh-hans/System.Data.SqlClient.xml", + "ref/netstandard1.3/zh-hant/System.Data.SqlClient.xml", + "ref/netstandard2.0/System.Data.SqlClient.dll", + "ref/netstandard2.0/System.Data.SqlClient.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll", + "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.xml", + "runtimes/unix/lib/netstandard1.3/System.Data.SqlClient.dll", + "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll", + "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.xml", + "runtimes/win/lib/net451/System.Data.SqlClient.dll", + "runtimes/win/lib/net46/System.Data.SqlClient.dll", + "runtimes/win/lib/net461/System.Data.SqlClient.dll", + "runtimes/win/lib/net461/System.Data.SqlClient.xml", + "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll", + "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.xml", + "runtimes/win/lib/netstandard1.3/System.Data.SqlClient.dll", + "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll", + "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.xml", + "runtimes/win/lib/uap10.0.16299/System.Data.SqlClient.dll", + "runtimes/win/lib/uap10.0.16299/System.Data.SqlClient.xml", + "system.data.sqlclient.4.8.6.nupkg.sha512", + "system.data.sqlclient.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Drawing.Common/6.0.0": { + "sha512": "NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==", + "type": "package", + "path": "system.drawing.common/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Drawing.Common.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Drawing.Common.dll", + "lib/net461/System.Drawing.Common.xml", + "lib/net6.0/System.Drawing.Common.dll", + "lib/net6.0/System.Drawing.Common.xml", + "lib/netcoreapp3.1/System.Drawing.Common.dll", + "lib/netcoreapp3.1/System.Drawing.Common.xml", + "lib/netstandard2.0/System.Drawing.Common.dll", + "lib/netstandard2.0/System.Drawing.Common.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "runtimes/unix/lib/net6.0/System.Drawing.Common.dll", + "runtimes/unix/lib/net6.0/System.Drawing.Common.xml", + "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.dll", + "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.xml", + "runtimes/win/lib/net6.0/System.Drawing.Common.dll", + "runtimes/win/lib/net6.0/System.Drawing.Common.xml", + "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.dll", + "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.xml", + "system.drawing.common.6.0.0.nupkg.sha512", + "system.drawing.common.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.AccessControl/6.0.0": { + "sha512": "AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==", + "type": "package", + "path": "system.security.accesscontrol/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Security.AccessControl.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.xml", + "lib/net6.0/System.Security.AccessControl.dll", + "lib/net6.0/System.Security.AccessControl.xml", + "lib/netstandard2.0/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.xml", + "runtimes/win/lib/net461/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.xml", + "runtimes/win/lib/net6.0/System.Security.AccessControl.dll", + "runtimes/win/lib/net6.0/System.Security.AccessControl.xml", + "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.dll", + "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.xml", + "system.security.accesscontrol.6.0.0.nupkg.sha512", + "system.security.accesscontrol.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Cryptography.ProtectedData/6.0.0": { + "sha512": "rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==", + "type": "package", + "path": "system.security.cryptography.protecteddata/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Security.Cryptography.ProtectedData.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Security.Cryptography.ProtectedData.dll", + "lib/net461/System.Security.Cryptography.ProtectedData.xml", + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll", + "lib/net6.0/System.Security.Cryptography.ProtectedData.xml", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml", + "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.xml", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512", + "system.security.cryptography.protecteddata.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Permissions/6.0.0": { + "sha512": "T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==", + "type": "package", + "path": "system.security.permissions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Security.Permissions.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Security.Permissions.dll", + "lib/net461/System.Security.Permissions.xml", + "lib/net5.0/System.Security.Permissions.dll", + "lib/net5.0/System.Security.Permissions.xml", + "lib/net6.0/System.Security.Permissions.dll", + "lib/net6.0/System.Security.Permissions.xml", + "lib/netcoreapp3.1/System.Security.Permissions.dll", + "lib/netcoreapp3.1/System.Security.Permissions.xml", + "lib/netstandard2.0/System.Security.Permissions.dll", + "lib/netstandard2.0/System.Security.Permissions.xml", + "runtimes/win/lib/net461/System.Security.Permissions.dll", + "runtimes/win/lib/net461/System.Security.Permissions.xml", + "system.security.permissions.6.0.0.nupkg.sha512", + "system.security.permissions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Principal.Windows/4.7.0": { + "sha512": "ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==", + "type": "package", + "path": "system.security.principal.windows/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.xml", + "lib/netstandard1.3/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.xml", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.xml", + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll", + "ref/netcoreapp3.0/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/System.Security.Principal.Windows.dll", + "ref/netstandard1.3/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/de/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/es/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/it/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml", + "ref/netstandard2.0/System.Security.Principal.Windows.dll", + "ref/netstandard2.0/System.Security.Principal.Windows.xml", + "ref/uap10.0.16299/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.principal.windows.4.7.0.nupkg.sha512", + "system.security.principal.windows.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Windows.Extensions/6.0.0": { + "sha512": "IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==", + "type": "package", + "path": "system.windows.extensions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net6.0/System.Windows.Extensions.dll", + "lib/net6.0/System.Windows.Extensions.xml", + "lib/netcoreapp3.1/System.Windows.Extensions.dll", + "lib/netcoreapp3.1/System.Windows.Extensions.xml", + "runtimes/win/lib/net6.0/System.Windows.Extensions.dll", + "runtimes/win/lib/net6.0/System.Windows.Extensions.xml", + "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.dll", + "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.xml", + "system.windows.extensions.6.0.0.nupkg.sha512", + "system.windows.extensions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "OpenArchival.Blazor.CustomComponents/1.0.0": { + "type": "project", + "path": "../OpenArchival.Blazor.CustomComponents/OpenArchival.Blazor.CustomComponents.csproj", + "msbuildProject": "../OpenArchival.Blazor.CustomComponents/OpenArchival.Blazor.CustomComponents.csproj" + }, + "OpenArchival.DataAccess/1.0.0": { + "type": "project", + "path": "../OpenArchival.DataAccess/OpenArchival.DataAccess.csproj", + "msbuildProject": "../OpenArchival.DataAccess/OpenArchival.DataAccess.csproj" + } + }, + "projectFileDependencyGroups": { + "net9.0": [ + "CodeBeam.MudExtensions >= 6.3.0", + "Microsoft.IdentityModel.Abstractions >= 8.14.0", + "Microsoft.IdentityModel.Tokens >= 8.14.0", + "MudBlazor >= 8.13.0", + "OpenArchival.Blazor.CustomComponents >= 1.0.0", + "OpenArchival.DataAccess >= 1.0.0" + ] + }, + "packageFolders": { + "C:\\Users\\vtall\\.nuget\\packages\\": {}, + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.AdminPages\\OpenArchival.Blazor.AdminPages.csproj", + "projectName": "OpenArchival.Blazor.AdminPages", + "projectPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.AdminPages\\OpenArchival.Blazor.AdminPages.csproj", + "packagesPath": "C:\\Users\\vtall\\.nuget\\packages\\", + "outputPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.AdminPages\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\NuGet.Config", + "C:\\Users\\vtall\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net9.0" + ], + "sources": { + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "projectReferences": { + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\OpenArchival.Blazor.CustomComponents.csproj": { + "projectPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\OpenArchival.Blazor.CustomComponents.csproj" + }, + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj": { + "projectPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "9.0.300" + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "dependencies": { + "CodeBeam.MudExtensions": { + "target": "Package", + "version": "[6.3.0, )" + }, + "Microsoft.IdentityModel.Abstractions": { + "target": "Package", + "version": "[8.14.0, )" + }, + "Microsoft.IdentityModel.Tokens": { + "target": "Package", + "version": "[8.14.0, )" + }, + "MudBlazor": { + "target": "Package", + "version": "[8.13.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.304/PortableRuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/OpenArchival.Blazor.AdminPages/obj/project.nuget.cache b/OpenArchival.Blazor.AdminPages/obj/project.nuget.cache new file mode 100644 index 0000000..35fd40b --- /dev/null +++ b/OpenArchival.Blazor.AdminPages/obj/project.nuget.cache @@ -0,0 +1,63 @@ +{ + "version": 2, + "dgSpecHash": "jCOdA4qmsMg=", + "success": true, + "projectFilePath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.AdminPages\\OpenArchival.Blazor.AdminPages.csproj", + "expectedPackageFiles": [ + "C:\\Users\\vtall\\.nuget\\packages\\buildbundlerminifier\\3.2.449\\buildbundlerminifier.3.2.449.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\codebeam.mudextensions.6.3.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\csvhelper\\30.0.1\\csvhelper.30.0.1.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\entityframework\\6.5.1\\entityframework.6.5.1.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.aspnetcore.authorization\\9.0.1\\microsoft.aspnetcore.authorization.9.0.1.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.aspnetcore.components\\9.0.1\\microsoft.aspnetcore.components.9.0.1.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.aspnetcore.components.analyzers\\9.0.1\\microsoft.aspnetcore.components.analyzers.9.0.1.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.aspnetcore.components.forms\\9.0.1\\microsoft.aspnetcore.components.forms.9.0.1.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.aspnetcore.components.web\\9.0.1\\microsoft.aspnetcore.components.web.9.0.1.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.aspnetcore.cryptography.internal\\9.0.8\\microsoft.aspnetcore.cryptography.internal.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.aspnetcore.cryptography.keyderivation\\9.0.8\\microsoft.aspnetcore.cryptography.keyderivation.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.aspnetcore.identity.entityframeworkcore\\9.0.8\\microsoft.aspnetcore.identity.entityframeworkcore.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.aspnetcore.metadata\\9.0.1\\microsoft.aspnetcore.metadata.9.0.1.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.csharp\\4.7.0\\microsoft.csharp.4.7.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.entityframeworkcore\\9.0.8\\microsoft.entityframeworkcore.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\9.0.8\\microsoft.entityframeworkcore.abstractions.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\9.0.8\\microsoft.entityframeworkcore.analyzers.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\9.0.8\\microsoft.entityframeworkcore.relational.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\9.0.8\\microsoft.extensions.caching.abstractions.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.caching.memory\\9.0.8\\microsoft.extensions.caching.memory.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\9.0.8\\microsoft.extensions.configuration.abstractions.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\9.0.8\\microsoft.extensions.dependencyinjection.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\9.0.8\\microsoft.extensions.dependencyinjection.abstractions.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.identity.core\\9.0.8\\microsoft.extensions.identity.core.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.identity.stores\\9.0.8\\microsoft.extensions.identity.stores.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.localization\\9.0.1\\microsoft.extensions.localization.9.0.1.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.localization.abstractions\\9.0.1\\microsoft.extensions.localization.abstractions.9.0.1.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.logging\\9.0.8\\microsoft.extensions.logging.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\9.0.8\\microsoft.extensions.logging.abstractions.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.options\\9.0.8\\microsoft.extensions.options.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.primitives\\9.0.8\\microsoft.extensions.primitives.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.identitymodel.abstractions\\8.14.0\\microsoft.identitymodel.abstractions.8.14.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.identitymodel.logging\\8.14.0\\microsoft.identitymodel.logging.8.14.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.identitymodel.tokens\\8.14.0\\microsoft.identitymodel.tokens.8.14.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.jsinterop\\9.0.1\\microsoft.jsinterop.9.0.1.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.win32.registry\\4.7.0\\microsoft.win32.registry.4.7.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.win32.systemevents\\6.0.0\\microsoft.win32.systemevents.6.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\mudblazor.8.13.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\npgsql\\9.0.3\\npgsql.9.0.3.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\npgsql.entityframeworkcore.postgresql\\9.0.4\\npgsql.entityframeworkcore.postgresql.9.0.4.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\runtime.native.system.data.sqlclient.sni\\4.7.0\\runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\runtime.win-arm64.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\runtime.win-x64.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\runtime.win-x86.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.codedom\\6.0.0\\system.codedom.6.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.componentmodel.annotations\\5.0.0\\system.componentmodel.annotations.5.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.configuration.configurationmanager\\6.0.1\\system.configuration.configurationmanager.6.0.1.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.data.sqlclient\\4.8.6\\system.data.sqlclient.4.8.6.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.drawing.common\\6.0.0\\system.drawing.common.6.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.security.accesscontrol\\6.0.0\\system.security.accesscontrol.6.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.security.cryptography.protecteddata\\6.0.0\\system.security.cryptography.protecteddata.6.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.security.permissions\\6.0.0\\system.security.permissions.6.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.security.principal.windows\\4.7.0\\system.security.principal.windows.4.7.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.windows.extensions\\6.0.0\\system.windows.extensions.6.0.0.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/OpenArchival.Blazor.CustomComponents/ChipContainer.razor b/OpenArchival.Blazor.CustomComponents/ChipContainer.razor new file mode 100644 index 0000000..a66733d --- /dev/null +++ b/OpenArchival.Blazor.CustomComponents/ChipContainer.razor @@ -0,0 +1,96 @@ +@namespace OpenArchival.Blazor.CustomComponents + +@using MudBlazor +@using MudExtensions + +@* ChipContainer.razor *@ +@typeparam T + +
+ @* Loop through and display each item as a chip *@ + @foreach (var item in Items) + { + @if (DeleteEnabled) + { + + @DisplayFunc(item) + + } else + { + + @DisplayFunc(item) + + } + } + + @* Render the input control provided by the consumer *@ +
+ @if (InputContent is not null) + { + @InputContent(this) + } +
+ + @SubmitButton +
+ +@code { + [Parameter] + public bool DeleteEnabled { get; set; } = true; + + /// + /// The list of items to display and manage. + /// + [Parameter] + public required List Items { get; set; } = new(); + + /// + /// Required for two-way binding (@bind-Items). + /// + [Parameter] + public EventCallback> ItemsChanged { get; set; } + + /// + /// The RenderFragment that defines the custom input control. + /// The 'context' is a reference to this component instance. + /// + [Parameter] + public RenderFragment>? InputContent { get; set; } + + [Parameter] + public RenderFragment SubmitButton { get; set; } + + /// + /// A function to convert an item of type T to a string for display in the chip. + /// Defaults to item.ToString(). + /// + [Parameter] + public Func DisplayFunc { get; set; } = item => item?.ToString() ?? string.Empty; + + /// + /// A public method that the consumer's input control can call to add a new item. + /// + public async Task AddItem(T item) + { + if (item is null || (item is string str && string.IsNullOrWhiteSpace(str))) + { + return; + } + + // Add the item if it doesn't already exist + if (!Items.Contains(item)) + { + Items.Add(item); + await ItemsChanged.InvokeAsync(Items); + } + } + + /// + /// Removes an item from the list when the chip's close icon is clicked. + /// + private async Task RemoveItem(T item) + { + Items.Remove(item); + await ItemsChanged.InvokeAsync(Items); + } +} \ No newline at end of file diff --git a/OpenArchival.Blazor.CustomComponents/FileUploadOptions.cs b/OpenArchival.Blazor.CustomComponents/FileUploadOptions.cs new file mode 100644 index 0000000..4857491 --- /dev/null +++ b/OpenArchival.Blazor.CustomComponents/FileUploadOptions.cs @@ -0,0 +1,10 @@ +namespace OpenArchival.Blazor.CustomComponents; + +public class FileUploadOptions +{ + public static string Key = "FileUploadOptions"; + public required long MaxUploadSizeBytes { get; set; } + public required string UploadFolderPath { get; set; } + + public required int MaxFileCount { get; set; } +} diff --git a/OpenArchival.Blazor.CustomComponents/OpenArchival.Blazor.CustomComponents.csproj b/OpenArchival.Blazor.CustomComponents/OpenArchival.Blazor.CustomComponents.csproj new file mode 100644 index 0000000..dcadd1b --- /dev/null +++ b/OpenArchival.Blazor.CustomComponents/OpenArchival.Blazor.CustomComponents.csproj @@ -0,0 +1,25 @@ + + + + net9.0 + enable + enable + true + + + + + + + + + + + + + + + + + + diff --git a/OpenArchival.Blazor.CustomComponents/UploadDropBox.razor b/OpenArchival.Blazor.CustomComponents/UploadDropBox.razor new file mode 100644 index 0000000..70ba577 --- /dev/null +++ b/OpenArchival.Blazor.CustomComponents/UploadDropBox.razor @@ -0,0 +1,254 @@ +@namespace OpenArchival.Blazor.CustomComponents + +@using Microsoft.Extensions.Logging +@using Microsoft.Extensions.Options +@using OpenArchival.DataAccess +@using Microsoft.AspNetCore.Components.Forms +@using MudBlazor + + + + + + @if (Files.Any() || ExistingFiles.Any()) + { + + @foreach (var file in Files) + { + var color = _fileToDiskFileName.Keys.Contains(file) ? Color.Success : Color.Warning; + + } + + @foreach (var filelisting in ExistingFiles) + { + + } + + } + + + + Open file picker + + + Upload + + + Clear + + + + @if (Files.Count != _fileToDiskFileName.Count) + { + *Files must be uploaded + } + + +@inject IOptions _options; +@inject IFilePathListingProvider PathProvider; +@inject ISnackbar Snackbar; +@inject ILogger _logger; + +@code { + private const string DefaultDragClass = "relative rounded-lg border-2 border-dashed pa-4 mt-4 mud-width-full mud-height-full"; + + private string _dragClass = DefaultDragClass; + + public readonly List Files = new(); + + private readonly Dictionary _fileToDiskFileName = new(); + + private MudFileUpload>? _fileUpload; + + public int SelectedFileCount { get => Files.Count; } + + public bool UploadsComplete { get; set; } = true; + + [Parameter] + public EventCallback> FilesUploaded {get; set; } + + [Parameter] + public EventCallback ClearClicked { get; set; } + + [Parameter] + public List ExistingFiles { get; set; } = new(); + + protected override Task OnParametersSetAsync() + { + StateHasChanged(); + return base.OnParametersSetAsync(); + } + + private async Task ClearAsync() + { + foreach (var pair in _fileToDiskFileName) + { + try + { + FileInfo targetFile = new(pair.Value); + if (targetFile.Exists) + { + targetFile.Delete(); + } + await PathProvider.DeleteFilePathListingAsync(pair.Key.Name, pair.Value); + } + catch (Exception ex) + { + _logger.LogError(ex, "Error deleting file {FileName}", pair.Key.Name); + Snackbar.Add($"Error cleaning up file: {pair.Key.Name}", Severity.Warning); + } + } + + foreach (var listing in ExistingFiles) + { + try + { + FileInfo targetFile = new(listing.Path); + if (targetFile.Exists) + { + targetFile.Delete(); + } + await PathProvider.DeleteFilePathListingAsync(listing.OriginalName, listing.Path); + } + catch (Exception ex) + { + _logger.LogError(ex, $"Error deleting file {listing.Path}"); + Snackbar.Add($"Error cleaning up file: {listing.OriginalName}", Severity.Warning); + } + } + + _fileToDiskFileName.Clear(); + Files.Clear(); + await (_fileUpload?.ClearAsync() ?? Task.CompletedTask); + + ClearDragClass(); + UploadsComplete = true; + await ClearClicked.InvokeAsync(); + } + + private Task OpenFilePickerAsync() + => _fileUpload?.OpenFilePickerAsync() ?? Task.CompletedTask; + + private void OnInputFileChanged(InputFileChangeEventArgs e) + { + ClearDragClass(); + var files = e.GetMultipleFiles(maximumFileCount: _options.Value.MaxFileCount); + Files.AddRange(files); + + UploadsComplete = false; + StateHasChanged(); + } + + private async Task Upload() + { + if (!Files.Any()) + { + Snackbar.Add("No files to upload.", Severity.Warning); + return; + } + + Snackbar.Configuration.PositionClass = Defaults.Classes.Position.TopCenter; + + List fileListings = []; + foreach (var file in Files) + { + if (_fileToDiskFileName.ContainsKey(file)) continue; + try + { + var diskFileName = $"{Guid.NewGuid()}{Path.GetExtension(file.Name)}"; + var destinationPath = Path.Combine(_options.Value.UploadFolderPath, diskFileName); + + await using var browserUploadStream = file.OpenReadStream(maxAllowedSize: _options.Value.MaxUploadSizeBytes); + await using var outFileStream = new FileStream(destinationPath, FileMode.Create); + + await browserUploadStream.CopyToAsync(outFileStream); + + _fileToDiskFileName.Add(file, destinationPath); + + var fileListing = new FilePathListing() { Path = destinationPath, OriginalName = Path.GetFileName(file.Name) }; + fileListings.Add(fileListing); + await PathProvider.CreateFilePathListingAsync(fileListing); + + Snackbar.Add($"Uploaded {file.Name}", Severity.Success); + + UploadsComplete = true; + } + catch (Exception ex) + { + Snackbar.Add($"Error uploading file {file.Name}: {ex.Message}", Severity.Error); + } + } + + await FilesUploaded.InvokeAsync(fileListings); + } + + private void SetDragClass() + => _dragClass = $"{DefaultDragClass} mud-border-primary"; + + private void ClearDragClass() + => _dragClass = DefaultDragClass; + + public void RemoveFile(string filename) + { + var existingFile = ExistingFiles.Where(f => f.OriginalName == filename).FirstOrDefault(); + if (existingFile is not null) + { + ExistingFiles.Remove(existingFile); + } + + var file = Files.Where(f => f.Name == filename).FirstOrDefault(); + if (file is not null) + { + Files.Remove(file); + } + } +} \ No newline at end of file diff --git a/OpenArchival.Blazor.CustomComponents/bin/Debug/net9.0/OpenArchival.Blazor.CustomComponents.deps.json b/OpenArchival.Blazor.CustomComponents/bin/Debug/net9.0/OpenArchival.Blazor.CustomComponents.deps.json new file mode 100644 index 0000000..47d2483 --- /dev/null +++ b/OpenArchival.Blazor.CustomComponents/bin/Debug/net9.0/OpenArchival.Blazor.CustomComponents.deps.json @@ -0,0 +1,949 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v9.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v9.0": { + "OpenArchival.Blazor.CustomComponents/1.0.0": { + "dependencies": { + "CodeBeam.MudExtensions": "6.3.0", + "MudBlazor": "8.13.0", + "OpenArchival.DataAccess": "1.0.0" + }, + "runtime": { + "OpenArchival.Blazor.CustomComponents.dll": {} + } + }, + "BuildBundlerMinifier/3.2.449": {}, + "CodeBeam.MudExtensions/6.3.0": { + "dependencies": { + "BuildBundlerMinifier": "3.2.449", + "CsvHelper": "30.0.1", + "Microsoft.AspNetCore.Components": "9.0.1", + "Microsoft.AspNetCore.Components.Web": "9.0.1", + "MudBlazor": "8.13.0" + }, + "runtime": { + "lib/net7.0/CodeBeam.MudExtensions.dll": { + "assemblyVersion": "6.3.0.0", + "fileVersion": "6.3.0.0" + } + } + }, + "CsvHelper/30.0.1": { + "runtime": { + "lib/net6.0/CsvHelper.dll": { + "assemblyVersion": "30.0.0.0", + "fileVersion": "30.0.1.0" + } + } + }, + "EntityFramework/6.5.1": { + "dependencies": { + "Microsoft.CSharp": "4.7.0", + "System.CodeDom": "6.0.0", + "System.ComponentModel.Annotations": "5.0.0", + "System.Configuration.ConfigurationManager": "6.0.1", + "System.Data.SqlClient": "4.8.6" + }, + "runtime": { + "lib/netstandard2.1/EntityFramework.SqlServer.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.500.124.31603" + }, + "lib/netstandard2.1/EntityFramework.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.500.124.31603" + } + } + }, + "Microsoft.AspNetCore.Authorization/9.0.1": { + "dependencies": { + "Microsoft.AspNetCore.Metadata": "9.0.1", + "Microsoft.Extensions.Logging.Abstractions": "9.0.8", + "Microsoft.Extensions.Options": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Authorization.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.124.61009" + } + } + }, + "Microsoft.AspNetCore.Components/9.0.1": { + "dependencies": { + "Microsoft.AspNetCore.Authorization": "9.0.1", + "Microsoft.AspNetCore.Components.Analyzers": "9.0.1" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Components.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.124.61009" + } + } + }, + "Microsoft.AspNetCore.Components.Analyzers/9.0.1": {}, + "Microsoft.AspNetCore.Components.Forms/9.0.1": { + "dependencies": { + "Microsoft.AspNetCore.Components": "9.0.1" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Components.Forms.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.124.61009" + } + } + }, + "Microsoft.AspNetCore.Components.Web/9.0.1": { + "dependencies": { + "Microsoft.AspNetCore.Components": "9.0.1", + "Microsoft.AspNetCore.Components.Forms": "9.0.1", + "Microsoft.Extensions.DependencyInjection": "9.0.8", + "Microsoft.Extensions.Primitives": "9.0.8", + "Microsoft.JSInterop": "9.0.1" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Components.Web.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.124.61009" + } + } + }, + "Microsoft.AspNetCore.Cryptography.Internal/9.0.8": { + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Cryptography.Internal.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36808" + } + } + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/9.0.8": { + "dependencies": { + "Microsoft.AspNetCore.Cryptography.Internal": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36808" + } + } + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore/9.0.8": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Relational": "9.0.8", + "Microsoft.Extensions.Identity.Stores": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": { + "assemblyVersion": "9.0.8.0", + "fileVersion": "9.0.825.36808" + } + } + }, + "Microsoft.AspNetCore.Metadata/9.0.1": { + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Metadata.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.124.61009" + } + } + }, + "Microsoft.CSharp/4.7.0": {}, + "Microsoft.EntityFrameworkCore/9.0.8": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "9.0.8", + "Microsoft.EntityFrameworkCore.Analyzers": "9.0.8", + "Microsoft.Extensions.Caching.Memory": "9.0.8", + "Microsoft.Extensions.Logging": "9.0.8" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.dll": { + "assemblyVersion": "9.0.8.0", + "fileVersion": "9.0.825.36802" + } + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/9.0.8": { + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "assemblyVersion": "9.0.8.0", + "fileVersion": "9.0.825.36802" + } + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/9.0.8": {}, + "Microsoft.EntityFrameworkCore.Relational/9.0.8": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "9.0.8", + "Microsoft.Extensions.Caching.Memory": "9.0.8", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.8", + "Microsoft.Extensions.Logging": "9.0.8" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "assemblyVersion": "9.0.8.0", + "fileVersion": "9.0.825.36802" + } + } + }, + "Microsoft.Extensions.Caching.Abstractions/9.0.8": { + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Extensions.Caching.Memory/9.0.8": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "9.0.8", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8", + "Microsoft.Extensions.Logging.Abstractions": "9.0.8", + "Microsoft.Extensions.Options": "9.0.8", + "Microsoft.Extensions.Primitives": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Caching.Memory.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.8": { + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Extensions.DependencyInjection/9.0.8": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.8": { + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Extensions.Identity.Core/9.0.8": { + "dependencies": { + "Microsoft.AspNetCore.Cryptography.KeyDerivation": "9.0.8", + "Microsoft.Extensions.Logging": "9.0.8", + "Microsoft.Extensions.Options": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Identity.Core.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36808" + } + } + }, + "Microsoft.Extensions.Identity.Stores/9.0.8": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "9.0.8", + "Microsoft.Extensions.Identity.Core": "9.0.8", + "Microsoft.Extensions.Logging": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Identity.Stores.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36808" + } + } + }, + "Microsoft.Extensions.Localization/9.0.1": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8", + "Microsoft.Extensions.Localization.Abstractions": "9.0.1", + "Microsoft.Extensions.Logging.Abstractions": "9.0.8", + "Microsoft.Extensions.Options": "9.0.8" + }, + "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.8": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "9.0.8", + "Microsoft.Extensions.Logging.Abstractions": "9.0.8", + "Microsoft.Extensions.Options": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.8": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Extensions.Options/9.0.8": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8", + "Microsoft.Extensions.Primitives": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Extensions.Primitives/9.0.8": { + "runtime": { + "lib/net9.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.JSInterop/9.0.1": { + "runtime": { + "lib/net9.0/Microsoft.JSInterop.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.124.61009" + } + } + }, + "Microsoft.Win32.Registry/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "runtime": { + "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "MudBlazor/8.13.0": { + "dependencies": { + "Microsoft.AspNetCore.Components": "9.0.1", + "Microsoft.AspNetCore.Components.Web": "9.0.1", + "Microsoft.Extensions.Localization": "9.0.1" + }, + "runtime": { + "lib/net9.0/MudBlazor.dll": { + "assemblyVersion": "8.13.0.0", + "fileVersion": "8.13.0.0" + } + } + }, + "Npgsql/9.0.3": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "9.0.8" + }, + "runtime": { + "lib/net8.0/Npgsql.dll": { + "assemblyVersion": "9.0.3.0", + "fileVersion": "9.0.3.0" + } + } + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/9.0.4": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "9.0.8", + "Microsoft.EntityFrameworkCore.Relational": "9.0.8", + "Npgsql": "9.0.3" + }, + "runtime": { + "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { + "assemblyVersion": "9.0.4.0", + "fileVersion": "9.0.4.0" + } + } + }, + "runtime.native.System.Data.SqlClient.sni/4.7.0": { + "dependencies": { + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0" + } + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "runtimeTargets": { + "runtimes/win-arm64/native/sni.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "4.6.25512.1" + } + } + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "runtimeTargets": { + "runtimes/win-x64/native/sni.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "4.6.25512.1" + } + } + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "runtimeTargets": { + "runtimes/win-x86/native/sni.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "4.6.25512.1" + } + } + }, + "System.CodeDom/6.0.0": { + "runtime": { + "lib/net6.0/System.CodeDom.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.ComponentModel.Annotations/5.0.0": {}, + "System.Configuration.ConfigurationManager/6.0.1": { + "dependencies": { + "System.Security.Cryptography.ProtectedData": "6.0.0", + "System.Security.Permissions": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.922.41905" + } + } + }, + "System.Data.SqlClient/4.8.6": { + "dependencies": { + "Microsoft.Win32.Registry": "4.7.0", + "System.Security.Principal.Windows": "4.7.0", + "runtime.native.System.Data.SqlClient.sni": "4.7.0" + }, + "runtime": { + "lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "assemblyVersion": "4.6.1.6", + "fileVersion": "4.700.23.52603" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "4.6.1.6", + "fileVersion": "4.700.23.52603" + }, + "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.6.1.6", + "fileVersion": "4.700.23.52603" + } + } + }, + "System.Drawing.Common/6.0.0": { + "dependencies": { + "Microsoft.Win32.SystemEvents": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Drawing.Common.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + }, + "runtimes/win/lib/net6.0/System.Drawing.Common.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Security.AccessControl/6.0.0": {}, + "System.Security.Cryptography.ProtectedData/6.0.0": { + "runtime": { + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Security.Permissions/6.0.0": { + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Windows.Extensions": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Security.Permissions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Security.Principal.Windows/4.7.0": {}, + "System.Windows.Extensions/6.0.0": { + "dependencies": { + "System.Drawing.Common": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Windows.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "OpenArchival.DataAccess/1.0.0": { + "dependencies": { + "EntityFramework": "6.5.1", + "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "9.0.8", + "Microsoft.EntityFrameworkCore": "9.0.8", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8", + "Npgsql": "9.0.3", + "Npgsql.EntityFrameworkCore.PostgreSQL": "9.0.4" + }, + "runtime": { + "OpenArchival.DataAccess.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + } + } + }, + "libraries": { + "OpenArchival.Blazor.CustomComponents/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "BuildBundlerMinifier/3.2.449": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uA9sYDy4VepL3xwzBTLcP2LyuVYMt0ZIT3gaSiXvGoX15Ob+rOP+hGydhevlSVd+rFo+Y+VQFEHDuWU8HBW+XA==", + "path": "buildbundlerminifier/3.2.449", + "hashPath": "buildbundlerminifier.3.2.449.nupkg.sha512" + }, + "CodeBeam.MudExtensions/6.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-U5J0IlIg8R166hm9RwVjjbCtbBs3ixLev94NmfQHaBVUn3P4un+DoirfUjcUs96wvKb5K9H9ou39Yq+wBO11IA==", + "path": "codebeam.mudextensions/6.3.0", + "hashPath": "codebeam.mudextensions.6.3.0.nupkg.sha512" + }, + "CsvHelper/30.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rcZtgbWR+As4G3Vpgx0AMNmShGuQLFjkHAPIIflzrfkJCx8/AOd4m96ZRmiU1Wi39qS5UVjV0P8qdgqOo5Cwyg==", + "path": "csvhelper/30.0.1", + "hashPath": "csvhelper.30.0.1.nupkg.sha512" + }, + "EntityFramework/6.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sQRP2lWg1i3aAGWqdliAM8zrGx7LHMUk+9/MoxUjwfTZYGMXvZ2JYZTlyTm1PqDxvn3c9E3U76TWDON7Y5+CVA==", + "path": "entityframework/6.5.1", + "hashPath": "entityframework.6.5.1.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authorization/9.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WgLlLBlMczb2+QLNG6sM95OUZ0EBztz60k/N75tjIgpyu0SdpIfYytAmX/7JJAjRTZF0c/CrWaQV+SH9FuGsrA==", + "path": "microsoft.aspnetcore.authorization/9.0.1", + "hashPath": "microsoft.aspnetcore.authorization.9.0.1.nupkg.sha512" + }, + "Microsoft.AspNetCore.Components/9.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6pwfbQKNtvPkbF4tCGiAKGyt6BVpu58xAXz7u2YXcUKTNmNxrymbG1mEyMc0EPzVdnquDDqTyfXM3mC1EJycxQ==", + "path": "microsoft.aspnetcore.components/9.0.1", + "hashPath": "microsoft.aspnetcore.components.9.0.1.nupkg.sha512" + }, + "Microsoft.AspNetCore.Components.Analyzers/9.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I8Rs4LXT5UQxM5Nin2+Oj8aSY2heszSZ3EyTLgt3mxmfiRPrVO7D8NNSsf1voI2Gb0qFJceof/J5c9E+nfNuHw==", + "path": "microsoft.aspnetcore.components.analyzers/9.0.1", + "hashPath": "microsoft.aspnetcore.components.analyzers.9.0.1.nupkg.sha512" + }, + "Microsoft.AspNetCore.Components.Forms/9.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KyULVU32bLz74LWDwPEwNUEllTehzWJuM7YAsz80rMKEzvR0K8cRjRzO0fnN/nfydMeLRRlbI0xj8wnEAymLVw==", + "path": "microsoft.aspnetcore.components.forms/9.0.1", + "hashPath": "microsoft.aspnetcore.components.forms.9.0.1.nupkg.sha512" + }, + "Microsoft.AspNetCore.Components.Web/9.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LI0vjYEd9MaDZPDQxPCn4gGYDkEC5U9rp1nWZo7rPozJxgTG2zU3WERujxTi2LeAC2ZzdXlOVCrUyPQ55LZV2A==", + "path": "microsoft.aspnetcore.components.web/9.0.1", + "hashPath": "microsoft.aspnetcore.components.web.9.0.1.nupkg.sha512" + }, + "Microsoft.AspNetCore.Cryptography.Internal/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NwGO0wh/IjEthBLGA6fWfIiftsNF/paA5RxWp6ji4wWazetJgQ4truR9nU2thAzzFLiXqlg8vGjdVDA8bHu0zA==", + "path": "microsoft.aspnetcore.cryptography.internal/9.0.8", + "hashPath": "microsoft.aspnetcore.cryptography.internal.9.0.8.nupkg.sha512" + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gK70xxXYwwPiXYKYVmLYMuIO5EOGrRtQghmM6PkgtZ/0lgLEjIs//xgSLvZkV/mroNHA1DEqTcqscEj9OzZ1IA==", + "path": "microsoft.aspnetcore.cryptography.keyderivation/9.0.8", + "hashPath": "microsoft.aspnetcore.cryptography.keyderivation.9.0.8.nupkg.sha512" + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-z4q9roxXMQePwFM5tXXZS5sKkU78yYXVkj56NYYx9xKe+mxGkJMV1MaO0GFE6HnnM8bE3Xxhs0hAPw2jKbse6w==", + "path": "microsoft.aspnetcore.identity.entityframeworkcore/9.0.8", + "hashPath": "microsoft.aspnetcore.identity.entityframeworkcore.9.0.8.nupkg.sha512" + }, + "Microsoft.AspNetCore.Metadata/9.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-EZnHifamF7IFEIyjAKMtJM3I/94OIe72i3P09v5oL0twmsmfQwal6Ni3m8lbB5mge3jWFhMozeW+rUdRSqnXRQ==", + "path": "microsoft.aspnetcore.metadata/9.0.1", + "hashPath": "microsoft.aspnetcore.metadata.9.0.1.nupkg.sha512" + }, + "Microsoft.CSharp/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", + "path": "microsoft.csharp/4.7.0", + "hashPath": "microsoft.csharp.4.7.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bNGdPhN762+BIIO5MFYLjafRqkSS1MqLOc/erd55InvLnFxt9H3N5JNsuag1ZHyBor1VtD42U0CHpgqkWeAYgQ==", + "path": "microsoft.entityframeworkcore/9.0.8", + "hashPath": "microsoft.entityframeworkcore.9.0.8.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Abstractions/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-B2yfAIQRRAQ4zvvWqh+HudD+juV3YoLlpXnrog3tU0PM9AFpuq6xo0+mEglN1P43WgdcUiF+65CWBcZe35s15Q==", + "path": "microsoft.entityframeworkcore.abstractions/9.0.8", + "hashPath": "microsoft.entityframeworkcore.abstractions.9.0.8.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Analyzers/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2EYStCXt4Hi9p3J3EYMQbItJDtASJd064Kcs8C8hj8Jt5srILrR9qlaL0Ryvk8NrWQoCQvIELsmiuqLEZMLvGA==", + "path": "microsoft.entityframeworkcore.analyzers/9.0.8", + "hashPath": "microsoft.entityframeworkcore.analyzers.9.0.8.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Relational/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OVhfyxiHxMvYpwQ8Jy3YZi4koy6TK5/Q7C1oq3z6db+HEGuu6x9L1BX5zDIdJxxlRePMyO4D8ORiXj/D7+MUqw==", + "path": "microsoft.entityframeworkcore.relational/9.0.8", + "hashPath": "microsoft.entityframeworkcore.relational.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Abstractions/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4h7bsVoKoiK+SlPM+euX/ayGnKZhl47pPCidLTiio9xyG+vgVVfcYxcYQgjm0SCrdSxjG0EGIAKF8EFr3G8Ifw==", + "path": "microsoft.extensions.caching.abstractions/9.0.8", + "hashPath": "microsoft.extensions.caching.abstractions.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Memory/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-grR+oPyj8HVn4DT8CFUUdSw2pZZKS13KjytFe4txpHQliGM1GEDotohmjgvyl3hm7RFB3FRqvbouEX3/1ewp5A==", + "path": "microsoft.extensions.caching.memory/9.0.8", + "hashPath": "microsoft.extensions.caching.memory.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yNou2KM35RvzOh4vUFtl2l33rWPvOCoba+nzEDJ+BgD8aOL/jew4WPCibQvntRfOJ2pJU8ARygSMD+pdjvDHuA==", + "path": "microsoft.extensions.configuration.abstractions/9.0.8", + "hashPath": "microsoft.extensions.configuration.abstractions.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JJjI2Fa+QtZcUyuNjbKn04OjIUX5IgFGFu/Xc+qvzh1rXdZHLcnqqVXhR4093bGirTwacRlHiVg1XYI9xum6QQ==", + "path": "microsoft.extensions.dependencyinjection/9.0.8", + "hashPath": "microsoft.extensions.dependencyinjection.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xY3lTjj4+ZYmiKIkyWitddrp1uL5uYiweQjqo4BKBw01ZC4HhcfgLghDpPZcUlppgWAFqFy9SgkiYWOMx365pw==", + "path": "microsoft.extensions.dependencyinjection.abstractions/9.0.8", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Identity.Core/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-giUYz84GHAizDucZp5vWAusDO2s9Jrrg2jQ6HUQNGs5HQMKJVobLPMQSiyg8R4yecH0pIc0QjANh0B/Kw13BHA==", + "path": "microsoft.extensions.identity.core/9.0.8", + "hashPath": "microsoft.extensions.identity.core.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Identity.Stores/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sycaHcq78yI591+KxEdd53a7pJGQEl9H/wDsFkaPNE9g7loyq8vufPcc/9RH3KlGt5joR5Ey7PdoRSrlLjCgJg==", + "path": "microsoft.extensions.identity.stores/9.0.8", + "hashPath": "microsoft.extensions.identity.stores.9.0.8.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.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Z/7ze+0iheT7FJeZPqJKARYvyC2bmwu3whbm/48BJjdlGVvgDguoCqJIkI/67NkroTYobd5geai1WheNQvWrgA==", + "path": "microsoft.extensions.logging/9.0.8", + "hashPath": "microsoft.extensions.logging.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pYnAffJL7ARD/HCnnPvnFKSIHnTSmWz84WIlT9tPeQ4lHNiu0Az7N/8itihWvcF8sT+VVD5lq8V+ckMzu4SbOw==", + "path": "microsoft.extensions.logging.abstractions/9.0.8", + "hashPath": "microsoft.extensions.logging.abstractions.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Options/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OmTaQ0v4gxGQkehpwWIqPoEiwsPuG/u4HUsbOFoWGx4DKET2AXzopnFe/fE608FIhzc/kcg2p8JdyMRCCUzitQ==", + "path": "microsoft.extensions.options/9.0.8", + "hashPath": "microsoft.extensions.options.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tizSIOEsIgSNSSh+hKeUVPK7xmTIjR8s+mJWOu1KXV3htvNQiPMFRMO17OdI1y/4ZApdBVk49u/08QGC9yvLug==", + "path": "microsoft.extensions.primitives/9.0.8", + "hashPath": "microsoft.extensions.primitives.9.0.8.nupkg.sha512" + }, + "Microsoft.JSInterop/9.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/xBwIfb0YoC2Muv6EsHjxpqZw2aKv94+i0g0FWZvqvGv3DeAy+8wipAuECVvKYEs2EIclRD41bjajHLoD6mTtw==", + "path": "microsoft.jsinterop/9.0.1", + "hashPath": "microsoft.jsinterop.9.0.1.nupkg.sha512" + }, + "Microsoft.Win32.Registry/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", + "path": "microsoft.win32.registry/4.7.0", + "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512" + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==", + "path": "microsoft.win32.systemevents/6.0.0", + "hashPath": "microsoft.win32.systemevents.6.0.0.nupkg.sha512" + }, + "MudBlazor/8.13.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Y6JW93zf8tiVhMSkkL0mZ3ruqjOTNftvVoX3sik6NEnIye+Gs0FXI8rhXfrH2LU79Mw/fOtT5ms3L/Q4TKx2kA==", + "path": "mudblazor/8.13.0", + "hashPath": "mudblazor.8.13.0.nupkg.sha512" + }, + "Npgsql/9.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tPvY61CxOAWxNsKLEBg+oR646X4Bc8UmyQ/tJszL/7mEmIXQnnBhVJZrZEEUv0Bstu0mEsHZD5At3EO8zQRAYw==", + "path": "npgsql/9.0.3", + "hashPath": "npgsql.9.0.3.nupkg.sha512" + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/9.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mw5vcY2IEc7L+IeGrxpp/J5OSnCcjkjAgJYCm/eD52wpZze8zsSifdqV7zXslSMmfJG2iIUGZyo3KuDtEFKwMQ==", + "path": "npgsql.entityframeworkcore.postgresql/9.0.4", + "hashPath": "npgsql.entityframeworkcore.postgresql.9.0.4.nupkg.sha512" + }, + "runtime.native.System.Data.SqlClient.sni/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9kyFSIdN3T0qjDQ2R0HRXYIhS3l5psBzQi6qqhdLz+SzFyEy4sVxNOke+yyYv8Cu8rPER12c3RDjLT8wF3WBYQ==", + "path": "runtime.native.system.data.sqlclient.sni/4.7.0", + "hashPath": "runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512" + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==", + "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0", + "hashPath": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==", + "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0", + "hashPath": "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==", + "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0", + "hashPath": "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" + }, + "System.CodeDom/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CPc6tWO1LAer3IzfZufDBRL+UZQcj5uS207NHALQzP84Vp/z6wF0Aa0YZImOQY8iStY0A2zI/e3ihKNPfUm8XA==", + "path": "system.codedom/6.0.0", + "hashPath": "system.codedom.6.0.0.nupkg.sha512" + }, + "System.ComponentModel.Annotations/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==", + "path": "system.componentmodel.annotations/5.0.0", + "hashPath": "system.componentmodel.annotations.5.0.0.nupkg.sha512" + }, + "System.Configuration.ConfigurationManager/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jXw9MlUu/kRfEU0WyTptAVueupqIeE3/rl0EZDMlf8pcvJnitQ8HeVEp69rZdaStXwTV72boi/Bhw8lOeO+U2w==", + "path": "system.configuration.configurationmanager/6.0.1", + "hashPath": "system.configuration.configurationmanager.6.0.1.nupkg.sha512" + }, + "System.Data.SqlClient/4.8.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2Ij/LCaTQRyAi5lAv7UUTV9R2FobC8xN9mE0fXBZohum/xLl8IZVmE98Rq5ugQHjCgTBRKqpXRb4ORulRdA6Ig==", + "path": "system.data.sqlclient/4.8.6", + "hashPath": "system.data.sqlclient.4.8.6.nupkg.sha512" + }, + "System.Drawing.Common/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==", + "path": "system.drawing.common/6.0.0", + "hashPath": "system.drawing.common.6.0.0.nupkg.sha512" + }, + "System.Security.AccessControl/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==", + "path": "system.security.accesscontrol/6.0.0", + "hashPath": "system.security.accesscontrol.6.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.ProtectedData/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==", + "path": "system.security.cryptography.protecteddata/6.0.0", + "hashPath": "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512" + }, + "System.Security.Permissions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==", + "path": "system.security.permissions/6.0.0", + "hashPath": "system.security.permissions.6.0.0.nupkg.sha512" + }, + "System.Security.Principal.Windows/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==", + "path": "system.security.principal.windows/4.7.0", + "hashPath": "system.security.principal.windows.4.7.0.nupkg.sha512" + }, + "System.Windows.Extensions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==", + "path": "system.windows.extensions/6.0.0", + "hashPath": "system.windows.extensions.6.0.0.nupkg.sha512" + }, + "OpenArchival.DataAccess/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/OpenArchival.Blazor.CustomComponents/bin/Debug/net9.0/OpenArchival.Blazor.CustomComponents.dll b/OpenArchival.Blazor.CustomComponents/bin/Debug/net9.0/OpenArchival.Blazor.CustomComponents.dll new file mode 100644 index 0000000..898228c Binary files /dev/null and b/OpenArchival.Blazor.CustomComponents/bin/Debug/net9.0/OpenArchival.Blazor.CustomComponents.dll differ diff --git a/OpenArchival.Blazor.CustomComponents/bin/Debug/net9.0/OpenArchival.Blazor.CustomComponents.pdb b/OpenArchival.Blazor.CustomComponents/bin/Debug/net9.0/OpenArchival.Blazor.CustomComponents.pdb new file mode 100644 index 0000000..29f5933 Binary files /dev/null and b/OpenArchival.Blazor.CustomComponents/bin/Debug/net9.0/OpenArchival.Blazor.CustomComponents.pdb differ diff --git a/OpenArchival.Blazor.CustomComponents/bin/Debug/net9.0/OpenArchival.Blazor.CustomComponents.runtimeconfig.json b/OpenArchival.Blazor.CustomComponents/bin/Debug/net9.0/OpenArchival.Blazor.CustomComponents.runtimeconfig.json new file mode 100644 index 0000000..6e29dbe --- /dev/null +++ b/OpenArchival.Blazor.CustomComponents/bin/Debug/net9.0/OpenArchival.Blazor.CustomComponents.runtimeconfig.json @@ -0,0 +1,19 @@ +{ + "runtimeOptions": { + "tfm": "net9.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "9.0.0" + }, + { + "name": "Microsoft.AspNetCore.App", + "version": "9.0.0" + } + ], + "configProperties": { + "System.Reflection.NullabilityInfoContext.IsSupported": true, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/OpenArchival.Blazor.CustomComponents/bin/Debug/net9.0/OpenArchival.Blazor.CustomComponents.staticwebassets.endpoints.json b/OpenArchival.Blazor.CustomComponents/bin/Debug/net9.0/OpenArchival.Blazor.CustomComponents.staticwebassets.endpoints.json new file mode 100644 index 0000000..615d6e4 --- /dev/null +++ b/OpenArchival.Blazor.CustomComponents/bin/Debug/net9.0/OpenArchival.Blazor.CustomComponents.staticwebassets.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.css","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"21465"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk=\""},{"Name":"Last-Modified","Value":"Sun, 26 Feb 2023 14:08:26 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.css","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000295508274"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3383"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"6PJ7t7WR38pQTSYe6IR0pbqo2cIZK5wuW/w26kprtBg=\""},{"Name":"ETag","Value":"W/\"Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:26 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.css.gz","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3383"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"6PJ7t7WR38pQTSYe6IR0pbqo2cIZK5wuW/w26kprtBg=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:26 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6PJ7t7WR38pQTSYe6IR0pbqo2cIZK5wuW/w26kprtBg="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.js","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"328"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc=\""},{"Name":"Last-Modified","Value":"Sun, 26 Feb 2023 14:08:26 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.js","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005076142132"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"196"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"B4PUgpr06+d3lAMWknp0EVkaGxPZJdpp5/UidGHzvnc=\""},{"Name":"ETag","Value":"W/\"FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:26 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.js.gz","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"196"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"B4PUgpr06+d3lAMWknp0EVkaGxPZJdpp5/UidGHzvnc=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:26 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-B4PUgpr06+d3lAMWknp0EVkaGxPZJdpp5/UidGHzvnc="}]},{"Route":"_content/CodeBeam.MudExtensions/Mud_Secondary.png","AssetFile":"_content/CodeBeam.MudExtensions/Mud_Secondary.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4558"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"G3hYUw4Ps9P/IQ3lw2zu96RSZaOf4zU+4QkXkH8Xi3Y=\""},{"Name":"Last-Modified","Value":"Sat, 08 Oct 2022 09:55:02 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G3hYUw4Ps9P/IQ3lw2zu96RSZaOf4zU+4QkXkH8Xi3Y="}]},{"Route":"_content/MudBlazor/MudBlazor.min.css","AssetFile":"_content/MudBlazor/MudBlazor.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"606250"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0=\""},{"Name":"Last-Modified","Value":"Wed, 01 Oct 2025 21:51:05 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0="}]},{"Route":"_content/MudBlazor/MudBlazor.min.css","AssetFile":"_content/MudBlazor/MudBlazor.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015264845"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"65509"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"VcBMO3aXrzxl+jfWY+TaxPKsd3L0UWjeJZliEXOyzzI=\""},{"Name":"ETag","Value":"W/\"TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:26 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0="}]},{"Route":"_content/MudBlazor/MudBlazor.min.css.gz","AssetFile":"_content/MudBlazor/MudBlazor.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"65509"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"VcBMO3aXrzxl+jfWY+TaxPKsd3L0UWjeJZliEXOyzzI=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:26 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VcBMO3aXrzxl+jfWY+TaxPKsd3L0UWjeJZliEXOyzzI="}]},{"Route":"_content/MudBlazor/MudBlazor.min.jk5eo7zo4m.css","AssetFile":"_content/MudBlazor/MudBlazor.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"606250"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0=\""},{"Name":"Last-Modified","Value":"Wed, 01 Oct 2025 21:51:05 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jk5eo7zo4m"},{"Name":"integrity","Value":"sha256-TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.css"}]},{"Route":"_content/MudBlazor/MudBlazor.min.js","AssetFile":"_content/MudBlazor/MudBlazor.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"75165"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw=\""},{"Name":"Last-Modified","Value":"Wed, 01 Oct 2025 21:51:05 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js","AssetFile":"_content/MudBlazor/MudBlazor.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000061150859"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16352"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"0BJxfo+EOJvNKoBv/2ahm4RKrPjv7PhB/R16C3XOHDo=\""},{"Name":"ETag","Value":"W/\"hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:26 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js.gz","AssetFile":"_content/MudBlazor/MudBlazor.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16352"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"0BJxfo+EOJvNKoBv/2ahm4RKrPjv7PhB/R16C3XOHDo=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:26 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0BJxfo+EOJvNKoBv/2ahm4RKrPjv7PhB/R16C3XOHDo="}]},{"Route":"_content/MudBlazor/MudBlazor.min.tjzqk7tnel.js","AssetFile":"_content/MudBlazor/MudBlazor.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"75165"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw=\""},{"Name":"Last-Modified","Value":"Wed, 01 Oct 2025 21:51:05 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tjzqk7tnel"},{"Name":"integrity","Value":"sha256-hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.js"}]}]} \ No newline at end of file diff --git a/OpenArchival.Blazor.CustomComponents/bin/Debug/net9.0/OpenArchival.Blazor.CustomComponents.staticwebassets.runtime.json b/OpenArchival.Blazor.CustomComponents/bin/Debug/net9.0/OpenArchival.Blazor.CustomComponents.staticwebassets.runtime.json new file mode 100644 index 0000000..389aabf --- /dev/null +++ b/OpenArchival.Blazor.CustomComponents/bin/Debug/net9.0/OpenArchival.Blazor.CustomComponents.staticwebassets.runtime.json @@ -0,0 +1 @@ +{"ContentRoots":["C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\","C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\obj\\Debug\\net9.0\\compressed\\","C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\"],"Root":{"Children":{"_content":{"Children":{"CodeBeam.MudExtensions":{"Children":{"Mud_Secondary.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"Mud_Secondary.png"},"Patterns":null},"MudExtensions.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"MudExtensions.min.css"},"Patterns":null},"MudExtensions.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"24gzn4tg1a-qz4batx9cb.gz"},"Patterns":null},"MudExtensions.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"MudExtensions.min.js"},"Patterns":null},"MudExtensions.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"stwk5nfoxp-loe7cozwzj.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"MudBlazor":{"Children":{"MudBlazor.min.css":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"MudBlazor.min.css"},"Patterns":null},"MudBlazor.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"tzxjg6is5z-jk5eo7zo4m.gz"},"Patterns":null},"MudBlazor.min.js":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"MudBlazor.min.js"},"Patterns":null},"MudBlazor.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"0wz98yz2xy-tjzqk7tnel.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}} \ No newline at end of file diff --git a/OpenArchival.Blazor.CustomComponents/bin/Debug/net9.0/OpenArchival.DataAccess.deps.json b/OpenArchival.Blazor.CustomComponents/bin/Debug/net9.0/OpenArchival.DataAccess.deps.json new file mode 100644 index 0000000..68112d5 --- /dev/null +++ b/OpenArchival.Blazor.CustomComponents/bin/Debug/net9.0/OpenArchival.DataAccess.deps.json @@ -0,0 +1,1305 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v9.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v9.0": { + "OpenArchival.DataAccess/1.0.0": { + "dependencies": { + "EntityFramework": "6.5.1", + "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "9.0.8", + "Microsoft.EntityFrameworkCore": "9.0.8", + "Microsoft.EntityFrameworkCore.Design": "9.0.8", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8", + "Npgsql": "9.0.3", + "Npgsql.EntityFrameworkCore.PostgreSQL": "9.0.4" + }, + "runtime": { + "OpenArchival.DataAccess.dll": {} + } + }, + "EntityFramework/6.5.1": { + "dependencies": { + "Microsoft.CSharp": "4.7.0", + "System.CodeDom": "6.0.0", + "System.ComponentModel.Annotations": "5.0.0", + "System.Configuration.ConfigurationManager": "6.0.1", + "System.Data.SqlClient": "4.8.6" + }, + "runtime": { + "lib/netstandard2.1/EntityFramework.SqlServer.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.500.124.31603" + }, + "lib/netstandard2.1/EntityFramework.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.500.124.31603" + } + } + }, + "Humanizer.Core/2.14.1": { + "runtime": { + "lib/net6.0/Humanizer.dll": { + "assemblyVersion": "2.14.0.0", + "fileVersion": "2.14.1.48190" + } + } + }, + "Microsoft.AspNetCore.Cryptography.Internal/9.0.8": { + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Cryptography.Internal.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36808" + } + } + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/9.0.8": { + "dependencies": { + "Microsoft.AspNetCore.Cryptography.Internal": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36808" + } + } + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore/9.0.8": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Relational": "9.0.8", + "Microsoft.Extensions.Identity.Stores": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": { + "assemblyVersion": "9.0.8.0", + "fileVersion": "9.0.825.36808" + } + } + }, + "Microsoft.Bcl.AsyncInterfaces/7.0.0": { + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "Microsoft.Build.Framework/17.8.3": {}, + "Microsoft.Build.Locator/1.7.8": { + "runtime": { + "lib/net6.0/Microsoft.Build.Locator.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.7.8.28074" + } + } + }, + "Microsoft.CodeAnalysis.Analyzers/3.3.4": {}, + "Microsoft.CodeAnalysis.Common/4.8.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "3.3.4", + "System.Collections.Immutable": "7.0.0", + "System.Reflection.Metadata": "7.0.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + } + }, + "resources": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.CSharp/4.8.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "4.8.0" + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.CSharp.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + } + }, + "resources": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.CSharp.Workspaces/4.8.0": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.CodeAnalysis.CSharp": "4.8.0", + "Microsoft.CodeAnalysis.Common": "4.8.0", + "Microsoft.CodeAnalysis.Workspaces.Common": "4.8.0" + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + } + }, + "resources": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.Workspaces.Common/4.8.0": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.Bcl.AsyncInterfaces": "7.0.0", + "Microsoft.CodeAnalysis.Common": "4.8.0", + "System.Composition": "7.0.0", + "System.IO.Pipelines": "7.0.0", + "System.Threading.Channels": "7.0.0" + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + } + }, + "resources": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.Workspaces.MSBuild/4.8.0": { + "dependencies": { + "Microsoft.Build.Framework": "17.8.3", + "Microsoft.CodeAnalysis.Common": "4.8.0", + "Microsoft.CodeAnalysis.Workspaces.Common": "4.8.0", + "System.Text.Json": "9.0.8" + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + }, + "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + } + }, + "resources": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CSharp/4.7.0": {}, + "Microsoft.EntityFrameworkCore/9.0.8": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "9.0.8", + "Microsoft.EntityFrameworkCore.Analyzers": "9.0.8", + "Microsoft.Extensions.Caching.Memory": "9.0.8", + "Microsoft.Extensions.Logging": "9.0.8" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.dll": { + "assemblyVersion": "9.0.8.0", + "fileVersion": "9.0.825.36802" + } + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/9.0.8": { + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "assemblyVersion": "9.0.8.0", + "fileVersion": "9.0.825.36802" + } + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/9.0.8": {}, + "Microsoft.EntityFrameworkCore.Design/9.0.8": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.Build.Framework": "17.8.3", + "Microsoft.Build.Locator": "1.7.8", + "Microsoft.CodeAnalysis.CSharp": "4.8.0", + "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.8.0", + "Microsoft.CodeAnalysis.Workspaces.MSBuild": "4.8.0", + "Microsoft.EntityFrameworkCore.Relational": "9.0.8", + "Microsoft.Extensions.Caching.Memory": "9.0.8", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.8", + "Microsoft.Extensions.DependencyModel": "9.0.8", + "Microsoft.Extensions.Logging": "9.0.8", + "Mono.TextTemplating": "3.0.0", + "System.Text.Json": "9.0.8" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Design.dll": { + "assemblyVersion": "9.0.8.0", + "fileVersion": "9.0.825.36802" + } + } + }, + "Microsoft.EntityFrameworkCore.Relational/9.0.8": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "9.0.8", + "Microsoft.Extensions.Caching.Memory": "9.0.8", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.8", + "Microsoft.Extensions.Logging": "9.0.8" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "assemblyVersion": "9.0.8.0", + "fileVersion": "9.0.825.36802" + } + } + }, + "Microsoft.Extensions.Caching.Abstractions/9.0.8": { + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Extensions.Caching.Memory/9.0.8": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "9.0.8", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8", + "Microsoft.Extensions.Logging.Abstractions": "9.0.8", + "Microsoft.Extensions.Options": "9.0.8", + "Microsoft.Extensions.Primitives": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Caching.Memory.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.8": { + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Extensions.DependencyInjection/9.0.8": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.8": { + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Extensions.DependencyModel/9.0.8": { + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyModel.dll": { + "assemblyVersion": "9.0.0.8", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Extensions.Identity.Core/9.0.8": { + "dependencies": { + "Microsoft.AspNetCore.Cryptography.KeyDerivation": "9.0.8", + "Microsoft.Extensions.Logging": "9.0.8", + "Microsoft.Extensions.Options": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Identity.Core.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36808" + } + } + }, + "Microsoft.Extensions.Identity.Stores/9.0.8": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "9.0.8", + "Microsoft.Extensions.Identity.Core": "9.0.8", + "Microsoft.Extensions.Logging": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Identity.Stores.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36808" + } + } + }, + "Microsoft.Extensions.Logging/9.0.8": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "9.0.8", + "Microsoft.Extensions.Logging.Abstractions": "9.0.8", + "Microsoft.Extensions.Options": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.8": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Extensions.Options/9.0.8": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8", + "Microsoft.Extensions.Primitives": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Extensions.Primitives/9.0.8": { + "runtime": { + "lib/net9.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Win32.Registry/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "runtime": { + "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Mono.TextTemplating/3.0.0": { + "dependencies": { + "System.CodeDom": "6.0.0" + }, + "runtime": { + "lib/net6.0/Mono.TextTemplating.dll": { + "assemblyVersion": "3.0.0.0", + "fileVersion": "3.0.0.1" + } + } + }, + "Npgsql/9.0.3": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "9.0.8" + }, + "runtime": { + "lib/net8.0/Npgsql.dll": { + "assemblyVersion": "9.0.3.0", + "fileVersion": "9.0.3.0" + } + } + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/9.0.4": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "9.0.8", + "Microsoft.EntityFrameworkCore.Relational": "9.0.8", + "Npgsql": "9.0.3" + }, + "runtime": { + "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { + "assemblyVersion": "9.0.4.0", + "fileVersion": "9.0.4.0" + } + } + }, + "runtime.native.System.Data.SqlClient.sni/4.7.0": { + "dependencies": { + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0" + } + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "runtimeTargets": { + "runtimes/win-arm64/native/sni.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "4.6.25512.1" + } + } + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "runtimeTargets": { + "runtimes/win-x64/native/sni.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "4.6.25512.1" + } + } + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "runtimeTargets": { + "runtimes/win-x86/native/sni.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "4.6.25512.1" + } + } + }, + "System.CodeDom/6.0.0": { + "runtime": { + "lib/net6.0/System.CodeDom.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Collections.Immutable/7.0.0": {}, + "System.ComponentModel.Annotations/5.0.0": {}, + "System.Composition/7.0.0": { + "dependencies": { + "System.Composition.AttributedModel": "7.0.0", + "System.Composition.Convention": "7.0.0", + "System.Composition.Hosting": "7.0.0", + "System.Composition.Runtime": "7.0.0", + "System.Composition.TypedParts": "7.0.0" + } + }, + "System.Composition.AttributedModel/7.0.0": { + "runtime": { + "lib/net7.0/System.Composition.AttributedModel.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Composition.Convention/7.0.0": { + "dependencies": { + "System.Composition.AttributedModel": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.Composition.Convention.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Composition.Hosting/7.0.0": { + "dependencies": { + "System.Composition.Runtime": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.Composition.Hosting.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Composition.Runtime/7.0.0": { + "runtime": { + "lib/net7.0/System.Composition.Runtime.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Composition.TypedParts/7.0.0": { + "dependencies": { + "System.Composition.AttributedModel": "7.0.0", + "System.Composition.Hosting": "7.0.0", + "System.Composition.Runtime": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.Composition.TypedParts.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Configuration.ConfigurationManager/6.0.1": { + "dependencies": { + "System.Security.Cryptography.ProtectedData": "6.0.0", + "System.Security.Permissions": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.922.41905" + } + } + }, + "System.Data.SqlClient/4.8.6": { + "dependencies": { + "Microsoft.Win32.Registry": "4.7.0", + "System.Security.Principal.Windows": "4.7.0", + "runtime.native.System.Data.SqlClient.sni": "4.7.0" + }, + "runtime": { + "lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "assemblyVersion": "4.6.1.6", + "fileVersion": "4.700.23.52603" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "4.6.1.6", + "fileVersion": "4.700.23.52603" + }, + "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.6.1.6", + "fileVersion": "4.700.23.52603" + } + } + }, + "System.Drawing.Common/6.0.0": { + "dependencies": { + "Microsoft.Win32.SystemEvents": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Drawing.Common.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + }, + "runtimes/win/lib/net6.0/System.Drawing.Common.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.IO.Pipelines/7.0.0": {}, + "System.Reflection.Metadata/7.0.0": { + "dependencies": { + "System.Collections.Immutable": "7.0.0" + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, + "System.Security.AccessControl/6.0.0": {}, + "System.Security.Cryptography.ProtectedData/6.0.0": { + "runtime": { + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Security.Permissions/6.0.0": { + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Windows.Extensions": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Security.Permissions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Security.Principal.Windows/4.7.0": {}, + "System.Text.Json/9.0.8": {}, + "System.Threading.Channels/7.0.0": {}, + "System.Windows.Extensions/6.0.0": { + "dependencies": { + "System.Drawing.Common": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Windows.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + } + } + }, + "libraries": { + "OpenArchival.DataAccess/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "EntityFramework/6.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sQRP2lWg1i3aAGWqdliAM8zrGx7LHMUk+9/MoxUjwfTZYGMXvZ2JYZTlyTm1PqDxvn3c9E3U76TWDON7Y5+CVA==", + "path": "entityframework/6.5.1", + "hashPath": "entityframework.6.5.1.nupkg.sha512" + }, + "Humanizer.Core/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw==", + "path": "humanizer.core/2.14.1", + "hashPath": "humanizer.core.2.14.1.nupkg.sha512" + }, + "Microsoft.AspNetCore.Cryptography.Internal/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NwGO0wh/IjEthBLGA6fWfIiftsNF/paA5RxWp6ji4wWazetJgQ4truR9nU2thAzzFLiXqlg8vGjdVDA8bHu0zA==", + "path": "microsoft.aspnetcore.cryptography.internal/9.0.8", + "hashPath": "microsoft.aspnetcore.cryptography.internal.9.0.8.nupkg.sha512" + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gK70xxXYwwPiXYKYVmLYMuIO5EOGrRtQghmM6PkgtZ/0lgLEjIs//xgSLvZkV/mroNHA1DEqTcqscEj9OzZ1IA==", + "path": "microsoft.aspnetcore.cryptography.keyderivation/9.0.8", + "hashPath": "microsoft.aspnetcore.cryptography.keyderivation.9.0.8.nupkg.sha512" + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-z4q9roxXMQePwFM5tXXZS5sKkU78yYXVkj56NYYx9xKe+mxGkJMV1MaO0GFE6HnnM8bE3Xxhs0hAPw2jKbse6w==", + "path": "microsoft.aspnetcore.identity.entityframeworkcore/9.0.8", + "hashPath": "microsoft.aspnetcore.identity.entityframeworkcore.9.0.8.nupkg.sha512" + }, + "Microsoft.Bcl.AsyncInterfaces/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3aeMZ1N0lJoSyzqiP03hqemtb1BijhsJADdobn/4nsMJ8V1H+CrpuduUe4hlRdx+ikBQju1VGjMD1GJ3Sk05Eg==", + "path": "microsoft.bcl.asyncinterfaces/7.0.0", + "hashPath": "microsoft.bcl.asyncinterfaces.7.0.0.nupkg.sha512" + }, + "Microsoft.Build.Framework/17.8.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NrQZJW8TlKVPx72yltGb8SVz3P5mNRk9fNiD/ao8jRSk48WqIIdCn99q4IjlVmPcruuQ+yLdjNQLL8Rb4c916g==", + "path": "microsoft.build.framework/17.8.3", + "hashPath": "microsoft.build.framework.17.8.3.nupkg.sha512" + }, + "Microsoft.Build.Locator/1.7.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sPy10x527Ph16S2u0yGME4S6ohBKJ69WfjeGG/bvELYeZVmJdKjxgnlL8cJJJLGV/cZIRqSfB12UDB8ICakOog==", + "path": "microsoft.build.locator/1.7.8", + "hashPath": "microsoft.build.locator.1.7.8.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Analyzers/3.3.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AxkxcPR+rheX0SmvpLVIGLhOUXAKG56a64kV9VQZ4y9gR9ZmPXnqZvHJnmwLSwzrEP6junUF11vuc+aqo5r68g==", + "path": "microsoft.codeanalysis.analyzers/3.3.4", + "hashPath": "microsoft.codeanalysis.analyzers.3.3.4.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Common/4.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/jR+e/9aT+BApoQJABlVCKnnggGQbvGh7BKq2/wI1LamxC+LbzhcLj4Vj7gXCofl1n4E521YfF9w0WcASGg/KA==", + "path": "microsoft.codeanalysis.common/4.8.0", + "hashPath": "microsoft.codeanalysis.common.4.8.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.CSharp/4.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+3+qfdb/aaGD8PZRCrsdobbzGs1m9u119SkkJt8e/mk3xLJz/udLtS2T6nY27OTXxBBw10HzAbC8Z9w08VyP/g==", + "path": "microsoft.codeanalysis.csharp/4.8.0", + "hashPath": "microsoft.codeanalysis.csharp.4.8.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.CSharp.Workspaces/4.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3amm4tq4Lo8/BGvg9p3BJh3S9nKq2wqCXfS7138i69TUpo/bD+XvD0hNurpEBtcNZhi1FyutiomKJqVF39ugYA==", + "path": "microsoft.codeanalysis.csharp.workspaces/4.8.0", + "hashPath": "microsoft.codeanalysis.csharp.workspaces.4.8.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Workspaces.Common/4.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LXyV+MJKsKRu3FGJA3OmSk40OUIa/dQCFLOnm5X8MNcujx7hzGu8o+zjXlb/cy5xUdZK2UKYb9YaQ2E8m9QehQ==", + "path": "microsoft.codeanalysis.workspaces.common/4.8.0", + "hashPath": "microsoft.codeanalysis.workspaces.common.4.8.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Workspaces.MSBuild/4.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IEYreI82QZKklp54yPHxZNG9EKSK6nHEkeuf+0Asie9llgS1gp0V1hw7ODG+QyoB7MuAnNQHmeV1Per/ECpv6A==", + "path": "microsoft.codeanalysis.workspaces.msbuild/4.8.0", + "hashPath": "microsoft.codeanalysis.workspaces.msbuild.4.8.0.nupkg.sha512" + }, + "Microsoft.CSharp/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", + "path": "microsoft.csharp/4.7.0", + "hashPath": "microsoft.csharp.4.7.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bNGdPhN762+BIIO5MFYLjafRqkSS1MqLOc/erd55InvLnFxt9H3N5JNsuag1ZHyBor1VtD42U0CHpgqkWeAYgQ==", + "path": "microsoft.entityframeworkcore/9.0.8", + "hashPath": "microsoft.entityframeworkcore.9.0.8.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Abstractions/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-B2yfAIQRRAQ4zvvWqh+HudD+juV3YoLlpXnrog3tU0PM9AFpuq6xo0+mEglN1P43WgdcUiF+65CWBcZe35s15Q==", + "path": "microsoft.entityframeworkcore.abstractions/9.0.8", + "hashPath": "microsoft.entityframeworkcore.abstractions.9.0.8.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Analyzers/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2EYStCXt4Hi9p3J3EYMQbItJDtASJd064Kcs8C8hj8Jt5srILrR9qlaL0Ryvk8NrWQoCQvIELsmiuqLEZMLvGA==", + "path": "microsoft.entityframeworkcore.analyzers/9.0.8", + "hashPath": "microsoft.entityframeworkcore.analyzers.9.0.8.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Design/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-02e8OcoumSUAES3VkXrMT9EnNCUKWJoifn5+8fFEbAtRhKL3xg2a/Mj6rsAUGF7tkYFox6oKzJCn0jbm6b8Lbw==", + "path": "microsoft.entityframeworkcore.design/9.0.8", + "hashPath": "microsoft.entityframeworkcore.design.9.0.8.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Relational/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OVhfyxiHxMvYpwQ8Jy3YZi4koy6TK5/Q7C1oq3z6db+HEGuu6x9L1BX5zDIdJxxlRePMyO4D8ORiXj/D7+MUqw==", + "path": "microsoft.entityframeworkcore.relational/9.0.8", + "hashPath": "microsoft.entityframeworkcore.relational.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Abstractions/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4h7bsVoKoiK+SlPM+euX/ayGnKZhl47pPCidLTiio9xyG+vgVVfcYxcYQgjm0SCrdSxjG0EGIAKF8EFr3G8Ifw==", + "path": "microsoft.extensions.caching.abstractions/9.0.8", + "hashPath": "microsoft.extensions.caching.abstractions.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Memory/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-grR+oPyj8HVn4DT8CFUUdSw2pZZKS13KjytFe4txpHQliGM1GEDotohmjgvyl3hm7RFB3FRqvbouEX3/1ewp5A==", + "path": "microsoft.extensions.caching.memory/9.0.8", + "hashPath": "microsoft.extensions.caching.memory.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yNou2KM35RvzOh4vUFtl2l33rWPvOCoba+nzEDJ+BgD8aOL/jew4WPCibQvntRfOJ2pJU8ARygSMD+pdjvDHuA==", + "path": "microsoft.extensions.configuration.abstractions/9.0.8", + "hashPath": "microsoft.extensions.configuration.abstractions.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JJjI2Fa+QtZcUyuNjbKn04OjIUX5IgFGFu/Xc+qvzh1rXdZHLcnqqVXhR4093bGirTwacRlHiVg1XYI9xum6QQ==", + "path": "microsoft.extensions.dependencyinjection/9.0.8", + "hashPath": "microsoft.extensions.dependencyinjection.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xY3lTjj4+ZYmiKIkyWitddrp1uL5uYiweQjqo4BKBw01ZC4HhcfgLghDpPZcUlppgWAFqFy9SgkiYWOMx365pw==", + "path": "microsoft.extensions.dependencyinjection.abstractions/9.0.8", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyModel/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3CW02zNjyqJ2eORo8Zkznpw6+QvK+tYUKZgKuKuAIYdy73TRFvpaqCwYws1k6/lMSJ7ZqABfWn0/wa5bRsIJ4w==", + "path": "microsoft.extensions.dependencymodel/9.0.8", + "hashPath": "microsoft.extensions.dependencymodel.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Identity.Core/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-giUYz84GHAizDucZp5vWAusDO2s9Jrrg2jQ6HUQNGs5HQMKJVobLPMQSiyg8R4yecH0pIc0QjANh0B/Kw13BHA==", + "path": "microsoft.extensions.identity.core/9.0.8", + "hashPath": "microsoft.extensions.identity.core.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Identity.Stores/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sycaHcq78yI591+KxEdd53a7pJGQEl9H/wDsFkaPNE9g7loyq8vufPcc/9RH3KlGt5joR5Ey7PdoRSrlLjCgJg==", + "path": "microsoft.extensions.identity.stores/9.0.8", + "hashPath": "microsoft.extensions.identity.stores.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Z/7ze+0iheT7FJeZPqJKARYvyC2bmwu3whbm/48BJjdlGVvgDguoCqJIkI/67NkroTYobd5geai1WheNQvWrgA==", + "path": "microsoft.extensions.logging/9.0.8", + "hashPath": "microsoft.extensions.logging.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pYnAffJL7ARD/HCnnPvnFKSIHnTSmWz84WIlT9tPeQ4lHNiu0Az7N/8itihWvcF8sT+VVD5lq8V+ckMzu4SbOw==", + "path": "microsoft.extensions.logging.abstractions/9.0.8", + "hashPath": "microsoft.extensions.logging.abstractions.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Options/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OmTaQ0v4gxGQkehpwWIqPoEiwsPuG/u4HUsbOFoWGx4DKET2AXzopnFe/fE608FIhzc/kcg2p8JdyMRCCUzitQ==", + "path": "microsoft.extensions.options/9.0.8", + "hashPath": "microsoft.extensions.options.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tizSIOEsIgSNSSh+hKeUVPK7xmTIjR8s+mJWOu1KXV3htvNQiPMFRMO17OdI1y/4ZApdBVk49u/08QGC9yvLug==", + "path": "microsoft.extensions.primitives/9.0.8", + "hashPath": "microsoft.extensions.primitives.9.0.8.nupkg.sha512" + }, + "Microsoft.Win32.Registry/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", + "path": "microsoft.win32.registry/4.7.0", + "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512" + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==", + "path": "microsoft.win32.systemevents/6.0.0", + "hashPath": "microsoft.win32.systemevents.6.0.0.nupkg.sha512" + }, + "Mono.TextTemplating/3.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YqueG52R/Xej4VVbKuRIodjiAhV0HR/XVbLbNrJhCZnzjnSjgMJ/dCdV0akQQxavX6hp/LC6rqLGLcXeQYU7XA==", + "path": "mono.texttemplating/3.0.0", + "hashPath": "mono.texttemplating.3.0.0.nupkg.sha512" + }, + "Npgsql/9.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tPvY61CxOAWxNsKLEBg+oR646X4Bc8UmyQ/tJszL/7mEmIXQnnBhVJZrZEEUv0Bstu0mEsHZD5At3EO8zQRAYw==", + "path": "npgsql/9.0.3", + "hashPath": "npgsql.9.0.3.nupkg.sha512" + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/9.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mw5vcY2IEc7L+IeGrxpp/J5OSnCcjkjAgJYCm/eD52wpZze8zsSifdqV7zXslSMmfJG2iIUGZyo3KuDtEFKwMQ==", + "path": "npgsql.entityframeworkcore.postgresql/9.0.4", + "hashPath": "npgsql.entityframeworkcore.postgresql.9.0.4.nupkg.sha512" + }, + "runtime.native.System.Data.SqlClient.sni/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9kyFSIdN3T0qjDQ2R0HRXYIhS3l5psBzQi6qqhdLz+SzFyEy4sVxNOke+yyYv8Cu8rPER12c3RDjLT8wF3WBYQ==", + "path": "runtime.native.system.data.sqlclient.sni/4.7.0", + "hashPath": "runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512" + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==", + "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0", + "hashPath": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==", + "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0", + "hashPath": "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==", + "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0", + "hashPath": "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" + }, + "System.CodeDom/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CPc6tWO1LAer3IzfZufDBRL+UZQcj5uS207NHALQzP84Vp/z6wF0Aa0YZImOQY8iStY0A2zI/e3ihKNPfUm8XA==", + "path": "system.codedom/6.0.0", + "hashPath": "system.codedom.6.0.0.nupkg.sha512" + }, + "System.Collections.Immutable/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dQPcs0U1IKnBdRDBkrCTi1FoajSTBzLcVTpjO4MBCMC7f4pDOIPzgBoX8JjG7X6uZRJ8EBxsi8+DR1JuwjnzOQ==", + "path": "system.collections.immutable/7.0.0", + "hashPath": "system.collections.immutable.7.0.0.nupkg.sha512" + }, + "System.ComponentModel.Annotations/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==", + "path": "system.componentmodel.annotations/5.0.0", + "hashPath": "system.componentmodel.annotations.5.0.0.nupkg.sha512" + }, + "System.Composition/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tRwgcAkDd85O8Aq6zHDANzQaq380cek9lbMg5Qma46u5BZXq/G+XvIYmu+UI+BIIZ9zssXLYrkTykEqxxvhcmg==", + "path": "system.composition/7.0.0", + "hashPath": "system.composition.7.0.0.nupkg.sha512" + }, + "System.Composition.AttributedModel/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2QzClqjElKxgI1jK1Jztnq44/8DmSuTSGGahXqQ4TdEV0h9s2KikQZIgcEqVzR7OuWDFPGLHIprBJGQEPr8fAQ==", + "path": "system.composition.attributedmodel/7.0.0", + "hashPath": "system.composition.attributedmodel.7.0.0.nupkg.sha512" + }, + "System.Composition.Convention/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IMhTlpCs4HmlD8B+J8/kWfwX7vrBBOs6xyjSTzBlYSs7W4OET4tlkR/Sg9NG8jkdJH9Mymq0qGdYS1VPqRTBnQ==", + "path": "system.composition.convention/7.0.0", + "hashPath": "system.composition.convention.7.0.0.nupkg.sha512" + }, + "System.Composition.Hosting/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eB6gwN9S+54jCTBJ5bpwMOVerKeUfGGTYCzz3QgDr1P55Gg/Wb27ShfPIhLMjmZ3MoAKu8uUSv6fcCdYJTN7Bg==", + "path": "system.composition.hosting/7.0.0", + "hashPath": "system.composition.hosting.7.0.0.nupkg.sha512" + }, + "System.Composition.Runtime/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aZJ1Zr5Txe925rbo4742XifEyW0MIni1eiUebmcrP3HwLXZ3IbXUj4MFMUH/RmnJOAQiS401leg/2Sz1MkApDw==", + "path": "system.composition.runtime/7.0.0", + "hashPath": "system.composition.runtime.7.0.0.nupkg.sha512" + }, + "System.Composition.TypedParts/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZK0KNPfbtxVceTwh+oHNGUOYV2WNOHReX2AXipuvkURC7s/jPwoWfsu3SnDBDgofqbiWr96geofdQ2erm/KTHg==", + "path": "system.composition.typedparts/7.0.0", + "hashPath": "system.composition.typedparts.7.0.0.nupkg.sha512" + }, + "System.Configuration.ConfigurationManager/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jXw9MlUu/kRfEU0WyTptAVueupqIeE3/rl0EZDMlf8pcvJnitQ8HeVEp69rZdaStXwTV72boi/Bhw8lOeO+U2w==", + "path": "system.configuration.configurationmanager/6.0.1", + "hashPath": "system.configuration.configurationmanager.6.0.1.nupkg.sha512" + }, + "System.Data.SqlClient/4.8.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2Ij/LCaTQRyAi5lAv7UUTV9R2FobC8xN9mE0fXBZohum/xLl8IZVmE98Rq5ugQHjCgTBRKqpXRb4ORulRdA6Ig==", + "path": "system.data.sqlclient/4.8.6", + "hashPath": "system.data.sqlclient.4.8.6.nupkg.sha512" + }, + "System.Drawing.Common/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==", + "path": "system.drawing.common/6.0.0", + "hashPath": "system.drawing.common.6.0.0.nupkg.sha512" + }, + "System.IO.Pipelines/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jRn6JYnNPW6xgQazROBLSfpdoczRw694vO5kKvMcNnpXuolEixUyw6IBuBs2Y2mlSX/LdLvyyWmfXhaI3ND1Yg==", + "path": "system.io.pipelines/7.0.0", + "hashPath": "system.io.pipelines.7.0.0.nupkg.sha512" + }, + "System.Reflection.Metadata/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MclTG61lsD9sYdpNz9xsKBzjsmsfCtcMZYXz/IUr2zlhaTaABonlr1ESeompTgM+Xk+IwtGYU7/voh3YWB/fWw==", + "path": "system.reflection.metadata/7.0.0", + "hashPath": "system.reflection.metadata.7.0.0.nupkg.sha512" + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" + }, + "System.Security.AccessControl/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==", + "path": "system.security.accesscontrol/6.0.0", + "hashPath": "system.security.accesscontrol.6.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.ProtectedData/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==", + "path": "system.security.cryptography.protecteddata/6.0.0", + "hashPath": "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512" + }, + "System.Security.Permissions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==", + "path": "system.security.permissions/6.0.0", + "hashPath": "system.security.permissions.6.0.0.nupkg.sha512" + }, + "System.Security.Principal.Windows/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==", + "path": "system.security.principal.windows/4.7.0", + "hashPath": "system.security.principal.windows.4.7.0.nupkg.sha512" + }, + "System.Text.Json/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mIQir9jBqk0V7X0Nw5hzPJZC8DuGdf+2DS3jAVsr6rq5+/VyH5rza0XGcONJUWBrZ+G6BCwNyjWYd9lncBu48A==", + "path": "system.text.json/9.0.8", + "hashPath": "system.text.json.9.0.8.nupkg.sha512" + }, + "System.Threading.Channels/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qmeeYNROMsONF6ndEZcIQ+VxR4Q/TX/7uIVLJqtwIWL7dDWeh0l1UIqgo4wYyjG//5lUNhwkLDSFl+pAWO6oiA==", + "path": "system.threading.channels/7.0.0", + "hashPath": "system.threading.channels.7.0.0.nupkg.sha512" + }, + "System.Windows.Extensions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==", + "path": "system.windows.extensions/6.0.0", + "hashPath": "system.windows.extensions.6.0.0.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/OpenArchival.Blazor.CustomComponents/bin/Debug/net9.0/OpenArchival.DataAccess.dll b/OpenArchival.Blazor.CustomComponents/bin/Debug/net9.0/OpenArchival.DataAccess.dll new file mode 100644 index 0000000..0a0293e Binary files /dev/null and b/OpenArchival.Blazor.CustomComponents/bin/Debug/net9.0/OpenArchival.DataAccess.dll differ diff --git a/OpenArchival.Blazor.CustomComponents/bin/Debug/net9.0/OpenArchival.DataAccess.exe b/OpenArchival.Blazor.CustomComponents/bin/Debug/net9.0/OpenArchival.DataAccess.exe new file mode 100644 index 0000000..0caa7a8 Binary files /dev/null and b/OpenArchival.Blazor.CustomComponents/bin/Debug/net9.0/OpenArchival.DataAccess.exe differ diff --git a/OpenArchival.Blazor.CustomComponents/bin/Debug/net9.0/OpenArchival.DataAccess.pdb b/OpenArchival.Blazor.CustomComponents/bin/Debug/net9.0/OpenArchival.DataAccess.pdb new file mode 100644 index 0000000..7e038b6 Binary files /dev/null and b/OpenArchival.Blazor.CustomComponents/bin/Debug/net9.0/OpenArchival.DataAccess.pdb differ diff --git a/OpenArchival.Blazor.CustomComponents/bin/Debug/net9.0/OpenArchival.DataAccess.runtimeconfig.json b/OpenArchival.Blazor.CustomComponents/bin/Debug/net9.0/OpenArchival.DataAccess.runtimeconfig.json new file mode 100644 index 0000000..1f6a32f --- /dev/null +++ b/OpenArchival.Blazor.CustomComponents/bin/Debug/net9.0/OpenArchival.DataAccess.runtimeconfig.json @@ -0,0 +1,20 @@ +{ + "runtimeOptions": { + "tfm": "net9.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "9.0.0" + }, + { + "name": "Microsoft.AspNetCore.App", + "version": "9.0.0" + } + ], + "configProperties": { + "System.GC.Server": true, + "System.Reflection.NullabilityInfoContext.IsSupported": true, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/OpenArchival.Blazor.CustomComponents/bin/Debug/net9.0/OpenArchival.DataAccess.staticwebassets.endpoints.json b/OpenArchival.Blazor.CustomComponents/bin/Debug/net9.0/OpenArchival.DataAccess.staticwebassets.endpoints.json new file mode 100644 index 0000000..5576e88 --- /dev/null +++ b/OpenArchival.Blazor.CustomComponents/bin/Debug/net9.0/OpenArchival.DataAccess.staticwebassets.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[]} \ No newline at end of file diff --git a/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs b/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs new file mode 100644 index 0000000..feda5e9 --- /dev/null +++ b/OpenArchival.Blazor.CustomComponents/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/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArch.4561040F.Up2Date b/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArch.4561040F.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.AssemblyInfo.cs b/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.AssemblyInfo.cs new file mode 100644 index 0000000..81489a6 --- /dev/null +++ b/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// 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("OpenArchival.Blazor.CustomComponents")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+781793a27f2e164808340b1adb5ce70e1800b187")] +[assembly: System.Reflection.AssemblyProductAttribute("OpenArchival.Blazor.CustomComponents")] +[assembly: System.Reflection.AssemblyTitleAttribute("OpenArchival.Blazor.CustomComponents")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.AssemblyInfoInputs.cache b/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.AssemblyInfoInputs.cache new file mode 100644 index 0000000..53e8c32 --- /dev/null +++ b/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +0f150b2c6c42fe6dc150484dc552ff72149942a646208d5d65628a770a14b473 diff --git a/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.GeneratedMSBuildEditorConfig.editorconfig b/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..dad758a --- /dev/null +++ b/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,32 @@ +is_global = true +build_property.MudDebugAnalyzer = +build_property.MudAllowedAttributePattern = +build_property.MudAllowedAttributeList = +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 +build_property.RootNamespace = OpenArchival.Blazor.CustomComponents +build_property.RootNamespace = OpenArchival.Blazor.CustomComponents +build_property.ProjectDir = C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.RazorLangVersion = 9.0 +build_property.SupportLocalizedComponentNames = +build_property.GenerateRazorMetadataSourceChecksumAttributes = +build_property.MSBuildProjectDirectory = C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents +build_property._RazorSourceGeneratorDebug = +build_property.EffectiveAnalysisLevelStyle = 9.0 +build_property.EnableCodeStyleSeverity = + +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor.CustomComponents/ChipContainer.razor] +build_metadata.AdditionalFiles.TargetPath = Q2hpcENvbnRhaW5lci5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor.CustomComponents/UploadDropBox.razor] +build_metadata.AdditionalFiles.TargetPath = VXBsb2FkRHJvcEJveC5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = diff --git a/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.GlobalUsings.g.cs b/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.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/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.RazorAssemblyInfo.cache b/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.RazorAssemblyInfo.cache new file mode 100644 index 0000000..ecb9c97 --- /dev/null +++ b/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.RazorAssemblyInfo.cache @@ -0,0 +1 @@ +d5ac7ab69059af111e9d7125adeb7b174ca570725d4b64a544cca7bd11ac7ca0 diff --git a/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.RazorAssemblyInfo.cs b/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.RazorAssemblyInfo.cs new file mode 100644 index 0000000..cd3853c --- /dev/null +++ b/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.RazorAssemblyInfo.cs @@ -0,0 +1,18 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ProvideApplicationPartFactoryAttribute("Microsoft.AspNetCore.Mvc.ApplicationParts.ConsolidatedAssemblyApplicationPartFact" + + "ory, Microsoft.AspNetCore.Mvc.Razor")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.assets.cache b/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.assets.cache new file mode 100644 index 0000000..613193c Binary files /dev/null and b/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.assets.cache differ diff --git a/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.csproj.AssemblyReference.cache b/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.csproj.AssemblyReference.cache new file mode 100644 index 0000000..8785df9 Binary files /dev/null and b/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.csproj.AssemblyReference.cache differ diff --git a/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.csproj.CoreCompileInputs.cache b/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..8d15616 --- /dev/null +++ b/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +ffba298797e6fdad0c0abef5845a41c31eea46adae15e71a79bc85acd520141c diff --git a/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.csproj.FileListAbsolute.txt b/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..d9551b9 --- /dev/null +++ b/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.csproj.FileListAbsolute.txt @@ -0,0 +1,44 @@ +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\bin\Debug\net9.0\OpenArchival.DataAccess.deps.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\bin\Debug\net9.0\OpenArchival.DataAccess.runtimeconfig.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\bin\Debug\net9.0\OpenArchival.DataAccess.staticwebassets.endpoints.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\bin\Debug\net9.0\OpenArchival.DataAccess.exe +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\bin\Debug\net9.0\OpenArchival.Blazor.CustomComponents.staticwebassets.runtime.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\bin\Debug\net9.0\OpenArchival.Blazor.CustomComponents.staticwebassets.endpoints.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\bin\Debug\net9.0\OpenArchival.Blazor.CustomComponents.deps.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\bin\Debug\net9.0\OpenArchival.Blazor.CustomComponents.runtimeconfig.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\bin\Debug\net9.0\OpenArchival.Blazor.CustomComponents.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\bin\Debug\net9.0\OpenArchival.Blazor.CustomComponents.pdb +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\bin\Debug\net9.0\OpenArchival.DataAccess.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\bin\Debug\net9.0\OpenArchival.DataAccess.pdb +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\OpenArchival.Blazor.CustomComponents.csproj.AssemblyReference.cache +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\rpswa.dswa.cache.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\OpenArchival.Blazor.CustomComponents.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\OpenArchival.Blazor.CustomComponents.AssemblyInfoInputs.cache +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\OpenArchival.Blazor.CustomComponents.AssemblyInfo.cs +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\OpenArchival.Blazor.CustomComponents.csproj.CoreCompileInputs.cache +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\OpenArchival.Blazor.CustomComponents.sourcelink.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\rjimswa.dswa.cache.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\rjsmrazor.dswa.cache.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\rjsmcshtml.dswa.cache.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\scopedcss\bundle\OpenArchival.Blazor.CustomComponents.styles.css +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\compressed\tzxjg6is5z-jk5eo7zo4m.gz +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\compressed\0wz98yz2xy-tjzqk7tnel.gz +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\compressed\24gzn4tg1a-qz4batx9cb.gz +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\compressed\stwk5nfoxp-loe7cozwzj.gz +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\staticwebassets.build.json.cache +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\staticwebassets.development.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\staticwebassets.build.endpoints.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\staticwebassets\msbuild.OpenArchival.Blazor.CustomComponents.Microsoft.AspNetCore.StaticWebAssets.props +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\staticwebassets\msbuild.OpenArchival.Blazor.CustomComponents.Microsoft.AspNetCore.StaticWebAssetEndpoints.props +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\staticwebassets\msbuild.build.OpenArchival.Blazor.CustomComponents.props +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\staticwebassets\msbuild.buildMultiTargeting.OpenArchival.Blazor.CustomComponents.props +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\staticwebassets\msbuild.buildTransitive.OpenArchival.Blazor.CustomComponents.props +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\staticwebassets.pack.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\staticwebassets.upToDateCheck.txt +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\OpenArch.4561040F.Up2Date +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\OpenArchival.Blazor.CustomComponents.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\refint\OpenArchival.Blazor.CustomComponents.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\OpenArchival.Blazor.CustomComponents.pdb +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\OpenArchival.Blazor.CustomComponents.genruntimeconfig.cache +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\ref\OpenArchival.Blazor.CustomComponents.dll diff --git a/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.dll b/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.dll new file mode 100644 index 0000000..898228c Binary files /dev/null and b/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.dll differ diff --git a/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.genruntimeconfig.cache b/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.genruntimeconfig.cache new file mode 100644 index 0000000..7c5c7bb --- /dev/null +++ b/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.genruntimeconfig.cache @@ -0,0 +1 @@ +8382a9175cc270dea9003105300e8f7b19a3481b3f2543d22618376053abc1de diff --git a/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.pdb b/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.pdb new file mode 100644 index 0000000..29f5933 Binary files /dev/null and b/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.pdb differ diff --git a/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.sourcelink.json b/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.sourcelink.json new file mode 100644 index 0000000..bd84b90 --- /dev/null +++ b/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.sourcelink.json @@ -0,0 +1 @@ +{"documents":{"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\*":"https://raw.githubusercontent.com/vtallen/Open-Archival/781793a27f2e164808340b1adb5ce70e1800b187/*"}} \ No newline at end of file diff --git a/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/compressed/0wz98yz2xy-tjzqk7tnel.gz b/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/compressed/0wz98yz2xy-tjzqk7tnel.gz new file mode 100644 index 0000000..1be9dc7 Binary files /dev/null and b/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/compressed/0wz98yz2xy-tjzqk7tnel.gz differ diff --git a/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/compressed/24gzn4tg1a-qz4batx9cb.gz b/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/compressed/24gzn4tg1a-qz4batx9cb.gz new file mode 100644 index 0000000..286d510 Binary files /dev/null and b/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/compressed/24gzn4tg1a-qz4batx9cb.gz differ diff --git a/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/compressed/stwk5nfoxp-loe7cozwzj.gz b/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/compressed/stwk5nfoxp-loe7cozwzj.gz new file mode 100644 index 0000000..0a77fee Binary files /dev/null and b/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/compressed/stwk5nfoxp-loe7cozwzj.gz differ diff --git a/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/compressed/tzxjg6is5z-jk5eo7zo4m.gz b/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/compressed/tzxjg6is5z-jk5eo7zo4m.gz new file mode 100644 index 0000000..0bd6298 Binary files /dev/null and b/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/compressed/tzxjg6is5z-jk5eo7zo4m.gz differ diff --git a/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/rbcswa.dswa.cache.json b/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/rbcswa.dswa.cache.json new file mode 100644 index 0000000..5a29b30 --- /dev/null +++ b/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/rbcswa.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"2ilJ2M8+ZdH0swl4cXFj9Ji8kay0R08ISE/fEc+OL0o=","FingerprintPatternsHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["nvguFYOigz3eJTxArc7mpWNxZSguBUB20pTA414OzT0=","ZSgFJ56\u002Bea3drY55Nw7wgh8srRjwILKQFbYVPz1ebMM=","Q\u002BqfBypnRyuBZl2TP0N/BTsFKfHvrS\u002BXx\u002BT3qsXnKBo=","y3krMIKhnl8Y0StSPswcw3/9snEEeXKB6eexOedxZCE="],"CachedAssets":{"nvguFYOigz3eJTxArc7mpWNxZSguBUB20pTA414OzT0=":{"Identity":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\obj\\Debug\\net9.0\\compressed\\tzxjg6is5z-jk5eo7zo4m.gz","SourceId":"MudBlazor","SourceType":"Package","ContentRoot":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\obj\\Debug\\net9.0\\compressed\\","BasePath":"_content/MudBlazor","RelativePath":"MudBlazor.min.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\MudBlazor.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"93u47y2o0e","Integrity":"VcBMO3aXrzxl\u002BjfWY\u002BTaxPKsd3L0UWjeJZliEXOyzzI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\MudBlazor.min.css","FileLength":65509,"LastWriteTime":"2025-10-08T17:06:26.815091+00:00"},"ZSgFJ56\u002Bea3drY55Nw7wgh8srRjwILKQFbYVPz1ebMM=":{"Identity":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\obj\\Debug\\net9.0\\compressed\\0wz98yz2xy-tjzqk7tnel.gz","SourceId":"MudBlazor","SourceType":"Package","ContentRoot":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\obj\\Debug\\net9.0\\compressed\\","BasePath":"_content/MudBlazor","RelativePath":"MudBlazor.min.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\MudBlazor.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"c1g0o1u83p","Integrity":"0BJxfo\u002BEOJvNKoBv/2ahm4RKrPjv7PhB/R16C3XOHDo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\MudBlazor.min.js","FileLength":16352,"LastWriteTime":"2025-10-08T17:06:26.8063385+00:00"},"Q\u002BqfBypnRyuBZl2TP0N/BTsFKfHvrS\u002BXx\u002BT3qsXnKBo=":{"Identity":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\obj\\Debug\\net9.0\\compressed\\24gzn4tg1a-qz4batx9cb.gz","SourceId":"CodeBeam.MudExtensions","SourceType":"Package","ContentRoot":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\obj\\Debug\\net9.0\\compressed\\","BasePath":"_content/CodeBeam.MudExtensions","RelativePath":"MudExtensions.min.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\MudExtensions.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"cn6plcuhii","Integrity":"6PJ7t7WR38pQTSYe6IR0pbqo2cIZK5wuW/w26kprtBg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\MudExtensions.min.css","FileLength":3383,"LastWriteTime":"2025-10-08T17:06:26.8016937+00:00"},"y3krMIKhnl8Y0StSPswcw3/9snEEeXKB6eexOedxZCE=":{"Identity":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\obj\\Debug\\net9.0\\compressed\\stwk5nfoxp-loe7cozwzj.gz","SourceId":"CodeBeam.MudExtensions","SourceType":"Package","ContentRoot":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\obj\\Debug\\net9.0\\compressed\\","BasePath":"_content/CodeBeam.MudExtensions","RelativePath":"MudExtensions.min.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\MudExtensions.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"z9m1gj6ro7","Integrity":"B4PUgpr06\u002Bd3lAMWknp0EVkaGxPZJdpp5/UidGHzvnc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\MudExtensions.min.js","FileLength":196,"LastWriteTime":"2025-10-08T17:06:26.8006943+00:00"}},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/ref/OpenArchival.Blazor.CustomComponents.dll b/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/ref/OpenArchival.Blazor.CustomComponents.dll new file mode 100644 index 0000000..5152f9d Binary files /dev/null and b/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/ref/OpenArchival.Blazor.CustomComponents.dll differ diff --git a/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/refint/OpenArchival.Blazor.CustomComponents.dll b/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/refint/OpenArchival.Blazor.CustomComponents.dll new file mode 100644 index 0000000..5152f9d Binary files /dev/null and b/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/refint/OpenArchival.Blazor.CustomComponents.dll differ diff --git a/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/rjsmcshtml.dswa.cache.json b/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/rjsmcshtml.dswa.cache.json new file mode 100644 index 0000000..7367b1d --- /dev/null +++ b/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/rjsmcshtml.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"lEU9IK7JHCtiQwSBP/TxPcopW1tWNtXaNJKihxw8m0A=","FingerprintPatternsHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["GH8jmhYadcRjCk4T3Qfi0fdjfCo5wF7LsIFeC4DAgOY=","JT2HjsbwKP1othuNbbjfH1ZrwekmMuhUn\u002BDlTWdbVaA="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/rjsmrazor.dswa.cache.json b/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/rjsmrazor.dswa.cache.json new file mode 100644 index 0000000..ac5090b --- /dev/null +++ b/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/rjsmrazor.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"hpbkMQ9hakeljxb8W9+Il0Sx7HacuJPv2rysgndHj4c=","FingerprintPatternsHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["GH8jmhYadcRjCk4T3Qfi0fdjfCo5wF7LsIFeC4DAgOY=","JT2HjsbwKP1othuNbbjfH1ZrwekmMuhUn\u002BDlTWdbVaA="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/rpswa.dswa.cache.json b/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/rpswa.dswa.cache.json new file mode 100644 index 0000000..12129ea --- /dev/null +++ b/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/rpswa.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"vjz3KQm1uI8qugMtsB8o1ithK8Mz7yLsdmt2+RtOpbA=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["0\u002BdhlrDSYKS0Z85gDo0eT6RBIMnzuDtm7J7IRWyC21Y=","cicEt7GyzsV3vXXdPNmvr2wK\u002B96xo5\u002B295cMC7PLxT8="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/staticwebassets.build.endpoints.json b/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/staticwebassets.build.endpoints.json new file mode 100644 index 0000000..615d6e4 --- /dev/null +++ b/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/staticwebassets.build.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.css","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"21465"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk=\""},{"Name":"Last-Modified","Value":"Sun, 26 Feb 2023 14:08:26 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.css","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000295508274"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3383"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"6PJ7t7WR38pQTSYe6IR0pbqo2cIZK5wuW/w26kprtBg=\""},{"Name":"ETag","Value":"W/\"Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:26 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.css.gz","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3383"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"6PJ7t7WR38pQTSYe6IR0pbqo2cIZK5wuW/w26kprtBg=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:26 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6PJ7t7WR38pQTSYe6IR0pbqo2cIZK5wuW/w26kprtBg="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.js","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"328"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc=\""},{"Name":"Last-Modified","Value":"Sun, 26 Feb 2023 14:08:26 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.js","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005076142132"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"196"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"B4PUgpr06+d3lAMWknp0EVkaGxPZJdpp5/UidGHzvnc=\""},{"Name":"ETag","Value":"W/\"FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:26 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.js.gz","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"196"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"B4PUgpr06+d3lAMWknp0EVkaGxPZJdpp5/UidGHzvnc=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:26 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-B4PUgpr06+d3lAMWknp0EVkaGxPZJdpp5/UidGHzvnc="}]},{"Route":"_content/CodeBeam.MudExtensions/Mud_Secondary.png","AssetFile":"_content/CodeBeam.MudExtensions/Mud_Secondary.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4558"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"G3hYUw4Ps9P/IQ3lw2zu96RSZaOf4zU+4QkXkH8Xi3Y=\""},{"Name":"Last-Modified","Value":"Sat, 08 Oct 2022 09:55:02 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G3hYUw4Ps9P/IQ3lw2zu96RSZaOf4zU+4QkXkH8Xi3Y="}]},{"Route":"_content/MudBlazor/MudBlazor.min.css","AssetFile":"_content/MudBlazor/MudBlazor.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"606250"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0=\""},{"Name":"Last-Modified","Value":"Wed, 01 Oct 2025 21:51:05 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0="}]},{"Route":"_content/MudBlazor/MudBlazor.min.css","AssetFile":"_content/MudBlazor/MudBlazor.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015264845"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"65509"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"VcBMO3aXrzxl+jfWY+TaxPKsd3L0UWjeJZliEXOyzzI=\""},{"Name":"ETag","Value":"W/\"TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:26 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0="}]},{"Route":"_content/MudBlazor/MudBlazor.min.css.gz","AssetFile":"_content/MudBlazor/MudBlazor.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"65509"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"VcBMO3aXrzxl+jfWY+TaxPKsd3L0UWjeJZliEXOyzzI=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:26 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VcBMO3aXrzxl+jfWY+TaxPKsd3L0UWjeJZliEXOyzzI="}]},{"Route":"_content/MudBlazor/MudBlazor.min.jk5eo7zo4m.css","AssetFile":"_content/MudBlazor/MudBlazor.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"606250"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0=\""},{"Name":"Last-Modified","Value":"Wed, 01 Oct 2025 21:51:05 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jk5eo7zo4m"},{"Name":"integrity","Value":"sha256-TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.css"}]},{"Route":"_content/MudBlazor/MudBlazor.min.js","AssetFile":"_content/MudBlazor/MudBlazor.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"75165"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw=\""},{"Name":"Last-Modified","Value":"Wed, 01 Oct 2025 21:51:05 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js","AssetFile":"_content/MudBlazor/MudBlazor.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000061150859"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16352"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"0BJxfo+EOJvNKoBv/2ahm4RKrPjv7PhB/R16C3XOHDo=\""},{"Name":"ETag","Value":"W/\"hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:26 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js.gz","AssetFile":"_content/MudBlazor/MudBlazor.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16352"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"0BJxfo+EOJvNKoBv/2ahm4RKrPjv7PhB/R16C3XOHDo=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:26 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0BJxfo+EOJvNKoBv/2ahm4RKrPjv7PhB/R16C3XOHDo="}]},{"Route":"_content/MudBlazor/MudBlazor.min.tjzqk7tnel.js","AssetFile":"_content/MudBlazor/MudBlazor.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"75165"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw=\""},{"Name":"Last-Modified","Value":"Wed, 01 Oct 2025 21:51:05 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tjzqk7tnel"},{"Name":"integrity","Value":"sha256-hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.js"}]}]} \ No newline at end of file diff --git a/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/staticwebassets.build.json b/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/staticwebassets.build.json new file mode 100644 index 0000000..a40e8cf --- /dev/null +++ b/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/staticwebassets.build.json @@ -0,0 +1 @@ +{"Version":1,"Hash":"wqLL+JuMn8hgRb25EJh/v8FF9jgbfXelWAbRmsf2uoA=","Source":"OpenArchival.Blazor.CustomComponents","BasePath":"_content/OpenArchival.Blazor.CustomComponents","Mode":"Default","ManifestType":"Build","ReferencedProjectsConfiguration":[{"Identity":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj","Version":2,"Source":"OpenArchival.DataAccess","GetPublishAssetsTargets":"ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems","AdditionalPublishProperties":"Configuration=Debug;Platform=AnyCPU","AdditionalPublishPropertiesToRemove":"TargetFramework","GetBuildAssetsTargets":"GetCurrentProjectBuildStaticWebAssetItems","AdditionalBuildProperties":"Configuration=Debug;Platform=AnyCPU","AdditionalBuildPropertiesToRemove":"TargetFramework"}],"DiscoveryPatterns":[],"Assets":[{"Identity":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\Mud_Secondary.png","SourceId":"CodeBeam.MudExtensions","SourceType":"Package","ContentRoot":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\","BasePath":"_content/CodeBeam.MudExtensions","RelativePath":"Mud_Secondary.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"tig1qhobl3","Integrity":"G3hYUw4Ps9P/IQ3lw2zu96RSZaOf4zU+4QkXkH8Xi3Y=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\Mud_Secondary.png","FileLength":4558,"LastWriteTime":"2022-10-08T09:55:02+00:00"},{"Identity":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\MudExtensions.min.css","SourceId":"CodeBeam.MudExtensions","SourceType":"Package","ContentRoot":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\","BasePath":"_content/CodeBeam.MudExtensions","RelativePath":"MudExtensions.min.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"qz4batx9cb","Integrity":"Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\MudExtensions.min.css","FileLength":21465,"LastWriteTime":"2023-02-26T14:08:26+00:00"},{"Identity":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\MudExtensions.min.js","SourceId":"CodeBeam.MudExtensions","SourceType":"Package","ContentRoot":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\","BasePath":"_content/CodeBeam.MudExtensions","RelativePath":"MudExtensions.min.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"loe7cozwzj","Integrity":"FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\MudExtensions.min.js","FileLength":328,"LastWriteTime":"2023-02-26T14:08:26+00:00"},{"Identity":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\MudBlazor.min.css","SourceId":"MudBlazor","SourceType":"Package","ContentRoot":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\","BasePath":"_content/MudBlazor","RelativePath":"MudBlazor.min.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"jk5eo7zo4m","Integrity":"TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\MudBlazor.min.css","FileLength":606250,"LastWriteTime":"2025-10-01T21:51:05+00:00"},{"Identity":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\MudBlazor.min.js","SourceId":"MudBlazor","SourceType":"Package","ContentRoot":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\","BasePath":"_content/MudBlazor","RelativePath":"MudBlazor.min.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"tjzqk7tnel","Integrity":"hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\MudBlazor.min.js","FileLength":75165,"LastWriteTime":"2025-10-01T21:51:05+00:00"},{"Identity":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\obj\\Debug\\net9.0\\compressed\\0wz98yz2xy-tjzqk7tnel.gz","SourceId":"MudBlazor","SourceType":"Package","ContentRoot":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\obj\\Debug\\net9.0\\compressed\\","BasePath":"_content/MudBlazor","RelativePath":"MudBlazor.min.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\MudBlazor.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"c1g0o1u83p","Integrity":"0BJxfo+EOJvNKoBv/2ahm4RKrPjv7PhB/R16C3XOHDo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\MudBlazor.min.js","FileLength":16352,"LastWriteTime":"2025-10-08T17:06:26+00:00"},{"Identity":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\obj\\Debug\\net9.0\\compressed\\24gzn4tg1a-qz4batx9cb.gz","SourceId":"CodeBeam.MudExtensions","SourceType":"Package","ContentRoot":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\obj\\Debug\\net9.0\\compressed\\","BasePath":"_content/CodeBeam.MudExtensions","RelativePath":"MudExtensions.min.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\MudExtensions.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"cn6plcuhii","Integrity":"6PJ7t7WR38pQTSYe6IR0pbqo2cIZK5wuW/w26kprtBg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\MudExtensions.min.css","FileLength":3383,"LastWriteTime":"2025-10-08T17:06:26+00:00"},{"Identity":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\obj\\Debug\\net9.0\\compressed\\stwk5nfoxp-loe7cozwzj.gz","SourceId":"CodeBeam.MudExtensions","SourceType":"Package","ContentRoot":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\obj\\Debug\\net9.0\\compressed\\","BasePath":"_content/CodeBeam.MudExtensions","RelativePath":"MudExtensions.min.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\MudExtensions.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"z9m1gj6ro7","Integrity":"B4PUgpr06+d3lAMWknp0EVkaGxPZJdpp5/UidGHzvnc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\MudExtensions.min.js","FileLength":196,"LastWriteTime":"2025-10-08T17:06:26+00:00"},{"Identity":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\obj\\Debug\\net9.0\\compressed\\tzxjg6is5z-jk5eo7zo4m.gz","SourceId":"MudBlazor","SourceType":"Package","ContentRoot":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\obj\\Debug\\net9.0\\compressed\\","BasePath":"_content/MudBlazor","RelativePath":"MudBlazor.min.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\MudBlazor.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"93u47y2o0e","Integrity":"VcBMO3aXrzxl+jfWY+TaxPKsd3L0UWjeJZliEXOyzzI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\MudBlazor.min.css","FileLength":65509,"LastWriteTime":"2025-10-08T17:06:26+00:00"}],"Endpoints":[{"Route":"_content/CodeBeam.MudExtensions/Mud_Secondary.png","AssetFile":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\Mud_Secondary.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"4558"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"G3hYUw4Ps9P/IQ3lw2zu96RSZaOf4zU+4QkXkH8Xi3Y=\""},{"Name":"Last-Modified","Value":"Sat, 08 Oct 2022 09:55:02 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G3hYUw4Ps9P/IQ3lw2zu96RSZaOf4zU+4QkXkH8Xi3Y="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.css","AssetFile":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\MudExtensions.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"21465"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk=\""},{"Name":"Last-Modified","Value":"Sun, 26 Feb 2023 14:08:26 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.css","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\obj\\Debug\\net9.0\\compressed\\24gzn4tg1a-qz4batx9cb.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000295508274"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"3383"},{"Name":"ETag","Value":"\"6PJ7t7WR38pQTSYe6IR0pbqo2cIZK5wuW/w26kprtBg=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:26 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.css.gz","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\obj\\Debug\\net9.0\\compressed\\24gzn4tg1a-qz4batx9cb.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"3383"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"6PJ7t7WR38pQTSYe6IR0pbqo2cIZK5wuW/w26kprtBg=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:26 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6PJ7t7WR38pQTSYe6IR0pbqo2cIZK5wuW/w26kprtBg="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.js","AssetFile":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\MudExtensions.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"328"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc=\""},{"Name":"Last-Modified","Value":"Sun, 26 Feb 2023 14:08:26 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.js","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\obj\\Debug\\net9.0\\compressed\\stwk5nfoxp-loe7cozwzj.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005076142132"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"196"},{"Name":"ETag","Value":"\"B4PUgpr06+d3lAMWknp0EVkaGxPZJdpp5/UidGHzvnc=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:26 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"W/\"FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.js.gz","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\obj\\Debug\\net9.0\\compressed\\stwk5nfoxp-loe7cozwzj.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"196"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"B4PUgpr06+d3lAMWknp0EVkaGxPZJdpp5/UidGHzvnc=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:26 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-B4PUgpr06+d3lAMWknp0EVkaGxPZJdpp5/UidGHzvnc="}]},{"Route":"_content/MudBlazor/MudBlazor.min.css","AssetFile":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\MudBlazor.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"606250"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0=\""},{"Name":"Last-Modified","Value":"Wed, 01 Oct 2025 21:51:05 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0="}]},{"Route":"_content/MudBlazor/MudBlazor.min.css","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\obj\\Debug\\net9.0\\compressed\\tzxjg6is5z-jk5eo7zo4m.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015264845"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"65509"},{"Name":"ETag","Value":"\"VcBMO3aXrzxl+jfWY+TaxPKsd3L0UWjeJZliEXOyzzI=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:26 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0="}]},{"Route":"_content/MudBlazor/MudBlazor.min.css.gz","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\obj\\Debug\\net9.0\\compressed\\tzxjg6is5z-jk5eo7zo4m.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"65509"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"VcBMO3aXrzxl+jfWY+TaxPKsd3L0UWjeJZliEXOyzzI=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:26 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VcBMO3aXrzxl+jfWY+TaxPKsd3L0UWjeJZliEXOyzzI="}]},{"Route":"_content/MudBlazor/MudBlazor.min.jk5eo7zo4m.css","AssetFile":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\MudBlazor.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"606250"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0=\""},{"Name":"Last-Modified","Value":"Wed, 01 Oct 2025 21:51:05 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jk5eo7zo4m"},{"Name":"integrity","Value":"sha256-TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.css"}]},{"Route":"_content/MudBlazor/MudBlazor.min.js","AssetFile":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\MudBlazor.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"75165"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw=\""},{"Name":"Last-Modified","Value":"Wed, 01 Oct 2025 21:51:05 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\obj\\Debug\\net9.0\\compressed\\0wz98yz2xy-tjzqk7tnel.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000061150859"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"16352"},{"Name":"ETag","Value":"\"0BJxfo+EOJvNKoBv/2ahm4RKrPjv7PhB/R16C3XOHDo=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:26 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"W/\"hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js.gz","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\obj\\Debug\\net9.0\\compressed\\0wz98yz2xy-tjzqk7tnel.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"16352"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"0BJxfo+EOJvNKoBv/2ahm4RKrPjv7PhB/R16C3XOHDo=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:26 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0BJxfo+EOJvNKoBv/2ahm4RKrPjv7PhB/R16C3XOHDo="}]},{"Route":"_content/MudBlazor/MudBlazor.min.tjzqk7tnel.js","AssetFile":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\MudBlazor.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"75165"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw=\""},{"Name":"Last-Modified","Value":"Wed, 01 Oct 2025 21:51:05 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tjzqk7tnel"},{"Name":"integrity","Value":"sha256-hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.js"}]}]} \ No newline at end of file diff --git a/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/staticwebassets.build.json.cache b/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/staticwebassets.build.json.cache new file mode 100644 index 0000000..7a4739e --- /dev/null +++ b/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/staticwebassets.build.json.cache @@ -0,0 +1 @@ +wqLL+JuMn8hgRb25EJh/v8FF9jgbfXelWAbRmsf2uoA= \ No newline at end of file diff --git a/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/staticwebassets.development.json b/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/staticwebassets.development.json new file mode 100644 index 0000000..389aabf --- /dev/null +++ b/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/staticwebassets.development.json @@ -0,0 +1 @@ +{"ContentRoots":["C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\","C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\obj\\Debug\\net9.0\\compressed\\","C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\"],"Root":{"Children":{"_content":{"Children":{"CodeBeam.MudExtensions":{"Children":{"Mud_Secondary.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"Mud_Secondary.png"},"Patterns":null},"MudExtensions.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"MudExtensions.min.css"},"Patterns":null},"MudExtensions.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"24gzn4tg1a-qz4batx9cb.gz"},"Patterns":null},"MudExtensions.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"MudExtensions.min.js"},"Patterns":null},"MudExtensions.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"stwk5nfoxp-loe7cozwzj.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"MudBlazor":{"Children":{"MudBlazor.min.css":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"MudBlazor.min.css"},"Patterns":null},"MudBlazor.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"tzxjg6is5z-jk5eo7zo4m.gz"},"Patterns":null},"MudBlazor.min.js":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"MudBlazor.min.js"},"Patterns":null},"MudBlazor.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"0wz98yz2xy-tjzqk7tnel.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}} \ No newline at end of file diff --git a/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/staticwebassets.references.upToDateCheck.txt b/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/staticwebassets.references.upToDateCheck.txt new file mode 100644 index 0000000..7509bac --- /dev/null +++ b/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/staticwebassets.references.upToDateCheck.txt @@ -0,0 +1,3 @@ +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json diff --git a/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/staticwebassets.removed.txt b/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/staticwebassets.removed.txt new file mode 100644 index 0000000..e69de29 diff --git a/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/staticwebassets/msbuild.build.OpenArchival.Blazor.CustomComponents.props b/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/staticwebassets/msbuild.build.OpenArchival.Blazor.CustomComponents.props new file mode 100644 index 0000000..ddaed44 --- /dev/null +++ b/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/staticwebassets/msbuild.build.OpenArchival.Blazor.CustomComponents.props @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/staticwebassets/msbuild.buildMultiTargeting.OpenArchival.Blazor.CustomComponents.props b/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/staticwebassets/msbuild.buildMultiTargeting.OpenArchival.Blazor.CustomComponents.props new file mode 100644 index 0000000..bb29b3b --- /dev/null +++ b/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/staticwebassets/msbuild.buildMultiTargeting.OpenArchival.Blazor.CustomComponents.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/staticwebassets/msbuild.buildTransitive.OpenArchival.Blazor.CustomComponents.props b/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/staticwebassets/msbuild.buildTransitive.OpenArchival.Blazor.CustomComponents.props new file mode 100644 index 0000000..61b4923 --- /dev/null +++ b/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/staticwebassets/msbuild.buildTransitive.OpenArchival.Blazor.CustomComponents.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/OpenArchival.Blazor.CustomComponents/obj/OpenArchival.Blazor.CustomComponents.csproj.nuget.dgspec.json b/OpenArchival.Blazor.CustomComponents/obj/OpenArchival.Blazor.CustomComponents.csproj.nuget.dgspec.json new file mode 100644 index 0000000..0ad5505 --- /dev/null +++ b/OpenArchival.Blazor.CustomComponents/obj/OpenArchival.Blazor.CustomComponents.csproj.nuget.dgspec.json @@ -0,0 +1,192 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\OpenArchival.Blazor.CustomComponents.csproj": {} + }, + "projects": { + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\OpenArchival.Blazor.CustomComponents.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\OpenArchival.Blazor.CustomComponents.csproj", + "projectName": "OpenArchival.Blazor.CustomComponents", + "projectPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\OpenArchival.Blazor.CustomComponents.csproj", + "packagesPath": "C:\\Users\\vtall\\.nuget\\packages\\", + "outputPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\NuGet.Config", + "C:\\Users\\vtall\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net9.0" + ], + "sources": { + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "projectReferences": { + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj": { + "projectPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "9.0.300" + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "dependencies": { + "CodeBeam.MudExtensions": { + "target": "Package", + "version": "[6.3.0, )" + }, + "MudBlazor": { + "target": "Package", + "version": "[8.13.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.304/PortableRuntimeIdentifierGraph.json" + } + } + }, + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj", + "projectName": "OpenArchival.DataAccess", + "projectPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj", + "packagesPath": "C:\\Users\\vtall\\.nuget\\packages\\", + "outputPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\NuGet.Config", + "C:\\Users\\vtall\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net9.0" + ], + "sources": { + "C:\\Program Files\\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": { + "EntityFramework": { + "target": "Package", + "version": "[6.5.1, )" + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore": { + "target": "Package", + "version": "[9.0.8, )" + }, + "Microsoft.EntityFrameworkCore": { + "target": "Package", + "version": "[9.0.8, )" + }, + "Microsoft.EntityFrameworkCore.Design": { + "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", + "suppressParent": "All", + "target": "Package", + "version": "[9.0.8, )" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions": { + "target": "Package", + "version": "[9.0.8, )" + }, + "Npgsql": { + "target": "Package", + "version": "[9.0.3, )" + }, + "Npgsql.EntityFrameworkCore.PostgreSQL": { + "target": "Package", + "version": "[9.0.4, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.304/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/OpenArchival.Blazor.CustomComponents/obj/OpenArchival.Blazor.CustomComponents.csproj.nuget.g.props b/OpenArchival.Blazor.CustomComponents/obj/OpenArchival.Blazor.CustomComponents.csproj.nuget.g.props new file mode 100644 index 0000000..3606f97 --- /dev/null +++ b/OpenArchival.Blazor.CustomComponents/obj/OpenArchival.Blazor.CustomComponents.csproj.nuget.g.props @@ -0,0 +1,26 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\vtall\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + PackageReference + 6.14.1 + + + + + + + + + + + + + C:\Users\vtall\.nuget\packages\entityframework\6.5.1 + C:\Users\vtall\.nuget\packages\buildbundlerminifier\3.2.449 + + \ No newline at end of file diff --git a/OpenArchival.Blazor.CustomComponents/obj/OpenArchival.Blazor.CustomComponents.csproj.nuget.g.targets b/OpenArchival.Blazor.CustomComponents/obj/OpenArchival.Blazor.CustomComponents.csproj.nuget.g.targets new file mode 100644 index 0000000..1dd74b3 --- /dev/null +++ b/OpenArchival.Blazor.CustomComponents/obj/OpenArchival.Blazor.CustomComponents.csproj.nuget.g.targets @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/OpenArchival.Blazor.CustomComponents/obj/project.assets.json b/OpenArchival.Blazor.CustomComponents/obj/project.assets.json new file mode 100644 index 0000000..6acce2c --- /dev/null +++ b/OpenArchival.Blazor.CustomComponents/obj/project.assets.json @@ -0,0 +1,2469 @@ +{ + "version": 3, + "targets": { + "net9.0": { + "BuildBundlerMinifier/3.2.449": { + "type": "package", + "build": { + "build/_._": {} + } + }, + "CodeBeam.MudExtensions/6.3.0": { + "type": "package", + "dependencies": { + "BuildBundlerMinifier": "3.2.449", + "CsvHelper": "30.0.1", + "Microsoft.AspNetCore.Components": "7.0.1", + "Microsoft.AspNetCore.Components.Web": "7.0.1", + "MudBlazor": "6.1.9" + }, + "compile": { + "lib/net7.0/CodeBeam.MudExtensions.dll": {} + }, + "runtime": { + "lib/net7.0/CodeBeam.MudExtensions.dll": {} + }, + "build": { + "buildTransitive/CodeBeam.MudExtensions.props": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/CodeBeam.MudExtensions.props": {} + } + }, + "CsvHelper/30.0.1": { + "type": "package", + "compile": { + "lib/net6.0/CsvHelper.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/CsvHelper.dll": { + "related": ".xml" + } + } + }, + "EntityFramework/6.5.1": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.7.0", + "System.CodeDom": "6.0.0", + "System.ComponentModel.Annotations": "5.0.0", + "System.Configuration.ConfigurationManager": "6.0.1", + "System.Data.SqlClient": "4.8.6" + }, + "compile": { + "lib/netstandard2.1/EntityFramework.SqlServer.dll": { + "related": ".xml" + }, + "lib/netstandard2.1/EntityFramework.dll": { + "related": ".SqlServer.xml;.xml" + } + }, + "runtime": { + "lib/netstandard2.1/EntityFramework.SqlServer.dll": { + "related": ".xml" + }, + "lib/netstandard2.1/EntityFramework.dll": { + "related": ".SqlServer.xml;.xml" + } + }, + "build": { + "buildTransitive/net6.0/EntityFramework.props": {}, + "buildTransitive/net6.0/EntityFramework.targets": {} + } + }, + "Microsoft.AspNetCore.Authorization/9.0.1": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Metadata": "9.0.1", + "Microsoft.Extensions.Logging.Abstractions": "9.0.1", + "Microsoft.Extensions.Options": "9.0.1" + }, + "compile": { + "lib/net9.0/Microsoft.AspNetCore.Authorization.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Authorization.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Components/9.0.1": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Authorization": "9.0.1", + "Microsoft.AspNetCore.Components.Analyzers": "9.0.1" + }, + "compile": { + "lib/net9.0/Microsoft.AspNetCore.Components.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Components.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Components.Analyzers/9.0.1": { + "type": "package", + "build": { + "buildTransitive/netstandard2.0/Microsoft.AspNetCore.Components.Analyzers.targets": {} + } + }, + "Microsoft.AspNetCore.Components.Forms/9.0.1": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Components": "9.0.1" + }, + "compile": { + "lib/net9.0/Microsoft.AspNetCore.Components.Forms.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Components.Forms.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Components.Web/9.0.1": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Components": "9.0.1", + "Microsoft.AspNetCore.Components.Forms": "9.0.1", + "Microsoft.Extensions.DependencyInjection": "9.0.1", + "Microsoft.Extensions.Primitives": "9.0.1", + "Microsoft.JSInterop": "9.0.1" + }, + "compile": { + "lib/net9.0/Microsoft.AspNetCore.Components.Web.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Components.Web.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Cryptography.Internal/9.0.8": { + "type": "package", + "compile": { + "lib/net9.0/Microsoft.AspNetCore.Cryptography.Internal.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Cryptography.Internal.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Cryptography.Internal": "9.0.8" + }, + "compile": { + "lib/net9.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore.Relational": "9.0.8", + "Microsoft.Extensions.Identity.Stores": "9.0.8" + }, + "compile": { + "lib/net9.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Metadata/9.0.1": { + "type": "package", + "compile": { + "lib/net9.0/Microsoft.AspNetCore.Metadata.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Metadata.dll": { + "related": ".xml" + } + } + }, + "Microsoft.CSharp/4.7.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "Microsoft.EntityFrameworkCore/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "9.0.8", + "Microsoft.EntityFrameworkCore.Analyzers": "9.0.8", + "Microsoft.Extensions.Caching.Memory": "9.0.8", + "Microsoft.Extensions.Logging": "9.0.8" + }, + "compile": { + "lib/net8.0/Microsoft.EntityFrameworkCore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.EntityFrameworkCore.props": {} + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/9.0.8": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/9.0.8": { + "type": "package" + }, + "Microsoft.EntityFrameworkCore.Relational/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore": "9.0.8", + "Microsoft.Extensions.Caching.Memory": "9.0.8", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.8", + "Microsoft.Extensions.Logging": "9.0.8" + }, + "compile": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Caching.Abstractions/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.8" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Caching.Memory/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "9.0.8", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8", + "Microsoft.Extensions.Logging.Abstractions": "9.0.8", + "Microsoft.Extensions.Options": "9.0.8", + "Microsoft.Extensions.Primitives": "9.0.8" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Caching.Memory.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Caching.Memory.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.8" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.8": { + "type": "package", + "compile": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Identity.Core/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Cryptography.KeyDerivation": "9.0.8", + "Microsoft.Extensions.Logging": "9.0.8", + "Microsoft.Extensions.Options": "9.0.8" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Identity.Core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Identity.Core.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Identity.Stores/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "9.0.8", + "Microsoft.Extensions.Identity.Core": "9.0.8", + "Microsoft.Extensions.Logging": "9.0.8" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Identity.Stores.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Identity.Stores.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Localization/9.0.1": { + "type": "package", + "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" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Localization.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Localization.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Localization.Abstractions/9.0.1": { + "type": "package", + "compile": { + "lib/net9.0/Microsoft.Extensions.Localization.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Localization.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Logging/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "9.0.8", + "Microsoft.Extensions.Logging.Abstractions": "9.0.8", + "Microsoft.Extensions.Options": "9.0.8" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.Options/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8", + "Microsoft.Extensions.Primitives": "9.0.8" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.Extensions.Options.targets": {} + } + }, + "Microsoft.Extensions.Primitives/9.0.8": { + "type": "package", + "compile": { + "lib/net9.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.JSInterop/9.0.1": { + "type": "package", + "compile": { + "lib/net9.0/Microsoft.JSInterop.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.JSInterop.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Win32.Registry/4.7.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "MudBlazor/8.13.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Components": "9.0.1", + "Microsoft.AspNetCore.Components.Web": "9.0.1", + "Microsoft.Extensions.Localization": "9.0.1" + }, + "compile": { + "lib/net9.0/MudBlazor.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/MudBlazor.dll": { + "related": ".xml" + } + }, + "build": { + "build/MudBlazor.targets": {}, + "buildTransitive/MudBlazor.props": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/MudBlazor.props": {} + } + }, + "Npgsql/9.0.3": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "8.0.2" + }, + "compile": { + "lib/net8.0/Npgsql.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Npgsql.dll": { + "related": ".xml" + } + } + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/9.0.4": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore": "[9.0.1, 10.0.0)", + "Microsoft.EntityFrameworkCore.Relational": "[9.0.1, 10.0.0)", + "Npgsql": "9.0.3" + }, + "compile": { + "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { + "related": ".xml" + } + } + }, + "runtime.native.System.Data.SqlClient.sni/4.7.0": { + "type": "package", + "dependencies": { + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0" + } + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "runtimeTargets": { + "runtimes/win-arm64/native/sni.dll": { + "assetType": "native", + "rid": "win-arm64" + } + } + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "runtimeTargets": { + "runtimes/win-x64/native/sni.dll": { + "assetType": "native", + "rid": "win-x64" + } + } + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "runtimeTargets": { + "runtimes/win-x86/native/sni.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "System.CodeDom/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.CodeDom.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.CodeDom.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.ComponentModel.Annotations/5.0.0": { + "type": "package", + "compile": { + "ref/netstandard2.1/System.ComponentModel.Annotations.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/System.ComponentModel.Annotations.dll": { + "related": ".xml" + } + } + }, + "System.Configuration.ConfigurationManager/6.0.1": { + "type": "package", + "dependencies": { + "System.Security.Cryptography.ProtectedData": "6.0.0", + "System.Security.Permissions": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Configuration.ConfigurationManager.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Configuration.ConfigurationManager.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Data.SqlClient/4.8.6": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Registry": "4.7.0", + "System.Security.Principal.Windows": "4.7.0", + "runtime.native.System.Data.SqlClient.sni": "4.7.0" + }, + "compile": { + "ref/netcoreapp2.1/System.Data.SqlClient.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Drawing.Common/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Win32.SystemEvents": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Drawing.Common.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Drawing.Common.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/net6.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.AccessControl/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Security.AccessControl.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Security.AccessControl.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Security.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.ProtectedData/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Permissions/6.0.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Windows.Extensions": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Security.Permissions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Security.Permissions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Security.Principal.Windows/4.7.0": { + "type": "package", + "compile": { + "ref/netcoreapp3.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Security.Principal.Windows.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Windows.Extensions/6.0.0": { + "type": "package", + "dependencies": { + "System.Drawing.Common": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Windows.Extensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Windows.Extensions.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "OpenArchival.DataAccess/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v9.0", + "dependencies": { + "EntityFramework": "6.5.1", + "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "9.0.8", + "Microsoft.EntityFrameworkCore": "9.0.8", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8", + "Npgsql": "9.0.3", + "Npgsql.EntityFrameworkCore.PostgreSQL": "9.0.4" + }, + "compile": { + "bin/placeholder/OpenArchival.DataAccess.dll": {} + }, + "runtime": { + "bin/placeholder/OpenArchival.DataAccess.dll": {} + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + } + } + }, + "libraries": { + "BuildBundlerMinifier/3.2.449": { + "sha512": "uA9sYDy4VepL3xwzBTLcP2LyuVYMt0ZIT3gaSiXvGoX15Ob+rOP+hGydhevlSVd+rFo+Y+VQFEHDuWU8HBW+XA==", + "type": "package", + "path": "buildbundlerminifier/3.2.449", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/BuildBundlerMinifier.targets", + "buildbundlerminifier.3.2.449.nupkg.sha512", + "buildbundlerminifier.nuspec", + "tools/net46/BundlerMinifier.dll", + "tools/net46/NUglify.dll", + "tools/net46/Newtonsoft.Json.dll", + "tools/netcoreapp2.0/BundlerMinifier.dll", + "tools/netcoreapp2.0/NUglify.dll", + "tools/netcoreapp2.0/Newtonsoft.Json.dll", + "tools/netcoreapp3.0/BundlerMinifier.dll", + "tools/netcoreapp3.0/NUglify.dll", + "tools/netcoreapp3.0/Newtonsoft.Json.dll", + "tools/netcoreapp3.1/BundlerMinifier.dll", + "tools/netcoreapp3.1/NUglify.dll", + "tools/netcoreapp3.1/Newtonsoft.Json.dll", + "tools/netstandard1.3/BundlerMinifier.dll", + "tools/netstandard1.3/NUglify.dll", + "tools/netstandard1.3/Newtonsoft.Json.dll" + ] + }, + "CodeBeam.MudExtensions/6.3.0": { + "sha512": "U5J0IlIg8R166hm9RwVjjbCtbBs3ixLev94NmfQHaBVUn3P4un+DoirfUjcUs96wvKb5K9H9ou39Yq+wBO11IA==", + "type": "package", + "path": "codebeam.mudextensions/6.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Mud_Secondary.png", + "build/CodeBeam.MudExtensions.props", + "build/Microsoft.AspNetCore.StaticWebAssets.props", + "buildMultiTargeting/CodeBeam.MudExtensions.props", + "buildTransitive/CodeBeam.MudExtensions.props", + "codebeam.mudextensions.6.3.0.nupkg.sha512", + "codebeam.mudextensions.nuspec", + "lib/net6.0/CodeBeam.MudExtensions.dll", + "lib/net7.0/CodeBeam.MudExtensions.dll", + "staticwebassets/MudExtensions.min.css", + "staticwebassets/MudExtensions.min.js", + "staticwebassets/Mud_Secondary.png" + ] + }, + "CsvHelper/30.0.1": { + "sha512": "rcZtgbWR+As4G3Vpgx0AMNmShGuQLFjkHAPIIflzrfkJCx8/AOd4m96ZRmiU1Wi39qS5UVjV0P8qdgqOo5Cwyg==", + "type": "package", + "path": "csvhelper/30.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "csvhelper.30.0.1.nupkg.sha512", + "csvhelper.nuspec", + "lib/net45/CsvHelper.dll", + "lib/net45/CsvHelper.xml", + "lib/net47/CsvHelper.dll", + "lib/net47/CsvHelper.xml", + "lib/net5.0/CsvHelper.dll", + "lib/net5.0/CsvHelper.xml", + "lib/net6.0/CsvHelper.dll", + "lib/net6.0/CsvHelper.xml", + "lib/netstandard2.0/CsvHelper.dll", + "lib/netstandard2.0/CsvHelper.xml", + "lib/netstandard2.1/CsvHelper.dll", + "lib/netstandard2.1/CsvHelper.xml" + ] + }, + "EntityFramework/6.5.1": { + "sha512": "sQRP2lWg1i3aAGWqdliAM8zrGx7LHMUk+9/MoxUjwfTZYGMXvZ2JYZTlyTm1PqDxvn3c9E3U76TWDON7Y5+CVA==", + "type": "package", + "path": "entityframework/6.5.1", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "README.md", + "build/EntityFramework.DefaultItems.props", + "build/EntityFramework.props", + "build/EntityFramework.targets", + "build/Microsoft.Data.Entity.Build.Tasks.dll", + "build/net6.0/EntityFramework.props", + "build/net6.0/EntityFramework.targets", + "buildTransitive/EntityFramework.props", + "buildTransitive/EntityFramework.targets", + "buildTransitive/net6.0/EntityFramework.props", + "buildTransitive/net6.0/EntityFramework.targets", + "content/net40/App.config.install.xdt", + "content/net40/App.config.transform", + "content/net40/Web.config.install.xdt", + "content/net40/Web.config.transform", + "entityframework.6.5.1.nupkg.sha512", + "entityframework.nuspec", + "lib/net40/EntityFramework.SqlServer.dll", + "lib/net40/EntityFramework.SqlServer.xml", + "lib/net40/EntityFramework.dll", + "lib/net40/EntityFramework.xml", + "lib/net45/EntityFramework.SqlServer.dll", + "lib/net45/EntityFramework.SqlServer.xml", + "lib/net45/EntityFramework.dll", + "lib/net45/EntityFramework.xml", + "lib/netstandard2.1/EntityFramework.SqlServer.dll", + "lib/netstandard2.1/EntityFramework.SqlServer.xml", + "lib/netstandard2.1/EntityFramework.dll", + "lib/netstandard2.1/EntityFramework.xml", + "tools/EntityFramework6.PS2.psd1", + "tools/EntityFramework6.PS2.psm1", + "tools/EntityFramework6.psd1", + "tools/EntityFramework6.psm1", + "tools/about_EntityFramework6.help.txt", + "tools/init.ps1", + "tools/install.ps1", + "tools/net40/any/ef6.exe", + "tools/net40/any/ef6.pdb", + "tools/net40/win-arm64/ef6.exe", + "tools/net40/win-arm64/ef6.pdb", + "tools/net40/win-x86/ef6.exe", + "tools/net40/win-x86/ef6.pdb", + "tools/net45/any/ef6.exe", + "tools/net45/any/ef6.pdb", + "tools/net45/win-arm64/ef6.exe", + "tools/net45/win-arm64/ef6.pdb", + "tools/net45/win-x86/ef6.exe", + "tools/net45/win-x86/ef6.pdb", + "tools/net6.0/any/ef6.dll", + "tools/net6.0/any/ef6.pdb", + "tools/net6.0/any/ef6.runtimeconfig.json" + ] + }, + "Microsoft.AspNetCore.Authorization/9.0.1": { + "sha512": "WgLlLBlMczb2+QLNG6sM95OUZ0EBztz60k/N75tjIgpyu0SdpIfYytAmX/7JJAjRTZF0c/CrWaQV+SH9FuGsrA==", + "type": "package", + "path": "microsoft.aspnetcore.authorization/9.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/Microsoft.AspNetCore.Authorization.dll", + "lib/net462/Microsoft.AspNetCore.Authorization.xml", + "lib/net9.0/Microsoft.AspNetCore.Authorization.dll", + "lib/net9.0/Microsoft.AspNetCore.Authorization.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.xml", + "microsoft.aspnetcore.authorization.9.0.1.nupkg.sha512", + "microsoft.aspnetcore.authorization.nuspec" + ] + }, + "Microsoft.AspNetCore.Components/9.0.1": { + "sha512": "6pwfbQKNtvPkbF4tCGiAKGyt6BVpu58xAXz7u2YXcUKTNmNxrymbG1mEyMc0EPzVdnquDDqTyfXM3mC1EJycxQ==", + "type": "package", + "path": "microsoft.aspnetcore.components/9.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.txt", + "lib/net9.0/Microsoft.AspNetCore.Components.dll", + "lib/net9.0/Microsoft.AspNetCore.Components.xml", + "microsoft.aspnetcore.components.9.0.1.nupkg.sha512", + "microsoft.aspnetcore.components.nuspec" + ] + }, + "Microsoft.AspNetCore.Components.Analyzers/9.0.1": { + "sha512": "I8Rs4LXT5UQxM5Nin2+Oj8aSY2heszSZ3EyTLgt3mxmfiRPrVO7D8NNSsf1voI2Gb0qFJceof/J5c9E+nfNuHw==", + "type": "package", + "path": "microsoft.aspnetcore.components.analyzers/9.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.9.0.1.nupkg.sha512", + "microsoft.aspnetcore.components.analyzers.nuspec" + ] + }, + "Microsoft.AspNetCore.Components.Forms/9.0.1": { + "sha512": "KyULVU32bLz74LWDwPEwNUEllTehzWJuM7YAsz80rMKEzvR0K8cRjRzO0fnN/nfydMeLRRlbI0xj8wnEAymLVw==", + "type": "package", + "path": "microsoft.aspnetcore.components.forms/9.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.txt", + "lib/net9.0/Microsoft.AspNetCore.Components.Forms.dll", + "lib/net9.0/Microsoft.AspNetCore.Components.Forms.xml", + "microsoft.aspnetcore.components.forms.9.0.1.nupkg.sha512", + "microsoft.aspnetcore.components.forms.nuspec" + ] + }, + "Microsoft.AspNetCore.Components.Web/9.0.1": { + "sha512": "LI0vjYEd9MaDZPDQxPCn4gGYDkEC5U9rp1nWZo7rPozJxgTG2zU3WERujxTi2LeAC2ZzdXlOVCrUyPQ55LZV2A==", + "type": "package", + "path": "microsoft.aspnetcore.components.web/9.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.txt", + "lib/net9.0/Microsoft.AspNetCore.Components.Web.dll", + "lib/net9.0/Microsoft.AspNetCore.Components.Web.xml", + "microsoft.aspnetcore.components.web.9.0.1.nupkg.sha512", + "microsoft.aspnetcore.components.web.nuspec" + ] + }, + "Microsoft.AspNetCore.Cryptography.Internal/9.0.8": { + "sha512": "NwGO0wh/IjEthBLGA6fWfIiftsNF/paA5RxWp6ji4wWazetJgQ4truR9nU2thAzzFLiXqlg8vGjdVDA8bHu0zA==", + "type": "package", + "path": "microsoft.aspnetcore.cryptography.internal/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/Microsoft.AspNetCore.Cryptography.Internal.dll", + "lib/net462/Microsoft.AspNetCore.Cryptography.Internal.xml", + "lib/net9.0/Microsoft.AspNetCore.Cryptography.Internal.dll", + "lib/net9.0/Microsoft.AspNetCore.Cryptography.Internal.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.xml", + "microsoft.aspnetcore.cryptography.internal.9.0.8.nupkg.sha512", + "microsoft.aspnetcore.cryptography.internal.nuspec" + ] + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/9.0.8": { + "sha512": "gK70xxXYwwPiXYKYVmLYMuIO5EOGrRtQghmM6PkgtZ/0lgLEjIs//xgSLvZkV/mroNHA1DEqTcqscEj9OzZ1IA==", + "type": "package", + "path": "microsoft.aspnetcore.cryptography.keyderivation/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll", + "lib/net462/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml", + "lib/net9.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll", + "lib/net9.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml", + "microsoft.aspnetcore.cryptography.keyderivation.9.0.8.nupkg.sha512", + "microsoft.aspnetcore.cryptography.keyderivation.nuspec" + ] + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore/9.0.8": { + "sha512": "z4q9roxXMQePwFM5tXXZS5sKkU78yYXVkj56NYYx9xKe+mxGkJMV1MaO0GFE6HnnM8bE3Xxhs0hAPw2jKbse6w==", + "type": "package", + "path": "microsoft.aspnetcore.identity.entityframeworkcore/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net9.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll", + "lib/net9.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.xml", + "microsoft.aspnetcore.identity.entityframeworkcore.9.0.8.nupkg.sha512", + "microsoft.aspnetcore.identity.entityframeworkcore.nuspec" + ] + }, + "Microsoft.AspNetCore.Metadata/9.0.1": { + "sha512": "EZnHifamF7IFEIyjAKMtJM3I/94OIe72i3P09v5oL0twmsmfQwal6Ni3m8lbB5mge3jWFhMozeW+rUdRSqnXRQ==", + "type": "package", + "path": "microsoft.aspnetcore.metadata/9.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/Microsoft.AspNetCore.Metadata.dll", + "lib/net462/Microsoft.AspNetCore.Metadata.xml", + "lib/net9.0/Microsoft.AspNetCore.Metadata.dll", + "lib/net9.0/Microsoft.AspNetCore.Metadata.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Metadata.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Metadata.xml", + "microsoft.aspnetcore.metadata.9.0.1.nupkg.sha512", + "microsoft.aspnetcore.metadata.nuspec" + ] + }, + "Microsoft.CSharp/4.7.0": { + "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", + "type": "package", + "path": "microsoft.csharp/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/Microsoft.CSharp.dll", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.3/Microsoft.CSharp.dll", + "lib/netstandard2.0/Microsoft.CSharp.dll", + "lib/netstandard2.0/Microsoft.CSharp.xml", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/uap10.0.16299/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.csharp.4.7.0.nupkg.sha512", + "microsoft.csharp.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/Microsoft.CSharp.dll", + "ref/netcore50/Microsoft.CSharp.xml", + "ref/netcore50/de/Microsoft.CSharp.xml", + "ref/netcore50/es/Microsoft.CSharp.xml", + "ref/netcore50/fr/Microsoft.CSharp.xml", + "ref/netcore50/it/Microsoft.CSharp.xml", + "ref/netcore50/ja/Microsoft.CSharp.xml", + "ref/netcore50/ko/Microsoft.CSharp.xml", + "ref/netcore50/ru/Microsoft.CSharp.xml", + "ref/netcore50/zh-hans/Microsoft.CSharp.xml", + "ref/netcore50/zh-hant/Microsoft.CSharp.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.0/Microsoft.CSharp.dll", + "ref/netstandard1.0/Microsoft.CSharp.xml", + "ref/netstandard1.0/de/Microsoft.CSharp.xml", + "ref/netstandard1.0/es/Microsoft.CSharp.xml", + "ref/netstandard1.0/fr/Microsoft.CSharp.xml", + "ref/netstandard1.0/it/Microsoft.CSharp.xml", + "ref/netstandard1.0/ja/Microsoft.CSharp.xml", + "ref/netstandard1.0/ko/Microsoft.CSharp.xml", + "ref/netstandard1.0/ru/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml", + "ref/netstandard2.0/Microsoft.CSharp.dll", + "ref/netstandard2.0/Microsoft.CSharp.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.0.16299/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.EntityFrameworkCore/9.0.8": { + "sha512": "bNGdPhN762+BIIO5MFYLjafRqkSS1MqLOc/erd55InvLnFxt9H3N5JNsuag1ZHyBor1VtD42U0CHpgqkWeAYgQ==", + "type": "package", + "path": "microsoft.entityframeworkcore/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "buildTransitive/net8.0/Microsoft.EntityFrameworkCore.props", + "lib/net8.0/Microsoft.EntityFrameworkCore.dll", + "lib/net8.0/Microsoft.EntityFrameworkCore.xml", + "microsoft.entityframeworkcore.9.0.8.nupkg.sha512", + "microsoft.entityframeworkcore.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Abstractions/9.0.8": { + "sha512": "B2yfAIQRRAQ4zvvWqh+HudD+juV3YoLlpXnrog3tU0PM9AFpuq6xo0+mEglN1P43WgdcUiF+65CWBcZe35s15Q==", + "type": "package", + "path": "microsoft.entityframeworkcore.abstractions/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll", + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.xml", + "microsoft.entityframeworkcore.abstractions.9.0.8.nupkg.sha512", + "microsoft.entityframeworkcore.abstractions.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Analyzers/9.0.8": { + "sha512": "2EYStCXt4Hi9p3J3EYMQbItJDtASJd064Kcs8C8hj8Jt5srILrR9qlaL0Ryvk8NrWQoCQvIELsmiuqLEZMLvGA==", + "type": "package", + "path": "microsoft.entityframeworkcore.analyzers/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll", + "docs/PACKAGE.md", + "microsoft.entityframeworkcore.analyzers.9.0.8.nupkg.sha512", + "microsoft.entityframeworkcore.analyzers.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Relational/9.0.8": { + "sha512": "OVhfyxiHxMvYpwQ8Jy3YZi4koy6TK5/Q7C1oq3z6db+HEGuu6x9L1BX5zDIdJxxlRePMyO4D8ORiXj/D7+MUqw==", + "type": "package", + "path": "microsoft.entityframeworkcore.relational/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll", + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.xml", + "microsoft.entityframeworkcore.relational.9.0.8.nupkg.sha512", + "microsoft.entityframeworkcore.relational.nuspec" + ] + }, + "Microsoft.Extensions.Caching.Abstractions/9.0.8": { + "sha512": "4h7bsVoKoiK+SlPM+euX/ayGnKZhl47pPCidLTiio9xyG+vgVVfcYxcYQgjm0SCrdSxjG0EGIAKF8EFr3G8Ifw==", + "type": "package", + "path": "microsoft.extensions.caching.abstractions/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Caching.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml", + "microsoft.extensions.caching.abstractions.9.0.8.nupkg.sha512", + "microsoft.extensions.caching.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Caching.Memory/9.0.8": { + "sha512": "grR+oPyj8HVn4DT8CFUUdSw2pZZKS13KjytFe4txpHQliGM1GEDotohmjgvyl3hm7RFB3FRqvbouEX3/1ewp5A==", + "type": "package", + "path": "microsoft.extensions.caching.memory/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Caching.Memory.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Memory.targets", + "lib/net462/Microsoft.Extensions.Caching.Memory.dll", + "lib/net462/Microsoft.Extensions.Caching.Memory.xml", + "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/net8.0/Microsoft.Extensions.Caching.Memory.xml", + "lib/net9.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/net9.0/Microsoft.Extensions.Caching.Memory.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml", + "microsoft.extensions.caching.memory.9.0.8.nupkg.sha512", + "microsoft.extensions.caching.memory.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.8": { + "sha512": "yNou2KM35RvzOh4vUFtl2l33rWPvOCoba+nzEDJ+BgD8aOL/jew4WPCibQvntRfOJ2pJU8ARygSMD+pdjvDHuA==", + "type": "package", + "path": "microsoft.extensions.configuration.abstractions/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "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/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.9.0.8.nupkg.sha512", + "microsoft.extensions.configuration.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection/9.0.8": { + "sha512": "JJjI2Fa+QtZcUyuNjbKn04OjIUX5IgFGFu/Xc+qvzh1rXdZHLcnqqVXhR4093bGirTwacRlHiVg1XYI9xum6QQ==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets", + "lib/net462/Microsoft.Extensions.DependencyInjection.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml", + "microsoft.extensions.dependencyinjection.9.0.8.nupkg.sha512", + "microsoft.extensions.dependencyinjection.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.8": { + "sha512": "xY3lTjj4+ZYmiKIkyWitddrp1uL5uYiweQjqo4BKBw01ZC4HhcfgLghDpPZcUlppgWAFqFy9SgkiYWOMx365pw==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "microsoft.extensions.dependencyinjection.abstractions.9.0.8.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Identity.Core/9.0.8": { + "sha512": "giUYz84GHAizDucZp5vWAusDO2s9Jrrg2jQ6HUQNGs5HQMKJVobLPMQSiyg8R4yecH0pIc0QjANh0B/Kw13BHA==", + "type": "package", + "path": "microsoft.extensions.identity.core/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/Microsoft.Extensions.Identity.Core.dll", + "lib/net462/Microsoft.Extensions.Identity.Core.xml", + "lib/net9.0/Microsoft.Extensions.Identity.Core.dll", + "lib/net9.0/Microsoft.Extensions.Identity.Core.xml", + "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.dll", + "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.xml", + "microsoft.extensions.identity.core.9.0.8.nupkg.sha512", + "microsoft.extensions.identity.core.nuspec" + ] + }, + "Microsoft.Extensions.Identity.Stores/9.0.8": { + "sha512": "sycaHcq78yI591+KxEdd53a7pJGQEl9H/wDsFkaPNE9g7loyq8vufPcc/9RH3KlGt5joR5Ey7PdoRSrlLjCgJg==", + "type": "package", + "path": "microsoft.extensions.identity.stores/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/Microsoft.Extensions.Identity.Stores.dll", + "lib/net462/Microsoft.Extensions.Identity.Stores.xml", + "lib/net9.0/Microsoft.Extensions.Identity.Stores.dll", + "lib/net9.0/Microsoft.Extensions.Identity.Stores.xml", + "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.dll", + "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.xml", + "microsoft.extensions.identity.stores.9.0.8.nupkg.sha512", + "microsoft.extensions.identity.stores.nuspec" + ] + }, + "Microsoft.Extensions.Localization/9.0.1": { + "sha512": "UgvX4Yb2T3tEsKT30ktZr0H7kTRPapCgEH0bdTwxiEGSdA39/hAQMvvb+vgHpqmevDU5+puyI9ujRkmmbF946w==", + "type": "package", + "path": "microsoft.extensions.localization/9.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/Microsoft.Extensions.Localization.dll", + "lib/net462/Microsoft.Extensions.Localization.xml", + "lib/net9.0/Microsoft.Extensions.Localization.dll", + "lib/net9.0/Microsoft.Extensions.Localization.xml", + "lib/netstandard2.0/Microsoft.Extensions.Localization.dll", + "lib/netstandard2.0/Microsoft.Extensions.Localization.xml", + "microsoft.extensions.localization.9.0.1.nupkg.sha512", + "microsoft.extensions.localization.nuspec" + ] + }, + "Microsoft.Extensions.Localization.Abstractions/9.0.1": { + "sha512": "CABog43lyaZQMjmlktuImCy6zmAzRBaXqN81uPaMQjlp//ISDVYItZPh6KWpWRF4MY/B67X5oDc3JTUpfdocZw==", + "type": "package", + "path": "microsoft.extensions.localization.abstractions/9.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/Microsoft.Extensions.Localization.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Localization.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.Localization.Abstractions.dll", + "lib/net9.0/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.9.0.1.nupkg.sha512", + "microsoft.extensions.localization.abstractions.nuspec" + ] + }, + "Microsoft.Extensions.Logging/9.0.8": { + "sha512": "Z/7ze+0iheT7FJeZPqJKARYvyC2bmwu3whbm/48BJjdlGVvgDguoCqJIkI/67NkroTYobd5geai1WheNQvWrgA==", + "type": "package", + "path": "microsoft.extensions.logging/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "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/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.9.0.8.nupkg.sha512", + "microsoft.extensions.logging.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.8": { + "sha512": "pYnAffJL7ARD/HCnnPvnFKSIHnTSmWz84WIlT9tPeQ4lHNiu0Az7N/8itihWvcF8sT+VVD5lq8V+ckMzu4SbOw==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", + "microsoft.extensions.logging.abstractions.9.0.8.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Options/9.0.8": { + "sha512": "OmTaQ0v4gxGQkehpwWIqPoEiwsPuG/u4HUsbOFoWGx4DKET2AXzopnFe/fE608FIhzc/kcg2p8JdyMRCCUzitQ==", + "type": "package", + "path": "microsoft.extensions.options/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Options.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "buildTransitive/net461/Microsoft.Extensions.Options.targets", + "buildTransitive/net462/Microsoft.Extensions.Options.targets", + "buildTransitive/net8.0/Microsoft.Extensions.Options.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Options.targets", + "lib/net462/Microsoft.Extensions.Options.dll", + "lib/net462/Microsoft.Extensions.Options.xml", + "lib/net8.0/Microsoft.Extensions.Options.dll", + "lib/net8.0/Microsoft.Extensions.Options.xml", + "lib/net9.0/Microsoft.Extensions.Options.dll", + "lib/net9.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.0/Microsoft.Extensions.Options.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.1/Microsoft.Extensions.Options.dll", + "lib/netstandard2.1/Microsoft.Extensions.Options.xml", + "microsoft.extensions.options.9.0.8.nupkg.sha512", + "microsoft.extensions.options.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Primitives/9.0.8": { + "sha512": "tizSIOEsIgSNSSh+hKeUVPK7xmTIjR8s+mJWOu1KXV3htvNQiPMFRMO17OdI1y/4ZApdBVk49u/08QGC9yvLug==", + "type": "package", + "path": "microsoft.extensions.primitives/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Primitives.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets", + "lib/net462/Microsoft.Extensions.Primitives.dll", + "lib/net462/Microsoft.Extensions.Primitives.xml", + "lib/net8.0/Microsoft.Extensions.Primitives.dll", + "lib/net8.0/Microsoft.Extensions.Primitives.xml", + "lib/net9.0/Microsoft.Extensions.Primitives.dll", + "lib/net9.0/Microsoft.Extensions.Primitives.xml", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", + "microsoft.extensions.primitives.9.0.8.nupkg.sha512", + "microsoft.extensions.primitives.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.JSInterop/9.0.1": { + "sha512": "/xBwIfb0YoC2Muv6EsHjxpqZw2aKv94+i0g0FWZvqvGv3DeAy+8wipAuECVvKYEs2EIclRD41bjajHLoD6mTtw==", + "type": "package", + "path": "microsoft.jsinterop/9.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net9.0/Microsoft.JSInterop.dll", + "lib/net9.0/Microsoft.JSInterop.xml", + "microsoft.jsinterop.9.0.1.nupkg.sha512", + "microsoft.jsinterop.nuspec" + ] + }, + "Microsoft.Win32.Registry/4.7.0": { + "sha512": "KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", + "type": "package", + "path": "microsoft.win32.registry/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.xml", + "lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "microsoft.win32.registry.4.7.0.nupkg.sha512", + "microsoft.win32.registry.nuspec", + "ref/net46/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.xml", + "ref/net472/Microsoft.Win32.Registry.dll", + "ref/net472/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/Microsoft.Win32.Registry.dll", + "ref/netstandard1.3/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml", + "ref/netstandard2.0/Microsoft.Win32.Registry.dll", + "ref/netstandard2.0/Microsoft.Win32.Registry.xml", + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml", + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "sha512": "hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==", + "type": "package", + "path": "microsoft.win32.systemevents/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Win32.SystemEvents.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Win32.SystemEvents.dll", + "lib/net461/Microsoft.Win32.SystemEvents.xml", + "lib/net6.0/Microsoft.Win32.SystemEvents.dll", + "lib/net6.0/Microsoft.Win32.SystemEvents.xml", + "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll", + "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml", + "microsoft.win32.systemevents.6.0.0.nupkg.sha512", + "microsoft.win32.systemevents.nuspec", + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.xml", + "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml", + "useSharedDesignerContext.txt" + ] + }, + "MudBlazor/8.13.0": { + "sha512": "Y6JW93zf8tiVhMSkkL0mZ3ruqjOTNftvVoX3sik6NEnIye+Gs0FXI8rhXfrH2LU79Mw/fOtT5ms3L/Q4TKx2kA==", + "type": "package", + "path": "mudblazor/8.13.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE", + "Nuget.png", + "README.md", + "analyzers/dotnet/cs/MudBlazor.Analyzers.dll", + "build/Microsoft.AspNetCore.StaticWebAssetEndpoints.props", + "build/Microsoft.AspNetCore.StaticWebAssets.props", + "build/MudBlazor.props", + "build/MudBlazor.targets", + "buildMultiTargeting/MudBlazor.props", + "buildTransitive/MudBlazor.props", + "lib/net8.0/MudBlazor.dll", + "lib/net8.0/MudBlazor.xml", + "lib/net9.0/MudBlazor.dll", + "lib/net9.0/MudBlazor.xml", + "mudblazor.8.13.0.nupkg.sha512", + "mudblazor.nuspec", + "staticwebassets/MudBlazor.min.css", + "staticwebassets/MudBlazor.min.js" + ] + }, + "Npgsql/9.0.3": { + "sha512": "tPvY61CxOAWxNsKLEBg+oR646X4Bc8UmyQ/tJszL/7mEmIXQnnBhVJZrZEEUv0Bstu0mEsHZD5At3EO8zQRAYw==", + "type": "package", + "path": "npgsql/9.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net6.0/Npgsql.dll", + "lib/net6.0/Npgsql.xml", + "lib/net8.0/Npgsql.dll", + "lib/net8.0/Npgsql.xml", + "npgsql.9.0.3.nupkg.sha512", + "npgsql.nuspec", + "postgresql.png" + ] + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/9.0.4": { + "sha512": "mw5vcY2IEc7L+IeGrxpp/J5OSnCcjkjAgJYCm/eD52wpZze8zsSifdqV7zXslSMmfJG2iIUGZyo3KuDtEFKwMQ==", + "type": "package", + "path": "npgsql.entityframeworkcore.postgresql/9.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll", + "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.xml", + "npgsql.entityframeworkcore.postgresql.9.0.4.nupkg.sha512", + "npgsql.entityframeworkcore.postgresql.nuspec", + "postgresql.png" + ] + }, + "runtime.native.System.Data.SqlClient.sni/4.7.0": { + "sha512": "9kyFSIdN3T0qjDQ2R0HRXYIhS3l5psBzQi6qqhdLz+SzFyEy4sVxNOke+yyYv8Cu8rPER12c3RDjLT8wF3WBYQ==", + "type": "package", + "path": "runtime.native.system.data.sqlclient.sni/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512", + "runtime.native.system.data.sqlclient.sni.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "sha512": "LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==", + "type": "package", + "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.nuspec", + "runtimes/win-arm64/native/sni.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "sha512": "38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==", + "type": "package", + "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "runtime.win-x64.runtime.native.system.data.sqlclient.sni.nuspec", + "runtimes/win-x64/native/sni.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "sha512": "YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==", + "type": "package", + "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "runtime.win-x86.runtime.native.system.data.sqlclient.sni.nuspec", + "runtimes/win-x86/native/sni.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.CodeDom/6.0.0": { + "sha512": "CPc6tWO1LAer3IzfZufDBRL+UZQcj5uS207NHALQzP84Vp/z6wF0Aa0YZImOQY8iStY0A2zI/e3ihKNPfUm8XA==", + "type": "package", + "path": "system.codedom/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.CodeDom.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.CodeDom.dll", + "lib/net461/System.CodeDom.xml", + "lib/net6.0/System.CodeDom.dll", + "lib/net6.0/System.CodeDom.xml", + "lib/netstandard2.0/System.CodeDom.dll", + "lib/netstandard2.0/System.CodeDom.xml", + "system.codedom.6.0.0.nupkg.sha512", + "system.codedom.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.ComponentModel.Annotations/5.0.0": { + "sha512": "dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==", + "type": "package", + "path": "system.componentmodel.annotations/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.ComponentModel.Annotations.dll", + "lib/netcore50/System.ComponentModel.Annotations.dll", + "lib/netstandard1.4/System.ComponentModel.Annotations.dll", + "lib/netstandard2.0/System.ComponentModel.Annotations.dll", + "lib/netstandard2.1/System.ComponentModel.Annotations.dll", + "lib/netstandard2.1/System.ComponentModel.Annotations.xml", + "lib/portable-net45+win8/_._", + "lib/win8/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.ComponentModel.Annotations.dll", + "ref/net461/System.ComponentModel.Annotations.xml", + "ref/netcore50/System.ComponentModel.Annotations.dll", + "ref/netcore50/System.ComponentModel.Annotations.xml", + "ref/netcore50/de/System.ComponentModel.Annotations.xml", + "ref/netcore50/es/System.ComponentModel.Annotations.xml", + "ref/netcore50/fr/System.ComponentModel.Annotations.xml", + "ref/netcore50/it/System.ComponentModel.Annotations.xml", + "ref/netcore50/ja/System.ComponentModel.Annotations.xml", + "ref/netcore50/ko/System.ComponentModel.Annotations.xml", + "ref/netcore50/ru/System.ComponentModel.Annotations.xml", + "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/System.ComponentModel.Annotations.dll", + "ref/netstandard1.1/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/System.ComponentModel.Annotations.dll", + "ref/netstandard1.3/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/System.ComponentModel.Annotations.dll", + "ref/netstandard1.4/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard2.0/System.ComponentModel.Annotations.dll", + "ref/netstandard2.0/System.ComponentModel.Annotations.xml", + "ref/netstandard2.1/System.ComponentModel.Annotations.dll", + "ref/netstandard2.1/System.ComponentModel.Annotations.xml", + "ref/portable-net45+win8/_._", + "ref/win8/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.annotations.5.0.0.nupkg.sha512", + "system.componentmodel.annotations.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Configuration.ConfigurationManager/6.0.1": { + "sha512": "jXw9MlUu/kRfEU0WyTptAVueupqIeE3/rl0EZDMlf8pcvJnitQ8HeVEp69rZdaStXwTV72boi/Bhw8lOeO+U2w==", + "type": "package", + "path": "system.configuration.configurationmanager/6.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Configuration.ConfigurationManager.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Configuration.ConfigurationManager.dll", + "lib/net461/System.Configuration.ConfigurationManager.xml", + "lib/net6.0/System.Configuration.ConfigurationManager.dll", + "lib/net6.0/System.Configuration.ConfigurationManager.xml", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml", + "runtimes/win/lib/net461/System.Configuration.ConfigurationManager.dll", + "runtimes/win/lib/net461/System.Configuration.ConfigurationManager.xml", + "system.configuration.configurationmanager.6.0.1.nupkg.sha512", + "system.configuration.configurationmanager.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Data.SqlClient/4.8.6": { + "sha512": "2Ij/LCaTQRyAi5lAv7UUTV9R2FobC8xN9mE0fXBZohum/xLl8IZVmE98Rq5ugQHjCgTBRKqpXRb4ORulRdA6Ig==", + "type": "package", + "path": "system.data.sqlclient/4.8.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net451/System.Data.SqlClient.dll", + "lib/net46/System.Data.SqlClient.dll", + "lib/net461/System.Data.SqlClient.dll", + "lib/net461/System.Data.SqlClient.xml", + "lib/netcoreapp2.1/System.Data.SqlClient.dll", + "lib/netcoreapp2.1/System.Data.SqlClient.xml", + "lib/netstandard1.2/System.Data.SqlClient.dll", + "lib/netstandard1.2/System.Data.SqlClient.xml", + "lib/netstandard1.3/System.Data.SqlClient.dll", + "lib/netstandard1.3/System.Data.SqlClient.xml", + "lib/netstandard2.0/System.Data.SqlClient.dll", + "lib/netstandard2.0/System.Data.SqlClient.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net451/System.Data.SqlClient.dll", + "ref/net46/System.Data.SqlClient.dll", + "ref/net461/System.Data.SqlClient.dll", + "ref/net461/System.Data.SqlClient.xml", + "ref/netcoreapp2.1/System.Data.SqlClient.dll", + "ref/netcoreapp2.1/System.Data.SqlClient.xml", + "ref/netstandard1.2/System.Data.SqlClient.dll", + "ref/netstandard1.2/System.Data.SqlClient.xml", + "ref/netstandard1.2/de/System.Data.SqlClient.xml", + "ref/netstandard1.2/es/System.Data.SqlClient.xml", + "ref/netstandard1.2/fr/System.Data.SqlClient.xml", + "ref/netstandard1.2/it/System.Data.SqlClient.xml", + "ref/netstandard1.2/ja/System.Data.SqlClient.xml", + "ref/netstandard1.2/ko/System.Data.SqlClient.xml", + "ref/netstandard1.2/ru/System.Data.SqlClient.xml", + "ref/netstandard1.2/zh-hans/System.Data.SqlClient.xml", + "ref/netstandard1.2/zh-hant/System.Data.SqlClient.xml", + "ref/netstandard1.3/System.Data.SqlClient.dll", + "ref/netstandard1.3/System.Data.SqlClient.xml", + "ref/netstandard1.3/de/System.Data.SqlClient.xml", + "ref/netstandard1.3/es/System.Data.SqlClient.xml", + "ref/netstandard1.3/fr/System.Data.SqlClient.xml", + "ref/netstandard1.3/it/System.Data.SqlClient.xml", + "ref/netstandard1.3/ja/System.Data.SqlClient.xml", + "ref/netstandard1.3/ko/System.Data.SqlClient.xml", + "ref/netstandard1.3/ru/System.Data.SqlClient.xml", + "ref/netstandard1.3/zh-hans/System.Data.SqlClient.xml", + "ref/netstandard1.3/zh-hant/System.Data.SqlClient.xml", + "ref/netstandard2.0/System.Data.SqlClient.dll", + "ref/netstandard2.0/System.Data.SqlClient.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll", + "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.xml", + "runtimes/unix/lib/netstandard1.3/System.Data.SqlClient.dll", + "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll", + "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.xml", + "runtimes/win/lib/net451/System.Data.SqlClient.dll", + "runtimes/win/lib/net46/System.Data.SqlClient.dll", + "runtimes/win/lib/net461/System.Data.SqlClient.dll", + "runtimes/win/lib/net461/System.Data.SqlClient.xml", + "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll", + "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.xml", + "runtimes/win/lib/netstandard1.3/System.Data.SqlClient.dll", + "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll", + "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.xml", + "runtimes/win/lib/uap10.0.16299/System.Data.SqlClient.dll", + "runtimes/win/lib/uap10.0.16299/System.Data.SqlClient.xml", + "system.data.sqlclient.4.8.6.nupkg.sha512", + "system.data.sqlclient.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Drawing.Common/6.0.0": { + "sha512": "NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==", + "type": "package", + "path": "system.drawing.common/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Drawing.Common.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Drawing.Common.dll", + "lib/net461/System.Drawing.Common.xml", + "lib/net6.0/System.Drawing.Common.dll", + "lib/net6.0/System.Drawing.Common.xml", + "lib/netcoreapp3.1/System.Drawing.Common.dll", + "lib/netcoreapp3.1/System.Drawing.Common.xml", + "lib/netstandard2.0/System.Drawing.Common.dll", + "lib/netstandard2.0/System.Drawing.Common.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "runtimes/unix/lib/net6.0/System.Drawing.Common.dll", + "runtimes/unix/lib/net6.0/System.Drawing.Common.xml", + "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.dll", + "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.xml", + "runtimes/win/lib/net6.0/System.Drawing.Common.dll", + "runtimes/win/lib/net6.0/System.Drawing.Common.xml", + "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.dll", + "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.xml", + "system.drawing.common.6.0.0.nupkg.sha512", + "system.drawing.common.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.AccessControl/6.0.0": { + "sha512": "AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==", + "type": "package", + "path": "system.security.accesscontrol/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Security.AccessControl.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.xml", + "lib/net6.0/System.Security.AccessControl.dll", + "lib/net6.0/System.Security.AccessControl.xml", + "lib/netstandard2.0/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.xml", + "runtimes/win/lib/net461/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.xml", + "runtimes/win/lib/net6.0/System.Security.AccessControl.dll", + "runtimes/win/lib/net6.0/System.Security.AccessControl.xml", + "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.dll", + "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.xml", + "system.security.accesscontrol.6.0.0.nupkg.sha512", + "system.security.accesscontrol.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Cryptography.ProtectedData/6.0.0": { + "sha512": "rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==", + "type": "package", + "path": "system.security.cryptography.protecteddata/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Security.Cryptography.ProtectedData.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Security.Cryptography.ProtectedData.dll", + "lib/net461/System.Security.Cryptography.ProtectedData.xml", + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll", + "lib/net6.0/System.Security.Cryptography.ProtectedData.xml", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml", + "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.xml", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512", + "system.security.cryptography.protecteddata.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Permissions/6.0.0": { + "sha512": "T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==", + "type": "package", + "path": "system.security.permissions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Security.Permissions.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Security.Permissions.dll", + "lib/net461/System.Security.Permissions.xml", + "lib/net5.0/System.Security.Permissions.dll", + "lib/net5.0/System.Security.Permissions.xml", + "lib/net6.0/System.Security.Permissions.dll", + "lib/net6.0/System.Security.Permissions.xml", + "lib/netcoreapp3.1/System.Security.Permissions.dll", + "lib/netcoreapp3.1/System.Security.Permissions.xml", + "lib/netstandard2.0/System.Security.Permissions.dll", + "lib/netstandard2.0/System.Security.Permissions.xml", + "runtimes/win/lib/net461/System.Security.Permissions.dll", + "runtimes/win/lib/net461/System.Security.Permissions.xml", + "system.security.permissions.6.0.0.nupkg.sha512", + "system.security.permissions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Principal.Windows/4.7.0": { + "sha512": "ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==", + "type": "package", + "path": "system.security.principal.windows/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.xml", + "lib/netstandard1.3/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.xml", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.xml", + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll", + "ref/netcoreapp3.0/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/System.Security.Principal.Windows.dll", + "ref/netstandard1.3/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/de/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/es/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/it/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml", + "ref/netstandard2.0/System.Security.Principal.Windows.dll", + "ref/netstandard2.0/System.Security.Principal.Windows.xml", + "ref/uap10.0.16299/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.principal.windows.4.7.0.nupkg.sha512", + "system.security.principal.windows.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Windows.Extensions/6.0.0": { + "sha512": "IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==", + "type": "package", + "path": "system.windows.extensions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net6.0/System.Windows.Extensions.dll", + "lib/net6.0/System.Windows.Extensions.xml", + "lib/netcoreapp3.1/System.Windows.Extensions.dll", + "lib/netcoreapp3.1/System.Windows.Extensions.xml", + "runtimes/win/lib/net6.0/System.Windows.Extensions.dll", + "runtimes/win/lib/net6.0/System.Windows.Extensions.xml", + "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.dll", + "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.xml", + "system.windows.extensions.6.0.0.nupkg.sha512", + "system.windows.extensions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "OpenArchival.DataAccess/1.0.0": { + "type": "project", + "path": "../OpenArchival.DataAccess/OpenArchival.DataAccess.csproj", + "msbuildProject": "../OpenArchival.DataAccess/OpenArchival.DataAccess.csproj" + } + }, + "projectFileDependencyGroups": { + "net9.0": [ + "CodeBeam.MudExtensions >= 6.3.0", + "MudBlazor >= 8.13.0", + "OpenArchival.DataAccess >= 1.0.0" + ] + }, + "packageFolders": { + "C:\\Users\\vtall\\.nuget\\packages\\": {}, + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\OpenArchival.Blazor.CustomComponents.csproj", + "projectName": "OpenArchival.Blazor.CustomComponents", + "projectPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\OpenArchival.Blazor.CustomComponents.csproj", + "packagesPath": "C:\\Users\\vtall\\.nuget\\packages\\", + "outputPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\NuGet.Config", + "C:\\Users\\vtall\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net9.0" + ], + "sources": { + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "projectReferences": { + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj": { + "projectPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "9.0.300" + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "dependencies": { + "CodeBeam.MudExtensions": { + "target": "Package", + "version": "[6.3.0, )" + }, + "MudBlazor": { + "target": "Package", + "version": "[8.13.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.304/PortableRuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/OpenArchival.Blazor.CustomComponents/obj/project.nuget.cache b/OpenArchival.Blazor.CustomComponents/obj/project.nuget.cache new file mode 100644 index 0000000..8c0bae1 --- /dev/null +++ b/OpenArchival.Blazor.CustomComponents/obj/project.nuget.cache @@ -0,0 +1,60 @@ +{ + "version": 2, + "dgSpecHash": "Hu4RtkaqluE=", + "success": true, + "projectFilePath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\OpenArchival.Blazor.CustomComponents.csproj", + "expectedPackageFiles": [ + "C:\\Users\\vtall\\.nuget\\packages\\buildbundlerminifier\\3.2.449\\buildbundlerminifier.3.2.449.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\codebeam.mudextensions.6.3.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\csvhelper\\30.0.1\\csvhelper.30.0.1.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\entityframework\\6.5.1\\entityframework.6.5.1.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.aspnetcore.authorization\\9.0.1\\microsoft.aspnetcore.authorization.9.0.1.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.aspnetcore.components\\9.0.1\\microsoft.aspnetcore.components.9.0.1.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.aspnetcore.components.analyzers\\9.0.1\\microsoft.aspnetcore.components.analyzers.9.0.1.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.aspnetcore.components.forms\\9.0.1\\microsoft.aspnetcore.components.forms.9.0.1.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.aspnetcore.components.web\\9.0.1\\microsoft.aspnetcore.components.web.9.0.1.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.aspnetcore.cryptography.internal\\9.0.8\\microsoft.aspnetcore.cryptography.internal.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.aspnetcore.cryptography.keyderivation\\9.0.8\\microsoft.aspnetcore.cryptography.keyderivation.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.aspnetcore.identity.entityframeworkcore\\9.0.8\\microsoft.aspnetcore.identity.entityframeworkcore.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.aspnetcore.metadata\\9.0.1\\microsoft.aspnetcore.metadata.9.0.1.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.csharp\\4.7.0\\microsoft.csharp.4.7.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.entityframeworkcore\\9.0.8\\microsoft.entityframeworkcore.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\9.0.8\\microsoft.entityframeworkcore.abstractions.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\9.0.8\\microsoft.entityframeworkcore.analyzers.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\9.0.8\\microsoft.entityframeworkcore.relational.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\9.0.8\\microsoft.extensions.caching.abstractions.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.caching.memory\\9.0.8\\microsoft.extensions.caching.memory.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\9.0.8\\microsoft.extensions.configuration.abstractions.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\9.0.8\\microsoft.extensions.dependencyinjection.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\9.0.8\\microsoft.extensions.dependencyinjection.abstractions.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.identity.core\\9.0.8\\microsoft.extensions.identity.core.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.identity.stores\\9.0.8\\microsoft.extensions.identity.stores.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.localization\\9.0.1\\microsoft.extensions.localization.9.0.1.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.localization.abstractions\\9.0.1\\microsoft.extensions.localization.abstractions.9.0.1.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.logging\\9.0.8\\microsoft.extensions.logging.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\9.0.8\\microsoft.extensions.logging.abstractions.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.options\\9.0.8\\microsoft.extensions.options.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.primitives\\9.0.8\\microsoft.extensions.primitives.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.jsinterop\\9.0.1\\microsoft.jsinterop.9.0.1.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.win32.registry\\4.7.0\\microsoft.win32.registry.4.7.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.win32.systemevents\\6.0.0\\microsoft.win32.systemevents.6.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\mudblazor.8.13.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\npgsql\\9.0.3\\npgsql.9.0.3.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\npgsql.entityframeworkcore.postgresql\\9.0.4\\npgsql.entityframeworkcore.postgresql.9.0.4.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\runtime.native.system.data.sqlclient.sni\\4.7.0\\runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\runtime.win-arm64.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\runtime.win-x64.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\runtime.win-x86.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.codedom\\6.0.0\\system.codedom.6.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.componentmodel.annotations\\5.0.0\\system.componentmodel.annotations.5.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.configuration.configurationmanager\\6.0.1\\system.configuration.configurationmanager.6.0.1.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.data.sqlclient\\4.8.6\\system.data.sqlclient.4.8.6.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.drawing.common\\6.0.0\\system.drawing.common.6.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.security.accesscontrol\\6.0.0\\system.security.accesscontrol.6.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.security.cryptography.protecteddata\\6.0.0\\system.security.cryptography.protecteddata.6.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.security.permissions\\6.0.0\\system.security.permissions.6.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.security.principal.windows\\4.7.0\\system.security.principal.windows.4.7.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.windows.extensions\\6.0.0\\system.windows.extensions.6.0.0.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/OpenArchival.Blazor.FileViewer/FileViewerCarousel.razor b/OpenArchival.Blazor.FileViewer/FileViewerCarousel.razor new file mode 100644 index 0000000..454cd11 --- /dev/null +++ b/OpenArchival.Blazor.FileViewer/FileViewerCarousel.razor @@ -0,0 +1,67 @@ +@namespace OpenArchival.Blazor.FileViewer + +@using Microsoft.Extensions.Logging +@using OpenArchival.DataAccess; +@using MudBlazor; + + + @foreach (var file in FilePathListings.Select((value, i) => new { i, value })) + { + @if (!ShowUnsupportedFiles && FileViewerFactory.GetViewerComponent(file.value.OriginalName) == typeof(UnsupportedFileViewer)) + { + continue; + } + + + @CreateDynamicComponent(file.value, file.i == SelectedIndex) + + } + + +@inject ILogger Logger; +@code { + [Parameter] + public bool ShowUnsupportedFiles { get; set; } + + [Parameter] + public List FilePathListings { get; set; } = []; + + [Parameter] + public int MaxHeight { get; set; } + + private string _carouselStyle = "height: 350px;"; // Initial height + public int SelectedIndex { get; set; } + + // 1. CREATE a handler that receives the height from the child. + private void OnChildHeightMeasured(int newHeight) + { + if (newHeight > 0) + { + _carouselStyle = $"height: {Math.Min(newHeight, MaxHeight)}px;"; + StateHasChanged(); + } + } + + // 2. MODIFY the dynamic component creator to pass the handler. + private RenderFragment CreateDynamicComponent(FilePathListing file, bool isSelected) + { + // Only render the component if it is the selected one to get its height + if (!isSelected) return builder => { }; + + return builder => + { + Type componentType = FileViewerFactory.GetViewerComponent(file.OriginalName); + builder.OpenComponent(0, componentType); + builder.AddAttribute(1, "File", file); + + // Pass the callback method to the child's "OnHeightMeasured" parameter. + builder.AddAttribute(2, "OnHeightMeasured", EventCallback.Factory.Create(this, OnChildHeightMeasured)); + + builder.CloseComponent(); + }; + } +} \ No newline at end of file diff --git a/OpenArchival.Blazor.FileViewer/FileViewerCarousel.razor.css b/OpenArchival.Blazor.FileViewer/FileViewerCarousel.razor.css new file mode 100644 index 0000000..1f82b4a --- /dev/null +++ b/OpenArchival.Blazor.FileViewer/FileViewerCarousel.razor.css @@ -0,0 +1,6 @@ +body { +} + +::deep .mud-carousel-transition { + justify-content: center; +} diff --git a/OpenArchival.Blazor.FileViewer/FileViewerFactory.cs b/OpenArchival.Blazor.FileViewer/FileViewerFactory.cs new file mode 100644 index 0000000..6ed9ebb --- /dev/null +++ b/OpenArchival.Blazor.FileViewer/FileViewerFactory.cs @@ -0,0 +1,38 @@ +namespace OpenArchival.Blazor.FileViewer; + +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + + +public static class FileViewerFactory +{ + private static Dictionary _extensionMapping = []; + + static FileViewerFactory() { + // Image types taken from https://developer.mozilla.org/en-US/docs/Web/Media/Guides/Formats/Image_types + RegisterViewerComponent([".apng", ".png", ".avif", ".gif", ".jpg", ".jpeg", ".jfif", ".pjpeg", ".pjp", ".svg", ".webp"]); + } + + public static void RegisterViewerComponent(IEnumerable extensions) where ComponentType : IFileViewer + { + foreach (var extension in extensions) + { + _extensionMapping.Add(extension, typeof(ComponentType)); + } + } + + public static Type GetViewerComponent(string filename) + { + if (_extensionMapping.TryGetValue(Path.GetExtension(filename).ToLowerInvariant(), out var componentType)) + { + return componentType; + } + else + { + return typeof(UnsupportedFileViewer); + } + } +} diff --git a/OpenArchival.Blazor.FileViewer/FileViewers/ImageViewer.razor b/OpenArchival.Blazor.FileViewer/FileViewers/ImageViewer.razor new file mode 100644 index 0000000..32dbe6b --- /dev/null +++ b/OpenArchival.Blazor.FileViewer/FileViewers/ImageViewer.razor @@ -0,0 +1,43 @@ +@namespace OpenArchival.Blazor.FileViewer + +@implements IFileViewer +@using Microsoft.JSInterop +@using MudBlazor +@using OpenArchival.DataAccess + +
+ +
+ +@inject IJSRuntime JSRuntime; +@code { + [Parameter] + public required FilePathListing File { get; set; } + public int Height { get; private set; } + [Parameter] + public EventCallback OnHeightMeasured { get; set; } + + private ElementReference _imageContainer; + + protected override async Task OnAfterRenderAsync(bool firstRender) + { + if (firstRender) + { + try + { + await Task.Delay(50); + Height = await JSRuntime.InvokeAsync("centerImageAndGetHeight", _imageContainer); + + if (Height > 0) + { + await OnHeightMeasured.InvokeAsync(Height); + } + } + catch (JSException ex) + { + Console.WriteLine($"[ERROR] JavaScript Interop failed: {ex.Message}"); + } + } + } +} \ No newline at end of file diff --git a/OpenArchival.Blazor.FileViewer/FileViewers/UnsupportedFileViewer.razor b/OpenArchival.Blazor.FileViewer/FileViewers/UnsupportedFileViewer.razor new file mode 100644 index 0000000..5c449e3 --- /dev/null +++ b/OpenArchival.Blazor.FileViewer/FileViewers/UnsupportedFileViewer.razor @@ -0,0 +1,16 @@ +@namespace OpenArchival.Blazor.FileViewer + +@using MudBlazor +@using OpenArchival.DataAccess + +@implements IFileViewer; + +File unsupported + +@code { + [Parameter] + public required FilePathListing File { get; set; } + + [Parameter] + public EventCallback OnHeightMeasured { get; set; } +} diff --git a/OpenArchival.Blazor.FileViewer/IFileViewer.cs b/OpenArchival.Blazor.FileViewer/IFileViewer.cs new file mode 100644 index 0000000..439ff70 --- /dev/null +++ b/OpenArchival.Blazor.FileViewer/IFileViewer.cs @@ -0,0 +1,18 @@ +using Microsoft.AspNetCore.Components; +using MudBlazor; +using OpenArchival.DataAccess; + +namespace OpenArchival.Blazor.FileViewer; + +public interface IFileViewer +{ + /// + /// The file to be displayed by the viewer component + /// + public FilePathListing File { get; set; } + + /// + /// To be called when the file viewer has determined how tall its content is so that the containing carousel can resize + /// + public EventCallback OnHeightMeasured { get; set; } +} diff --git a/OpenArchival.Blazor.FileViewer/OpenArchival.Blazor.FileViewer.csproj b/OpenArchival.Blazor.FileViewer/OpenArchival.Blazor.FileViewer.csproj new file mode 100644 index 0000000..073b172 --- /dev/null +++ b/OpenArchival.Blazor.FileViewer/OpenArchival.Blazor.FileViewer.csproj @@ -0,0 +1,25 @@ + + + + net9.0 + enable + enable + true + + + + + + + + + + + + + + + + + + diff --git a/OpenArchival.Blazor.FileViewer/bin/Debug/net9.0/OpenArchival.Blazor.FileViewer.deps.json b/OpenArchival.Blazor.FileViewer/bin/Debug/net9.0/OpenArchival.Blazor.FileViewer.deps.json new file mode 100644 index 0000000..b752b01 --- /dev/null +++ b/OpenArchival.Blazor.FileViewer/bin/Debug/net9.0/OpenArchival.Blazor.FileViewer.deps.json @@ -0,0 +1,949 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v9.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v9.0": { + "OpenArchival.Blazor.FileViewer/1.0.0": { + "dependencies": { + "CodeBeam.MudExtensions": "6.3.0", + "MudBlazor": "8.13.0", + "OpenArchival.DataAccess": "1.0.0" + }, + "runtime": { + "OpenArchival.Blazor.FileViewer.dll": {} + } + }, + "BuildBundlerMinifier/3.2.449": {}, + "CodeBeam.MudExtensions/6.3.0": { + "dependencies": { + "BuildBundlerMinifier": "3.2.449", + "CsvHelper": "30.0.1", + "Microsoft.AspNetCore.Components": "9.0.1", + "Microsoft.AspNetCore.Components.Web": "9.0.1", + "MudBlazor": "8.13.0" + }, + "runtime": { + "lib/net7.0/CodeBeam.MudExtensions.dll": { + "assemblyVersion": "6.3.0.0", + "fileVersion": "6.3.0.0" + } + } + }, + "CsvHelper/30.0.1": { + "runtime": { + "lib/net6.0/CsvHelper.dll": { + "assemblyVersion": "30.0.0.0", + "fileVersion": "30.0.1.0" + } + } + }, + "EntityFramework/6.5.1": { + "dependencies": { + "Microsoft.CSharp": "4.7.0", + "System.CodeDom": "6.0.0", + "System.ComponentModel.Annotations": "5.0.0", + "System.Configuration.ConfigurationManager": "6.0.1", + "System.Data.SqlClient": "4.8.6" + }, + "runtime": { + "lib/netstandard2.1/EntityFramework.SqlServer.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.500.124.31603" + }, + "lib/netstandard2.1/EntityFramework.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.500.124.31603" + } + } + }, + "Microsoft.AspNetCore.Authorization/9.0.1": { + "dependencies": { + "Microsoft.AspNetCore.Metadata": "9.0.1", + "Microsoft.Extensions.Logging.Abstractions": "9.0.8", + "Microsoft.Extensions.Options": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Authorization.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.124.61009" + } + } + }, + "Microsoft.AspNetCore.Components/9.0.1": { + "dependencies": { + "Microsoft.AspNetCore.Authorization": "9.0.1", + "Microsoft.AspNetCore.Components.Analyzers": "9.0.1" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Components.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.124.61009" + } + } + }, + "Microsoft.AspNetCore.Components.Analyzers/9.0.1": {}, + "Microsoft.AspNetCore.Components.Forms/9.0.1": { + "dependencies": { + "Microsoft.AspNetCore.Components": "9.0.1" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Components.Forms.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.124.61009" + } + } + }, + "Microsoft.AspNetCore.Components.Web/9.0.1": { + "dependencies": { + "Microsoft.AspNetCore.Components": "9.0.1", + "Microsoft.AspNetCore.Components.Forms": "9.0.1", + "Microsoft.Extensions.DependencyInjection": "9.0.8", + "Microsoft.Extensions.Primitives": "9.0.8", + "Microsoft.JSInterop": "9.0.1" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Components.Web.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.124.61009" + } + } + }, + "Microsoft.AspNetCore.Cryptography.Internal/9.0.8": { + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Cryptography.Internal.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36808" + } + } + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/9.0.8": { + "dependencies": { + "Microsoft.AspNetCore.Cryptography.Internal": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36808" + } + } + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore/9.0.8": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Relational": "9.0.8", + "Microsoft.Extensions.Identity.Stores": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": { + "assemblyVersion": "9.0.8.0", + "fileVersion": "9.0.825.36808" + } + } + }, + "Microsoft.AspNetCore.Metadata/9.0.1": { + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Metadata.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.124.61009" + } + } + }, + "Microsoft.CSharp/4.7.0": {}, + "Microsoft.EntityFrameworkCore/9.0.8": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "9.0.8", + "Microsoft.EntityFrameworkCore.Analyzers": "9.0.8", + "Microsoft.Extensions.Caching.Memory": "9.0.8", + "Microsoft.Extensions.Logging": "9.0.8" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.dll": { + "assemblyVersion": "9.0.8.0", + "fileVersion": "9.0.825.36802" + } + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/9.0.8": { + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "assemblyVersion": "9.0.8.0", + "fileVersion": "9.0.825.36802" + } + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/9.0.8": {}, + "Microsoft.EntityFrameworkCore.Relational/9.0.8": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "9.0.8", + "Microsoft.Extensions.Caching.Memory": "9.0.8", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.8", + "Microsoft.Extensions.Logging": "9.0.8" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "assemblyVersion": "9.0.8.0", + "fileVersion": "9.0.825.36802" + } + } + }, + "Microsoft.Extensions.Caching.Abstractions/9.0.8": { + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Extensions.Caching.Memory/9.0.8": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "9.0.8", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8", + "Microsoft.Extensions.Logging.Abstractions": "9.0.8", + "Microsoft.Extensions.Options": "9.0.8", + "Microsoft.Extensions.Primitives": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Caching.Memory.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.8": { + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Extensions.DependencyInjection/9.0.8": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.8": { + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Extensions.Identity.Core/9.0.8": { + "dependencies": { + "Microsoft.AspNetCore.Cryptography.KeyDerivation": "9.0.8", + "Microsoft.Extensions.Logging": "9.0.8", + "Microsoft.Extensions.Options": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Identity.Core.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36808" + } + } + }, + "Microsoft.Extensions.Identity.Stores/9.0.8": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "9.0.8", + "Microsoft.Extensions.Identity.Core": "9.0.8", + "Microsoft.Extensions.Logging": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Identity.Stores.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36808" + } + } + }, + "Microsoft.Extensions.Localization/9.0.1": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8", + "Microsoft.Extensions.Localization.Abstractions": "9.0.1", + "Microsoft.Extensions.Logging.Abstractions": "9.0.8", + "Microsoft.Extensions.Options": "9.0.8" + }, + "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.8": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "9.0.8", + "Microsoft.Extensions.Logging.Abstractions": "9.0.8", + "Microsoft.Extensions.Options": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.8": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Extensions.Options/9.0.8": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8", + "Microsoft.Extensions.Primitives": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Extensions.Primitives/9.0.8": { + "runtime": { + "lib/net9.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.JSInterop/9.0.1": { + "runtime": { + "lib/net9.0/Microsoft.JSInterop.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.124.61009" + } + } + }, + "Microsoft.Win32.Registry/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "runtime": { + "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "MudBlazor/8.13.0": { + "dependencies": { + "Microsoft.AspNetCore.Components": "9.0.1", + "Microsoft.AspNetCore.Components.Web": "9.0.1", + "Microsoft.Extensions.Localization": "9.0.1" + }, + "runtime": { + "lib/net9.0/MudBlazor.dll": { + "assemblyVersion": "8.13.0.0", + "fileVersion": "8.13.0.0" + } + } + }, + "Npgsql/9.0.3": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "9.0.8" + }, + "runtime": { + "lib/net8.0/Npgsql.dll": { + "assemblyVersion": "9.0.3.0", + "fileVersion": "9.0.3.0" + } + } + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/9.0.4": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "9.0.8", + "Microsoft.EntityFrameworkCore.Relational": "9.0.8", + "Npgsql": "9.0.3" + }, + "runtime": { + "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { + "assemblyVersion": "9.0.4.0", + "fileVersion": "9.0.4.0" + } + } + }, + "runtime.native.System.Data.SqlClient.sni/4.7.0": { + "dependencies": { + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0" + } + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "runtimeTargets": { + "runtimes/win-arm64/native/sni.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "4.6.25512.1" + } + } + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "runtimeTargets": { + "runtimes/win-x64/native/sni.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "4.6.25512.1" + } + } + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "runtimeTargets": { + "runtimes/win-x86/native/sni.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "4.6.25512.1" + } + } + }, + "System.CodeDom/6.0.0": { + "runtime": { + "lib/net6.0/System.CodeDom.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.ComponentModel.Annotations/5.0.0": {}, + "System.Configuration.ConfigurationManager/6.0.1": { + "dependencies": { + "System.Security.Cryptography.ProtectedData": "6.0.0", + "System.Security.Permissions": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.922.41905" + } + } + }, + "System.Data.SqlClient/4.8.6": { + "dependencies": { + "Microsoft.Win32.Registry": "4.7.0", + "System.Security.Principal.Windows": "4.7.0", + "runtime.native.System.Data.SqlClient.sni": "4.7.0" + }, + "runtime": { + "lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "assemblyVersion": "4.6.1.6", + "fileVersion": "4.700.23.52603" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "4.6.1.6", + "fileVersion": "4.700.23.52603" + }, + "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.6.1.6", + "fileVersion": "4.700.23.52603" + } + } + }, + "System.Drawing.Common/6.0.0": { + "dependencies": { + "Microsoft.Win32.SystemEvents": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Drawing.Common.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + }, + "runtimes/win/lib/net6.0/System.Drawing.Common.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Security.AccessControl/6.0.0": {}, + "System.Security.Cryptography.ProtectedData/6.0.0": { + "runtime": { + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Security.Permissions/6.0.0": { + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Windows.Extensions": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Security.Permissions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Security.Principal.Windows/4.7.0": {}, + "System.Windows.Extensions/6.0.0": { + "dependencies": { + "System.Drawing.Common": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Windows.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "OpenArchival.DataAccess/1.0.0": { + "dependencies": { + "EntityFramework": "6.5.1", + "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "9.0.8", + "Microsoft.EntityFrameworkCore": "9.0.8", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8", + "Npgsql": "9.0.3", + "Npgsql.EntityFrameworkCore.PostgreSQL": "9.0.4" + }, + "runtime": { + "OpenArchival.DataAccess.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + } + } + }, + "libraries": { + "OpenArchival.Blazor.FileViewer/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "BuildBundlerMinifier/3.2.449": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uA9sYDy4VepL3xwzBTLcP2LyuVYMt0ZIT3gaSiXvGoX15Ob+rOP+hGydhevlSVd+rFo+Y+VQFEHDuWU8HBW+XA==", + "path": "buildbundlerminifier/3.2.449", + "hashPath": "buildbundlerminifier.3.2.449.nupkg.sha512" + }, + "CodeBeam.MudExtensions/6.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-U5J0IlIg8R166hm9RwVjjbCtbBs3ixLev94NmfQHaBVUn3P4un+DoirfUjcUs96wvKb5K9H9ou39Yq+wBO11IA==", + "path": "codebeam.mudextensions/6.3.0", + "hashPath": "codebeam.mudextensions.6.3.0.nupkg.sha512" + }, + "CsvHelper/30.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rcZtgbWR+As4G3Vpgx0AMNmShGuQLFjkHAPIIflzrfkJCx8/AOd4m96ZRmiU1Wi39qS5UVjV0P8qdgqOo5Cwyg==", + "path": "csvhelper/30.0.1", + "hashPath": "csvhelper.30.0.1.nupkg.sha512" + }, + "EntityFramework/6.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sQRP2lWg1i3aAGWqdliAM8zrGx7LHMUk+9/MoxUjwfTZYGMXvZ2JYZTlyTm1PqDxvn3c9E3U76TWDON7Y5+CVA==", + "path": "entityframework/6.5.1", + "hashPath": "entityframework.6.5.1.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authorization/9.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WgLlLBlMczb2+QLNG6sM95OUZ0EBztz60k/N75tjIgpyu0SdpIfYytAmX/7JJAjRTZF0c/CrWaQV+SH9FuGsrA==", + "path": "microsoft.aspnetcore.authorization/9.0.1", + "hashPath": "microsoft.aspnetcore.authorization.9.0.1.nupkg.sha512" + }, + "Microsoft.AspNetCore.Components/9.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6pwfbQKNtvPkbF4tCGiAKGyt6BVpu58xAXz7u2YXcUKTNmNxrymbG1mEyMc0EPzVdnquDDqTyfXM3mC1EJycxQ==", + "path": "microsoft.aspnetcore.components/9.0.1", + "hashPath": "microsoft.aspnetcore.components.9.0.1.nupkg.sha512" + }, + "Microsoft.AspNetCore.Components.Analyzers/9.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I8Rs4LXT5UQxM5Nin2+Oj8aSY2heszSZ3EyTLgt3mxmfiRPrVO7D8NNSsf1voI2Gb0qFJceof/J5c9E+nfNuHw==", + "path": "microsoft.aspnetcore.components.analyzers/9.0.1", + "hashPath": "microsoft.aspnetcore.components.analyzers.9.0.1.nupkg.sha512" + }, + "Microsoft.AspNetCore.Components.Forms/9.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KyULVU32bLz74LWDwPEwNUEllTehzWJuM7YAsz80rMKEzvR0K8cRjRzO0fnN/nfydMeLRRlbI0xj8wnEAymLVw==", + "path": "microsoft.aspnetcore.components.forms/9.0.1", + "hashPath": "microsoft.aspnetcore.components.forms.9.0.1.nupkg.sha512" + }, + "Microsoft.AspNetCore.Components.Web/9.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LI0vjYEd9MaDZPDQxPCn4gGYDkEC5U9rp1nWZo7rPozJxgTG2zU3WERujxTi2LeAC2ZzdXlOVCrUyPQ55LZV2A==", + "path": "microsoft.aspnetcore.components.web/9.0.1", + "hashPath": "microsoft.aspnetcore.components.web.9.0.1.nupkg.sha512" + }, + "Microsoft.AspNetCore.Cryptography.Internal/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NwGO0wh/IjEthBLGA6fWfIiftsNF/paA5RxWp6ji4wWazetJgQ4truR9nU2thAzzFLiXqlg8vGjdVDA8bHu0zA==", + "path": "microsoft.aspnetcore.cryptography.internal/9.0.8", + "hashPath": "microsoft.aspnetcore.cryptography.internal.9.0.8.nupkg.sha512" + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gK70xxXYwwPiXYKYVmLYMuIO5EOGrRtQghmM6PkgtZ/0lgLEjIs//xgSLvZkV/mroNHA1DEqTcqscEj9OzZ1IA==", + "path": "microsoft.aspnetcore.cryptography.keyderivation/9.0.8", + "hashPath": "microsoft.aspnetcore.cryptography.keyderivation.9.0.8.nupkg.sha512" + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-z4q9roxXMQePwFM5tXXZS5sKkU78yYXVkj56NYYx9xKe+mxGkJMV1MaO0GFE6HnnM8bE3Xxhs0hAPw2jKbse6w==", + "path": "microsoft.aspnetcore.identity.entityframeworkcore/9.0.8", + "hashPath": "microsoft.aspnetcore.identity.entityframeworkcore.9.0.8.nupkg.sha512" + }, + "Microsoft.AspNetCore.Metadata/9.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-EZnHifamF7IFEIyjAKMtJM3I/94OIe72i3P09v5oL0twmsmfQwal6Ni3m8lbB5mge3jWFhMozeW+rUdRSqnXRQ==", + "path": "microsoft.aspnetcore.metadata/9.0.1", + "hashPath": "microsoft.aspnetcore.metadata.9.0.1.nupkg.sha512" + }, + "Microsoft.CSharp/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", + "path": "microsoft.csharp/4.7.0", + "hashPath": "microsoft.csharp.4.7.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bNGdPhN762+BIIO5MFYLjafRqkSS1MqLOc/erd55InvLnFxt9H3N5JNsuag1ZHyBor1VtD42U0CHpgqkWeAYgQ==", + "path": "microsoft.entityframeworkcore/9.0.8", + "hashPath": "microsoft.entityframeworkcore.9.0.8.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Abstractions/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-B2yfAIQRRAQ4zvvWqh+HudD+juV3YoLlpXnrog3tU0PM9AFpuq6xo0+mEglN1P43WgdcUiF+65CWBcZe35s15Q==", + "path": "microsoft.entityframeworkcore.abstractions/9.0.8", + "hashPath": "microsoft.entityframeworkcore.abstractions.9.0.8.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Analyzers/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2EYStCXt4Hi9p3J3EYMQbItJDtASJd064Kcs8C8hj8Jt5srILrR9qlaL0Ryvk8NrWQoCQvIELsmiuqLEZMLvGA==", + "path": "microsoft.entityframeworkcore.analyzers/9.0.8", + "hashPath": "microsoft.entityframeworkcore.analyzers.9.0.8.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Relational/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OVhfyxiHxMvYpwQ8Jy3YZi4koy6TK5/Q7C1oq3z6db+HEGuu6x9L1BX5zDIdJxxlRePMyO4D8ORiXj/D7+MUqw==", + "path": "microsoft.entityframeworkcore.relational/9.0.8", + "hashPath": "microsoft.entityframeworkcore.relational.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Abstractions/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4h7bsVoKoiK+SlPM+euX/ayGnKZhl47pPCidLTiio9xyG+vgVVfcYxcYQgjm0SCrdSxjG0EGIAKF8EFr3G8Ifw==", + "path": "microsoft.extensions.caching.abstractions/9.0.8", + "hashPath": "microsoft.extensions.caching.abstractions.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Memory/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-grR+oPyj8HVn4DT8CFUUdSw2pZZKS13KjytFe4txpHQliGM1GEDotohmjgvyl3hm7RFB3FRqvbouEX3/1ewp5A==", + "path": "microsoft.extensions.caching.memory/9.0.8", + "hashPath": "microsoft.extensions.caching.memory.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yNou2KM35RvzOh4vUFtl2l33rWPvOCoba+nzEDJ+BgD8aOL/jew4WPCibQvntRfOJ2pJU8ARygSMD+pdjvDHuA==", + "path": "microsoft.extensions.configuration.abstractions/9.0.8", + "hashPath": "microsoft.extensions.configuration.abstractions.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JJjI2Fa+QtZcUyuNjbKn04OjIUX5IgFGFu/Xc+qvzh1rXdZHLcnqqVXhR4093bGirTwacRlHiVg1XYI9xum6QQ==", + "path": "microsoft.extensions.dependencyinjection/9.0.8", + "hashPath": "microsoft.extensions.dependencyinjection.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xY3lTjj4+ZYmiKIkyWitddrp1uL5uYiweQjqo4BKBw01ZC4HhcfgLghDpPZcUlppgWAFqFy9SgkiYWOMx365pw==", + "path": "microsoft.extensions.dependencyinjection.abstractions/9.0.8", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Identity.Core/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-giUYz84GHAizDucZp5vWAusDO2s9Jrrg2jQ6HUQNGs5HQMKJVobLPMQSiyg8R4yecH0pIc0QjANh0B/Kw13BHA==", + "path": "microsoft.extensions.identity.core/9.0.8", + "hashPath": "microsoft.extensions.identity.core.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Identity.Stores/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sycaHcq78yI591+KxEdd53a7pJGQEl9H/wDsFkaPNE9g7loyq8vufPcc/9RH3KlGt5joR5Ey7PdoRSrlLjCgJg==", + "path": "microsoft.extensions.identity.stores/9.0.8", + "hashPath": "microsoft.extensions.identity.stores.9.0.8.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.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Z/7ze+0iheT7FJeZPqJKARYvyC2bmwu3whbm/48BJjdlGVvgDguoCqJIkI/67NkroTYobd5geai1WheNQvWrgA==", + "path": "microsoft.extensions.logging/9.0.8", + "hashPath": "microsoft.extensions.logging.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pYnAffJL7ARD/HCnnPvnFKSIHnTSmWz84WIlT9tPeQ4lHNiu0Az7N/8itihWvcF8sT+VVD5lq8V+ckMzu4SbOw==", + "path": "microsoft.extensions.logging.abstractions/9.0.8", + "hashPath": "microsoft.extensions.logging.abstractions.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Options/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OmTaQ0v4gxGQkehpwWIqPoEiwsPuG/u4HUsbOFoWGx4DKET2AXzopnFe/fE608FIhzc/kcg2p8JdyMRCCUzitQ==", + "path": "microsoft.extensions.options/9.0.8", + "hashPath": "microsoft.extensions.options.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tizSIOEsIgSNSSh+hKeUVPK7xmTIjR8s+mJWOu1KXV3htvNQiPMFRMO17OdI1y/4ZApdBVk49u/08QGC9yvLug==", + "path": "microsoft.extensions.primitives/9.0.8", + "hashPath": "microsoft.extensions.primitives.9.0.8.nupkg.sha512" + }, + "Microsoft.JSInterop/9.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/xBwIfb0YoC2Muv6EsHjxpqZw2aKv94+i0g0FWZvqvGv3DeAy+8wipAuECVvKYEs2EIclRD41bjajHLoD6mTtw==", + "path": "microsoft.jsinterop/9.0.1", + "hashPath": "microsoft.jsinterop.9.0.1.nupkg.sha512" + }, + "Microsoft.Win32.Registry/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", + "path": "microsoft.win32.registry/4.7.0", + "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512" + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==", + "path": "microsoft.win32.systemevents/6.0.0", + "hashPath": "microsoft.win32.systemevents.6.0.0.nupkg.sha512" + }, + "MudBlazor/8.13.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Y6JW93zf8tiVhMSkkL0mZ3ruqjOTNftvVoX3sik6NEnIye+Gs0FXI8rhXfrH2LU79Mw/fOtT5ms3L/Q4TKx2kA==", + "path": "mudblazor/8.13.0", + "hashPath": "mudblazor.8.13.0.nupkg.sha512" + }, + "Npgsql/9.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tPvY61CxOAWxNsKLEBg+oR646X4Bc8UmyQ/tJszL/7mEmIXQnnBhVJZrZEEUv0Bstu0mEsHZD5At3EO8zQRAYw==", + "path": "npgsql/9.0.3", + "hashPath": "npgsql.9.0.3.nupkg.sha512" + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/9.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mw5vcY2IEc7L+IeGrxpp/J5OSnCcjkjAgJYCm/eD52wpZze8zsSifdqV7zXslSMmfJG2iIUGZyo3KuDtEFKwMQ==", + "path": "npgsql.entityframeworkcore.postgresql/9.0.4", + "hashPath": "npgsql.entityframeworkcore.postgresql.9.0.4.nupkg.sha512" + }, + "runtime.native.System.Data.SqlClient.sni/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9kyFSIdN3T0qjDQ2R0HRXYIhS3l5psBzQi6qqhdLz+SzFyEy4sVxNOke+yyYv8Cu8rPER12c3RDjLT8wF3WBYQ==", + "path": "runtime.native.system.data.sqlclient.sni/4.7.0", + "hashPath": "runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512" + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==", + "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0", + "hashPath": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==", + "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0", + "hashPath": "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==", + "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0", + "hashPath": "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" + }, + "System.CodeDom/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CPc6tWO1LAer3IzfZufDBRL+UZQcj5uS207NHALQzP84Vp/z6wF0Aa0YZImOQY8iStY0A2zI/e3ihKNPfUm8XA==", + "path": "system.codedom/6.0.0", + "hashPath": "system.codedom.6.0.0.nupkg.sha512" + }, + "System.ComponentModel.Annotations/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==", + "path": "system.componentmodel.annotations/5.0.0", + "hashPath": "system.componentmodel.annotations.5.0.0.nupkg.sha512" + }, + "System.Configuration.ConfigurationManager/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jXw9MlUu/kRfEU0WyTptAVueupqIeE3/rl0EZDMlf8pcvJnitQ8HeVEp69rZdaStXwTV72boi/Bhw8lOeO+U2w==", + "path": "system.configuration.configurationmanager/6.0.1", + "hashPath": "system.configuration.configurationmanager.6.0.1.nupkg.sha512" + }, + "System.Data.SqlClient/4.8.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2Ij/LCaTQRyAi5lAv7UUTV9R2FobC8xN9mE0fXBZohum/xLl8IZVmE98Rq5ugQHjCgTBRKqpXRb4ORulRdA6Ig==", + "path": "system.data.sqlclient/4.8.6", + "hashPath": "system.data.sqlclient.4.8.6.nupkg.sha512" + }, + "System.Drawing.Common/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==", + "path": "system.drawing.common/6.0.0", + "hashPath": "system.drawing.common.6.0.0.nupkg.sha512" + }, + "System.Security.AccessControl/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==", + "path": "system.security.accesscontrol/6.0.0", + "hashPath": "system.security.accesscontrol.6.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.ProtectedData/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==", + "path": "system.security.cryptography.protecteddata/6.0.0", + "hashPath": "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512" + }, + "System.Security.Permissions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==", + "path": "system.security.permissions/6.0.0", + "hashPath": "system.security.permissions.6.0.0.nupkg.sha512" + }, + "System.Security.Principal.Windows/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==", + "path": "system.security.principal.windows/4.7.0", + "hashPath": "system.security.principal.windows.4.7.0.nupkg.sha512" + }, + "System.Windows.Extensions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==", + "path": "system.windows.extensions/6.0.0", + "hashPath": "system.windows.extensions.6.0.0.nupkg.sha512" + }, + "OpenArchival.DataAccess/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/OpenArchival.Blazor.FileViewer/bin/Debug/net9.0/OpenArchival.Blazor.FileViewer.dll b/OpenArchival.Blazor.FileViewer/bin/Debug/net9.0/OpenArchival.Blazor.FileViewer.dll new file mode 100644 index 0000000..33bc30c Binary files /dev/null and b/OpenArchival.Blazor.FileViewer/bin/Debug/net9.0/OpenArchival.Blazor.FileViewer.dll differ diff --git a/OpenArchival.Blazor.FileViewer/bin/Debug/net9.0/OpenArchival.Blazor.FileViewer.pdb b/OpenArchival.Blazor.FileViewer/bin/Debug/net9.0/OpenArchival.Blazor.FileViewer.pdb new file mode 100644 index 0000000..04280da Binary files /dev/null and b/OpenArchival.Blazor.FileViewer/bin/Debug/net9.0/OpenArchival.Blazor.FileViewer.pdb differ diff --git a/OpenArchival.Blazor.FileViewer/bin/Debug/net9.0/OpenArchival.Blazor.FileViewer.runtimeconfig.json b/OpenArchival.Blazor.FileViewer/bin/Debug/net9.0/OpenArchival.Blazor.FileViewer.runtimeconfig.json new file mode 100644 index 0000000..6e29dbe --- /dev/null +++ b/OpenArchival.Blazor.FileViewer/bin/Debug/net9.0/OpenArchival.Blazor.FileViewer.runtimeconfig.json @@ -0,0 +1,19 @@ +{ + "runtimeOptions": { + "tfm": "net9.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "9.0.0" + }, + { + "name": "Microsoft.AspNetCore.App", + "version": "9.0.0" + } + ], + "configProperties": { + "System.Reflection.NullabilityInfoContext.IsSupported": true, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/OpenArchival.Blazor.FileViewer/bin/Debug/net9.0/OpenArchival.Blazor.FileViewer.staticwebassets.endpoints.json b/OpenArchival.Blazor.FileViewer/bin/Debug/net9.0/OpenArchival.Blazor.FileViewer.staticwebassets.endpoints.json new file mode 100644 index 0000000..39f4a22 --- /dev/null +++ b/OpenArchival.Blazor.FileViewer/bin/Debug/net9.0/OpenArchival.Blazor.FileViewer.staticwebassets.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[{"Route":"OpenArchival.Blazor.FileViewer.83wakjp31g.styles.css","AssetFile":"OpenArchival.Blazor.FileViewer.styles.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.006134969325"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"162"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"w7pUrtgbGsKChPQ+JZf6wIJIlRo5ItP1AJKKjbLPBUM=\""},{"Name":"ETag","Value":"W/\"9NCmFFvSZYsIWCQoks2vSnN9EMEwePSQhoXfFOCn5mg=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"83wakjp31g"},{"Name":"integrity","Value":"sha256-9NCmFFvSZYsIWCQoks2vSnN9EMEwePSQhoXfFOCn5mg="},{"Name":"label","Value":"OpenArchival.Blazor.FileViewer.styles.css"}]},{"Route":"OpenArchival.Blazor.FileViewer.83wakjp31g.styles.css","AssetFile":"OpenArchival.Blazor.FileViewer.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"186"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"9NCmFFvSZYsIWCQoks2vSnN9EMEwePSQhoXfFOCn5mg=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"83wakjp31g"},{"Name":"integrity","Value":"sha256-9NCmFFvSZYsIWCQoks2vSnN9EMEwePSQhoXfFOCn5mg="},{"Name":"label","Value":"OpenArchival.Blazor.FileViewer.styles.css"}]},{"Route":"OpenArchival.Blazor.FileViewer.83wakjp31g.styles.css.gz","AssetFile":"OpenArchival.Blazor.FileViewer.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":"162"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"w7pUrtgbGsKChPQ+JZf6wIJIlRo5ItP1AJKKjbLPBUM=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"83wakjp31g"},{"Name":"integrity","Value":"sha256-w7pUrtgbGsKChPQ+JZf6wIJIlRo5ItP1AJKKjbLPBUM="},{"Name":"label","Value":"OpenArchival.Blazor.FileViewer.styles.css.gz"}]},{"Route":"OpenArchival.Blazor.FileViewer.styles.css","AssetFile":"OpenArchival.Blazor.FileViewer.styles.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.006134969325"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"162"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"w7pUrtgbGsKChPQ+JZf6wIJIlRo5ItP1AJKKjbLPBUM=\""},{"Name":"ETag","Value":"W/\"9NCmFFvSZYsIWCQoks2vSnN9EMEwePSQhoXfFOCn5mg=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9NCmFFvSZYsIWCQoks2vSnN9EMEwePSQhoXfFOCn5mg="}]},{"Route":"OpenArchival.Blazor.FileViewer.styles.css","AssetFile":"OpenArchival.Blazor.FileViewer.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"186"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"9NCmFFvSZYsIWCQoks2vSnN9EMEwePSQhoXfFOCn5mg=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9NCmFFvSZYsIWCQoks2vSnN9EMEwePSQhoXfFOCn5mg="}]},{"Route":"OpenArchival.Blazor.FileViewer.styles.css.gz","AssetFile":"OpenArchival.Blazor.FileViewer.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":"162"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"w7pUrtgbGsKChPQ+JZf6wIJIlRo5ItP1AJKKjbLPBUM=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-w7pUrtgbGsKChPQ+JZf6wIJIlRo5ItP1AJKKjbLPBUM="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.css","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"21465"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk=\""},{"Name":"Last-Modified","Value":"Sun, 26 Feb 2023 14:08:26 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.css","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000295508274"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3383"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"6PJ7t7WR38pQTSYe6IR0pbqo2cIZK5wuW/w26kprtBg=\""},{"Name":"ETag","Value":"W/\"Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.css.gz","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3383"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"6PJ7t7WR38pQTSYe6IR0pbqo2cIZK5wuW/w26kprtBg=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6PJ7t7WR38pQTSYe6IR0pbqo2cIZK5wuW/w26kprtBg="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.js","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"328"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc=\""},{"Name":"Last-Modified","Value":"Sun, 26 Feb 2023 14:08:26 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.js","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005076142132"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"196"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"B4PUgpr06+d3lAMWknp0EVkaGxPZJdpp5/UidGHzvnc=\""},{"Name":"ETag","Value":"W/\"FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.js.gz","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"196"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"B4PUgpr06+d3lAMWknp0EVkaGxPZJdpp5/UidGHzvnc=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-B4PUgpr06+d3lAMWknp0EVkaGxPZJdpp5/UidGHzvnc="}]},{"Route":"_content/CodeBeam.MudExtensions/Mud_Secondary.png","AssetFile":"_content/CodeBeam.MudExtensions/Mud_Secondary.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4558"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"G3hYUw4Ps9P/IQ3lw2zu96RSZaOf4zU+4QkXkH8Xi3Y=\""},{"Name":"Last-Modified","Value":"Sat, 08 Oct 2022 09:55:02 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G3hYUw4Ps9P/IQ3lw2zu96RSZaOf4zU+4QkXkH8Xi3Y="}]},{"Route":"_content/MudBlazor/MudBlazor.min.css","AssetFile":"_content/MudBlazor/MudBlazor.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"606250"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0=\""},{"Name":"Last-Modified","Value":"Wed, 01 Oct 2025 21:51:05 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0="}]},{"Route":"_content/MudBlazor/MudBlazor.min.css","AssetFile":"_content/MudBlazor/MudBlazor.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015264845"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"65509"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"VcBMO3aXrzxl+jfWY+TaxPKsd3L0UWjeJZliEXOyzzI=\""},{"Name":"ETag","Value":"W/\"TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0="}]},{"Route":"_content/MudBlazor/MudBlazor.min.css.gz","AssetFile":"_content/MudBlazor/MudBlazor.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"65509"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"VcBMO3aXrzxl+jfWY+TaxPKsd3L0UWjeJZliEXOyzzI=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VcBMO3aXrzxl+jfWY+TaxPKsd3L0UWjeJZliEXOyzzI="}]},{"Route":"_content/MudBlazor/MudBlazor.min.jk5eo7zo4m.css","AssetFile":"_content/MudBlazor/MudBlazor.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"606250"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0=\""},{"Name":"Last-Modified","Value":"Wed, 01 Oct 2025 21:51:05 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jk5eo7zo4m"},{"Name":"integrity","Value":"sha256-TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.css"}]},{"Route":"_content/MudBlazor/MudBlazor.min.js","AssetFile":"_content/MudBlazor/MudBlazor.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"75165"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw=\""},{"Name":"Last-Modified","Value":"Wed, 01 Oct 2025 21:51:05 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js","AssetFile":"_content/MudBlazor/MudBlazor.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000061150859"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16352"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"0BJxfo+EOJvNKoBv/2ahm4RKrPjv7PhB/R16C3XOHDo=\""},{"Name":"ETag","Value":"W/\"hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js.gz","AssetFile":"_content/MudBlazor/MudBlazor.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16352"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"0BJxfo+EOJvNKoBv/2ahm4RKrPjv7PhB/R16C3XOHDo=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0BJxfo+EOJvNKoBv/2ahm4RKrPjv7PhB/R16C3XOHDo="}]},{"Route":"_content/MudBlazor/MudBlazor.min.tjzqk7tnel.js","AssetFile":"_content/MudBlazor/MudBlazor.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"75165"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw=\""},{"Name":"Last-Modified","Value":"Wed, 01 Oct 2025 21:51:05 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tjzqk7tnel"},{"Name":"integrity","Value":"sha256-hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.js"}]}]} \ No newline at end of file diff --git a/OpenArchival.Blazor.FileViewer/bin/Debug/net9.0/OpenArchival.Blazor.FileViewer.staticwebassets.runtime.json b/OpenArchival.Blazor.FileViewer/bin/Debug/net9.0/OpenArchival.Blazor.FileViewer.staticwebassets.runtime.json new file mode 100644 index 0000000..dd248b8 --- /dev/null +++ b/OpenArchival.Blazor.FileViewer/bin/Debug/net9.0/OpenArchival.Blazor.FileViewer.staticwebassets.runtime.json @@ -0,0 +1 @@ +{"ContentRoots":["C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\scopedcss\\bundle\\","C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\compressed\\","C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\","C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\"],"Root":{"Children":{"OpenArchival.Blazor.FileViewer.styles.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"OpenArchival.Blazor.FileViewer.styles.css"},"Patterns":null},"OpenArchival.Blazor.FileViewer.styles.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"94gzerkhdz-83wakjp31g.gz"},"Patterns":null},"_content":{"Children":{"CodeBeam.MudExtensions":{"Children":{"Mud_Secondary.png":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"Mud_Secondary.png"},"Patterns":null},"MudExtensions.min.css":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"MudExtensions.min.css"},"Patterns":null},"MudExtensions.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"24gzn4tg1a-qz4batx9cb.gz"},"Patterns":null},"MudExtensions.min.js":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"MudExtensions.min.js"},"Patterns":null},"MudExtensions.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"stwk5nfoxp-loe7cozwzj.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"MudBlazor":{"Children":{"MudBlazor.min.css":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"MudBlazor.min.css"},"Patterns":null},"MudBlazor.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"tzxjg6is5z-jk5eo7zo4m.gz"},"Patterns":null},"MudBlazor.min.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"MudBlazor.min.js"},"Patterns":null},"MudBlazor.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"0wz98yz2xy-tjzqk7tnel.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}} \ No newline at end of file diff --git a/OpenArchival.Blazor.FileViewer/bin/Debug/net9.0/OpenArchival.DataAccess.deps.json b/OpenArchival.Blazor.FileViewer/bin/Debug/net9.0/OpenArchival.DataAccess.deps.json new file mode 100644 index 0000000..68112d5 --- /dev/null +++ b/OpenArchival.Blazor.FileViewer/bin/Debug/net9.0/OpenArchival.DataAccess.deps.json @@ -0,0 +1,1305 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v9.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v9.0": { + "OpenArchival.DataAccess/1.0.0": { + "dependencies": { + "EntityFramework": "6.5.1", + "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "9.0.8", + "Microsoft.EntityFrameworkCore": "9.0.8", + "Microsoft.EntityFrameworkCore.Design": "9.0.8", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8", + "Npgsql": "9.0.3", + "Npgsql.EntityFrameworkCore.PostgreSQL": "9.0.4" + }, + "runtime": { + "OpenArchival.DataAccess.dll": {} + } + }, + "EntityFramework/6.5.1": { + "dependencies": { + "Microsoft.CSharp": "4.7.0", + "System.CodeDom": "6.0.0", + "System.ComponentModel.Annotations": "5.0.0", + "System.Configuration.ConfigurationManager": "6.0.1", + "System.Data.SqlClient": "4.8.6" + }, + "runtime": { + "lib/netstandard2.1/EntityFramework.SqlServer.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.500.124.31603" + }, + "lib/netstandard2.1/EntityFramework.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.500.124.31603" + } + } + }, + "Humanizer.Core/2.14.1": { + "runtime": { + "lib/net6.0/Humanizer.dll": { + "assemblyVersion": "2.14.0.0", + "fileVersion": "2.14.1.48190" + } + } + }, + "Microsoft.AspNetCore.Cryptography.Internal/9.0.8": { + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Cryptography.Internal.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36808" + } + } + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/9.0.8": { + "dependencies": { + "Microsoft.AspNetCore.Cryptography.Internal": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36808" + } + } + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore/9.0.8": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Relational": "9.0.8", + "Microsoft.Extensions.Identity.Stores": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": { + "assemblyVersion": "9.0.8.0", + "fileVersion": "9.0.825.36808" + } + } + }, + "Microsoft.Bcl.AsyncInterfaces/7.0.0": { + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "Microsoft.Build.Framework/17.8.3": {}, + "Microsoft.Build.Locator/1.7.8": { + "runtime": { + "lib/net6.0/Microsoft.Build.Locator.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.7.8.28074" + } + } + }, + "Microsoft.CodeAnalysis.Analyzers/3.3.4": {}, + "Microsoft.CodeAnalysis.Common/4.8.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "3.3.4", + "System.Collections.Immutable": "7.0.0", + "System.Reflection.Metadata": "7.0.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + } + }, + "resources": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.CSharp/4.8.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "4.8.0" + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.CSharp.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + } + }, + "resources": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.CSharp.Workspaces/4.8.0": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.CodeAnalysis.CSharp": "4.8.0", + "Microsoft.CodeAnalysis.Common": "4.8.0", + "Microsoft.CodeAnalysis.Workspaces.Common": "4.8.0" + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + } + }, + "resources": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.Workspaces.Common/4.8.0": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.Bcl.AsyncInterfaces": "7.0.0", + "Microsoft.CodeAnalysis.Common": "4.8.0", + "System.Composition": "7.0.0", + "System.IO.Pipelines": "7.0.0", + "System.Threading.Channels": "7.0.0" + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + } + }, + "resources": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.Workspaces.MSBuild/4.8.0": { + "dependencies": { + "Microsoft.Build.Framework": "17.8.3", + "Microsoft.CodeAnalysis.Common": "4.8.0", + "Microsoft.CodeAnalysis.Workspaces.Common": "4.8.0", + "System.Text.Json": "9.0.8" + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + }, + "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + } + }, + "resources": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CSharp/4.7.0": {}, + "Microsoft.EntityFrameworkCore/9.0.8": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "9.0.8", + "Microsoft.EntityFrameworkCore.Analyzers": "9.0.8", + "Microsoft.Extensions.Caching.Memory": "9.0.8", + "Microsoft.Extensions.Logging": "9.0.8" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.dll": { + "assemblyVersion": "9.0.8.0", + "fileVersion": "9.0.825.36802" + } + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/9.0.8": { + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "assemblyVersion": "9.0.8.0", + "fileVersion": "9.0.825.36802" + } + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/9.0.8": {}, + "Microsoft.EntityFrameworkCore.Design/9.0.8": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.Build.Framework": "17.8.3", + "Microsoft.Build.Locator": "1.7.8", + "Microsoft.CodeAnalysis.CSharp": "4.8.0", + "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.8.0", + "Microsoft.CodeAnalysis.Workspaces.MSBuild": "4.8.0", + "Microsoft.EntityFrameworkCore.Relational": "9.0.8", + "Microsoft.Extensions.Caching.Memory": "9.0.8", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.8", + "Microsoft.Extensions.DependencyModel": "9.0.8", + "Microsoft.Extensions.Logging": "9.0.8", + "Mono.TextTemplating": "3.0.0", + "System.Text.Json": "9.0.8" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Design.dll": { + "assemblyVersion": "9.0.8.0", + "fileVersion": "9.0.825.36802" + } + } + }, + "Microsoft.EntityFrameworkCore.Relational/9.0.8": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "9.0.8", + "Microsoft.Extensions.Caching.Memory": "9.0.8", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.8", + "Microsoft.Extensions.Logging": "9.0.8" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "assemblyVersion": "9.0.8.0", + "fileVersion": "9.0.825.36802" + } + } + }, + "Microsoft.Extensions.Caching.Abstractions/9.0.8": { + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Extensions.Caching.Memory/9.0.8": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "9.0.8", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8", + "Microsoft.Extensions.Logging.Abstractions": "9.0.8", + "Microsoft.Extensions.Options": "9.0.8", + "Microsoft.Extensions.Primitives": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Caching.Memory.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.8": { + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Extensions.DependencyInjection/9.0.8": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.8": { + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Extensions.DependencyModel/9.0.8": { + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyModel.dll": { + "assemblyVersion": "9.0.0.8", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Extensions.Identity.Core/9.0.8": { + "dependencies": { + "Microsoft.AspNetCore.Cryptography.KeyDerivation": "9.0.8", + "Microsoft.Extensions.Logging": "9.0.8", + "Microsoft.Extensions.Options": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Identity.Core.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36808" + } + } + }, + "Microsoft.Extensions.Identity.Stores/9.0.8": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "9.0.8", + "Microsoft.Extensions.Identity.Core": "9.0.8", + "Microsoft.Extensions.Logging": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Identity.Stores.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36808" + } + } + }, + "Microsoft.Extensions.Logging/9.0.8": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "9.0.8", + "Microsoft.Extensions.Logging.Abstractions": "9.0.8", + "Microsoft.Extensions.Options": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.8": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Extensions.Options/9.0.8": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8", + "Microsoft.Extensions.Primitives": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Extensions.Primitives/9.0.8": { + "runtime": { + "lib/net9.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Win32.Registry/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "runtime": { + "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Mono.TextTemplating/3.0.0": { + "dependencies": { + "System.CodeDom": "6.0.0" + }, + "runtime": { + "lib/net6.0/Mono.TextTemplating.dll": { + "assemblyVersion": "3.0.0.0", + "fileVersion": "3.0.0.1" + } + } + }, + "Npgsql/9.0.3": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "9.0.8" + }, + "runtime": { + "lib/net8.0/Npgsql.dll": { + "assemblyVersion": "9.0.3.0", + "fileVersion": "9.0.3.0" + } + } + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/9.0.4": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "9.0.8", + "Microsoft.EntityFrameworkCore.Relational": "9.0.8", + "Npgsql": "9.0.3" + }, + "runtime": { + "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { + "assemblyVersion": "9.0.4.0", + "fileVersion": "9.0.4.0" + } + } + }, + "runtime.native.System.Data.SqlClient.sni/4.7.0": { + "dependencies": { + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0" + } + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "runtimeTargets": { + "runtimes/win-arm64/native/sni.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "4.6.25512.1" + } + } + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "runtimeTargets": { + "runtimes/win-x64/native/sni.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "4.6.25512.1" + } + } + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "runtimeTargets": { + "runtimes/win-x86/native/sni.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "4.6.25512.1" + } + } + }, + "System.CodeDom/6.0.0": { + "runtime": { + "lib/net6.0/System.CodeDom.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Collections.Immutable/7.0.0": {}, + "System.ComponentModel.Annotations/5.0.0": {}, + "System.Composition/7.0.0": { + "dependencies": { + "System.Composition.AttributedModel": "7.0.0", + "System.Composition.Convention": "7.0.0", + "System.Composition.Hosting": "7.0.0", + "System.Composition.Runtime": "7.0.0", + "System.Composition.TypedParts": "7.0.0" + } + }, + "System.Composition.AttributedModel/7.0.0": { + "runtime": { + "lib/net7.0/System.Composition.AttributedModel.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Composition.Convention/7.0.0": { + "dependencies": { + "System.Composition.AttributedModel": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.Composition.Convention.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Composition.Hosting/7.0.0": { + "dependencies": { + "System.Composition.Runtime": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.Composition.Hosting.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Composition.Runtime/7.0.0": { + "runtime": { + "lib/net7.0/System.Composition.Runtime.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Composition.TypedParts/7.0.0": { + "dependencies": { + "System.Composition.AttributedModel": "7.0.0", + "System.Composition.Hosting": "7.0.0", + "System.Composition.Runtime": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.Composition.TypedParts.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Configuration.ConfigurationManager/6.0.1": { + "dependencies": { + "System.Security.Cryptography.ProtectedData": "6.0.0", + "System.Security.Permissions": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.922.41905" + } + } + }, + "System.Data.SqlClient/4.8.6": { + "dependencies": { + "Microsoft.Win32.Registry": "4.7.0", + "System.Security.Principal.Windows": "4.7.0", + "runtime.native.System.Data.SqlClient.sni": "4.7.0" + }, + "runtime": { + "lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "assemblyVersion": "4.6.1.6", + "fileVersion": "4.700.23.52603" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "4.6.1.6", + "fileVersion": "4.700.23.52603" + }, + "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.6.1.6", + "fileVersion": "4.700.23.52603" + } + } + }, + "System.Drawing.Common/6.0.0": { + "dependencies": { + "Microsoft.Win32.SystemEvents": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Drawing.Common.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + }, + "runtimes/win/lib/net6.0/System.Drawing.Common.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.IO.Pipelines/7.0.0": {}, + "System.Reflection.Metadata/7.0.0": { + "dependencies": { + "System.Collections.Immutable": "7.0.0" + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, + "System.Security.AccessControl/6.0.0": {}, + "System.Security.Cryptography.ProtectedData/6.0.0": { + "runtime": { + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Security.Permissions/6.0.0": { + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Windows.Extensions": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Security.Permissions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Security.Principal.Windows/4.7.0": {}, + "System.Text.Json/9.0.8": {}, + "System.Threading.Channels/7.0.0": {}, + "System.Windows.Extensions/6.0.0": { + "dependencies": { + "System.Drawing.Common": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Windows.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + } + } + }, + "libraries": { + "OpenArchival.DataAccess/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "EntityFramework/6.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sQRP2lWg1i3aAGWqdliAM8zrGx7LHMUk+9/MoxUjwfTZYGMXvZ2JYZTlyTm1PqDxvn3c9E3U76TWDON7Y5+CVA==", + "path": "entityframework/6.5.1", + "hashPath": "entityframework.6.5.1.nupkg.sha512" + }, + "Humanizer.Core/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw==", + "path": "humanizer.core/2.14.1", + "hashPath": "humanizer.core.2.14.1.nupkg.sha512" + }, + "Microsoft.AspNetCore.Cryptography.Internal/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NwGO0wh/IjEthBLGA6fWfIiftsNF/paA5RxWp6ji4wWazetJgQ4truR9nU2thAzzFLiXqlg8vGjdVDA8bHu0zA==", + "path": "microsoft.aspnetcore.cryptography.internal/9.0.8", + "hashPath": "microsoft.aspnetcore.cryptography.internal.9.0.8.nupkg.sha512" + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gK70xxXYwwPiXYKYVmLYMuIO5EOGrRtQghmM6PkgtZ/0lgLEjIs//xgSLvZkV/mroNHA1DEqTcqscEj9OzZ1IA==", + "path": "microsoft.aspnetcore.cryptography.keyderivation/9.0.8", + "hashPath": "microsoft.aspnetcore.cryptography.keyderivation.9.0.8.nupkg.sha512" + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-z4q9roxXMQePwFM5tXXZS5sKkU78yYXVkj56NYYx9xKe+mxGkJMV1MaO0GFE6HnnM8bE3Xxhs0hAPw2jKbse6w==", + "path": "microsoft.aspnetcore.identity.entityframeworkcore/9.0.8", + "hashPath": "microsoft.aspnetcore.identity.entityframeworkcore.9.0.8.nupkg.sha512" + }, + "Microsoft.Bcl.AsyncInterfaces/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3aeMZ1N0lJoSyzqiP03hqemtb1BijhsJADdobn/4nsMJ8V1H+CrpuduUe4hlRdx+ikBQju1VGjMD1GJ3Sk05Eg==", + "path": "microsoft.bcl.asyncinterfaces/7.0.0", + "hashPath": "microsoft.bcl.asyncinterfaces.7.0.0.nupkg.sha512" + }, + "Microsoft.Build.Framework/17.8.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NrQZJW8TlKVPx72yltGb8SVz3P5mNRk9fNiD/ao8jRSk48WqIIdCn99q4IjlVmPcruuQ+yLdjNQLL8Rb4c916g==", + "path": "microsoft.build.framework/17.8.3", + "hashPath": "microsoft.build.framework.17.8.3.nupkg.sha512" + }, + "Microsoft.Build.Locator/1.7.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sPy10x527Ph16S2u0yGME4S6ohBKJ69WfjeGG/bvELYeZVmJdKjxgnlL8cJJJLGV/cZIRqSfB12UDB8ICakOog==", + "path": "microsoft.build.locator/1.7.8", + "hashPath": "microsoft.build.locator.1.7.8.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Analyzers/3.3.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AxkxcPR+rheX0SmvpLVIGLhOUXAKG56a64kV9VQZ4y9gR9ZmPXnqZvHJnmwLSwzrEP6junUF11vuc+aqo5r68g==", + "path": "microsoft.codeanalysis.analyzers/3.3.4", + "hashPath": "microsoft.codeanalysis.analyzers.3.3.4.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Common/4.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/jR+e/9aT+BApoQJABlVCKnnggGQbvGh7BKq2/wI1LamxC+LbzhcLj4Vj7gXCofl1n4E521YfF9w0WcASGg/KA==", + "path": "microsoft.codeanalysis.common/4.8.0", + "hashPath": "microsoft.codeanalysis.common.4.8.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.CSharp/4.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+3+qfdb/aaGD8PZRCrsdobbzGs1m9u119SkkJt8e/mk3xLJz/udLtS2T6nY27OTXxBBw10HzAbC8Z9w08VyP/g==", + "path": "microsoft.codeanalysis.csharp/4.8.0", + "hashPath": "microsoft.codeanalysis.csharp.4.8.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.CSharp.Workspaces/4.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3amm4tq4Lo8/BGvg9p3BJh3S9nKq2wqCXfS7138i69TUpo/bD+XvD0hNurpEBtcNZhi1FyutiomKJqVF39ugYA==", + "path": "microsoft.codeanalysis.csharp.workspaces/4.8.0", + "hashPath": "microsoft.codeanalysis.csharp.workspaces.4.8.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Workspaces.Common/4.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LXyV+MJKsKRu3FGJA3OmSk40OUIa/dQCFLOnm5X8MNcujx7hzGu8o+zjXlb/cy5xUdZK2UKYb9YaQ2E8m9QehQ==", + "path": "microsoft.codeanalysis.workspaces.common/4.8.0", + "hashPath": "microsoft.codeanalysis.workspaces.common.4.8.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Workspaces.MSBuild/4.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IEYreI82QZKklp54yPHxZNG9EKSK6nHEkeuf+0Asie9llgS1gp0V1hw7ODG+QyoB7MuAnNQHmeV1Per/ECpv6A==", + "path": "microsoft.codeanalysis.workspaces.msbuild/4.8.0", + "hashPath": "microsoft.codeanalysis.workspaces.msbuild.4.8.0.nupkg.sha512" + }, + "Microsoft.CSharp/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", + "path": "microsoft.csharp/4.7.0", + "hashPath": "microsoft.csharp.4.7.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bNGdPhN762+BIIO5MFYLjafRqkSS1MqLOc/erd55InvLnFxt9H3N5JNsuag1ZHyBor1VtD42U0CHpgqkWeAYgQ==", + "path": "microsoft.entityframeworkcore/9.0.8", + "hashPath": "microsoft.entityframeworkcore.9.0.8.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Abstractions/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-B2yfAIQRRAQ4zvvWqh+HudD+juV3YoLlpXnrog3tU0PM9AFpuq6xo0+mEglN1P43WgdcUiF+65CWBcZe35s15Q==", + "path": "microsoft.entityframeworkcore.abstractions/9.0.8", + "hashPath": "microsoft.entityframeworkcore.abstractions.9.0.8.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Analyzers/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2EYStCXt4Hi9p3J3EYMQbItJDtASJd064Kcs8C8hj8Jt5srILrR9qlaL0Ryvk8NrWQoCQvIELsmiuqLEZMLvGA==", + "path": "microsoft.entityframeworkcore.analyzers/9.0.8", + "hashPath": "microsoft.entityframeworkcore.analyzers.9.0.8.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Design/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-02e8OcoumSUAES3VkXrMT9EnNCUKWJoifn5+8fFEbAtRhKL3xg2a/Mj6rsAUGF7tkYFox6oKzJCn0jbm6b8Lbw==", + "path": "microsoft.entityframeworkcore.design/9.0.8", + "hashPath": "microsoft.entityframeworkcore.design.9.0.8.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Relational/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OVhfyxiHxMvYpwQ8Jy3YZi4koy6TK5/Q7C1oq3z6db+HEGuu6x9L1BX5zDIdJxxlRePMyO4D8ORiXj/D7+MUqw==", + "path": "microsoft.entityframeworkcore.relational/9.0.8", + "hashPath": "microsoft.entityframeworkcore.relational.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Abstractions/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4h7bsVoKoiK+SlPM+euX/ayGnKZhl47pPCidLTiio9xyG+vgVVfcYxcYQgjm0SCrdSxjG0EGIAKF8EFr3G8Ifw==", + "path": "microsoft.extensions.caching.abstractions/9.0.8", + "hashPath": "microsoft.extensions.caching.abstractions.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Memory/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-grR+oPyj8HVn4DT8CFUUdSw2pZZKS13KjytFe4txpHQliGM1GEDotohmjgvyl3hm7RFB3FRqvbouEX3/1ewp5A==", + "path": "microsoft.extensions.caching.memory/9.0.8", + "hashPath": "microsoft.extensions.caching.memory.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yNou2KM35RvzOh4vUFtl2l33rWPvOCoba+nzEDJ+BgD8aOL/jew4WPCibQvntRfOJ2pJU8ARygSMD+pdjvDHuA==", + "path": "microsoft.extensions.configuration.abstractions/9.0.8", + "hashPath": "microsoft.extensions.configuration.abstractions.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JJjI2Fa+QtZcUyuNjbKn04OjIUX5IgFGFu/Xc+qvzh1rXdZHLcnqqVXhR4093bGirTwacRlHiVg1XYI9xum6QQ==", + "path": "microsoft.extensions.dependencyinjection/9.0.8", + "hashPath": "microsoft.extensions.dependencyinjection.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xY3lTjj4+ZYmiKIkyWitddrp1uL5uYiweQjqo4BKBw01ZC4HhcfgLghDpPZcUlppgWAFqFy9SgkiYWOMx365pw==", + "path": "microsoft.extensions.dependencyinjection.abstractions/9.0.8", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyModel/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3CW02zNjyqJ2eORo8Zkznpw6+QvK+tYUKZgKuKuAIYdy73TRFvpaqCwYws1k6/lMSJ7ZqABfWn0/wa5bRsIJ4w==", + "path": "microsoft.extensions.dependencymodel/9.0.8", + "hashPath": "microsoft.extensions.dependencymodel.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Identity.Core/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-giUYz84GHAizDucZp5vWAusDO2s9Jrrg2jQ6HUQNGs5HQMKJVobLPMQSiyg8R4yecH0pIc0QjANh0B/Kw13BHA==", + "path": "microsoft.extensions.identity.core/9.0.8", + "hashPath": "microsoft.extensions.identity.core.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Identity.Stores/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sycaHcq78yI591+KxEdd53a7pJGQEl9H/wDsFkaPNE9g7loyq8vufPcc/9RH3KlGt5joR5Ey7PdoRSrlLjCgJg==", + "path": "microsoft.extensions.identity.stores/9.0.8", + "hashPath": "microsoft.extensions.identity.stores.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Z/7ze+0iheT7FJeZPqJKARYvyC2bmwu3whbm/48BJjdlGVvgDguoCqJIkI/67NkroTYobd5geai1WheNQvWrgA==", + "path": "microsoft.extensions.logging/9.0.8", + "hashPath": "microsoft.extensions.logging.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pYnAffJL7ARD/HCnnPvnFKSIHnTSmWz84WIlT9tPeQ4lHNiu0Az7N/8itihWvcF8sT+VVD5lq8V+ckMzu4SbOw==", + "path": "microsoft.extensions.logging.abstractions/9.0.8", + "hashPath": "microsoft.extensions.logging.abstractions.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Options/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OmTaQ0v4gxGQkehpwWIqPoEiwsPuG/u4HUsbOFoWGx4DKET2AXzopnFe/fE608FIhzc/kcg2p8JdyMRCCUzitQ==", + "path": "microsoft.extensions.options/9.0.8", + "hashPath": "microsoft.extensions.options.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tizSIOEsIgSNSSh+hKeUVPK7xmTIjR8s+mJWOu1KXV3htvNQiPMFRMO17OdI1y/4ZApdBVk49u/08QGC9yvLug==", + "path": "microsoft.extensions.primitives/9.0.8", + "hashPath": "microsoft.extensions.primitives.9.0.8.nupkg.sha512" + }, + "Microsoft.Win32.Registry/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", + "path": "microsoft.win32.registry/4.7.0", + "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512" + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==", + "path": "microsoft.win32.systemevents/6.0.0", + "hashPath": "microsoft.win32.systemevents.6.0.0.nupkg.sha512" + }, + "Mono.TextTemplating/3.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YqueG52R/Xej4VVbKuRIodjiAhV0HR/XVbLbNrJhCZnzjnSjgMJ/dCdV0akQQxavX6hp/LC6rqLGLcXeQYU7XA==", + "path": "mono.texttemplating/3.0.0", + "hashPath": "mono.texttemplating.3.0.0.nupkg.sha512" + }, + "Npgsql/9.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tPvY61CxOAWxNsKLEBg+oR646X4Bc8UmyQ/tJszL/7mEmIXQnnBhVJZrZEEUv0Bstu0mEsHZD5At3EO8zQRAYw==", + "path": "npgsql/9.0.3", + "hashPath": "npgsql.9.0.3.nupkg.sha512" + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/9.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mw5vcY2IEc7L+IeGrxpp/J5OSnCcjkjAgJYCm/eD52wpZze8zsSifdqV7zXslSMmfJG2iIUGZyo3KuDtEFKwMQ==", + "path": "npgsql.entityframeworkcore.postgresql/9.0.4", + "hashPath": "npgsql.entityframeworkcore.postgresql.9.0.4.nupkg.sha512" + }, + "runtime.native.System.Data.SqlClient.sni/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9kyFSIdN3T0qjDQ2R0HRXYIhS3l5psBzQi6qqhdLz+SzFyEy4sVxNOke+yyYv8Cu8rPER12c3RDjLT8wF3WBYQ==", + "path": "runtime.native.system.data.sqlclient.sni/4.7.0", + "hashPath": "runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512" + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==", + "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0", + "hashPath": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==", + "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0", + "hashPath": "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==", + "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0", + "hashPath": "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" + }, + "System.CodeDom/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CPc6tWO1LAer3IzfZufDBRL+UZQcj5uS207NHALQzP84Vp/z6wF0Aa0YZImOQY8iStY0A2zI/e3ihKNPfUm8XA==", + "path": "system.codedom/6.0.0", + "hashPath": "system.codedom.6.0.0.nupkg.sha512" + }, + "System.Collections.Immutable/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dQPcs0U1IKnBdRDBkrCTi1FoajSTBzLcVTpjO4MBCMC7f4pDOIPzgBoX8JjG7X6uZRJ8EBxsi8+DR1JuwjnzOQ==", + "path": "system.collections.immutable/7.0.0", + "hashPath": "system.collections.immutable.7.0.0.nupkg.sha512" + }, + "System.ComponentModel.Annotations/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==", + "path": "system.componentmodel.annotations/5.0.0", + "hashPath": "system.componentmodel.annotations.5.0.0.nupkg.sha512" + }, + "System.Composition/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tRwgcAkDd85O8Aq6zHDANzQaq380cek9lbMg5Qma46u5BZXq/G+XvIYmu+UI+BIIZ9zssXLYrkTykEqxxvhcmg==", + "path": "system.composition/7.0.0", + "hashPath": "system.composition.7.0.0.nupkg.sha512" + }, + "System.Composition.AttributedModel/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2QzClqjElKxgI1jK1Jztnq44/8DmSuTSGGahXqQ4TdEV0h9s2KikQZIgcEqVzR7OuWDFPGLHIprBJGQEPr8fAQ==", + "path": "system.composition.attributedmodel/7.0.0", + "hashPath": "system.composition.attributedmodel.7.0.0.nupkg.sha512" + }, + "System.Composition.Convention/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IMhTlpCs4HmlD8B+J8/kWfwX7vrBBOs6xyjSTzBlYSs7W4OET4tlkR/Sg9NG8jkdJH9Mymq0qGdYS1VPqRTBnQ==", + "path": "system.composition.convention/7.0.0", + "hashPath": "system.composition.convention.7.0.0.nupkg.sha512" + }, + "System.Composition.Hosting/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eB6gwN9S+54jCTBJ5bpwMOVerKeUfGGTYCzz3QgDr1P55Gg/Wb27ShfPIhLMjmZ3MoAKu8uUSv6fcCdYJTN7Bg==", + "path": "system.composition.hosting/7.0.0", + "hashPath": "system.composition.hosting.7.0.0.nupkg.sha512" + }, + "System.Composition.Runtime/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aZJ1Zr5Txe925rbo4742XifEyW0MIni1eiUebmcrP3HwLXZ3IbXUj4MFMUH/RmnJOAQiS401leg/2Sz1MkApDw==", + "path": "system.composition.runtime/7.0.0", + "hashPath": "system.composition.runtime.7.0.0.nupkg.sha512" + }, + "System.Composition.TypedParts/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZK0KNPfbtxVceTwh+oHNGUOYV2WNOHReX2AXipuvkURC7s/jPwoWfsu3SnDBDgofqbiWr96geofdQ2erm/KTHg==", + "path": "system.composition.typedparts/7.0.0", + "hashPath": "system.composition.typedparts.7.0.0.nupkg.sha512" + }, + "System.Configuration.ConfigurationManager/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jXw9MlUu/kRfEU0WyTptAVueupqIeE3/rl0EZDMlf8pcvJnitQ8HeVEp69rZdaStXwTV72boi/Bhw8lOeO+U2w==", + "path": "system.configuration.configurationmanager/6.0.1", + "hashPath": "system.configuration.configurationmanager.6.0.1.nupkg.sha512" + }, + "System.Data.SqlClient/4.8.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2Ij/LCaTQRyAi5lAv7UUTV9R2FobC8xN9mE0fXBZohum/xLl8IZVmE98Rq5ugQHjCgTBRKqpXRb4ORulRdA6Ig==", + "path": "system.data.sqlclient/4.8.6", + "hashPath": "system.data.sqlclient.4.8.6.nupkg.sha512" + }, + "System.Drawing.Common/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==", + "path": "system.drawing.common/6.0.0", + "hashPath": "system.drawing.common.6.0.0.nupkg.sha512" + }, + "System.IO.Pipelines/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jRn6JYnNPW6xgQazROBLSfpdoczRw694vO5kKvMcNnpXuolEixUyw6IBuBs2Y2mlSX/LdLvyyWmfXhaI3ND1Yg==", + "path": "system.io.pipelines/7.0.0", + "hashPath": "system.io.pipelines.7.0.0.nupkg.sha512" + }, + "System.Reflection.Metadata/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MclTG61lsD9sYdpNz9xsKBzjsmsfCtcMZYXz/IUr2zlhaTaABonlr1ESeompTgM+Xk+IwtGYU7/voh3YWB/fWw==", + "path": "system.reflection.metadata/7.0.0", + "hashPath": "system.reflection.metadata.7.0.0.nupkg.sha512" + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" + }, + "System.Security.AccessControl/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==", + "path": "system.security.accesscontrol/6.0.0", + "hashPath": "system.security.accesscontrol.6.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.ProtectedData/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==", + "path": "system.security.cryptography.protecteddata/6.0.0", + "hashPath": "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512" + }, + "System.Security.Permissions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==", + "path": "system.security.permissions/6.0.0", + "hashPath": "system.security.permissions.6.0.0.nupkg.sha512" + }, + "System.Security.Principal.Windows/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==", + "path": "system.security.principal.windows/4.7.0", + "hashPath": "system.security.principal.windows.4.7.0.nupkg.sha512" + }, + "System.Text.Json/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mIQir9jBqk0V7X0Nw5hzPJZC8DuGdf+2DS3jAVsr6rq5+/VyH5rza0XGcONJUWBrZ+G6BCwNyjWYd9lncBu48A==", + "path": "system.text.json/9.0.8", + "hashPath": "system.text.json.9.0.8.nupkg.sha512" + }, + "System.Threading.Channels/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qmeeYNROMsONF6ndEZcIQ+VxR4Q/TX/7uIVLJqtwIWL7dDWeh0l1UIqgo4wYyjG//5lUNhwkLDSFl+pAWO6oiA==", + "path": "system.threading.channels/7.0.0", + "hashPath": "system.threading.channels.7.0.0.nupkg.sha512" + }, + "System.Windows.Extensions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==", + "path": "system.windows.extensions/6.0.0", + "hashPath": "system.windows.extensions.6.0.0.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/OpenArchival.Blazor.FileViewer/bin/Debug/net9.0/OpenArchival.DataAccess.dll b/OpenArchival.Blazor.FileViewer/bin/Debug/net9.0/OpenArchival.DataAccess.dll new file mode 100644 index 0000000..0a0293e Binary files /dev/null and b/OpenArchival.Blazor.FileViewer/bin/Debug/net9.0/OpenArchival.DataAccess.dll differ diff --git a/OpenArchival.Blazor.FileViewer/bin/Debug/net9.0/OpenArchival.DataAccess.exe b/OpenArchival.Blazor.FileViewer/bin/Debug/net9.0/OpenArchival.DataAccess.exe new file mode 100644 index 0000000..0caa7a8 Binary files /dev/null and b/OpenArchival.Blazor.FileViewer/bin/Debug/net9.0/OpenArchival.DataAccess.exe differ diff --git a/OpenArchival.Blazor.FileViewer/bin/Debug/net9.0/OpenArchival.DataAccess.pdb b/OpenArchival.Blazor.FileViewer/bin/Debug/net9.0/OpenArchival.DataAccess.pdb new file mode 100644 index 0000000..7e038b6 Binary files /dev/null and b/OpenArchival.Blazor.FileViewer/bin/Debug/net9.0/OpenArchival.DataAccess.pdb differ diff --git a/OpenArchival.Blazor.FileViewer/bin/Debug/net9.0/OpenArchival.DataAccess.runtimeconfig.json b/OpenArchival.Blazor.FileViewer/bin/Debug/net9.0/OpenArchival.DataAccess.runtimeconfig.json new file mode 100644 index 0000000..1f6a32f --- /dev/null +++ b/OpenArchival.Blazor.FileViewer/bin/Debug/net9.0/OpenArchival.DataAccess.runtimeconfig.json @@ -0,0 +1,20 @@ +{ + "runtimeOptions": { + "tfm": "net9.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "9.0.0" + }, + { + "name": "Microsoft.AspNetCore.App", + "version": "9.0.0" + } + ], + "configProperties": { + "System.GC.Server": true, + "System.Reflection.NullabilityInfoContext.IsSupported": true, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/OpenArchival.Blazor.FileViewer/bin/Debug/net9.0/OpenArchival.DataAccess.staticwebassets.endpoints.json b/OpenArchival.Blazor.FileViewer/bin/Debug/net9.0/OpenArchival.DataAccess.staticwebassets.endpoints.json new file mode 100644 index 0000000..5576e88 --- /dev/null +++ b/OpenArchival.Blazor.FileViewer/bin/Debug/net9.0/OpenArchival.DataAccess.staticwebassets.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[]} \ No newline at end of file diff --git a/OpenArchival.Blazor.FileViewer/bin/Debug/net9.0/OpenArchival.FileViewer.deps.json b/OpenArchival.Blazor.FileViewer/bin/Debug/net9.0/OpenArchival.FileViewer.deps.json new file mode 100644 index 0000000..0aa48ff --- /dev/null +++ b/OpenArchival.Blazor.FileViewer/bin/Debug/net9.0/OpenArchival.FileViewer.deps.json @@ -0,0 +1,949 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v9.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v9.0": { + "OpenArchival.FileViewer/1.0.0": { + "dependencies": { + "CodeBeam.MudExtensions": "6.3.0", + "MudBlazor": "8.13.0", + "OpenArchival.DataAccess": "1.0.0" + }, + "runtime": { + "OpenArchival.FileViewer.dll": {} + } + }, + "BuildBundlerMinifier/3.2.449": {}, + "CodeBeam.MudExtensions/6.3.0": { + "dependencies": { + "BuildBundlerMinifier": "3.2.449", + "CsvHelper": "30.0.1", + "Microsoft.AspNetCore.Components": "9.0.1", + "Microsoft.AspNetCore.Components.Web": "9.0.1", + "MudBlazor": "8.13.0" + }, + "runtime": { + "lib/net7.0/CodeBeam.MudExtensions.dll": { + "assemblyVersion": "6.3.0.0", + "fileVersion": "6.3.0.0" + } + } + }, + "CsvHelper/30.0.1": { + "runtime": { + "lib/net6.0/CsvHelper.dll": { + "assemblyVersion": "30.0.0.0", + "fileVersion": "30.0.1.0" + } + } + }, + "EntityFramework/6.5.1": { + "dependencies": { + "Microsoft.CSharp": "4.7.0", + "System.CodeDom": "6.0.0", + "System.ComponentModel.Annotations": "5.0.0", + "System.Configuration.ConfigurationManager": "6.0.1", + "System.Data.SqlClient": "4.8.6" + }, + "runtime": { + "lib/netstandard2.1/EntityFramework.SqlServer.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.500.124.31603" + }, + "lib/netstandard2.1/EntityFramework.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.500.124.31603" + } + } + }, + "Microsoft.AspNetCore.Authorization/9.0.1": { + "dependencies": { + "Microsoft.AspNetCore.Metadata": "9.0.1", + "Microsoft.Extensions.Logging.Abstractions": "9.0.8", + "Microsoft.Extensions.Options": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Authorization.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.124.61009" + } + } + }, + "Microsoft.AspNetCore.Components/9.0.1": { + "dependencies": { + "Microsoft.AspNetCore.Authorization": "9.0.1", + "Microsoft.AspNetCore.Components.Analyzers": "9.0.1" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Components.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.124.61009" + } + } + }, + "Microsoft.AspNetCore.Components.Analyzers/9.0.1": {}, + "Microsoft.AspNetCore.Components.Forms/9.0.1": { + "dependencies": { + "Microsoft.AspNetCore.Components": "9.0.1" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Components.Forms.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.124.61009" + } + } + }, + "Microsoft.AspNetCore.Components.Web/9.0.1": { + "dependencies": { + "Microsoft.AspNetCore.Components": "9.0.1", + "Microsoft.AspNetCore.Components.Forms": "9.0.1", + "Microsoft.Extensions.DependencyInjection": "9.0.8", + "Microsoft.Extensions.Primitives": "9.0.8", + "Microsoft.JSInterop": "9.0.1" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Components.Web.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.124.61009" + } + } + }, + "Microsoft.AspNetCore.Cryptography.Internal/9.0.8": { + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Cryptography.Internal.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36808" + } + } + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/9.0.8": { + "dependencies": { + "Microsoft.AspNetCore.Cryptography.Internal": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36808" + } + } + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore/9.0.8": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Relational": "9.0.8", + "Microsoft.Extensions.Identity.Stores": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": { + "assemblyVersion": "9.0.8.0", + "fileVersion": "9.0.825.36808" + } + } + }, + "Microsoft.AspNetCore.Metadata/9.0.1": { + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Metadata.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.124.61009" + } + } + }, + "Microsoft.CSharp/4.7.0": {}, + "Microsoft.EntityFrameworkCore/9.0.8": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "9.0.8", + "Microsoft.EntityFrameworkCore.Analyzers": "9.0.8", + "Microsoft.Extensions.Caching.Memory": "9.0.8", + "Microsoft.Extensions.Logging": "9.0.8" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.dll": { + "assemblyVersion": "9.0.8.0", + "fileVersion": "9.0.825.36802" + } + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/9.0.8": { + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "assemblyVersion": "9.0.8.0", + "fileVersion": "9.0.825.36802" + } + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/9.0.8": {}, + "Microsoft.EntityFrameworkCore.Relational/9.0.8": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "9.0.8", + "Microsoft.Extensions.Caching.Memory": "9.0.8", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.8", + "Microsoft.Extensions.Logging": "9.0.8" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "assemblyVersion": "9.0.8.0", + "fileVersion": "9.0.825.36802" + } + } + }, + "Microsoft.Extensions.Caching.Abstractions/9.0.8": { + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Extensions.Caching.Memory/9.0.8": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "9.0.8", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8", + "Microsoft.Extensions.Logging.Abstractions": "9.0.8", + "Microsoft.Extensions.Options": "9.0.8", + "Microsoft.Extensions.Primitives": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Caching.Memory.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.8": { + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Extensions.DependencyInjection/9.0.8": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.8": { + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Extensions.Identity.Core/9.0.8": { + "dependencies": { + "Microsoft.AspNetCore.Cryptography.KeyDerivation": "9.0.8", + "Microsoft.Extensions.Logging": "9.0.8", + "Microsoft.Extensions.Options": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Identity.Core.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36808" + } + } + }, + "Microsoft.Extensions.Identity.Stores/9.0.8": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "9.0.8", + "Microsoft.Extensions.Identity.Core": "9.0.8", + "Microsoft.Extensions.Logging": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Identity.Stores.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36808" + } + } + }, + "Microsoft.Extensions.Localization/9.0.1": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8", + "Microsoft.Extensions.Localization.Abstractions": "9.0.1", + "Microsoft.Extensions.Logging.Abstractions": "9.0.8", + "Microsoft.Extensions.Options": "9.0.8" + }, + "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.8": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "9.0.8", + "Microsoft.Extensions.Logging.Abstractions": "9.0.8", + "Microsoft.Extensions.Options": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.8": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Extensions.Options/9.0.8": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8", + "Microsoft.Extensions.Primitives": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Extensions.Primitives/9.0.8": { + "runtime": { + "lib/net9.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.JSInterop/9.0.1": { + "runtime": { + "lib/net9.0/Microsoft.JSInterop.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.124.61009" + } + } + }, + "Microsoft.Win32.Registry/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "runtime": { + "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "MudBlazor/8.13.0": { + "dependencies": { + "Microsoft.AspNetCore.Components": "9.0.1", + "Microsoft.AspNetCore.Components.Web": "9.0.1", + "Microsoft.Extensions.Localization": "9.0.1" + }, + "runtime": { + "lib/net9.0/MudBlazor.dll": { + "assemblyVersion": "8.13.0.0", + "fileVersion": "8.13.0.0" + } + } + }, + "Npgsql/9.0.3": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "9.0.8" + }, + "runtime": { + "lib/net8.0/Npgsql.dll": { + "assemblyVersion": "9.0.3.0", + "fileVersion": "9.0.3.0" + } + } + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/9.0.4": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "9.0.8", + "Microsoft.EntityFrameworkCore.Relational": "9.0.8", + "Npgsql": "9.0.3" + }, + "runtime": { + "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { + "assemblyVersion": "9.0.4.0", + "fileVersion": "9.0.4.0" + } + } + }, + "runtime.native.System.Data.SqlClient.sni/4.7.0": { + "dependencies": { + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0" + } + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "runtimeTargets": { + "runtimes/win-arm64/native/sni.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "4.6.25512.1" + } + } + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "runtimeTargets": { + "runtimes/win-x64/native/sni.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "4.6.25512.1" + } + } + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "runtimeTargets": { + "runtimes/win-x86/native/sni.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "4.6.25512.1" + } + } + }, + "System.CodeDom/6.0.0": { + "runtime": { + "lib/net6.0/System.CodeDom.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.ComponentModel.Annotations/5.0.0": {}, + "System.Configuration.ConfigurationManager/6.0.1": { + "dependencies": { + "System.Security.Cryptography.ProtectedData": "6.0.0", + "System.Security.Permissions": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.922.41905" + } + } + }, + "System.Data.SqlClient/4.8.6": { + "dependencies": { + "Microsoft.Win32.Registry": "4.7.0", + "System.Security.Principal.Windows": "4.7.0", + "runtime.native.System.Data.SqlClient.sni": "4.7.0" + }, + "runtime": { + "lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "assemblyVersion": "4.6.1.6", + "fileVersion": "4.700.23.52603" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "4.6.1.6", + "fileVersion": "4.700.23.52603" + }, + "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.6.1.6", + "fileVersion": "4.700.23.52603" + } + } + }, + "System.Drawing.Common/6.0.0": { + "dependencies": { + "Microsoft.Win32.SystemEvents": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Drawing.Common.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + }, + "runtimes/win/lib/net6.0/System.Drawing.Common.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Security.AccessControl/6.0.0": {}, + "System.Security.Cryptography.ProtectedData/6.0.0": { + "runtime": { + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Security.Permissions/6.0.0": { + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Windows.Extensions": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Security.Permissions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Security.Principal.Windows/4.7.0": {}, + "System.Windows.Extensions/6.0.0": { + "dependencies": { + "System.Drawing.Common": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Windows.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "OpenArchival.DataAccess/1.0.0": { + "dependencies": { + "EntityFramework": "6.5.1", + "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "9.0.8", + "Microsoft.EntityFrameworkCore": "9.0.8", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8", + "Npgsql": "9.0.3", + "Npgsql.EntityFrameworkCore.PostgreSQL": "9.0.4" + }, + "runtime": { + "OpenArchival.DataAccess.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + } + } + }, + "libraries": { + "OpenArchival.FileViewer/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "BuildBundlerMinifier/3.2.449": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uA9sYDy4VepL3xwzBTLcP2LyuVYMt0ZIT3gaSiXvGoX15Ob+rOP+hGydhevlSVd+rFo+Y+VQFEHDuWU8HBW+XA==", + "path": "buildbundlerminifier/3.2.449", + "hashPath": "buildbundlerminifier.3.2.449.nupkg.sha512" + }, + "CodeBeam.MudExtensions/6.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-U5J0IlIg8R166hm9RwVjjbCtbBs3ixLev94NmfQHaBVUn3P4un+DoirfUjcUs96wvKb5K9H9ou39Yq+wBO11IA==", + "path": "codebeam.mudextensions/6.3.0", + "hashPath": "codebeam.mudextensions.6.3.0.nupkg.sha512" + }, + "CsvHelper/30.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rcZtgbWR+As4G3Vpgx0AMNmShGuQLFjkHAPIIflzrfkJCx8/AOd4m96ZRmiU1Wi39qS5UVjV0P8qdgqOo5Cwyg==", + "path": "csvhelper/30.0.1", + "hashPath": "csvhelper.30.0.1.nupkg.sha512" + }, + "EntityFramework/6.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sQRP2lWg1i3aAGWqdliAM8zrGx7LHMUk+9/MoxUjwfTZYGMXvZ2JYZTlyTm1PqDxvn3c9E3U76TWDON7Y5+CVA==", + "path": "entityframework/6.5.1", + "hashPath": "entityframework.6.5.1.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authorization/9.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WgLlLBlMczb2+QLNG6sM95OUZ0EBztz60k/N75tjIgpyu0SdpIfYytAmX/7JJAjRTZF0c/CrWaQV+SH9FuGsrA==", + "path": "microsoft.aspnetcore.authorization/9.0.1", + "hashPath": "microsoft.aspnetcore.authorization.9.0.1.nupkg.sha512" + }, + "Microsoft.AspNetCore.Components/9.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6pwfbQKNtvPkbF4tCGiAKGyt6BVpu58xAXz7u2YXcUKTNmNxrymbG1mEyMc0EPzVdnquDDqTyfXM3mC1EJycxQ==", + "path": "microsoft.aspnetcore.components/9.0.1", + "hashPath": "microsoft.aspnetcore.components.9.0.1.nupkg.sha512" + }, + "Microsoft.AspNetCore.Components.Analyzers/9.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I8Rs4LXT5UQxM5Nin2+Oj8aSY2heszSZ3EyTLgt3mxmfiRPrVO7D8NNSsf1voI2Gb0qFJceof/J5c9E+nfNuHw==", + "path": "microsoft.aspnetcore.components.analyzers/9.0.1", + "hashPath": "microsoft.aspnetcore.components.analyzers.9.0.1.nupkg.sha512" + }, + "Microsoft.AspNetCore.Components.Forms/9.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KyULVU32bLz74LWDwPEwNUEllTehzWJuM7YAsz80rMKEzvR0K8cRjRzO0fnN/nfydMeLRRlbI0xj8wnEAymLVw==", + "path": "microsoft.aspnetcore.components.forms/9.0.1", + "hashPath": "microsoft.aspnetcore.components.forms.9.0.1.nupkg.sha512" + }, + "Microsoft.AspNetCore.Components.Web/9.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LI0vjYEd9MaDZPDQxPCn4gGYDkEC5U9rp1nWZo7rPozJxgTG2zU3WERujxTi2LeAC2ZzdXlOVCrUyPQ55LZV2A==", + "path": "microsoft.aspnetcore.components.web/9.0.1", + "hashPath": "microsoft.aspnetcore.components.web.9.0.1.nupkg.sha512" + }, + "Microsoft.AspNetCore.Cryptography.Internal/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NwGO0wh/IjEthBLGA6fWfIiftsNF/paA5RxWp6ji4wWazetJgQ4truR9nU2thAzzFLiXqlg8vGjdVDA8bHu0zA==", + "path": "microsoft.aspnetcore.cryptography.internal/9.0.8", + "hashPath": "microsoft.aspnetcore.cryptography.internal.9.0.8.nupkg.sha512" + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gK70xxXYwwPiXYKYVmLYMuIO5EOGrRtQghmM6PkgtZ/0lgLEjIs//xgSLvZkV/mroNHA1DEqTcqscEj9OzZ1IA==", + "path": "microsoft.aspnetcore.cryptography.keyderivation/9.0.8", + "hashPath": "microsoft.aspnetcore.cryptography.keyderivation.9.0.8.nupkg.sha512" + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-z4q9roxXMQePwFM5tXXZS5sKkU78yYXVkj56NYYx9xKe+mxGkJMV1MaO0GFE6HnnM8bE3Xxhs0hAPw2jKbse6w==", + "path": "microsoft.aspnetcore.identity.entityframeworkcore/9.0.8", + "hashPath": "microsoft.aspnetcore.identity.entityframeworkcore.9.0.8.nupkg.sha512" + }, + "Microsoft.AspNetCore.Metadata/9.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-EZnHifamF7IFEIyjAKMtJM3I/94OIe72i3P09v5oL0twmsmfQwal6Ni3m8lbB5mge3jWFhMozeW+rUdRSqnXRQ==", + "path": "microsoft.aspnetcore.metadata/9.0.1", + "hashPath": "microsoft.aspnetcore.metadata.9.0.1.nupkg.sha512" + }, + "Microsoft.CSharp/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", + "path": "microsoft.csharp/4.7.0", + "hashPath": "microsoft.csharp.4.7.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bNGdPhN762+BIIO5MFYLjafRqkSS1MqLOc/erd55InvLnFxt9H3N5JNsuag1ZHyBor1VtD42U0CHpgqkWeAYgQ==", + "path": "microsoft.entityframeworkcore/9.0.8", + "hashPath": "microsoft.entityframeworkcore.9.0.8.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Abstractions/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-B2yfAIQRRAQ4zvvWqh+HudD+juV3YoLlpXnrog3tU0PM9AFpuq6xo0+mEglN1P43WgdcUiF+65CWBcZe35s15Q==", + "path": "microsoft.entityframeworkcore.abstractions/9.0.8", + "hashPath": "microsoft.entityframeworkcore.abstractions.9.0.8.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Analyzers/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2EYStCXt4Hi9p3J3EYMQbItJDtASJd064Kcs8C8hj8Jt5srILrR9qlaL0Ryvk8NrWQoCQvIELsmiuqLEZMLvGA==", + "path": "microsoft.entityframeworkcore.analyzers/9.0.8", + "hashPath": "microsoft.entityframeworkcore.analyzers.9.0.8.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Relational/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OVhfyxiHxMvYpwQ8Jy3YZi4koy6TK5/Q7C1oq3z6db+HEGuu6x9L1BX5zDIdJxxlRePMyO4D8ORiXj/D7+MUqw==", + "path": "microsoft.entityframeworkcore.relational/9.0.8", + "hashPath": "microsoft.entityframeworkcore.relational.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Abstractions/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4h7bsVoKoiK+SlPM+euX/ayGnKZhl47pPCidLTiio9xyG+vgVVfcYxcYQgjm0SCrdSxjG0EGIAKF8EFr3G8Ifw==", + "path": "microsoft.extensions.caching.abstractions/9.0.8", + "hashPath": "microsoft.extensions.caching.abstractions.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Memory/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-grR+oPyj8HVn4DT8CFUUdSw2pZZKS13KjytFe4txpHQliGM1GEDotohmjgvyl3hm7RFB3FRqvbouEX3/1ewp5A==", + "path": "microsoft.extensions.caching.memory/9.0.8", + "hashPath": "microsoft.extensions.caching.memory.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yNou2KM35RvzOh4vUFtl2l33rWPvOCoba+nzEDJ+BgD8aOL/jew4WPCibQvntRfOJ2pJU8ARygSMD+pdjvDHuA==", + "path": "microsoft.extensions.configuration.abstractions/9.0.8", + "hashPath": "microsoft.extensions.configuration.abstractions.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JJjI2Fa+QtZcUyuNjbKn04OjIUX5IgFGFu/Xc+qvzh1rXdZHLcnqqVXhR4093bGirTwacRlHiVg1XYI9xum6QQ==", + "path": "microsoft.extensions.dependencyinjection/9.0.8", + "hashPath": "microsoft.extensions.dependencyinjection.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xY3lTjj4+ZYmiKIkyWitddrp1uL5uYiweQjqo4BKBw01ZC4HhcfgLghDpPZcUlppgWAFqFy9SgkiYWOMx365pw==", + "path": "microsoft.extensions.dependencyinjection.abstractions/9.0.8", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Identity.Core/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-giUYz84GHAizDucZp5vWAusDO2s9Jrrg2jQ6HUQNGs5HQMKJVobLPMQSiyg8R4yecH0pIc0QjANh0B/Kw13BHA==", + "path": "microsoft.extensions.identity.core/9.0.8", + "hashPath": "microsoft.extensions.identity.core.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Identity.Stores/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sycaHcq78yI591+KxEdd53a7pJGQEl9H/wDsFkaPNE9g7loyq8vufPcc/9RH3KlGt5joR5Ey7PdoRSrlLjCgJg==", + "path": "microsoft.extensions.identity.stores/9.0.8", + "hashPath": "microsoft.extensions.identity.stores.9.0.8.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.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Z/7ze+0iheT7FJeZPqJKARYvyC2bmwu3whbm/48BJjdlGVvgDguoCqJIkI/67NkroTYobd5geai1WheNQvWrgA==", + "path": "microsoft.extensions.logging/9.0.8", + "hashPath": "microsoft.extensions.logging.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pYnAffJL7ARD/HCnnPvnFKSIHnTSmWz84WIlT9tPeQ4lHNiu0Az7N/8itihWvcF8sT+VVD5lq8V+ckMzu4SbOw==", + "path": "microsoft.extensions.logging.abstractions/9.0.8", + "hashPath": "microsoft.extensions.logging.abstractions.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Options/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OmTaQ0v4gxGQkehpwWIqPoEiwsPuG/u4HUsbOFoWGx4DKET2AXzopnFe/fE608FIhzc/kcg2p8JdyMRCCUzitQ==", + "path": "microsoft.extensions.options/9.0.8", + "hashPath": "microsoft.extensions.options.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tizSIOEsIgSNSSh+hKeUVPK7xmTIjR8s+mJWOu1KXV3htvNQiPMFRMO17OdI1y/4ZApdBVk49u/08QGC9yvLug==", + "path": "microsoft.extensions.primitives/9.0.8", + "hashPath": "microsoft.extensions.primitives.9.0.8.nupkg.sha512" + }, + "Microsoft.JSInterop/9.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/xBwIfb0YoC2Muv6EsHjxpqZw2aKv94+i0g0FWZvqvGv3DeAy+8wipAuECVvKYEs2EIclRD41bjajHLoD6mTtw==", + "path": "microsoft.jsinterop/9.0.1", + "hashPath": "microsoft.jsinterop.9.0.1.nupkg.sha512" + }, + "Microsoft.Win32.Registry/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", + "path": "microsoft.win32.registry/4.7.0", + "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512" + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==", + "path": "microsoft.win32.systemevents/6.0.0", + "hashPath": "microsoft.win32.systemevents.6.0.0.nupkg.sha512" + }, + "MudBlazor/8.13.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Y6JW93zf8tiVhMSkkL0mZ3ruqjOTNftvVoX3sik6NEnIye+Gs0FXI8rhXfrH2LU79Mw/fOtT5ms3L/Q4TKx2kA==", + "path": "mudblazor/8.13.0", + "hashPath": "mudblazor.8.13.0.nupkg.sha512" + }, + "Npgsql/9.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tPvY61CxOAWxNsKLEBg+oR646X4Bc8UmyQ/tJszL/7mEmIXQnnBhVJZrZEEUv0Bstu0mEsHZD5At3EO8zQRAYw==", + "path": "npgsql/9.0.3", + "hashPath": "npgsql.9.0.3.nupkg.sha512" + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/9.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mw5vcY2IEc7L+IeGrxpp/J5OSnCcjkjAgJYCm/eD52wpZze8zsSifdqV7zXslSMmfJG2iIUGZyo3KuDtEFKwMQ==", + "path": "npgsql.entityframeworkcore.postgresql/9.0.4", + "hashPath": "npgsql.entityframeworkcore.postgresql.9.0.4.nupkg.sha512" + }, + "runtime.native.System.Data.SqlClient.sni/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9kyFSIdN3T0qjDQ2R0HRXYIhS3l5psBzQi6qqhdLz+SzFyEy4sVxNOke+yyYv8Cu8rPER12c3RDjLT8wF3WBYQ==", + "path": "runtime.native.system.data.sqlclient.sni/4.7.0", + "hashPath": "runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512" + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==", + "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0", + "hashPath": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==", + "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0", + "hashPath": "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==", + "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0", + "hashPath": "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" + }, + "System.CodeDom/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CPc6tWO1LAer3IzfZufDBRL+UZQcj5uS207NHALQzP84Vp/z6wF0Aa0YZImOQY8iStY0A2zI/e3ihKNPfUm8XA==", + "path": "system.codedom/6.0.0", + "hashPath": "system.codedom.6.0.0.nupkg.sha512" + }, + "System.ComponentModel.Annotations/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==", + "path": "system.componentmodel.annotations/5.0.0", + "hashPath": "system.componentmodel.annotations.5.0.0.nupkg.sha512" + }, + "System.Configuration.ConfigurationManager/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jXw9MlUu/kRfEU0WyTptAVueupqIeE3/rl0EZDMlf8pcvJnitQ8HeVEp69rZdaStXwTV72boi/Bhw8lOeO+U2w==", + "path": "system.configuration.configurationmanager/6.0.1", + "hashPath": "system.configuration.configurationmanager.6.0.1.nupkg.sha512" + }, + "System.Data.SqlClient/4.8.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2Ij/LCaTQRyAi5lAv7UUTV9R2FobC8xN9mE0fXBZohum/xLl8IZVmE98Rq5ugQHjCgTBRKqpXRb4ORulRdA6Ig==", + "path": "system.data.sqlclient/4.8.6", + "hashPath": "system.data.sqlclient.4.8.6.nupkg.sha512" + }, + "System.Drawing.Common/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==", + "path": "system.drawing.common/6.0.0", + "hashPath": "system.drawing.common.6.0.0.nupkg.sha512" + }, + "System.Security.AccessControl/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==", + "path": "system.security.accesscontrol/6.0.0", + "hashPath": "system.security.accesscontrol.6.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.ProtectedData/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==", + "path": "system.security.cryptography.protecteddata/6.0.0", + "hashPath": "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512" + }, + "System.Security.Permissions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==", + "path": "system.security.permissions/6.0.0", + "hashPath": "system.security.permissions.6.0.0.nupkg.sha512" + }, + "System.Security.Principal.Windows/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==", + "path": "system.security.principal.windows/4.7.0", + "hashPath": "system.security.principal.windows.4.7.0.nupkg.sha512" + }, + "System.Windows.Extensions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==", + "path": "system.windows.extensions/6.0.0", + "hashPath": "system.windows.extensions.6.0.0.nupkg.sha512" + }, + "OpenArchival.DataAccess/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/OpenArchival.Blazor.FileViewer/bin/Debug/net9.0/OpenArchival.FileViewer.dll b/OpenArchival.Blazor.FileViewer/bin/Debug/net9.0/OpenArchival.FileViewer.dll new file mode 100644 index 0000000..9ccb197 Binary files /dev/null and b/OpenArchival.Blazor.FileViewer/bin/Debug/net9.0/OpenArchival.FileViewer.dll differ diff --git a/OpenArchival.Blazor.FileViewer/bin/Debug/net9.0/OpenArchival.FileViewer.pdb b/OpenArchival.Blazor.FileViewer/bin/Debug/net9.0/OpenArchival.FileViewer.pdb new file mode 100644 index 0000000..97ea8f1 Binary files /dev/null and b/OpenArchival.Blazor.FileViewer/bin/Debug/net9.0/OpenArchival.FileViewer.pdb differ diff --git a/OpenArchival.Blazor.FileViewer/bin/Debug/net9.0/OpenArchival.FileViewer.runtimeconfig.json b/OpenArchival.Blazor.FileViewer/bin/Debug/net9.0/OpenArchival.FileViewer.runtimeconfig.json new file mode 100644 index 0000000..6e29dbe --- /dev/null +++ b/OpenArchival.Blazor.FileViewer/bin/Debug/net9.0/OpenArchival.FileViewer.runtimeconfig.json @@ -0,0 +1,19 @@ +{ + "runtimeOptions": { + "tfm": "net9.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "9.0.0" + }, + { + "name": "Microsoft.AspNetCore.App", + "version": "9.0.0" + } + ], + "configProperties": { + "System.Reflection.NullabilityInfoContext.IsSupported": true, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/OpenArchival.Blazor.FileViewer/bin/Debug/net9.0/OpenArchival.FileViewer.staticwebassets.endpoints.json b/OpenArchival.Blazor.FileViewer/bin/Debug/net9.0/OpenArchival.FileViewer.staticwebassets.endpoints.json new file mode 100644 index 0000000..fa5861f --- /dev/null +++ b/OpenArchival.Blazor.FileViewer/bin/Debug/net9.0/OpenArchival.FileViewer.staticwebassets.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[{"Route":"OpenArchival.FileViewer.styles.css","AssetFile":"OpenArchival.FileViewer.styles.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.006329113924"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"157"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"HJRwOlRxvDQ6pOKMeSkhfi2XBCjwS502WsLcwM0lllA=\""},{"Name":"ETag","Value":"W/\"FjzuGdlsDKoQevTrlIL63uhdnocuk5HvQc5fTASoPAM=\""},{"Name":"Last-Modified","Value":"Tue, 07 Oct 2025 20:15:18 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FjzuGdlsDKoQevTrlIL63uhdnocuk5HvQc5fTASoPAM="}]},{"Route":"OpenArchival.FileViewer.styles.css","AssetFile":"OpenArchival.FileViewer.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"179"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"FjzuGdlsDKoQevTrlIL63uhdnocuk5HvQc5fTASoPAM=\""},{"Name":"Last-Modified","Value":"Tue, 07 Oct 2025 20:15:18 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FjzuGdlsDKoQevTrlIL63uhdnocuk5HvQc5fTASoPAM="}]},{"Route":"OpenArchival.FileViewer.styles.css.gz","AssetFile":"OpenArchival.FileViewer.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":"157"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"HJRwOlRxvDQ6pOKMeSkhfi2XBCjwS502WsLcwM0lllA=\""},{"Name":"Last-Modified","Value":"Tue, 07 Oct 2025 20:15:18 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-HJRwOlRxvDQ6pOKMeSkhfi2XBCjwS502WsLcwM0lllA="}]},{"Route":"OpenArchival.FileViewer.y5glfmno8n.styles.css","AssetFile":"OpenArchival.FileViewer.styles.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.006329113924"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"157"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"HJRwOlRxvDQ6pOKMeSkhfi2XBCjwS502WsLcwM0lllA=\""},{"Name":"ETag","Value":"W/\"FjzuGdlsDKoQevTrlIL63uhdnocuk5HvQc5fTASoPAM=\""},{"Name":"Last-Modified","Value":"Tue, 07 Oct 2025 20:15:18 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y5glfmno8n"},{"Name":"integrity","Value":"sha256-FjzuGdlsDKoQevTrlIL63uhdnocuk5HvQc5fTASoPAM="},{"Name":"label","Value":"OpenArchival.FileViewer.styles.css"}]},{"Route":"OpenArchival.FileViewer.y5glfmno8n.styles.css","AssetFile":"OpenArchival.FileViewer.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"179"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"FjzuGdlsDKoQevTrlIL63uhdnocuk5HvQc5fTASoPAM=\""},{"Name":"Last-Modified","Value":"Tue, 07 Oct 2025 20:15:18 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y5glfmno8n"},{"Name":"integrity","Value":"sha256-FjzuGdlsDKoQevTrlIL63uhdnocuk5HvQc5fTASoPAM="},{"Name":"label","Value":"OpenArchival.FileViewer.styles.css"}]},{"Route":"OpenArchival.FileViewer.y5glfmno8n.styles.css.gz","AssetFile":"OpenArchival.FileViewer.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":"157"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"HJRwOlRxvDQ6pOKMeSkhfi2XBCjwS502WsLcwM0lllA=\""},{"Name":"Last-Modified","Value":"Tue, 07 Oct 2025 20:15:18 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y5glfmno8n"},{"Name":"integrity","Value":"sha256-HJRwOlRxvDQ6pOKMeSkhfi2XBCjwS502WsLcwM0lllA="},{"Name":"label","Value":"OpenArchival.FileViewer.styles.css.gz"}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.css","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"21465"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk=\""},{"Name":"Last-Modified","Value":"Sun, 26 Feb 2023 14:08:26 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.css","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000295508274"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3383"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"6PJ7t7WR38pQTSYe6IR0pbqo2cIZK5wuW/w26kprtBg=\""},{"Name":"ETag","Value":"W/\"Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk=\""},{"Name":"Last-Modified","Value":"Tue, 07 Oct 2025 19:53:51 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.css.gz","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3383"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"6PJ7t7WR38pQTSYe6IR0pbqo2cIZK5wuW/w26kprtBg=\""},{"Name":"Last-Modified","Value":"Tue, 07 Oct 2025 19:53:51 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6PJ7t7WR38pQTSYe6IR0pbqo2cIZK5wuW/w26kprtBg="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.js","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"328"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc=\""},{"Name":"Last-Modified","Value":"Sun, 26 Feb 2023 14:08:26 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.js","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005076142132"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"196"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"B4PUgpr06+d3lAMWknp0EVkaGxPZJdpp5/UidGHzvnc=\""},{"Name":"ETag","Value":"W/\"FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc=\""},{"Name":"Last-Modified","Value":"Tue, 07 Oct 2025 19:53:51 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.js.gz","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"196"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"B4PUgpr06+d3lAMWknp0EVkaGxPZJdpp5/UidGHzvnc=\""},{"Name":"Last-Modified","Value":"Tue, 07 Oct 2025 19:53:51 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-B4PUgpr06+d3lAMWknp0EVkaGxPZJdpp5/UidGHzvnc="}]},{"Route":"_content/CodeBeam.MudExtensions/Mud_Secondary.png","AssetFile":"_content/CodeBeam.MudExtensions/Mud_Secondary.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4558"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"G3hYUw4Ps9P/IQ3lw2zu96RSZaOf4zU+4QkXkH8Xi3Y=\""},{"Name":"Last-Modified","Value":"Sat, 08 Oct 2022 09:55:02 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G3hYUw4Ps9P/IQ3lw2zu96RSZaOf4zU+4QkXkH8Xi3Y="}]},{"Route":"_content/MudBlazor/MudBlazor.min.css","AssetFile":"_content/MudBlazor/MudBlazor.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"606250"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0=\""},{"Name":"Last-Modified","Value":"Wed, 01 Oct 2025 21:51:05 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0="}]},{"Route":"_content/MudBlazor/MudBlazor.min.css","AssetFile":"_content/MudBlazor/MudBlazor.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015264845"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"65509"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"VcBMO3aXrzxl+jfWY+TaxPKsd3L0UWjeJZliEXOyzzI=\""},{"Name":"ETag","Value":"W/\"TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0=\""},{"Name":"Last-Modified","Value":"Tue, 07 Oct 2025 19:53:51 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0="}]},{"Route":"_content/MudBlazor/MudBlazor.min.css.gz","AssetFile":"_content/MudBlazor/MudBlazor.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"65509"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"VcBMO3aXrzxl+jfWY+TaxPKsd3L0UWjeJZliEXOyzzI=\""},{"Name":"Last-Modified","Value":"Tue, 07 Oct 2025 19:53:51 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VcBMO3aXrzxl+jfWY+TaxPKsd3L0UWjeJZliEXOyzzI="}]},{"Route":"_content/MudBlazor/MudBlazor.min.jk5eo7zo4m.css","AssetFile":"_content/MudBlazor/MudBlazor.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"606250"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0=\""},{"Name":"Last-Modified","Value":"Wed, 01 Oct 2025 21:51:05 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jk5eo7zo4m"},{"Name":"integrity","Value":"sha256-TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.css"}]},{"Route":"_content/MudBlazor/MudBlazor.min.js","AssetFile":"_content/MudBlazor/MudBlazor.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"75165"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw=\""},{"Name":"Last-Modified","Value":"Wed, 01 Oct 2025 21:51:05 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js","AssetFile":"_content/MudBlazor/MudBlazor.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000061150859"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16352"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"0BJxfo+EOJvNKoBv/2ahm4RKrPjv7PhB/R16C3XOHDo=\""},{"Name":"ETag","Value":"W/\"hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw=\""},{"Name":"Last-Modified","Value":"Tue, 07 Oct 2025 19:53:51 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js.gz","AssetFile":"_content/MudBlazor/MudBlazor.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16352"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"0BJxfo+EOJvNKoBv/2ahm4RKrPjv7PhB/R16C3XOHDo=\""},{"Name":"Last-Modified","Value":"Tue, 07 Oct 2025 19:53:51 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0BJxfo+EOJvNKoBv/2ahm4RKrPjv7PhB/R16C3XOHDo="}]},{"Route":"_content/MudBlazor/MudBlazor.min.tjzqk7tnel.js","AssetFile":"_content/MudBlazor/MudBlazor.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"75165"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw=\""},{"Name":"Last-Modified","Value":"Wed, 01 Oct 2025 21:51:05 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tjzqk7tnel"},{"Name":"integrity","Value":"sha256-hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.js"}]}]} \ No newline at end of file diff --git a/OpenArchival.Blazor.FileViewer/bin/Debug/net9.0/OpenArchival.FileViewer.staticwebassets.runtime.json b/OpenArchival.Blazor.FileViewer/bin/Debug/net9.0/OpenArchival.FileViewer.staticwebassets.runtime.json new file mode 100644 index 0000000..c89fd29 --- /dev/null +++ b/OpenArchival.Blazor.FileViewer/bin/Debug/net9.0/OpenArchival.FileViewer.staticwebassets.runtime.json @@ -0,0 +1 @@ +{"ContentRoots":["C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.FileViewer\\obj\\Debug\\net9.0\\scopedcss\\bundle\\","C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.FileViewer\\obj\\Debug\\net9.0\\compressed\\","C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\","C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\"],"Root":{"Children":{"OpenArchival.FileViewer.styles.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"OpenArchival.FileViewer.styles.css"},"Patterns":null},"OpenArchival.FileViewer.styles.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"0c31jpoulq-y5glfmno8n.gz"},"Patterns":null},"_content":{"Children":{"CodeBeam.MudExtensions":{"Children":{"Mud_Secondary.png":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"Mud_Secondary.png"},"Patterns":null},"MudExtensions.min.css":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"MudExtensions.min.css"},"Patterns":null},"MudExtensions.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"24gzn4tg1a-qz4batx9cb.gz"},"Patterns":null},"MudExtensions.min.js":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"MudExtensions.min.js"},"Patterns":null},"MudExtensions.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"stwk5nfoxp-loe7cozwzj.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"MudBlazor":{"Children":{"MudBlazor.min.css":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"MudBlazor.min.css"},"Patterns":null},"MudBlazor.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"tzxjg6is5z-jk5eo7zo4m.gz"},"Patterns":null},"MudBlazor.min.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"MudBlazor.min.js"},"Patterns":null},"MudBlazor.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"0wz98yz2xy-tjzqk7tnel.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}} \ No newline at end of file diff --git a/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs new file mode 100644 index 0000000..feda5e9 --- /dev/null +++ b/OpenArchival.Blazor.FileViewer/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/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArch.84F88E31.Up2Date b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArch.84F88E31.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArch.C44969D8.Up2Date b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArch.C44969D8.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.Blazor.FileViewer.AssemblyInfo.cs b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.Blazor.FileViewer.AssemblyInfo.cs new file mode 100644 index 0000000..b18ce24 --- /dev/null +++ b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.Blazor.FileViewer.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// 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("OpenArchival.Blazor.FileViewer")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+781793a27f2e164808340b1adb5ce70e1800b187")] +[assembly: System.Reflection.AssemblyProductAttribute("OpenArchival.Blazor.FileViewer")] +[assembly: System.Reflection.AssemblyTitleAttribute("OpenArchival.Blazor.FileViewer")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.Blazor.FileViewer.AssemblyInfoInputs.cache b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.Blazor.FileViewer.AssemblyInfoInputs.cache new file mode 100644 index 0000000..1982d5e --- /dev/null +++ b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.Blazor.FileViewer.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +64eebae4525a93aa9115774ea41ed6cd8b306725f733232f911290b10ce0b758 diff --git a/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.Blazor.FileViewer.GeneratedMSBuildEditorConfig.editorconfig b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.Blazor.FileViewer.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..4dd35e3 --- /dev/null +++ b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.Blazor.FileViewer.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,36 @@ +is_global = true +build_property.MudDebugAnalyzer = +build_property.MudAllowedAttributePattern = +build_property.MudAllowedAttributeList = +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 +build_property.RootNamespace = OpenArchival.Blazor.FileViewer +build_property.RootNamespace = OpenArchival.Blazor.FileViewer +build_property.ProjectDir = C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.FileViewer\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.RazorLangVersion = 9.0 +build_property.SupportLocalizedComponentNames = +build_property.GenerateRazorMetadataSourceChecksumAttributes = +build_property.MSBuildProjectDirectory = C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.FileViewer +build_property._RazorSourceGeneratorDebug = +build_property.EffectiveAnalysisLevelStyle = 9.0 +build_property.EnableCodeStyleSeverity = + +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor.FileViewer/FileViewers/ImageViewer.razor] +build_metadata.AdditionalFiles.TargetPath = RmlsZVZpZXdlcnNcSW1hZ2VWaWV3ZXIucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor.FileViewer/FileViewers/UnsupportedFileViewer.razor] +build_metadata.AdditionalFiles.TargetPath = RmlsZVZpZXdlcnNcVW5zdXBwb3J0ZWRGaWxlVmlld2VyLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor.FileViewer/FileViewerCarousel.razor] +build_metadata.AdditionalFiles.TargetPath = RmlsZVZpZXdlckNhcm91c2VsLnJhem9y +build_metadata.AdditionalFiles.CssScope = b-vtrp53nyc5 diff --git a/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.Blazor.FileViewer.GlobalUsings.g.cs b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.Blazor.FileViewer.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.Blazor.FileViewer.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/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.Blazor.FileViewer.assets.cache b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.Blazor.FileViewer.assets.cache new file mode 100644 index 0000000..080092b Binary files /dev/null and b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.Blazor.FileViewer.assets.cache differ diff --git a/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.Blazor.FileViewer.csproj.AssemblyReference.cache b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.Blazor.FileViewer.csproj.AssemblyReference.cache new file mode 100644 index 0000000..8785df9 Binary files /dev/null and b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.Blazor.FileViewer.csproj.AssemblyReference.cache differ diff --git a/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.Blazor.FileViewer.csproj.CoreCompileInputs.cache b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.Blazor.FileViewer.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..bb60200 --- /dev/null +++ b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.Blazor.FileViewer.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +e916c613968c4e3abede5a877e9ac05195ba52968a2108fd051ecf215abd501f diff --git a/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.Blazor.FileViewer.csproj.FileListAbsolute.txt b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.Blazor.FileViewer.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..c3a86f1 --- /dev/null +++ b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.Blazor.FileViewer.csproj.FileListAbsolute.txt @@ -0,0 +1,48 @@ +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.FileViewer\bin\Debug\net9.0\OpenArchival.DataAccess.deps.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.FileViewer\bin\Debug\net9.0\OpenArchival.DataAccess.runtimeconfig.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.FileViewer\bin\Debug\net9.0\OpenArchival.DataAccess.staticwebassets.endpoints.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.FileViewer\bin\Debug\net9.0\OpenArchival.DataAccess.exe +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.FileViewer\bin\Debug\net9.0\OpenArchival.Blazor.FileViewer.staticwebassets.runtime.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.FileViewer\bin\Debug\net9.0\OpenArchival.Blazor.FileViewer.staticwebassets.endpoints.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.FileViewer\bin\Debug\net9.0\OpenArchival.Blazor.FileViewer.deps.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.FileViewer\bin\Debug\net9.0\OpenArchival.Blazor.FileViewer.runtimeconfig.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.FileViewer\bin\Debug\net9.0\OpenArchival.Blazor.FileViewer.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.FileViewer\bin\Debug\net9.0\OpenArchival.Blazor.FileViewer.pdb +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.FileViewer\bin\Debug\net9.0\OpenArchival.DataAccess.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.FileViewer\bin\Debug\net9.0\OpenArchival.DataAccess.pdb +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.FileViewer\obj\Debug\net9.0\OpenArchival.Blazor.FileViewer.csproj.AssemblyReference.cache +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.FileViewer\obj\Debug\net9.0\rpswa.dswa.cache.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.FileViewer\obj\Debug\net9.0\OpenArchival.Blazor.FileViewer.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.FileViewer\obj\Debug\net9.0\OpenArchival.Blazor.FileViewer.AssemblyInfoInputs.cache +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.FileViewer\obj\Debug\net9.0\OpenArchival.Blazor.FileViewer.AssemblyInfo.cs +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.FileViewer\obj\Debug\net9.0\OpenArchival.Blazor.FileViewer.csproj.CoreCompileInputs.cache +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.FileViewer\obj\Debug\net9.0\OpenArchival.Blazor.FileViewer.sourcelink.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.FileViewer\obj\Debug\net9.0\rjimswa.dswa.cache.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.FileViewer\obj\Debug\net9.0\rjsmrazor.dswa.cache.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.FileViewer\obj\Debug\net9.0\rjsmcshtml.dswa.cache.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.FileViewer\obj\Debug\net9.0\scopedcss\FileViewerCarousel.razor.rz.scp.css +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.FileViewer\obj\Debug\net9.0\scopedcss\bundle\OpenArchival.Blazor.FileViewer.styles.css +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.FileViewer\obj\Debug\net9.0\scopedcss\projectbundle\OpenArchival.Blazor.FileViewer.bundle.scp.css +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.FileViewer\obj\Debug\net9.0\compressed\tzxjg6is5z-jk5eo7zo4m.gz +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.FileViewer\obj\Debug\net9.0\compressed\0wz98yz2xy-tjzqk7tnel.gz +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.FileViewer\obj\Debug\net9.0\compressed\24gzn4tg1a-qz4batx9cb.gz +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.FileViewer\obj\Debug\net9.0\compressed\stwk5nfoxp-loe7cozwzj.gz +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.FileViewer\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.FileViewer\obj\Debug\net9.0\staticwebassets.build.json.cache +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.FileViewer\obj\Debug\net9.0\staticwebassets.development.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.FileViewer\obj\Debug\net9.0\staticwebassets.build.endpoints.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.FileViewer\obj\Debug\net9.0\staticwebassets\msbuild.OpenArchival.Blazor.FileViewer.Microsoft.AspNetCore.StaticWebAssets.props +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.FileViewer\obj\Debug\net9.0\staticwebassets\msbuild.OpenArchival.Blazor.FileViewer.Microsoft.AspNetCore.StaticWebAssetEndpoints.props +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.FileViewer\obj\Debug\net9.0\staticwebassets\msbuild.build.OpenArchival.Blazor.FileViewer.props +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.FileViewer\obj\Debug\net9.0\staticwebassets\msbuild.buildMultiTargeting.OpenArchival.Blazor.FileViewer.props +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.FileViewer\obj\Debug\net9.0\staticwebassets\msbuild.buildTransitive.OpenArchival.Blazor.FileViewer.props +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.FileViewer\obj\Debug\net9.0\staticwebassets.pack.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.FileViewer\obj\Debug\net9.0\staticwebassets.upToDateCheck.txt +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.FileViewer\obj\Debug\net9.0\OpenArch.C44969D8.Up2Date +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.FileViewer\obj\Debug\net9.0\OpenArchival.Blazor.FileViewer.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.FileViewer\obj\Debug\net9.0\refint\OpenArchival.Blazor.FileViewer.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.FileViewer\obj\Debug\net9.0\OpenArchival.Blazor.FileViewer.pdb +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.FileViewer\obj\Debug\net9.0\OpenArchival.Blazor.FileViewer.genruntimeconfig.cache +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.FileViewer\obj\Debug\net9.0\ref\OpenArchival.Blazor.FileViewer.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.FileViewer\obj\Debug\net9.0\compressed\94gzerkhdz-83wakjp31g.gz +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.FileViewer\obj\Debug\net9.0\compressed\oacsgz2ky3-83wakjp31g.gz diff --git a/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.Blazor.FileViewer.dll b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.Blazor.FileViewer.dll new file mode 100644 index 0000000..33bc30c Binary files /dev/null and b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.Blazor.FileViewer.dll differ diff --git a/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.Blazor.FileViewer.genruntimeconfig.cache b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.Blazor.FileViewer.genruntimeconfig.cache new file mode 100644 index 0000000..2518522 --- /dev/null +++ b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.Blazor.FileViewer.genruntimeconfig.cache @@ -0,0 +1 @@ +31c17b1c877143f5364afe0481be4952f5bb08012f4906495c82ad99230a00ee diff --git a/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.Blazor.FileViewer.pdb b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.Blazor.FileViewer.pdb new file mode 100644 index 0000000..04280da Binary files /dev/null and b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.Blazor.FileViewer.pdb differ diff --git a/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.Blazor.FileViewer.sourcelink.json b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.Blazor.FileViewer.sourcelink.json new file mode 100644 index 0000000..bd84b90 --- /dev/null +++ b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.Blazor.FileViewer.sourcelink.json @@ -0,0 +1 @@ +{"documents":{"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\*":"https://raw.githubusercontent.com/vtallen/Open-Archival/781793a27f2e164808340b1adb5ce70e1800b187/*"}} \ No newline at end of file diff --git a/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.FileViewer.AssemblyInfo.cs b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.FileViewer.AssemblyInfo.cs new file mode 100644 index 0000000..5f91b8d --- /dev/null +++ b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.FileViewer.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// 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("OpenArchival.FileViewer")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+781793a27f2e164808340b1adb5ce70e1800b187")] +[assembly: System.Reflection.AssemblyProductAttribute("OpenArchival.FileViewer")] +[assembly: System.Reflection.AssemblyTitleAttribute("OpenArchival.FileViewer")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.FileViewer.AssemblyInfoInputs.cache b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.FileViewer.AssemblyInfoInputs.cache new file mode 100644 index 0000000..0e5ecc4 --- /dev/null +++ b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.FileViewer.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +aa2f86e997c3a6d84fe1ad744e48c8a405fdedde4ab64e25c5faacb18d6a1891 diff --git a/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.FileViewer.GeneratedMSBuildEditorConfig.editorconfig b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.FileViewer.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..c9c1006 --- /dev/null +++ b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.FileViewer.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,36 @@ +is_global = true +build_property.MudDebugAnalyzer = +build_property.MudAllowedAttributePattern = +build_property.MudAllowedAttributeList = +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 +build_property.RootNamespace = OpenArchival.FileViewer +build_property.RootNamespace = OpenArchival.FileViewer +build_property.ProjectDir = C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.FileViewer\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.RazorLangVersion = 9.0 +build_property.SupportLocalizedComponentNames = +build_property.GenerateRazorMetadataSourceChecksumAttributes = +build_property.MSBuildProjectDirectory = C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.FileViewer +build_property._RazorSourceGeneratorDebug = +build_property.EffectiveAnalysisLevelStyle = 9.0 +build_property.EnableCodeStyleSeverity = + +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.FileViewer/FileViewers/ImageViewer.razor] +build_metadata.AdditionalFiles.TargetPath = RmlsZVZpZXdlcnNcSW1hZ2VWaWV3ZXIucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.FileViewer/FileViewers/UnsupportedFileViewer.razor] +build_metadata.AdditionalFiles.TargetPath = RmlsZVZpZXdlcnNcVW5zdXBwb3J0ZWRGaWxlVmlld2VyLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.FileViewer/FileViewerCarousel.razor] +build_metadata.AdditionalFiles.TargetPath = RmlsZVZpZXdlckNhcm91c2VsLnJhem9y +build_metadata.AdditionalFiles.CssScope = b-trswm27i7b diff --git a/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.FileViewer.GlobalUsings.g.cs b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.FileViewer.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.FileViewer.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/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.FileViewer.RazorAssemblyInfo.cache b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.FileViewer.RazorAssemblyInfo.cache new file mode 100644 index 0000000..ecb9c97 --- /dev/null +++ b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.FileViewer.RazorAssemblyInfo.cache @@ -0,0 +1 @@ +d5ac7ab69059af111e9d7125adeb7b174ca570725d4b64a544cca7bd11ac7ca0 diff --git a/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.FileViewer.RazorAssemblyInfo.cs b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.FileViewer.RazorAssemblyInfo.cs new file mode 100644 index 0000000..cd3853c --- /dev/null +++ b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.FileViewer.RazorAssemblyInfo.cs @@ -0,0 +1,18 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ProvideApplicationPartFactoryAttribute("Microsoft.AspNetCore.Mvc.ApplicationParts.ConsolidatedAssemblyApplicationPartFact" + + "ory, Microsoft.AspNetCore.Mvc.Razor")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.FileViewer.assets.cache b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.FileViewer.assets.cache new file mode 100644 index 0000000..3080338 Binary files /dev/null and b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.FileViewer.assets.cache differ diff --git a/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.FileViewer.csproj.AssemblyReference.cache b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.FileViewer.csproj.AssemblyReference.cache new file mode 100644 index 0000000..e9d2673 Binary files /dev/null and b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.FileViewer.csproj.AssemblyReference.cache differ diff --git a/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.FileViewer.csproj.BuildWithSkipAnalyzers b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.FileViewer.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.FileViewer.csproj.CoreCompileInputs.cache b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.FileViewer.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..df8ee9b --- /dev/null +++ b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.FileViewer.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +9da0f5be522797157a0ad7745036873ed7b6cb81dcf4207e6b618f2613a02c55 diff --git a/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.FileViewer.csproj.FileListAbsolute.txt b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.FileViewer.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..d00e14e --- /dev/null +++ b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.FileViewer.csproj.FileListAbsolute.txt @@ -0,0 +1,91 @@ +C:\Users\vtall\source\repos\vtallen\OpenArchival.FileViewer\bin\Debug\net9.0\OpenArchival.DataAccess.deps.json +C:\Users\vtall\source\repos\vtallen\OpenArchival.FileViewer\bin\Debug\net9.0\OpenArchival.DataAccess.runtimeconfig.json +C:\Users\vtall\source\repos\vtallen\OpenArchival.FileViewer\bin\Debug\net9.0\OpenArchival.DataAccess.staticwebassets.endpoints.json +C:\Users\vtall\source\repos\vtallen\OpenArchival.FileViewer\bin\Debug\net9.0\OpenArchival.DataAccess.exe +C:\Users\vtall\source\repos\vtallen\OpenArchival.FileViewer\bin\Debug\net9.0\OpenArchival.FileViewer.staticwebassets.runtime.json +C:\Users\vtall\source\repos\vtallen\OpenArchival.FileViewer\bin\Debug\net9.0\OpenArchival.FileViewer.staticwebassets.endpoints.json +C:\Users\vtall\source\repos\vtallen\OpenArchival.FileViewer\bin\Debug\net9.0\OpenArchival.FileViewer.deps.json +C:\Users\vtall\source\repos\vtallen\OpenArchival.FileViewer\bin\Debug\net9.0\OpenArchival.FileViewer.runtimeconfig.json +C:\Users\vtall\source\repos\vtallen\OpenArchival.FileViewer\bin\Debug\net9.0\OpenArchival.FileViewer.dll +C:\Users\vtall\source\repos\vtallen\OpenArchival.FileViewer\bin\Debug\net9.0\OpenArchival.FileViewer.pdb +C:\Users\vtall\source\repos\vtallen\OpenArchival.FileViewer\bin\Debug\net9.0\OpenArchival.DataAccess.dll +C:\Users\vtall\source\repos\vtallen\OpenArchival.FileViewer\bin\Debug\net9.0\OpenArchival.DataAccess.pdb +C:\Users\vtall\source\repos\vtallen\OpenArchival.FileViewer\obj\Debug\net9.0\OpenArchival.FileViewer.csproj.AssemblyReference.cache +C:\Users\vtall\source\repos\vtallen\OpenArchival.FileViewer\obj\Debug\net9.0\rpswa.dswa.cache.json +C:\Users\vtall\source\repos\vtallen\OpenArchival.FileViewer\obj\Debug\net9.0\OpenArchival.FileViewer.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\vtall\source\repos\vtallen\OpenArchival.FileViewer\obj\Debug\net9.0\OpenArchival.FileViewer.AssemblyInfoInputs.cache +C:\Users\vtall\source\repos\vtallen\OpenArchival.FileViewer\obj\Debug\net9.0\OpenArchival.FileViewer.AssemblyInfo.cs +C:\Users\vtall\source\repos\vtallen\OpenArchival.FileViewer\obj\Debug\net9.0\OpenArchival.FileViewer.csproj.CoreCompileInputs.cache +C:\Users\vtall\source\repos\vtallen\OpenArchival.FileViewer\obj\Debug\net9.0\rjimswa.dswa.cache.json +C:\Users\vtall\source\repos\vtallen\OpenArchival.FileViewer\obj\Debug\net9.0\rjsmrazor.dswa.cache.json +C:\Users\vtall\source\repos\vtallen\OpenArchival.FileViewer\obj\Debug\net9.0\rjsmcshtml.dswa.cache.json +C:\Users\vtall\source\repos\vtallen\OpenArchival.FileViewer\obj\Debug\net9.0\scopedcss\bundle\OpenArchival.FileViewer.styles.css +C:\Users\vtall\source\repos\vtallen\OpenArchival.FileViewer\obj\Debug\net9.0\compressed\tzxjg6is5z-jk5eo7zo4m.gz +C:\Users\vtall\source\repos\vtallen\OpenArchival.FileViewer\obj\Debug\net9.0\compressed\0wz98yz2xy-tjzqk7tnel.gz +C:\Users\vtall\source\repos\vtallen\OpenArchival.FileViewer\obj\Debug\net9.0\compressed\24gzn4tg1a-qz4batx9cb.gz +C:\Users\vtall\source\repos\vtallen\OpenArchival.FileViewer\obj\Debug\net9.0\compressed\stwk5nfoxp-loe7cozwzj.gz +C:\Users\vtall\source\repos\vtallen\OpenArchival.FileViewer\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\OpenArchival.FileViewer\obj\Debug\net9.0\staticwebassets.build.json.cache +C:\Users\vtall\source\repos\vtallen\OpenArchival.FileViewer\obj\Debug\net9.0\staticwebassets.development.json +C:\Users\vtall\source\repos\vtallen\OpenArchival.FileViewer\obj\Debug\net9.0\staticwebassets.build.endpoints.json +C:\Users\vtall\source\repos\vtallen\OpenArchival.FileViewer\obj\Debug\net9.0\staticwebassets\msbuild.OpenArchival.FileViewer.Microsoft.AspNetCore.StaticWebAssets.props +C:\Users\vtall\source\repos\vtallen\OpenArchival.FileViewer\obj\Debug\net9.0\staticwebassets\msbuild.OpenArchival.FileViewer.Microsoft.AspNetCore.StaticWebAssetEndpoints.props +C:\Users\vtall\source\repos\vtallen\OpenArchival.FileViewer\obj\Debug\net9.0\staticwebassets\msbuild.build.OpenArchival.FileViewer.props +C:\Users\vtall\source\repos\vtallen\OpenArchival.FileViewer\obj\Debug\net9.0\staticwebassets\msbuild.buildMultiTargeting.OpenArchival.FileViewer.props +C:\Users\vtall\source\repos\vtallen\OpenArchival.FileViewer\obj\Debug\net9.0\staticwebassets\msbuild.buildTransitive.OpenArchival.FileViewer.props +C:\Users\vtall\source\repos\vtallen\OpenArchival.FileViewer\obj\Debug\net9.0\staticwebassets.pack.json +C:\Users\vtall\source\repos\vtallen\OpenArchival.FileViewer\obj\Debug\net9.0\staticwebassets.upToDateCheck.txt +C:\Users\vtall\source\repos\vtallen\OpenArchival.FileViewer\obj\Debug\net9.0\OpenArch.84F88E31.Up2Date +C:\Users\vtall\source\repos\vtallen\OpenArchival.FileViewer\obj\Debug\net9.0\OpenArchival.FileViewer.dll +C:\Users\vtall\source\repos\vtallen\OpenArchival.FileViewer\obj\Debug\net9.0\refint\OpenArchival.FileViewer.dll +C:\Users\vtall\source\repos\vtallen\OpenArchival.FileViewer\obj\Debug\net9.0\OpenArchival.FileViewer.pdb +C:\Users\vtall\source\repos\vtallen\OpenArchival.FileViewer\obj\Debug\net9.0\OpenArchival.FileViewer.genruntimeconfig.cache +C:\Users\vtall\source\repos\vtallen\OpenArchival.FileViewer\obj\Debug\net9.0\ref\OpenArchival.FileViewer.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.FileViewer\obj\Debug\net9.0\OpenArchival.FileViewer.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.FileViewer\obj\Debug\net9.0\refint\OpenArchival.FileViewer.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.FileViewer\obj\Debug\net9.0\OpenArchival.FileViewer.pdb +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.FileViewer\bin\Debug\net9.0\OpenArchival.DataAccess.deps.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.FileViewer\bin\Debug\net9.0\OpenArchival.DataAccess.runtimeconfig.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.FileViewer\bin\Debug\net9.0\OpenArchival.DataAccess.staticwebassets.endpoints.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.FileViewer\bin\Debug\net9.0\OpenArchival.DataAccess.exe +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.FileViewer\bin\Debug\net9.0\OpenArchival.FileViewer.staticwebassets.endpoints.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.FileViewer\bin\Debug\net9.0\OpenArchival.FileViewer.staticwebassets.runtime.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.FileViewer\bin\Debug\net9.0\OpenArchival.FileViewer.deps.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.FileViewer\bin\Debug\net9.0\OpenArchival.FileViewer.runtimeconfig.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.FileViewer\bin\Debug\net9.0\OpenArchival.FileViewer.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.FileViewer\bin\Debug\net9.0\OpenArchival.FileViewer.pdb +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.FileViewer\bin\Debug\net9.0\OpenArchival.DataAccess.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.FileViewer\bin\Debug\net9.0\OpenArchival.DataAccess.pdb +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.FileViewer\obj\Debug\net9.0\OpenArchival.FileViewer.csproj.AssemblyReference.cache +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.FileViewer\obj\Debug\net9.0\rpswa.dswa.cache.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.FileViewer\obj\Debug\net9.0\OpenArchival.FileViewer.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.FileViewer\obj\Debug\net9.0\OpenArchival.FileViewer.AssemblyInfoInputs.cache +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.FileViewer\obj\Debug\net9.0\OpenArchival.FileViewer.AssemblyInfo.cs +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.FileViewer\obj\Debug\net9.0\OpenArchival.FileViewer.csproj.CoreCompileInputs.cache +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.FileViewer\obj\Debug\net9.0\OpenArchival.FileViewer.sourcelink.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.FileViewer\obj\Debug\net9.0\rjimswa.dswa.cache.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.FileViewer\obj\Debug\net9.0\rjsmrazor.dswa.cache.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.FileViewer\obj\Debug\net9.0\rjsmcshtml.dswa.cache.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.FileViewer\obj\Debug\net9.0\scopedcss\bundle\OpenArchival.FileViewer.styles.css +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.FileViewer\obj\Debug\net9.0\compressed\tzxjg6is5z-jk5eo7zo4m.gz +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.FileViewer\obj\Debug\net9.0\compressed\0wz98yz2xy-tjzqk7tnel.gz +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.FileViewer\obj\Debug\net9.0\compressed\24gzn4tg1a-qz4batx9cb.gz +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.FileViewer\obj\Debug\net9.0\compressed\stwk5nfoxp-loe7cozwzj.gz +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.FileViewer\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.FileViewer\obj\Debug\net9.0\staticwebassets.build.json.cache +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.FileViewer\obj\Debug\net9.0\staticwebassets.development.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.FileViewer\obj\Debug\net9.0\staticwebassets.build.endpoints.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.FileViewer\obj\Debug\net9.0\staticwebassets\msbuild.OpenArchival.FileViewer.Microsoft.AspNetCore.StaticWebAssets.props +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.FileViewer\obj\Debug\net9.0\staticwebassets\msbuild.OpenArchival.FileViewer.Microsoft.AspNetCore.StaticWebAssetEndpoints.props +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.FileViewer\obj\Debug\net9.0\staticwebassets\msbuild.build.OpenArchival.FileViewer.props +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.FileViewer\obj\Debug\net9.0\staticwebassets\msbuild.buildMultiTargeting.OpenArchival.FileViewer.props +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.FileViewer\obj\Debug\net9.0\staticwebassets\msbuild.buildTransitive.OpenArchival.FileViewer.props +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.FileViewer\obj\Debug\net9.0\staticwebassets.pack.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.FileViewer\obj\Debug\net9.0\staticwebassets.upToDateCheck.txt +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.FileViewer\obj\Debug\net9.0\OpenArch.84F88E31.Up2Date +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.FileViewer\obj\Debug\net9.0\OpenArchival.FileViewer.genruntimeconfig.cache +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.FileViewer\obj\Debug\net9.0\ref\OpenArchival.FileViewer.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.FileViewer\obj\Debug\net9.0\scopedcss\FileViewerCarousel.razor.rz.scp.css +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.FileViewer\obj\Debug\net9.0\scopedcss\projectbundle\OpenArchival.FileViewer.bundle.scp.css +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.FileViewer\obj\Debug\net9.0\compressed\0c31jpoulq-y5glfmno8n.gz +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.FileViewer\obj\Debug\net9.0\compressed\54ua9qx2gl-y5glfmno8n.gz diff --git a/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.FileViewer.dll b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.FileViewer.dll new file mode 100644 index 0000000..9ccb197 Binary files /dev/null and b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.FileViewer.dll differ diff --git a/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.FileViewer.genruntimeconfig.cache b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.FileViewer.genruntimeconfig.cache new file mode 100644 index 0000000..32829e9 --- /dev/null +++ b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.FileViewer.genruntimeconfig.cache @@ -0,0 +1 @@ +063c918d46d18142d40c833a85f1f0c0f76d7caa1258c7577c30f0313e48644b diff --git a/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.FileViewer.pdb b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.FileViewer.pdb new file mode 100644 index 0000000..97ea8f1 Binary files /dev/null and b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.FileViewer.pdb differ diff --git a/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.FileViewer.sourcelink.json b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.FileViewer.sourcelink.json new file mode 100644 index 0000000..bd84b90 --- /dev/null +++ b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/OpenArchival.FileViewer.sourcelink.json @@ -0,0 +1 @@ +{"documents":{"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\*":"https://raw.githubusercontent.com/vtallen/Open-Archival/781793a27f2e164808340b1adb5ce70e1800b187/*"}} \ No newline at end of file diff --git a/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/compressed/0c31jpoulq-y5glfmno8n.gz b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/compressed/0c31jpoulq-y5glfmno8n.gz new file mode 100644 index 0000000..456597e Binary files /dev/null and b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/compressed/0c31jpoulq-y5glfmno8n.gz differ diff --git a/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/compressed/0wz98yz2xy-tjzqk7tnel.gz b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/compressed/0wz98yz2xy-tjzqk7tnel.gz new file mode 100644 index 0000000..1be9dc7 Binary files /dev/null and b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/compressed/0wz98yz2xy-tjzqk7tnel.gz differ diff --git a/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/compressed/24gzn4tg1a-qz4batx9cb.gz b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/compressed/24gzn4tg1a-qz4batx9cb.gz new file mode 100644 index 0000000..286d510 Binary files /dev/null and b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/compressed/24gzn4tg1a-qz4batx9cb.gz differ diff --git a/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/compressed/54ua9qx2gl-y5glfmno8n.gz b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/compressed/54ua9qx2gl-y5glfmno8n.gz new file mode 100644 index 0000000..456597e Binary files /dev/null and b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/compressed/54ua9qx2gl-y5glfmno8n.gz differ diff --git a/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/compressed/94gzerkhdz-83wakjp31g.gz b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/compressed/94gzerkhdz-83wakjp31g.gz new file mode 100644 index 0000000..0bb8723 Binary files /dev/null and b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/compressed/94gzerkhdz-83wakjp31g.gz differ diff --git a/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/compressed/oacsgz2ky3-83wakjp31g.gz b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/compressed/oacsgz2ky3-83wakjp31g.gz new file mode 100644 index 0000000..0bb8723 Binary files /dev/null and b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/compressed/oacsgz2ky3-83wakjp31g.gz differ diff --git a/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/compressed/stwk5nfoxp-loe7cozwzj.gz b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/compressed/stwk5nfoxp-loe7cozwzj.gz new file mode 100644 index 0000000..0a77fee Binary files /dev/null and b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/compressed/stwk5nfoxp-loe7cozwzj.gz differ diff --git a/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/compressed/tzxjg6is5z-jk5eo7zo4m.gz b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/compressed/tzxjg6is5z-jk5eo7zo4m.gz new file mode 100644 index 0000000..0bd6298 Binary files /dev/null and b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/compressed/tzxjg6is5z-jk5eo7zo4m.gz differ diff --git a/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/rbcswa.dswa.cache.json b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/rbcswa.dswa.cache.json new file mode 100644 index 0000000..3d2652c --- /dev/null +++ b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/rbcswa.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"2ilJ2M8+ZdH0swl4cXFj9Ji8kay0R08ISE/fEc+OL0o=","FingerprintPatternsHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["w/QFknb2Vrv47dgXVEcWXsWkNpErczuHSVwunPtrQ5o=","RJUmW4Vh73z5H7uf6oFw5AbkZma2HnLUfIxDFAs7QLI=","VASNurogucr6j9qiI0Qklc2rUFPA0c1md\u002B0S6ZFX0Hg=","NWcDTOsNO10Jtpu7TOylVTOXx8hGCC6\u002Bg9zXJpep6io=","7GnJK9IpTmZPK8WV2gv5jblDRymiOhhHTphoo0EmRho=","yWwPogX1vdaLbDL5\u002BTl8S0hdYFNw4Pl7VHbBaFECpg4="],"CachedAssets":{"NWcDTOsNO10Jtpu7TOylVTOXx8hGCC6\u002Bg9zXJpep6io=":{"Identity":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\compressed\\stwk5nfoxp-loe7cozwzj.gz","SourceId":"CodeBeam.MudExtensions","SourceType":"Package","ContentRoot":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\compressed\\","BasePath":"_content/CodeBeam.MudExtensions","RelativePath":"MudExtensions.min.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\MudExtensions.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"z9m1gj6ro7","Integrity":"B4PUgpr06\u002Bd3lAMWknp0EVkaGxPZJdpp5/UidGHzvnc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\MudExtensions.min.js","FileLength":196,"LastWriteTime":"2025-10-08T17:06:27.6057064+00:00"},"VASNurogucr6j9qiI0Qklc2rUFPA0c1md\u002B0S6ZFX0Hg=":{"Identity":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\compressed\\24gzn4tg1a-qz4batx9cb.gz","SourceId":"CodeBeam.MudExtensions","SourceType":"Package","ContentRoot":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\compressed\\","BasePath":"_content/CodeBeam.MudExtensions","RelativePath":"MudExtensions.min.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\MudExtensions.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"cn6plcuhii","Integrity":"6PJ7t7WR38pQTSYe6IR0pbqo2cIZK5wuW/w26kprtBg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\MudExtensions.min.css","FileLength":3383,"LastWriteTime":"2025-10-08T17:06:27.6072151+00:00"},"RJUmW4Vh73z5H7uf6oFw5AbkZma2HnLUfIxDFAs7QLI=":{"Identity":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\compressed\\0wz98yz2xy-tjzqk7tnel.gz","SourceId":"MudBlazor","SourceType":"Package","ContentRoot":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\compressed\\","BasePath":"_content/MudBlazor","RelativePath":"MudBlazor.min.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\MudBlazor.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"c1g0o1u83p","Integrity":"0BJxfo\u002BEOJvNKoBv/2ahm4RKrPjv7PhB/R16C3XOHDo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\MudBlazor.min.js","FileLength":16352,"LastWriteTime":"2025-10-08T17:06:27.6102268+00:00"},"w/QFknb2Vrv47dgXVEcWXsWkNpErczuHSVwunPtrQ5o=":{"Identity":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\compressed\\tzxjg6is5z-jk5eo7zo4m.gz","SourceId":"MudBlazor","SourceType":"Package","ContentRoot":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\compressed\\","BasePath":"_content/MudBlazor","RelativePath":"MudBlazor.min.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\MudBlazor.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"93u47y2o0e","Integrity":"VcBMO3aXrzxl\u002BjfWY\u002BTaxPKsd3L0UWjeJZliEXOyzzI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\MudBlazor.min.css","FileLength":65509,"LastWriteTime":"2025-10-08T17:06:27.619003+00:00"},"7GnJK9IpTmZPK8WV2gv5jblDRymiOhhHTphoo0EmRho=":{"Identity":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\compressed\\94gzerkhdz-83wakjp31g.gz","SourceId":"OpenArchival.Blazor.FileViewer","SourceType":"Computed","ContentRoot":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\compressed\\","BasePath":"_content/OpenArchival.Blazor.FileViewer","RelativePath":"OpenArchival.Blazor.FileViewer#[.{fingerprint=83wakjp31g}]?.styles.css.gz","AssetKind":"All","AssetMode":"CurrentProject","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\scopedcss\\bundle\\OpenArchival.Blazor.FileViewer.styles.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"hre2inkdpm","Integrity":"w7pUrtgbGsKChPQ\u002BJZf6wIJIlRo5ItP1AJKKjbLPBUM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\scopedcss\\bundle\\OpenArchival.Blazor.FileViewer.styles.css","FileLength":162,"LastWriteTime":"2025-10-08T17:06:27.6057064+00:00"},"yWwPogX1vdaLbDL5\u002BTl8S0hdYFNw4Pl7VHbBaFECpg4=":{"Identity":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\compressed\\oacsgz2ky3-83wakjp31g.gz","SourceId":"OpenArchival.Blazor.FileViewer","SourceType":"Computed","ContentRoot":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\compressed\\","BasePath":"_content/OpenArchival.Blazor.FileViewer","RelativePath":"OpenArchival.Blazor.FileViewer#[.{fingerprint=83wakjp31g}]!.bundle.scp.css.gz","AssetKind":"All","AssetMode":"Reference","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\scopedcss\\projectbundle\\OpenArchival.Blazor.FileViewer.bundle.scp.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"hre2inkdpm","Integrity":"w7pUrtgbGsKChPQ\u002BJZf6wIJIlRo5ItP1AJKKjbLPBUM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\scopedcss\\projectbundle\\OpenArchival.Blazor.FileViewer.bundle.scp.css","FileLength":162,"LastWriteTime":"2025-10-08T17:06:27.6057064+00:00"}},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/ref/OpenArchival.Blazor.FileViewer.dll b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/ref/OpenArchival.Blazor.FileViewer.dll new file mode 100644 index 0000000..d46a6a5 Binary files /dev/null and b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/ref/OpenArchival.Blazor.FileViewer.dll differ diff --git a/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/ref/OpenArchival.FileViewer.dll b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/ref/OpenArchival.FileViewer.dll new file mode 100644 index 0000000..624e7a7 Binary files /dev/null and b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/ref/OpenArchival.FileViewer.dll differ diff --git a/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/refint/OpenArchival.Blazor.FileViewer.dll b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/refint/OpenArchival.Blazor.FileViewer.dll new file mode 100644 index 0000000..d46a6a5 Binary files /dev/null and b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/refint/OpenArchival.Blazor.FileViewer.dll differ diff --git a/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/refint/OpenArchival.FileViewer.dll b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/refint/OpenArchival.FileViewer.dll new file mode 100644 index 0000000..624e7a7 Binary files /dev/null and b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/refint/OpenArchival.FileViewer.dll differ diff --git a/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/rjsmcshtml.dswa.cache.json b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/rjsmcshtml.dswa.cache.json new file mode 100644 index 0000000..0d14c18 --- /dev/null +++ b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/rjsmcshtml.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"1zQsSRnnvlEFRyW3+FZZY9Dc7o4RZp8wN7tz8+UsFtA=","FingerprintPatternsHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["OzPGl3YvyBrgBdg4zNnuhZjR9q/zE08XWeElLTTQ4Hg=","4pgbsYJatFBh3obsjZnf\u002BdUVDhut\u002BUeD5ZUVx0jYXK4=","KupJtCAWffeB3sAnDpih4qigAjpZsMv7RhKf9NJuC4o=","DB61JagBfRCqo\u002BI\u002Bhz7aukBgbMQr7rhL\u002BQVb1Cu41Mc="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/rjsmrazor.dswa.cache.json b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/rjsmrazor.dswa.cache.json new file mode 100644 index 0000000..d287593 --- /dev/null +++ b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/rjsmrazor.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"eMpJhHE4Vn4922beA2I5CxSSelU+bJwBeVua0LQ5Hqg=","FingerprintPatternsHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["OzPGl3YvyBrgBdg4zNnuhZjR9q/zE08XWeElLTTQ4Hg=","4pgbsYJatFBh3obsjZnf\u002BdUVDhut\u002BUeD5ZUVx0jYXK4=","KupJtCAWffeB3sAnDpih4qigAjpZsMv7RhKf9NJuC4o=","DB61JagBfRCqo\u002BI\u002Bhz7aukBgbMQr7rhL\u002BQVb1Cu41Mc="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/rpswa.dswa.cache.json b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/rpswa.dswa.cache.json new file mode 100644 index 0000000..00af4ab --- /dev/null +++ b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/rpswa.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"e1XMImb+zqrlXn4hN9ZO6BQyTsvSCsAQ3e23BvtdWsQ=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["xqLnKRBGRJmn7UJyEeRZc4dNscd6t61atP1dOSynUyE=","Y6OTQ14AAUo1F36p7t1WInpp5KRe\u002Br21mviWw8BpuKo=","YqJdZLxU/hbRM/Mj56wrVK09b6pDzqvYtzPT1ineneU="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/scopedcss/FileViewerCarousel.razor.rz.scp.css b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/scopedcss/FileViewerCarousel.razor.rz.scp.css new file mode 100644 index 0000000..f1c3803 --- /dev/null +++ b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/scopedcss/FileViewerCarousel.razor.rz.scp.css @@ -0,0 +1,6 @@ +body[b-vtrp53nyc5] { +} + +[b-vtrp53nyc5] .mud-carousel-transition { + justify-content: center; +} diff --git a/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/scopedcss/bundle/OpenArchival.Blazor.FileViewer.styles.css b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/scopedcss/bundle/OpenArchival.Blazor.FileViewer.styles.css new file mode 100644 index 0000000..78f86ee --- /dev/null +++ b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/scopedcss/bundle/OpenArchival.Blazor.FileViewer.styles.css @@ -0,0 +1,7 @@ +/* _content/OpenArchival.Blazor.FileViewer/FileViewerCarousel.razor.rz.scp.css */ +body[b-vtrp53nyc5] { +} + +[b-vtrp53nyc5] .mud-carousel-transition { + justify-content: center; +} diff --git a/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/scopedcss/bundle/OpenArchival.FileViewer.styles.css b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/scopedcss/bundle/OpenArchival.FileViewer.styles.css new file mode 100644 index 0000000..a10eabd --- /dev/null +++ b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/scopedcss/bundle/OpenArchival.FileViewer.styles.css @@ -0,0 +1,7 @@ +/* _content/OpenArchival.FileViewer/FileViewerCarousel.razor.rz.scp.css */ +body[b-trswm27i7b] { +} + +[b-trswm27i7b] .mud-carousel-transition { + justify-content: center; +} diff --git a/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/scopedcss/projectbundle/OpenArchival.Blazor.FileViewer.bundle.scp.css b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/scopedcss/projectbundle/OpenArchival.Blazor.FileViewer.bundle.scp.css new file mode 100644 index 0000000..78f86ee --- /dev/null +++ b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/scopedcss/projectbundle/OpenArchival.Blazor.FileViewer.bundle.scp.css @@ -0,0 +1,7 @@ +/* _content/OpenArchival.Blazor.FileViewer/FileViewerCarousel.razor.rz.scp.css */ +body[b-vtrp53nyc5] { +} + +[b-vtrp53nyc5] .mud-carousel-transition { + justify-content: center; +} diff --git a/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/scopedcss/projectbundle/OpenArchival.FileViewer.bundle.scp.css b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/scopedcss/projectbundle/OpenArchival.FileViewer.bundle.scp.css new file mode 100644 index 0000000..a10eabd --- /dev/null +++ b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/scopedcss/projectbundle/OpenArchival.FileViewer.bundle.scp.css @@ -0,0 +1,7 @@ +/* _content/OpenArchival.FileViewer/FileViewerCarousel.razor.rz.scp.css */ +body[b-trswm27i7b] { +} + +[b-trswm27i7b] .mud-carousel-transition { + justify-content: center; +} diff --git a/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/staticwebassets.build.endpoints.json b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/staticwebassets.build.endpoints.json new file mode 100644 index 0000000..39f4a22 --- /dev/null +++ b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/staticwebassets.build.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[{"Route":"OpenArchival.Blazor.FileViewer.83wakjp31g.styles.css","AssetFile":"OpenArchival.Blazor.FileViewer.styles.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.006134969325"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"162"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"w7pUrtgbGsKChPQ+JZf6wIJIlRo5ItP1AJKKjbLPBUM=\""},{"Name":"ETag","Value":"W/\"9NCmFFvSZYsIWCQoks2vSnN9EMEwePSQhoXfFOCn5mg=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"83wakjp31g"},{"Name":"integrity","Value":"sha256-9NCmFFvSZYsIWCQoks2vSnN9EMEwePSQhoXfFOCn5mg="},{"Name":"label","Value":"OpenArchival.Blazor.FileViewer.styles.css"}]},{"Route":"OpenArchival.Blazor.FileViewer.83wakjp31g.styles.css","AssetFile":"OpenArchival.Blazor.FileViewer.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"186"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"9NCmFFvSZYsIWCQoks2vSnN9EMEwePSQhoXfFOCn5mg=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"83wakjp31g"},{"Name":"integrity","Value":"sha256-9NCmFFvSZYsIWCQoks2vSnN9EMEwePSQhoXfFOCn5mg="},{"Name":"label","Value":"OpenArchival.Blazor.FileViewer.styles.css"}]},{"Route":"OpenArchival.Blazor.FileViewer.83wakjp31g.styles.css.gz","AssetFile":"OpenArchival.Blazor.FileViewer.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":"162"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"w7pUrtgbGsKChPQ+JZf6wIJIlRo5ItP1AJKKjbLPBUM=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"83wakjp31g"},{"Name":"integrity","Value":"sha256-w7pUrtgbGsKChPQ+JZf6wIJIlRo5ItP1AJKKjbLPBUM="},{"Name":"label","Value":"OpenArchival.Blazor.FileViewer.styles.css.gz"}]},{"Route":"OpenArchival.Blazor.FileViewer.styles.css","AssetFile":"OpenArchival.Blazor.FileViewer.styles.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.006134969325"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"162"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"w7pUrtgbGsKChPQ+JZf6wIJIlRo5ItP1AJKKjbLPBUM=\""},{"Name":"ETag","Value":"W/\"9NCmFFvSZYsIWCQoks2vSnN9EMEwePSQhoXfFOCn5mg=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9NCmFFvSZYsIWCQoks2vSnN9EMEwePSQhoXfFOCn5mg="}]},{"Route":"OpenArchival.Blazor.FileViewer.styles.css","AssetFile":"OpenArchival.Blazor.FileViewer.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"186"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"9NCmFFvSZYsIWCQoks2vSnN9EMEwePSQhoXfFOCn5mg=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9NCmFFvSZYsIWCQoks2vSnN9EMEwePSQhoXfFOCn5mg="}]},{"Route":"OpenArchival.Blazor.FileViewer.styles.css.gz","AssetFile":"OpenArchival.Blazor.FileViewer.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":"162"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"w7pUrtgbGsKChPQ+JZf6wIJIlRo5ItP1AJKKjbLPBUM=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-w7pUrtgbGsKChPQ+JZf6wIJIlRo5ItP1AJKKjbLPBUM="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.css","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"21465"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk=\""},{"Name":"Last-Modified","Value":"Sun, 26 Feb 2023 14:08:26 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.css","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000295508274"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3383"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"6PJ7t7WR38pQTSYe6IR0pbqo2cIZK5wuW/w26kprtBg=\""},{"Name":"ETag","Value":"W/\"Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.css.gz","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3383"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"6PJ7t7WR38pQTSYe6IR0pbqo2cIZK5wuW/w26kprtBg=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6PJ7t7WR38pQTSYe6IR0pbqo2cIZK5wuW/w26kprtBg="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.js","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"328"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc=\""},{"Name":"Last-Modified","Value":"Sun, 26 Feb 2023 14:08:26 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.js","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005076142132"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"196"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"B4PUgpr06+d3lAMWknp0EVkaGxPZJdpp5/UidGHzvnc=\""},{"Name":"ETag","Value":"W/\"FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.js.gz","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"196"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"B4PUgpr06+d3lAMWknp0EVkaGxPZJdpp5/UidGHzvnc=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-B4PUgpr06+d3lAMWknp0EVkaGxPZJdpp5/UidGHzvnc="}]},{"Route":"_content/CodeBeam.MudExtensions/Mud_Secondary.png","AssetFile":"_content/CodeBeam.MudExtensions/Mud_Secondary.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4558"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"G3hYUw4Ps9P/IQ3lw2zu96RSZaOf4zU+4QkXkH8Xi3Y=\""},{"Name":"Last-Modified","Value":"Sat, 08 Oct 2022 09:55:02 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G3hYUw4Ps9P/IQ3lw2zu96RSZaOf4zU+4QkXkH8Xi3Y="}]},{"Route":"_content/MudBlazor/MudBlazor.min.css","AssetFile":"_content/MudBlazor/MudBlazor.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"606250"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0=\""},{"Name":"Last-Modified","Value":"Wed, 01 Oct 2025 21:51:05 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0="}]},{"Route":"_content/MudBlazor/MudBlazor.min.css","AssetFile":"_content/MudBlazor/MudBlazor.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015264845"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"65509"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"VcBMO3aXrzxl+jfWY+TaxPKsd3L0UWjeJZliEXOyzzI=\""},{"Name":"ETag","Value":"W/\"TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0="}]},{"Route":"_content/MudBlazor/MudBlazor.min.css.gz","AssetFile":"_content/MudBlazor/MudBlazor.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"65509"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"VcBMO3aXrzxl+jfWY+TaxPKsd3L0UWjeJZliEXOyzzI=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VcBMO3aXrzxl+jfWY+TaxPKsd3L0UWjeJZliEXOyzzI="}]},{"Route":"_content/MudBlazor/MudBlazor.min.jk5eo7zo4m.css","AssetFile":"_content/MudBlazor/MudBlazor.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"606250"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0=\""},{"Name":"Last-Modified","Value":"Wed, 01 Oct 2025 21:51:05 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jk5eo7zo4m"},{"Name":"integrity","Value":"sha256-TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.css"}]},{"Route":"_content/MudBlazor/MudBlazor.min.js","AssetFile":"_content/MudBlazor/MudBlazor.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"75165"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw=\""},{"Name":"Last-Modified","Value":"Wed, 01 Oct 2025 21:51:05 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js","AssetFile":"_content/MudBlazor/MudBlazor.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000061150859"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16352"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"0BJxfo+EOJvNKoBv/2ahm4RKrPjv7PhB/R16C3XOHDo=\""},{"Name":"ETag","Value":"W/\"hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js.gz","AssetFile":"_content/MudBlazor/MudBlazor.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16352"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"0BJxfo+EOJvNKoBv/2ahm4RKrPjv7PhB/R16C3XOHDo=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0BJxfo+EOJvNKoBv/2ahm4RKrPjv7PhB/R16C3XOHDo="}]},{"Route":"_content/MudBlazor/MudBlazor.min.tjzqk7tnel.js","AssetFile":"_content/MudBlazor/MudBlazor.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"75165"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw=\""},{"Name":"Last-Modified","Value":"Wed, 01 Oct 2025 21:51:05 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tjzqk7tnel"},{"Name":"integrity","Value":"sha256-hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.js"}]}]} \ No newline at end of file diff --git a/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/staticwebassets.build.json b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/staticwebassets.build.json new file mode 100644 index 0000000..b389571 --- /dev/null +++ b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/staticwebassets.build.json @@ -0,0 +1 @@ +{"Version":1,"Hash":"wE4qy6Owk2+ZCdzZlvIi5lwUzoIHteJqGuN3r+9OEoo=","Source":"OpenArchival.Blazor.FileViewer","BasePath":"_content/OpenArchival.Blazor.FileViewer","Mode":"Default","ManifestType":"Build","ReferencedProjectsConfiguration":[{"Identity":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj","Version":2,"Source":"OpenArchival.DataAccess","GetPublishAssetsTargets":"ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems","AdditionalPublishProperties":"Configuration=Debug;Platform=AnyCPU","AdditionalPublishPropertiesToRemove":"TargetFramework","GetBuildAssetsTargets":"GetCurrentProjectBuildStaticWebAssetItems","AdditionalBuildProperties":"Configuration=Debug;Platform=AnyCPU","AdditionalBuildPropertiesToRemove":"TargetFramework"}],"DiscoveryPatterns":[],"Assets":[{"Identity":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\Mud_Secondary.png","SourceId":"CodeBeam.MudExtensions","SourceType":"Package","ContentRoot":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\","BasePath":"_content/CodeBeam.MudExtensions","RelativePath":"Mud_Secondary.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"tig1qhobl3","Integrity":"G3hYUw4Ps9P/IQ3lw2zu96RSZaOf4zU+4QkXkH8Xi3Y=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\Mud_Secondary.png","FileLength":4558,"LastWriteTime":"2022-10-08T09:55:02+00:00"},{"Identity":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\MudExtensions.min.css","SourceId":"CodeBeam.MudExtensions","SourceType":"Package","ContentRoot":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\","BasePath":"_content/CodeBeam.MudExtensions","RelativePath":"MudExtensions.min.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"qz4batx9cb","Integrity":"Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\MudExtensions.min.css","FileLength":21465,"LastWriteTime":"2023-02-26T14:08:26+00:00"},{"Identity":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\MudExtensions.min.js","SourceId":"CodeBeam.MudExtensions","SourceType":"Package","ContentRoot":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\","BasePath":"_content/CodeBeam.MudExtensions","RelativePath":"MudExtensions.min.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"loe7cozwzj","Integrity":"FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\MudExtensions.min.js","FileLength":328,"LastWriteTime":"2023-02-26T14:08:26+00:00"},{"Identity":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\MudBlazor.min.css","SourceId":"MudBlazor","SourceType":"Package","ContentRoot":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\","BasePath":"_content/MudBlazor","RelativePath":"MudBlazor.min.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"jk5eo7zo4m","Integrity":"TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\MudBlazor.min.css","FileLength":606250,"LastWriteTime":"2025-10-01T21:51:05+00:00"},{"Identity":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\MudBlazor.min.js","SourceId":"MudBlazor","SourceType":"Package","ContentRoot":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\","BasePath":"_content/MudBlazor","RelativePath":"MudBlazor.min.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"tjzqk7tnel","Integrity":"hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\MudBlazor.min.js","FileLength":75165,"LastWriteTime":"2025-10-01T21:51:05+00:00"},{"Identity":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\compressed\\0wz98yz2xy-tjzqk7tnel.gz","SourceId":"MudBlazor","SourceType":"Package","ContentRoot":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\compressed\\","BasePath":"_content/MudBlazor","RelativePath":"MudBlazor.min.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\MudBlazor.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"c1g0o1u83p","Integrity":"0BJxfo+EOJvNKoBv/2ahm4RKrPjv7PhB/R16C3XOHDo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\MudBlazor.min.js","FileLength":16352,"LastWriteTime":"2025-10-08T17:06:27+00:00"},{"Identity":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\compressed\\24gzn4tg1a-qz4batx9cb.gz","SourceId":"CodeBeam.MudExtensions","SourceType":"Package","ContentRoot":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\compressed\\","BasePath":"_content/CodeBeam.MudExtensions","RelativePath":"MudExtensions.min.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\MudExtensions.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"cn6plcuhii","Integrity":"6PJ7t7WR38pQTSYe6IR0pbqo2cIZK5wuW/w26kprtBg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\MudExtensions.min.css","FileLength":3383,"LastWriteTime":"2025-10-08T17:06:27+00:00"},{"Identity":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\compressed\\94gzerkhdz-83wakjp31g.gz","SourceId":"OpenArchival.Blazor.FileViewer","SourceType":"Computed","ContentRoot":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\compressed\\","BasePath":"_content/OpenArchival.Blazor.FileViewer","RelativePath":"OpenArchival.Blazor.FileViewer#[.{fingerprint=83wakjp31g}]?.styles.css.gz","AssetKind":"All","AssetMode":"CurrentProject","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\scopedcss\\bundle\\OpenArchival.Blazor.FileViewer.styles.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"hre2inkdpm","Integrity":"w7pUrtgbGsKChPQ+JZf6wIJIlRo5ItP1AJKKjbLPBUM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\scopedcss\\bundle\\OpenArchival.Blazor.FileViewer.styles.css","FileLength":162,"LastWriteTime":"2025-10-08T17:06:27+00:00"},{"Identity":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\compressed\\oacsgz2ky3-83wakjp31g.gz","SourceId":"OpenArchival.Blazor.FileViewer","SourceType":"Computed","ContentRoot":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\compressed\\","BasePath":"_content/OpenArchival.Blazor.FileViewer","RelativePath":"OpenArchival.Blazor.FileViewer#[.{fingerprint=83wakjp31g}]!.bundle.scp.css.gz","AssetKind":"All","AssetMode":"Reference","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\scopedcss\\projectbundle\\OpenArchival.Blazor.FileViewer.bundle.scp.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"hre2inkdpm","Integrity":"w7pUrtgbGsKChPQ+JZf6wIJIlRo5ItP1AJKKjbLPBUM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\scopedcss\\projectbundle\\OpenArchival.Blazor.FileViewer.bundle.scp.css","FileLength":162,"LastWriteTime":"2025-10-08T17:06:27+00:00"},{"Identity":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\compressed\\stwk5nfoxp-loe7cozwzj.gz","SourceId":"CodeBeam.MudExtensions","SourceType":"Package","ContentRoot":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\compressed\\","BasePath":"_content/CodeBeam.MudExtensions","RelativePath":"MudExtensions.min.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\MudExtensions.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"z9m1gj6ro7","Integrity":"B4PUgpr06+d3lAMWknp0EVkaGxPZJdpp5/UidGHzvnc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\MudExtensions.min.js","FileLength":196,"LastWriteTime":"2025-10-08T17:06:27+00:00"},{"Identity":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\compressed\\tzxjg6is5z-jk5eo7zo4m.gz","SourceId":"MudBlazor","SourceType":"Package","ContentRoot":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\compressed\\","BasePath":"_content/MudBlazor","RelativePath":"MudBlazor.min.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\MudBlazor.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"93u47y2o0e","Integrity":"VcBMO3aXrzxl+jfWY+TaxPKsd3L0UWjeJZliEXOyzzI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\MudBlazor.min.css","FileLength":65509,"LastWriteTime":"2025-10-08T17:06:27+00:00"},{"Identity":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\scopedcss\\bundle\\OpenArchival.Blazor.FileViewer.styles.css","SourceId":"OpenArchival.Blazor.FileViewer","SourceType":"Computed","ContentRoot":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\scopedcss\\bundle\\","BasePath":"_content/OpenArchival.Blazor.FileViewer","RelativePath":"OpenArchival.Blazor.FileViewer#[.{fingerprint}]?.styles.css","AssetKind":"All","AssetMode":"CurrentProject","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"ScopedCss","AssetTraitValue":"ApplicationBundle","Fingerprint":"83wakjp31g","Integrity":"9NCmFFvSZYsIWCQoks2vSnN9EMEwePSQhoXfFOCn5mg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\scopedcss\\bundle\\OpenArchival.Blazor.FileViewer.styles.css","FileLength":186,"LastWriteTime":"2025-10-08T17:06:27+00:00"},{"Identity":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\scopedcss\\projectbundle\\OpenArchival.Blazor.FileViewer.bundle.scp.css","SourceId":"OpenArchival.Blazor.FileViewer","SourceType":"Computed","ContentRoot":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\scopedcss\\projectbundle\\","BasePath":"_content/OpenArchival.Blazor.FileViewer","RelativePath":"OpenArchival.Blazor.FileViewer#[.{fingerprint}]!.bundle.scp.css","AssetKind":"All","AssetMode":"Reference","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"ScopedCss","AssetTraitValue":"ProjectBundle","Fingerprint":"83wakjp31g","Integrity":"9NCmFFvSZYsIWCQoks2vSnN9EMEwePSQhoXfFOCn5mg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\scopedcss\\projectbundle\\OpenArchival.Blazor.FileViewer.bundle.scp.css","FileLength":186,"LastWriteTime":"2025-10-08T17:06:27+00:00"}],"Endpoints":[{"Route":"_content/CodeBeam.MudExtensions/Mud_Secondary.png","AssetFile":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\Mud_Secondary.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"4558"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"G3hYUw4Ps9P/IQ3lw2zu96RSZaOf4zU+4QkXkH8Xi3Y=\""},{"Name":"Last-Modified","Value":"Sat, 08 Oct 2022 09:55:02 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G3hYUw4Ps9P/IQ3lw2zu96RSZaOf4zU+4QkXkH8Xi3Y="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.css","AssetFile":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\MudExtensions.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"21465"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk=\""},{"Name":"Last-Modified","Value":"Sun, 26 Feb 2023 14:08:26 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.css","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\compressed\\24gzn4tg1a-qz4batx9cb.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000295508274"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"3383"},{"Name":"ETag","Value":"\"6PJ7t7WR38pQTSYe6IR0pbqo2cIZK5wuW/w26kprtBg=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.css.gz","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\compressed\\24gzn4tg1a-qz4batx9cb.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"3383"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"6PJ7t7WR38pQTSYe6IR0pbqo2cIZK5wuW/w26kprtBg=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6PJ7t7WR38pQTSYe6IR0pbqo2cIZK5wuW/w26kprtBg="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.js","AssetFile":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\MudExtensions.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"328"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc=\""},{"Name":"Last-Modified","Value":"Sun, 26 Feb 2023 14:08:26 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.js","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\compressed\\stwk5nfoxp-loe7cozwzj.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005076142132"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"196"},{"Name":"ETag","Value":"\"B4PUgpr06+d3lAMWknp0EVkaGxPZJdpp5/UidGHzvnc=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"W/\"FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.js.gz","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\compressed\\stwk5nfoxp-loe7cozwzj.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"196"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"B4PUgpr06+d3lAMWknp0EVkaGxPZJdpp5/UidGHzvnc=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-B4PUgpr06+d3lAMWknp0EVkaGxPZJdpp5/UidGHzvnc="}]},{"Route":"_content/MudBlazor/MudBlazor.min.css","AssetFile":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\MudBlazor.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"606250"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0=\""},{"Name":"Last-Modified","Value":"Wed, 01 Oct 2025 21:51:05 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0="}]},{"Route":"_content/MudBlazor/MudBlazor.min.css","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\compressed\\tzxjg6is5z-jk5eo7zo4m.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015264845"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"65509"},{"Name":"ETag","Value":"\"VcBMO3aXrzxl+jfWY+TaxPKsd3L0UWjeJZliEXOyzzI=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0="}]},{"Route":"_content/MudBlazor/MudBlazor.min.css.gz","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\compressed\\tzxjg6is5z-jk5eo7zo4m.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"65509"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"VcBMO3aXrzxl+jfWY+TaxPKsd3L0UWjeJZliEXOyzzI=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VcBMO3aXrzxl+jfWY+TaxPKsd3L0UWjeJZliEXOyzzI="}]},{"Route":"_content/MudBlazor/MudBlazor.min.jk5eo7zo4m.css","AssetFile":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\MudBlazor.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"606250"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0=\""},{"Name":"Last-Modified","Value":"Wed, 01 Oct 2025 21:51:05 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jk5eo7zo4m"},{"Name":"integrity","Value":"sha256-TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.css"}]},{"Route":"_content/MudBlazor/MudBlazor.min.js","AssetFile":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\MudBlazor.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"75165"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw=\""},{"Name":"Last-Modified","Value":"Wed, 01 Oct 2025 21:51:05 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\compressed\\0wz98yz2xy-tjzqk7tnel.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000061150859"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"16352"},{"Name":"ETag","Value":"\"0BJxfo+EOJvNKoBv/2ahm4RKrPjv7PhB/R16C3XOHDo=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"W/\"hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js.gz","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\compressed\\0wz98yz2xy-tjzqk7tnel.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"16352"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"0BJxfo+EOJvNKoBv/2ahm4RKrPjv7PhB/R16C3XOHDo=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0BJxfo+EOJvNKoBv/2ahm4RKrPjv7PhB/R16C3XOHDo="}]},{"Route":"_content/MudBlazor/MudBlazor.min.tjzqk7tnel.js","AssetFile":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\MudBlazor.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"75165"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw=\""},{"Name":"Last-Modified","Value":"Wed, 01 Oct 2025 21:51:05 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tjzqk7tnel"},{"Name":"integrity","Value":"sha256-hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.js"}]},{"Route":"OpenArchival.Blazor.FileViewer.83wakjp31g.bundle.scp.css","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\compressed\\oacsgz2ky3-83wakjp31g.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.006134969325"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"162"},{"Name":"ETag","Value":"\"w7pUrtgbGsKChPQ+JZf6wIJIlRo5ItP1AJKKjbLPBUM=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"9NCmFFvSZYsIWCQoks2vSnN9EMEwePSQhoXfFOCn5mg=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"83wakjp31g"},{"Name":"label","Value":"OpenArchival.Blazor.FileViewer.bundle.scp.css"},{"Name":"integrity","Value":"sha256-9NCmFFvSZYsIWCQoks2vSnN9EMEwePSQhoXfFOCn5mg="}]},{"Route":"OpenArchival.Blazor.FileViewer.83wakjp31g.bundle.scp.css","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\scopedcss\\projectbundle\\OpenArchival.Blazor.FileViewer.bundle.scp.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"186"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"9NCmFFvSZYsIWCQoks2vSnN9EMEwePSQhoXfFOCn5mg=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"83wakjp31g"},{"Name":"label","Value":"OpenArchival.Blazor.FileViewer.bundle.scp.css"},{"Name":"integrity","Value":"sha256-9NCmFFvSZYsIWCQoks2vSnN9EMEwePSQhoXfFOCn5mg="}]},{"Route":"OpenArchival.Blazor.FileViewer.83wakjp31g.bundle.scp.css.gz","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\compressed\\oacsgz2ky3-83wakjp31g.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"162"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"w7pUrtgbGsKChPQ+JZf6wIJIlRo5ItP1AJKKjbLPBUM=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"83wakjp31g"},{"Name":"label","Value":"OpenArchival.Blazor.FileViewer.bundle.scp.css.gz"},{"Name":"integrity","Value":"sha256-w7pUrtgbGsKChPQ+JZf6wIJIlRo5ItP1AJKKjbLPBUM="}]},{"Route":"OpenArchival.Blazor.FileViewer.83wakjp31g.styles.css","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\compressed\\94gzerkhdz-83wakjp31g.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.006134969325"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"162"},{"Name":"ETag","Value":"\"w7pUrtgbGsKChPQ+JZf6wIJIlRo5ItP1AJKKjbLPBUM=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"9NCmFFvSZYsIWCQoks2vSnN9EMEwePSQhoXfFOCn5mg=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"83wakjp31g"},{"Name":"label","Value":"OpenArchival.Blazor.FileViewer.styles.css"},{"Name":"integrity","Value":"sha256-9NCmFFvSZYsIWCQoks2vSnN9EMEwePSQhoXfFOCn5mg="}]},{"Route":"OpenArchival.Blazor.FileViewer.83wakjp31g.styles.css","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\scopedcss\\bundle\\OpenArchival.Blazor.FileViewer.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"186"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"9NCmFFvSZYsIWCQoks2vSnN9EMEwePSQhoXfFOCn5mg=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"83wakjp31g"},{"Name":"label","Value":"OpenArchival.Blazor.FileViewer.styles.css"},{"Name":"integrity","Value":"sha256-9NCmFFvSZYsIWCQoks2vSnN9EMEwePSQhoXfFOCn5mg="}]},{"Route":"OpenArchival.Blazor.FileViewer.83wakjp31g.styles.css.gz","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\compressed\\94gzerkhdz-83wakjp31g.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"162"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"w7pUrtgbGsKChPQ+JZf6wIJIlRo5ItP1AJKKjbLPBUM=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"83wakjp31g"},{"Name":"label","Value":"OpenArchival.Blazor.FileViewer.styles.css.gz"},{"Name":"integrity","Value":"sha256-w7pUrtgbGsKChPQ+JZf6wIJIlRo5ItP1AJKKjbLPBUM="}]},{"Route":"OpenArchival.Blazor.FileViewer.bundle.scp.css","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\compressed\\oacsgz2ky3-83wakjp31g.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.006134969325"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"162"},{"Name":"ETag","Value":"\"w7pUrtgbGsKChPQ+JZf6wIJIlRo5ItP1AJKKjbLPBUM=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"9NCmFFvSZYsIWCQoks2vSnN9EMEwePSQhoXfFOCn5mg=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9NCmFFvSZYsIWCQoks2vSnN9EMEwePSQhoXfFOCn5mg="}]},{"Route":"OpenArchival.Blazor.FileViewer.bundle.scp.css","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\scopedcss\\projectbundle\\OpenArchival.Blazor.FileViewer.bundle.scp.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"186"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"9NCmFFvSZYsIWCQoks2vSnN9EMEwePSQhoXfFOCn5mg=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9NCmFFvSZYsIWCQoks2vSnN9EMEwePSQhoXfFOCn5mg="}]},{"Route":"OpenArchival.Blazor.FileViewer.bundle.scp.css.gz","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\compressed\\oacsgz2ky3-83wakjp31g.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"162"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"w7pUrtgbGsKChPQ+JZf6wIJIlRo5ItP1AJKKjbLPBUM=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-w7pUrtgbGsKChPQ+JZf6wIJIlRo5ItP1AJKKjbLPBUM="}]},{"Route":"OpenArchival.Blazor.FileViewer.styles.css","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\compressed\\94gzerkhdz-83wakjp31g.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.006134969325"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"162"},{"Name":"ETag","Value":"\"w7pUrtgbGsKChPQ+JZf6wIJIlRo5ItP1AJKKjbLPBUM=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"9NCmFFvSZYsIWCQoks2vSnN9EMEwePSQhoXfFOCn5mg=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9NCmFFvSZYsIWCQoks2vSnN9EMEwePSQhoXfFOCn5mg="}]},{"Route":"OpenArchival.Blazor.FileViewer.styles.css","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\scopedcss\\bundle\\OpenArchival.Blazor.FileViewer.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"186"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"9NCmFFvSZYsIWCQoks2vSnN9EMEwePSQhoXfFOCn5mg=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9NCmFFvSZYsIWCQoks2vSnN9EMEwePSQhoXfFOCn5mg="}]},{"Route":"OpenArchival.Blazor.FileViewer.styles.css.gz","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\compressed\\94gzerkhdz-83wakjp31g.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"162"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"w7pUrtgbGsKChPQ+JZf6wIJIlRo5ItP1AJKKjbLPBUM=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-w7pUrtgbGsKChPQ+JZf6wIJIlRo5ItP1AJKKjbLPBUM="}]}]} \ No newline at end of file diff --git a/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/staticwebassets.build.json.cache b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/staticwebassets.build.json.cache new file mode 100644 index 0000000..5f36313 --- /dev/null +++ b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/staticwebassets.build.json.cache @@ -0,0 +1 @@ +wE4qy6Owk2+ZCdzZlvIi5lwUzoIHteJqGuN3r+9OEoo= \ No newline at end of file diff --git a/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/staticwebassets.development.json b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/staticwebassets.development.json new file mode 100644 index 0000000..dd248b8 --- /dev/null +++ b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/staticwebassets.development.json @@ -0,0 +1 @@ +{"ContentRoots":["C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\scopedcss\\bundle\\","C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\compressed\\","C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\","C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\"],"Root":{"Children":{"OpenArchival.Blazor.FileViewer.styles.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"OpenArchival.Blazor.FileViewer.styles.css"},"Patterns":null},"OpenArchival.Blazor.FileViewer.styles.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"94gzerkhdz-83wakjp31g.gz"},"Patterns":null},"_content":{"Children":{"CodeBeam.MudExtensions":{"Children":{"Mud_Secondary.png":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"Mud_Secondary.png"},"Patterns":null},"MudExtensions.min.css":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"MudExtensions.min.css"},"Patterns":null},"MudExtensions.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"24gzn4tg1a-qz4batx9cb.gz"},"Patterns":null},"MudExtensions.min.js":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"MudExtensions.min.js"},"Patterns":null},"MudExtensions.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"stwk5nfoxp-loe7cozwzj.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"MudBlazor":{"Children":{"MudBlazor.min.css":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"MudBlazor.min.css"},"Patterns":null},"MudBlazor.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"tzxjg6is5z-jk5eo7zo4m.gz"},"Patterns":null},"MudBlazor.min.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"MudBlazor.min.js"},"Patterns":null},"MudBlazor.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"0wz98yz2xy-tjzqk7tnel.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}} \ No newline at end of file diff --git a/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/staticwebassets.pack.json b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/staticwebassets.pack.json new file mode 100644 index 0000000..d5b92fa --- /dev/null +++ b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/staticwebassets.pack.json @@ -0,0 +1,29 @@ +{ + "Files": [ + { + "Id": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\scopedcss\\projectbundle\\OpenArchival.Blazor.FileViewer.bundle.scp.css", + "PackagePath": "staticwebassets\\OpenArchival.Blazor.FileViewer.83wakjp31g.bundle.scp.css" + }, + { + "Id": "obj\\Debug\\net9.0\\staticwebassets\\msbuild.OpenArchival.Blazor.FileViewer.Microsoft.AspNetCore.StaticWebAssetEndpoints.props", + "PackagePath": "build\\Microsoft.AspNetCore.StaticWebAssetEndpoints.props" + }, + { + "Id": "obj\\Debug\\net9.0\\staticwebassets\\msbuild.OpenArchival.Blazor.FileViewer.Microsoft.AspNetCore.StaticWebAssets.props", + "PackagePath": "build\\Microsoft.AspNetCore.StaticWebAssets.props" + }, + { + "Id": "obj\\Debug\\net9.0\\staticwebassets\\msbuild.build.OpenArchival.Blazor.FileViewer.props", + "PackagePath": "build\\OpenArchival.Blazor.FileViewer.props" + }, + { + "Id": "obj\\Debug\\net9.0\\staticwebassets\\msbuild.buildMultiTargeting.OpenArchival.Blazor.FileViewer.props", + "PackagePath": "buildMultiTargeting\\OpenArchival.Blazor.FileViewer.props" + }, + { + "Id": "obj\\Debug\\net9.0\\staticwebassets\\msbuild.buildTransitive.OpenArchival.Blazor.FileViewer.props", + "PackagePath": "buildTransitive\\OpenArchival.Blazor.FileViewer.props" + } + ], + "ElementsToRemove": [] +} \ No newline at end of file diff --git a/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/staticwebassets.references.upToDateCheck.txt b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/staticwebassets.references.upToDateCheck.txt new file mode 100644 index 0000000..d22dd54 --- /dev/null +++ b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/staticwebassets.references.upToDateCheck.txt @@ -0,0 +1,22 @@ +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json diff --git a/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/staticwebassets.removed.txt b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/staticwebassets.removed.txt new file mode 100644 index 0000000..e69de29 diff --git a/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/staticwebassets/msbuild.OpenArchival.Blazor.FileViewer.Microsoft.AspNetCore.StaticWebAssetEndpoints.props b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/staticwebassets/msbuild.OpenArchival.Blazor.FileViewer.Microsoft.AspNetCore.StaticWebAssetEndpoints.props new file mode 100644 index 0000000..4df2c0d --- /dev/null +++ b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/staticwebassets/msbuild.OpenArchival.Blazor.FileViewer.Microsoft.AspNetCore.StaticWebAssetEndpoints.props @@ -0,0 +1,16 @@ + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\OpenArchival.Blazor.FileViewer.83wakjp31g.bundle.scp.css')) + + + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\OpenArchival.Blazor.FileViewer.83wakjp31g.bundle.scp.css')) + + + + + + \ No newline at end of file diff --git a/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/staticwebassets/msbuild.OpenArchival.Blazor.FileViewer.Microsoft.AspNetCore.StaticWebAssets.props b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/staticwebassets/msbuild.OpenArchival.Blazor.FileViewer.Microsoft.AspNetCore.StaticWebAssets.props new file mode 100644 index 0000000..4e56e89 --- /dev/null +++ b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/staticwebassets/msbuild.OpenArchival.Blazor.FileViewer.Microsoft.AspNetCore.StaticWebAssets.props @@ -0,0 +1,24 @@ + + + + Package + OpenArchival.Blazor.FileViewer + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/OpenArchival.Blazor.FileViewer + OpenArchival.Blazor.FileViewer.83wakjp31g.bundle.scp.css + All + Reference + Primary + + ScopedCss + ProjectBundle + 83wakjp31g + 9NCmFFvSZYsIWCQoks2vSnN9EMEwePSQhoXfFOCn5mg= + Never + PreserveNewest + 186 + Wed, 08 Oct 2025 17:06:27 GMT + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\OpenArchival.Blazor.FileViewer.83wakjp31g.bundle.scp.css')) + + + \ No newline at end of file diff --git a/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/staticwebassets/msbuild.OpenArchival.FileViewer.Microsoft.AspNetCore.StaticWebAssetEndpoints.props b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/staticwebassets/msbuild.OpenArchival.FileViewer.Microsoft.AspNetCore.StaticWebAssetEndpoints.props new file mode 100644 index 0000000..fdcea8a --- /dev/null +++ b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/staticwebassets/msbuild.OpenArchival.FileViewer.Microsoft.AspNetCore.StaticWebAssetEndpoints.props @@ -0,0 +1,16 @@ + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\OpenArchival.FileViewer.y5glfmno8n.bundle.scp.css')) + + + + + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\OpenArchival.FileViewer.y5glfmno8n.bundle.scp.css')) + + + + + + \ No newline at end of file diff --git a/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/staticwebassets/msbuild.OpenArchival.FileViewer.Microsoft.AspNetCore.StaticWebAssets.props b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/staticwebassets/msbuild.OpenArchival.FileViewer.Microsoft.AspNetCore.StaticWebAssets.props new file mode 100644 index 0000000..42ba1e3 --- /dev/null +++ b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/staticwebassets/msbuild.OpenArchival.FileViewer.Microsoft.AspNetCore.StaticWebAssets.props @@ -0,0 +1,24 @@ + + + + Package + OpenArchival.FileViewer + $(MSBuildThisFileDirectory)..\staticwebassets\ + _content/OpenArchival.FileViewer + OpenArchival.FileViewer.y5glfmno8n.bundle.scp.css + All + Reference + Primary + + ScopedCss + ProjectBundle + y5glfmno8n + FjzuGdlsDKoQevTrlIL63uhdnocuk5HvQc5fTASoPAM= + Never + PreserveNewest + 179 + Tue, 07 Oct 2025 20:15:18 GMT + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\OpenArchival.FileViewer.y5glfmno8n.bundle.scp.css')) + + + \ No newline at end of file diff --git a/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/staticwebassets/msbuild.build.OpenArchival.Blazor.FileViewer.props b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/staticwebassets/msbuild.build.OpenArchival.Blazor.FileViewer.props new file mode 100644 index 0000000..ddaed44 --- /dev/null +++ b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/staticwebassets/msbuild.build.OpenArchival.Blazor.FileViewer.props @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/staticwebassets/msbuild.build.OpenArchival.FileViewer.props b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/staticwebassets/msbuild.build.OpenArchival.FileViewer.props new file mode 100644 index 0000000..ddaed44 --- /dev/null +++ b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/staticwebassets/msbuild.build.OpenArchival.FileViewer.props @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/staticwebassets/msbuild.buildMultiTargeting.OpenArchival.Blazor.FileViewer.props b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/staticwebassets/msbuild.buildMultiTargeting.OpenArchival.Blazor.FileViewer.props new file mode 100644 index 0000000..d1b289e --- /dev/null +++ b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/staticwebassets/msbuild.buildMultiTargeting.OpenArchival.Blazor.FileViewer.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/staticwebassets/msbuild.buildMultiTargeting.OpenArchival.FileViewer.props b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/staticwebassets/msbuild.buildMultiTargeting.OpenArchival.FileViewer.props new file mode 100644 index 0000000..db084a3 --- /dev/null +++ b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/staticwebassets/msbuild.buildMultiTargeting.OpenArchival.FileViewer.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/staticwebassets/msbuild.buildTransitive.OpenArchival.Blazor.FileViewer.props b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/staticwebassets/msbuild.buildTransitive.OpenArchival.Blazor.FileViewer.props new file mode 100644 index 0000000..df695e3 --- /dev/null +++ b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/staticwebassets/msbuild.buildTransitive.OpenArchival.Blazor.FileViewer.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/staticwebassets/msbuild.buildTransitive.OpenArchival.FileViewer.props b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/staticwebassets/msbuild.buildTransitive.OpenArchival.FileViewer.props new file mode 100644 index 0000000..1f2f030 --- /dev/null +++ b/OpenArchival.Blazor.FileViewer/obj/Debug/net9.0/staticwebassets/msbuild.buildTransitive.OpenArchival.FileViewer.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/OpenArchival.Blazor.FileViewer/obj/OpenArchival.Blazor.FileViewer.csproj.nuget.dgspec.json b/OpenArchival.Blazor.FileViewer/obj/OpenArchival.Blazor.FileViewer.csproj.nuget.dgspec.json new file mode 100644 index 0000000..4048a1e --- /dev/null +++ b/OpenArchival.Blazor.FileViewer/obj/OpenArchival.Blazor.FileViewer.csproj.nuget.dgspec.json @@ -0,0 +1,192 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\OpenArchival.Blazor.FileViewer.csproj": {} + }, + "projects": { + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\OpenArchival.Blazor.FileViewer.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\OpenArchival.Blazor.FileViewer.csproj", + "projectName": "OpenArchival.Blazor.FileViewer", + "projectPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\OpenArchival.Blazor.FileViewer.csproj", + "packagesPath": "C:\\Users\\vtall\\.nuget\\packages\\", + "outputPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\NuGet.Config", + "C:\\Users\\vtall\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net9.0" + ], + "sources": { + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "projectReferences": { + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj": { + "projectPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "9.0.300" + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "dependencies": { + "CodeBeam.MudExtensions": { + "target": "Package", + "version": "[6.3.0, )" + }, + "MudBlazor": { + "target": "Package", + "version": "[8.13.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.304/PortableRuntimeIdentifierGraph.json" + } + } + }, + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj", + "projectName": "OpenArchival.DataAccess", + "projectPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj", + "packagesPath": "C:\\Users\\vtall\\.nuget\\packages\\", + "outputPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\NuGet.Config", + "C:\\Users\\vtall\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net9.0" + ], + "sources": { + "C:\\Program Files\\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": { + "EntityFramework": { + "target": "Package", + "version": "[6.5.1, )" + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore": { + "target": "Package", + "version": "[9.0.8, )" + }, + "Microsoft.EntityFrameworkCore": { + "target": "Package", + "version": "[9.0.8, )" + }, + "Microsoft.EntityFrameworkCore.Design": { + "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", + "suppressParent": "All", + "target": "Package", + "version": "[9.0.8, )" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions": { + "target": "Package", + "version": "[9.0.8, )" + }, + "Npgsql": { + "target": "Package", + "version": "[9.0.3, )" + }, + "Npgsql.EntityFrameworkCore.PostgreSQL": { + "target": "Package", + "version": "[9.0.4, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.304/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/OpenArchival.Blazor.FileViewer/obj/OpenArchival.Blazor.FileViewer.csproj.nuget.g.props b/OpenArchival.Blazor.FileViewer/obj/OpenArchival.Blazor.FileViewer.csproj.nuget.g.props new file mode 100644 index 0000000..3606f97 --- /dev/null +++ b/OpenArchival.Blazor.FileViewer/obj/OpenArchival.Blazor.FileViewer.csproj.nuget.g.props @@ -0,0 +1,26 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\vtall\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + PackageReference + 6.14.1 + + + + + + + + + + + + + C:\Users\vtall\.nuget\packages\entityframework\6.5.1 + C:\Users\vtall\.nuget\packages\buildbundlerminifier\3.2.449 + + \ No newline at end of file diff --git a/OpenArchival.Blazor.FileViewer/obj/OpenArchival.Blazor.FileViewer.csproj.nuget.g.targets b/OpenArchival.Blazor.FileViewer/obj/OpenArchival.Blazor.FileViewer.csproj.nuget.g.targets new file mode 100644 index 0000000..1dd74b3 --- /dev/null +++ b/OpenArchival.Blazor.FileViewer/obj/OpenArchival.Blazor.FileViewer.csproj.nuget.g.targets @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/OpenArchival.Blazor.FileViewer/obj/OpenArchival.FileViewer.csproj.nuget.dgspec.json b/OpenArchival.Blazor.FileViewer/obj/OpenArchival.FileViewer.csproj.nuget.dgspec.json new file mode 100644 index 0000000..8028d20 --- /dev/null +++ b/OpenArchival.Blazor.FileViewer/obj/OpenArchival.FileViewer.csproj.nuget.dgspec.json @@ -0,0 +1,192 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.FileViewer\\OpenArchival.FileViewer.csproj": {} + }, + "projects": { + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj", + "projectName": "OpenArchival.DataAccess", + "projectPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj", + "packagesPath": "C:\\Users\\vtall\\.nuget\\packages\\", + "outputPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\NuGet.Config", + "C:\\Users\\vtall\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net9.0" + ], + "sources": { + "C:\\Program Files\\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": { + "EntityFramework": { + "target": "Package", + "version": "[6.5.1, )" + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore": { + "target": "Package", + "version": "[9.0.8, )" + }, + "Microsoft.EntityFrameworkCore": { + "target": "Package", + "version": "[9.0.8, )" + }, + "Microsoft.EntityFrameworkCore.Design": { + "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", + "suppressParent": "All", + "target": "Package", + "version": "[9.0.8, )" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions": { + "target": "Package", + "version": "[9.0.8, )" + }, + "Npgsql": { + "target": "Package", + "version": "[9.0.3, )" + }, + "Npgsql.EntityFrameworkCore.PostgreSQL": { + "target": "Package", + "version": "[9.0.4, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.304/PortableRuntimeIdentifierGraph.json" + } + } + }, + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.FileViewer\\OpenArchival.FileViewer.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.FileViewer\\OpenArchival.FileViewer.csproj", + "projectName": "OpenArchival.FileViewer", + "projectPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.FileViewer\\OpenArchival.FileViewer.csproj", + "packagesPath": "C:\\Users\\vtall\\.nuget\\packages\\", + "outputPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.FileViewer\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\NuGet.Config", + "C:\\Users\\vtall\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net9.0" + ], + "sources": { + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "projectReferences": { + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj": { + "projectPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "9.0.300" + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "dependencies": { + "CodeBeam.MudExtensions": { + "target": "Package", + "version": "[6.3.0, )" + }, + "MudBlazor": { + "target": "Package", + "version": "[8.13.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.304/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/OpenArchival.Blazor.FileViewer/obj/OpenArchival.FileViewer.csproj.nuget.g.props b/OpenArchival.Blazor.FileViewer/obj/OpenArchival.FileViewer.csproj.nuget.g.props new file mode 100644 index 0000000..3606f97 --- /dev/null +++ b/OpenArchival.Blazor.FileViewer/obj/OpenArchival.FileViewer.csproj.nuget.g.props @@ -0,0 +1,26 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\vtall\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + PackageReference + 6.14.1 + + + + + + + + + + + + + C:\Users\vtall\.nuget\packages\entityframework\6.5.1 + C:\Users\vtall\.nuget\packages\buildbundlerminifier\3.2.449 + + \ No newline at end of file diff --git a/OpenArchival.Blazor.FileViewer/obj/OpenArchival.FileViewer.csproj.nuget.g.targets b/OpenArchival.Blazor.FileViewer/obj/OpenArchival.FileViewer.csproj.nuget.g.targets new file mode 100644 index 0000000..1dd74b3 --- /dev/null +++ b/OpenArchival.Blazor.FileViewer/obj/OpenArchival.FileViewer.csproj.nuget.g.targets @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/OpenArchival.Blazor.FileViewer/obj/Release/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs b/OpenArchival.Blazor.FileViewer/obj/Release/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs new file mode 100644 index 0000000..feda5e9 --- /dev/null +++ b/OpenArchival.Blazor.FileViewer/obj/Release/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/OpenArchival.Blazor.FileViewer/obj/Release/net9.0/OpenArchival.FileViewer.AssemblyInfo.cs b/OpenArchival.Blazor.FileViewer/obj/Release/net9.0/OpenArchival.FileViewer.AssemblyInfo.cs new file mode 100644 index 0000000..037ca13 --- /dev/null +++ b/OpenArchival.Blazor.FileViewer/obj/Release/net9.0/OpenArchival.FileViewer.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// 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("OpenArchival.FileViewer")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+781793a27f2e164808340b1adb5ce70e1800b187")] +[assembly: System.Reflection.AssemblyProductAttribute("OpenArchival.FileViewer")] +[assembly: System.Reflection.AssemblyTitleAttribute("OpenArchival.FileViewer")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/OpenArchival.Blazor.FileViewer/obj/Release/net9.0/OpenArchival.FileViewer.AssemblyInfoInputs.cache b/OpenArchival.Blazor.FileViewer/obj/Release/net9.0/OpenArchival.FileViewer.AssemblyInfoInputs.cache new file mode 100644 index 0000000..41f85ed --- /dev/null +++ b/OpenArchival.Blazor.FileViewer/obj/Release/net9.0/OpenArchival.FileViewer.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +956f09c9f117142a199c1feb25b8f1eadd5a2f8d7eeb217ad3471e7512fb0dd4 diff --git a/OpenArchival.Blazor.FileViewer/obj/Release/net9.0/OpenArchival.FileViewer.GeneratedMSBuildEditorConfig.editorconfig b/OpenArchival.Blazor.FileViewer/obj/Release/net9.0/OpenArchival.FileViewer.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..c9c1006 --- /dev/null +++ b/OpenArchival.Blazor.FileViewer/obj/Release/net9.0/OpenArchival.FileViewer.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,36 @@ +is_global = true +build_property.MudDebugAnalyzer = +build_property.MudAllowedAttributePattern = +build_property.MudAllowedAttributeList = +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 +build_property.RootNamespace = OpenArchival.FileViewer +build_property.RootNamespace = OpenArchival.FileViewer +build_property.ProjectDir = C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.FileViewer\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.RazorLangVersion = 9.0 +build_property.SupportLocalizedComponentNames = +build_property.GenerateRazorMetadataSourceChecksumAttributes = +build_property.MSBuildProjectDirectory = C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.FileViewer +build_property._RazorSourceGeneratorDebug = +build_property.EffectiveAnalysisLevelStyle = 9.0 +build_property.EnableCodeStyleSeverity = + +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.FileViewer/FileViewers/ImageViewer.razor] +build_metadata.AdditionalFiles.TargetPath = RmlsZVZpZXdlcnNcSW1hZ2VWaWV3ZXIucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.FileViewer/FileViewers/UnsupportedFileViewer.razor] +build_metadata.AdditionalFiles.TargetPath = RmlsZVZpZXdlcnNcVW5zdXBwb3J0ZWRGaWxlVmlld2VyLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.FileViewer/FileViewerCarousel.razor] +build_metadata.AdditionalFiles.TargetPath = RmlsZVZpZXdlckNhcm91c2VsLnJhem9y +build_metadata.AdditionalFiles.CssScope = b-trswm27i7b diff --git a/OpenArchival.Blazor.FileViewer/obj/Release/net9.0/OpenArchival.FileViewer.GlobalUsings.g.cs b/OpenArchival.Blazor.FileViewer/obj/Release/net9.0/OpenArchival.FileViewer.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/OpenArchival.Blazor.FileViewer/obj/Release/net9.0/OpenArchival.FileViewer.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/OpenArchival.Blazor.FileViewer/obj/Release/net9.0/OpenArchival.FileViewer.assets.cache b/OpenArchival.Blazor.FileViewer/obj/Release/net9.0/OpenArchival.FileViewer.assets.cache new file mode 100644 index 0000000..8ba5377 Binary files /dev/null and b/OpenArchival.Blazor.FileViewer/obj/Release/net9.0/OpenArchival.FileViewer.assets.cache differ diff --git a/OpenArchival.Blazor.FileViewer/obj/Release/net9.0/OpenArchival.FileViewer.csproj.AssemblyReference.cache b/OpenArchival.Blazor.FileViewer/obj/Release/net9.0/OpenArchival.FileViewer.csproj.AssemblyReference.cache new file mode 100644 index 0000000..0f50e3f Binary files /dev/null and b/OpenArchival.Blazor.FileViewer/obj/Release/net9.0/OpenArchival.FileViewer.csproj.AssemblyReference.cache differ diff --git a/OpenArchival.Blazor.FileViewer/obj/project.assets.json b/OpenArchival.Blazor.FileViewer/obj/project.assets.json new file mode 100644 index 0000000..5cecfe4 --- /dev/null +++ b/OpenArchival.Blazor.FileViewer/obj/project.assets.json @@ -0,0 +1,2469 @@ +{ + "version": 3, + "targets": { + "net9.0": { + "BuildBundlerMinifier/3.2.449": { + "type": "package", + "build": { + "build/_._": {} + } + }, + "CodeBeam.MudExtensions/6.3.0": { + "type": "package", + "dependencies": { + "BuildBundlerMinifier": "3.2.449", + "CsvHelper": "30.0.1", + "Microsoft.AspNetCore.Components": "7.0.1", + "Microsoft.AspNetCore.Components.Web": "7.0.1", + "MudBlazor": "6.1.9" + }, + "compile": { + "lib/net7.0/CodeBeam.MudExtensions.dll": {} + }, + "runtime": { + "lib/net7.0/CodeBeam.MudExtensions.dll": {} + }, + "build": { + "buildTransitive/CodeBeam.MudExtensions.props": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/CodeBeam.MudExtensions.props": {} + } + }, + "CsvHelper/30.0.1": { + "type": "package", + "compile": { + "lib/net6.0/CsvHelper.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/CsvHelper.dll": { + "related": ".xml" + } + } + }, + "EntityFramework/6.5.1": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.7.0", + "System.CodeDom": "6.0.0", + "System.ComponentModel.Annotations": "5.0.0", + "System.Configuration.ConfigurationManager": "6.0.1", + "System.Data.SqlClient": "4.8.6" + }, + "compile": { + "lib/netstandard2.1/EntityFramework.SqlServer.dll": { + "related": ".xml" + }, + "lib/netstandard2.1/EntityFramework.dll": { + "related": ".SqlServer.xml;.xml" + } + }, + "runtime": { + "lib/netstandard2.1/EntityFramework.SqlServer.dll": { + "related": ".xml" + }, + "lib/netstandard2.1/EntityFramework.dll": { + "related": ".SqlServer.xml;.xml" + } + }, + "build": { + "buildTransitive/net6.0/EntityFramework.props": {}, + "buildTransitive/net6.0/EntityFramework.targets": {} + } + }, + "Microsoft.AspNetCore.Authorization/9.0.1": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Metadata": "9.0.1", + "Microsoft.Extensions.Logging.Abstractions": "9.0.1", + "Microsoft.Extensions.Options": "9.0.1" + }, + "compile": { + "lib/net9.0/Microsoft.AspNetCore.Authorization.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Authorization.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Components/9.0.1": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Authorization": "9.0.1", + "Microsoft.AspNetCore.Components.Analyzers": "9.0.1" + }, + "compile": { + "lib/net9.0/Microsoft.AspNetCore.Components.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Components.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Components.Analyzers/9.0.1": { + "type": "package", + "build": { + "buildTransitive/netstandard2.0/Microsoft.AspNetCore.Components.Analyzers.targets": {} + } + }, + "Microsoft.AspNetCore.Components.Forms/9.0.1": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Components": "9.0.1" + }, + "compile": { + "lib/net9.0/Microsoft.AspNetCore.Components.Forms.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Components.Forms.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Components.Web/9.0.1": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Components": "9.0.1", + "Microsoft.AspNetCore.Components.Forms": "9.0.1", + "Microsoft.Extensions.DependencyInjection": "9.0.1", + "Microsoft.Extensions.Primitives": "9.0.1", + "Microsoft.JSInterop": "9.0.1" + }, + "compile": { + "lib/net9.0/Microsoft.AspNetCore.Components.Web.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Components.Web.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Cryptography.Internal/9.0.8": { + "type": "package", + "compile": { + "lib/net9.0/Microsoft.AspNetCore.Cryptography.Internal.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Cryptography.Internal.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Cryptography.Internal": "9.0.8" + }, + "compile": { + "lib/net9.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore.Relational": "9.0.8", + "Microsoft.Extensions.Identity.Stores": "9.0.8" + }, + "compile": { + "lib/net9.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Metadata/9.0.1": { + "type": "package", + "compile": { + "lib/net9.0/Microsoft.AspNetCore.Metadata.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Metadata.dll": { + "related": ".xml" + } + } + }, + "Microsoft.CSharp/4.7.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "Microsoft.EntityFrameworkCore/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "9.0.8", + "Microsoft.EntityFrameworkCore.Analyzers": "9.0.8", + "Microsoft.Extensions.Caching.Memory": "9.0.8", + "Microsoft.Extensions.Logging": "9.0.8" + }, + "compile": { + "lib/net8.0/Microsoft.EntityFrameworkCore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.EntityFrameworkCore.props": {} + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/9.0.8": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/9.0.8": { + "type": "package" + }, + "Microsoft.EntityFrameworkCore.Relational/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore": "9.0.8", + "Microsoft.Extensions.Caching.Memory": "9.0.8", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.8", + "Microsoft.Extensions.Logging": "9.0.8" + }, + "compile": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Caching.Abstractions/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.8" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Caching.Memory/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "9.0.8", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8", + "Microsoft.Extensions.Logging.Abstractions": "9.0.8", + "Microsoft.Extensions.Options": "9.0.8", + "Microsoft.Extensions.Primitives": "9.0.8" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Caching.Memory.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Caching.Memory.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.8" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.8": { + "type": "package", + "compile": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Identity.Core/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Cryptography.KeyDerivation": "9.0.8", + "Microsoft.Extensions.Logging": "9.0.8", + "Microsoft.Extensions.Options": "9.0.8" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Identity.Core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Identity.Core.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Identity.Stores/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "9.0.8", + "Microsoft.Extensions.Identity.Core": "9.0.8", + "Microsoft.Extensions.Logging": "9.0.8" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Identity.Stores.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Identity.Stores.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Localization/9.0.1": { + "type": "package", + "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" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Localization.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Localization.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Localization.Abstractions/9.0.1": { + "type": "package", + "compile": { + "lib/net9.0/Microsoft.Extensions.Localization.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Localization.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Logging/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "9.0.8", + "Microsoft.Extensions.Logging.Abstractions": "9.0.8", + "Microsoft.Extensions.Options": "9.0.8" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.Options/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8", + "Microsoft.Extensions.Primitives": "9.0.8" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.Extensions.Options.targets": {} + } + }, + "Microsoft.Extensions.Primitives/9.0.8": { + "type": "package", + "compile": { + "lib/net9.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.JSInterop/9.0.1": { + "type": "package", + "compile": { + "lib/net9.0/Microsoft.JSInterop.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.JSInterop.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Win32.Registry/4.7.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "MudBlazor/8.13.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Components": "9.0.1", + "Microsoft.AspNetCore.Components.Web": "9.0.1", + "Microsoft.Extensions.Localization": "9.0.1" + }, + "compile": { + "lib/net9.0/MudBlazor.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/MudBlazor.dll": { + "related": ".xml" + } + }, + "build": { + "build/MudBlazor.targets": {}, + "buildTransitive/MudBlazor.props": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/MudBlazor.props": {} + } + }, + "Npgsql/9.0.3": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "8.0.2" + }, + "compile": { + "lib/net8.0/Npgsql.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Npgsql.dll": { + "related": ".xml" + } + } + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/9.0.4": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore": "[9.0.1, 10.0.0)", + "Microsoft.EntityFrameworkCore.Relational": "[9.0.1, 10.0.0)", + "Npgsql": "9.0.3" + }, + "compile": { + "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { + "related": ".xml" + } + } + }, + "runtime.native.System.Data.SqlClient.sni/4.7.0": { + "type": "package", + "dependencies": { + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0" + } + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "runtimeTargets": { + "runtimes/win-arm64/native/sni.dll": { + "assetType": "native", + "rid": "win-arm64" + } + } + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "runtimeTargets": { + "runtimes/win-x64/native/sni.dll": { + "assetType": "native", + "rid": "win-x64" + } + } + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "runtimeTargets": { + "runtimes/win-x86/native/sni.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "System.CodeDom/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.CodeDom.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.CodeDom.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.ComponentModel.Annotations/5.0.0": { + "type": "package", + "compile": { + "ref/netstandard2.1/System.ComponentModel.Annotations.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/System.ComponentModel.Annotations.dll": { + "related": ".xml" + } + } + }, + "System.Configuration.ConfigurationManager/6.0.1": { + "type": "package", + "dependencies": { + "System.Security.Cryptography.ProtectedData": "6.0.0", + "System.Security.Permissions": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Configuration.ConfigurationManager.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Configuration.ConfigurationManager.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Data.SqlClient/4.8.6": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Registry": "4.7.0", + "System.Security.Principal.Windows": "4.7.0", + "runtime.native.System.Data.SqlClient.sni": "4.7.0" + }, + "compile": { + "ref/netcoreapp2.1/System.Data.SqlClient.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Drawing.Common/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Win32.SystemEvents": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Drawing.Common.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Drawing.Common.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/net6.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.AccessControl/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Security.AccessControl.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Security.AccessControl.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Security.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.ProtectedData/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Permissions/6.0.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Windows.Extensions": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Security.Permissions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Security.Permissions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Security.Principal.Windows/4.7.0": { + "type": "package", + "compile": { + "ref/netcoreapp3.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Security.Principal.Windows.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Windows.Extensions/6.0.0": { + "type": "package", + "dependencies": { + "System.Drawing.Common": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Windows.Extensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Windows.Extensions.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "OpenArchival.DataAccess/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v9.0", + "dependencies": { + "EntityFramework": "6.5.1", + "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "9.0.8", + "Microsoft.EntityFrameworkCore": "9.0.8", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8", + "Npgsql": "9.0.3", + "Npgsql.EntityFrameworkCore.PostgreSQL": "9.0.4" + }, + "compile": { + "bin/placeholder/OpenArchival.DataAccess.dll": {} + }, + "runtime": { + "bin/placeholder/OpenArchival.DataAccess.dll": {} + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + } + } + }, + "libraries": { + "BuildBundlerMinifier/3.2.449": { + "sha512": "uA9sYDy4VepL3xwzBTLcP2LyuVYMt0ZIT3gaSiXvGoX15Ob+rOP+hGydhevlSVd+rFo+Y+VQFEHDuWU8HBW+XA==", + "type": "package", + "path": "buildbundlerminifier/3.2.449", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/BuildBundlerMinifier.targets", + "buildbundlerminifier.3.2.449.nupkg.sha512", + "buildbundlerminifier.nuspec", + "tools/net46/BundlerMinifier.dll", + "tools/net46/NUglify.dll", + "tools/net46/Newtonsoft.Json.dll", + "tools/netcoreapp2.0/BundlerMinifier.dll", + "tools/netcoreapp2.0/NUglify.dll", + "tools/netcoreapp2.0/Newtonsoft.Json.dll", + "tools/netcoreapp3.0/BundlerMinifier.dll", + "tools/netcoreapp3.0/NUglify.dll", + "tools/netcoreapp3.0/Newtonsoft.Json.dll", + "tools/netcoreapp3.1/BundlerMinifier.dll", + "tools/netcoreapp3.1/NUglify.dll", + "tools/netcoreapp3.1/Newtonsoft.Json.dll", + "tools/netstandard1.3/BundlerMinifier.dll", + "tools/netstandard1.3/NUglify.dll", + "tools/netstandard1.3/Newtonsoft.Json.dll" + ] + }, + "CodeBeam.MudExtensions/6.3.0": { + "sha512": "U5J0IlIg8R166hm9RwVjjbCtbBs3ixLev94NmfQHaBVUn3P4un+DoirfUjcUs96wvKb5K9H9ou39Yq+wBO11IA==", + "type": "package", + "path": "codebeam.mudextensions/6.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Mud_Secondary.png", + "build/CodeBeam.MudExtensions.props", + "build/Microsoft.AspNetCore.StaticWebAssets.props", + "buildMultiTargeting/CodeBeam.MudExtensions.props", + "buildTransitive/CodeBeam.MudExtensions.props", + "codebeam.mudextensions.6.3.0.nupkg.sha512", + "codebeam.mudextensions.nuspec", + "lib/net6.0/CodeBeam.MudExtensions.dll", + "lib/net7.0/CodeBeam.MudExtensions.dll", + "staticwebassets/MudExtensions.min.css", + "staticwebassets/MudExtensions.min.js", + "staticwebassets/Mud_Secondary.png" + ] + }, + "CsvHelper/30.0.1": { + "sha512": "rcZtgbWR+As4G3Vpgx0AMNmShGuQLFjkHAPIIflzrfkJCx8/AOd4m96ZRmiU1Wi39qS5UVjV0P8qdgqOo5Cwyg==", + "type": "package", + "path": "csvhelper/30.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "csvhelper.30.0.1.nupkg.sha512", + "csvhelper.nuspec", + "lib/net45/CsvHelper.dll", + "lib/net45/CsvHelper.xml", + "lib/net47/CsvHelper.dll", + "lib/net47/CsvHelper.xml", + "lib/net5.0/CsvHelper.dll", + "lib/net5.0/CsvHelper.xml", + "lib/net6.0/CsvHelper.dll", + "lib/net6.0/CsvHelper.xml", + "lib/netstandard2.0/CsvHelper.dll", + "lib/netstandard2.0/CsvHelper.xml", + "lib/netstandard2.1/CsvHelper.dll", + "lib/netstandard2.1/CsvHelper.xml" + ] + }, + "EntityFramework/6.5.1": { + "sha512": "sQRP2lWg1i3aAGWqdliAM8zrGx7LHMUk+9/MoxUjwfTZYGMXvZ2JYZTlyTm1PqDxvn3c9E3U76TWDON7Y5+CVA==", + "type": "package", + "path": "entityframework/6.5.1", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "README.md", + "build/EntityFramework.DefaultItems.props", + "build/EntityFramework.props", + "build/EntityFramework.targets", + "build/Microsoft.Data.Entity.Build.Tasks.dll", + "build/net6.0/EntityFramework.props", + "build/net6.0/EntityFramework.targets", + "buildTransitive/EntityFramework.props", + "buildTransitive/EntityFramework.targets", + "buildTransitive/net6.0/EntityFramework.props", + "buildTransitive/net6.0/EntityFramework.targets", + "content/net40/App.config.install.xdt", + "content/net40/App.config.transform", + "content/net40/Web.config.install.xdt", + "content/net40/Web.config.transform", + "entityframework.6.5.1.nupkg.sha512", + "entityframework.nuspec", + "lib/net40/EntityFramework.SqlServer.dll", + "lib/net40/EntityFramework.SqlServer.xml", + "lib/net40/EntityFramework.dll", + "lib/net40/EntityFramework.xml", + "lib/net45/EntityFramework.SqlServer.dll", + "lib/net45/EntityFramework.SqlServer.xml", + "lib/net45/EntityFramework.dll", + "lib/net45/EntityFramework.xml", + "lib/netstandard2.1/EntityFramework.SqlServer.dll", + "lib/netstandard2.1/EntityFramework.SqlServer.xml", + "lib/netstandard2.1/EntityFramework.dll", + "lib/netstandard2.1/EntityFramework.xml", + "tools/EntityFramework6.PS2.psd1", + "tools/EntityFramework6.PS2.psm1", + "tools/EntityFramework6.psd1", + "tools/EntityFramework6.psm1", + "tools/about_EntityFramework6.help.txt", + "tools/init.ps1", + "tools/install.ps1", + "tools/net40/any/ef6.exe", + "tools/net40/any/ef6.pdb", + "tools/net40/win-arm64/ef6.exe", + "tools/net40/win-arm64/ef6.pdb", + "tools/net40/win-x86/ef6.exe", + "tools/net40/win-x86/ef6.pdb", + "tools/net45/any/ef6.exe", + "tools/net45/any/ef6.pdb", + "tools/net45/win-arm64/ef6.exe", + "tools/net45/win-arm64/ef6.pdb", + "tools/net45/win-x86/ef6.exe", + "tools/net45/win-x86/ef6.pdb", + "tools/net6.0/any/ef6.dll", + "tools/net6.0/any/ef6.pdb", + "tools/net6.0/any/ef6.runtimeconfig.json" + ] + }, + "Microsoft.AspNetCore.Authorization/9.0.1": { + "sha512": "WgLlLBlMczb2+QLNG6sM95OUZ0EBztz60k/N75tjIgpyu0SdpIfYytAmX/7JJAjRTZF0c/CrWaQV+SH9FuGsrA==", + "type": "package", + "path": "microsoft.aspnetcore.authorization/9.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/Microsoft.AspNetCore.Authorization.dll", + "lib/net462/Microsoft.AspNetCore.Authorization.xml", + "lib/net9.0/Microsoft.AspNetCore.Authorization.dll", + "lib/net9.0/Microsoft.AspNetCore.Authorization.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.xml", + "microsoft.aspnetcore.authorization.9.0.1.nupkg.sha512", + "microsoft.aspnetcore.authorization.nuspec" + ] + }, + "Microsoft.AspNetCore.Components/9.0.1": { + "sha512": "6pwfbQKNtvPkbF4tCGiAKGyt6BVpu58xAXz7u2YXcUKTNmNxrymbG1mEyMc0EPzVdnquDDqTyfXM3mC1EJycxQ==", + "type": "package", + "path": "microsoft.aspnetcore.components/9.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.txt", + "lib/net9.0/Microsoft.AspNetCore.Components.dll", + "lib/net9.0/Microsoft.AspNetCore.Components.xml", + "microsoft.aspnetcore.components.9.0.1.nupkg.sha512", + "microsoft.aspnetcore.components.nuspec" + ] + }, + "Microsoft.AspNetCore.Components.Analyzers/9.0.1": { + "sha512": "I8Rs4LXT5UQxM5Nin2+Oj8aSY2heszSZ3EyTLgt3mxmfiRPrVO7D8NNSsf1voI2Gb0qFJceof/J5c9E+nfNuHw==", + "type": "package", + "path": "microsoft.aspnetcore.components.analyzers/9.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.9.0.1.nupkg.sha512", + "microsoft.aspnetcore.components.analyzers.nuspec" + ] + }, + "Microsoft.AspNetCore.Components.Forms/9.0.1": { + "sha512": "KyULVU32bLz74LWDwPEwNUEllTehzWJuM7YAsz80rMKEzvR0K8cRjRzO0fnN/nfydMeLRRlbI0xj8wnEAymLVw==", + "type": "package", + "path": "microsoft.aspnetcore.components.forms/9.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.txt", + "lib/net9.0/Microsoft.AspNetCore.Components.Forms.dll", + "lib/net9.0/Microsoft.AspNetCore.Components.Forms.xml", + "microsoft.aspnetcore.components.forms.9.0.1.nupkg.sha512", + "microsoft.aspnetcore.components.forms.nuspec" + ] + }, + "Microsoft.AspNetCore.Components.Web/9.0.1": { + "sha512": "LI0vjYEd9MaDZPDQxPCn4gGYDkEC5U9rp1nWZo7rPozJxgTG2zU3WERujxTi2LeAC2ZzdXlOVCrUyPQ55LZV2A==", + "type": "package", + "path": "microsoft.aspnetcore.components.web/9.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.txt", + "lib/net9.0/Microsoft.AspNetCore.Components.Web.dll", + "lib/net9.0/Microsoft.AspNetCore.Components.Web.xml", + "microsoft.aspnetcore.components.web.9.0.1.nupkg.sha512", + "microsoft.aspnetcore.components.web.nuspec" + ] + }, + "Microsoft.AspNetCore.Cryptography.Internal/9.0.8": { + "sha512": "NwGO0wh/IjEthBLGA6fWfIiftsNF/paA5RxWp6ji4wWazetJgQ4truR9nU2thAzzFLiXqlg8vGjdVDA8bHu0zA==", + "type": "package", + "path": "microsoft.aspnetcore.cryptography.internal/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/Microsoft.AspNetCore.Cryptography.Internal.dll", + "lib/net462/Microsoft.AspNetCore.Cryptography.Internal.xml", + "lib/net9.0/Microsoft.AspNetCore.Cryptography.Internal.dll", + "lib/net9.0/Microsoft.AspNetCore.Cryptography.Internal.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.xml", + "microsoft.aspnetcore.cryptography.internal.9.0.8.nupkg.sha512", + "microsoft.aspnetcore.cryptography.internal.nuspec" + ] + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/9.0.8": { + "sha512": "gK70xxXYwwPiXYKYVmLYMuIO5EOGrRtQghmM6PkgtZ/0lgLEjIs//xgSLvZkV/mroNHA1DEqTcqscEj9OzZ1IA==", + "type": "package", + "path": "microsoft.aspnetcore.cryptography.keyderivation/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll", + "lib/net462/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml", + "lib/net9.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll", + "lib/net9.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml", + "microsoft.aspnetcore.cryptography.keyderivation.9.0.8.nupkg.sha512", + "microsoft.aspnetcore.cryptography.keyderivation.nuspec" + ] + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore/9.0.8": { + "sha512": "z4q9roxXMQePwFM5tXXZS5sKkU78yYXVkj56NYYx9xKe+mxGkJMV1MaO0GFE6HnnM8bE3Xxhs0hAPw2jKbse6w==", + "type": "package", + "path": "microsoft.aspnetcore.identity.entityframeworkcore/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net9.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll", + "lib/net9.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.xml", + "microsoft.aspnetcore.identity.entityframeworkcore.9.0.8.nupkg.sha512", + "microsoft.aspnetcore.identity.entityframeworkcore.nuspec" + ] + }, + "Microsoft.AspNetCore.Metadata/9.0.1": { + "sha512": "EZnHifamF7IFEIyjAKMtJM3I/94OIe72i3P09v5oL0twmsmfQwal6Ni3m8lbB5mge3jWFhMozeW+rUdRSqnXRQ==", + "type": "package", + "path": "microsoft.aspnetcore.metadata/9.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/Microsoft.AspNetCore.Metadata.dll", + "lib/net462/Microsoft.AspNetCore.Metadata.xml", + "lib/net9.0/Microsoft.AspNetCore.Metadata.dll", + "lib/net9.0/Microsoft.AspNetCore.Metadata.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Metadata.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Metadata.xml", + "microsoft.aspnetcore.metadata.9.0.1.nupkg.sha512", + "microsoft.aspnetcore.metadata.nuspec" + ] + }, + "Microsoft.CSharp/4.7.0": { + "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", + "type": "package", + "path": "microsoft.csharp/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/Microsoft.CSharp.dll", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.3/Microsoft.CSharp.dll", + "lib/netstandard2.0/Microsoft.CSharp.dll", + "lib/netstandard2.0/Microsoft.CSharp.xml", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/uap10.0.16299/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.csharp.4.7.0.nupkg.sha512", + "microsoft.csharp.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/Microsoft.CSharp.dll", + "ref/netcore50/Microsoft.CSharp.xml", + "ref/netcore50/de/Microsoft.CSharp.xml", + "ref/netcore50/es/Microsoft.CSharp.xml", + "ref/netcore50/fr/Microsoft.CSharp.xml", + "ref/netcore50/it/Microsoft.CSharp.xml", + "ref/netcore50/ja/Microsoft.CSharp.xml", + "ref/netcore50/ko/Microsoft.CSharp.xml", + "ref/netcore50/ru/Microsoft.CSharp.xml", + "ref/netcore50/zh-hans/Microsoft.CSharp.xml", + "ref/netcore50/zh-hant/Microsoft.CSharp.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.0/Microsoft.CSharp.dll", + "ref/netstandard1.0/Microsoft.CSharp.xml", + "ref/netstandard1.0/de/Microsoft.CSharp.xml", + "ref/netstandard1.0/es/Microsoft.CSharp.xml", + "ref/netstandard1.0/fr/Microsoft.CSharp.xml", + "ref/netstandard1.0/it/Microsoft.CSharp.xml", + "ref/netstandard1.0/ja/Microsoft.CSharp.xml", + "ref/netstandard1.0/ko/Microsoft.CSharp.xml", + "ref/netstandard1.0/ru/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml", + "ref/netstandard2.0/Microsoft.CSharp.dll", + "ref/netstandard2.0/Microsoft.CSharp.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.0.16299/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.EntityFrameworkCore/9.0.8": { + "sha512": "bNGdPhN762+BIIO5MFYLjafRqkSS1MqLOc/erd55InvLnFxt9H3N5JNsuag1ZHyBor1VtD42U0CHpgqkWeAYgQ==", + "type": "package", + "path": "microsoft.entityframeworkcore/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "buildTransitive/net8.0/Microsoft.EntityFrameworkCore.props", + "lib/net8.0/Microsoft.EntityFrameworkCore.dll", + "lib/net8.0/Microsoft.EntityFrameworkCore.xml", + "microsoft.entityframeworkcore.9.0.8.nupkg.sha512", + "microsoft.entityframeworkcore.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Abstractions/9.0.8": { + "sha512": "B2yfAIQRRAQ4zvvWqh+HudD+juV3YoLlpXnrog3tU0PM9AFpuq6xo0+mEglN1P43WgdcUiF+65CWBcZe35s15Q==", + "type": "package", + "path": "microsoft.entityframeworkcore.abstractions/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll", + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.xml", + "microsoft.entityframeworkcore.abstractions.9.0.8.nupkg.sha512", + "microsoft.entityframeworkcore.abstractions.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Analyzers/9.0.8": { + "sha512": "2EYStCXt4Hi9p3J3EYMQbItJDtASJd064Kcs8C8hj8Jt5srILrR9qlaL0Ryvk8NrWQoCQvIELsmiuqLEZMLvGA==", + "type": "package", + "path": "microsoft.entityframeworkcore.analyzers/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll", + "docs/PACKAGE.md", + "microsoft.entityframeworkcore.analyzers.9.0.8.nupkg.sha512", + "microsoft.entityframeworkcore.analyzers.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Relational/9.0.8": { + "sha512": "OVhfyxiHxMvYpwQ8Jy3YZi4koy6TK5/Q7C1oq3z6db+HEGuu6x9L1BX5zDIdJxxlRePMyO4D8ORiXj/D7+MUqw==", + "type": "package", + "path": "microsoft.entityframeworkcore.relational/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll", + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.xml", + "microsoft.entityframeworkcore.relational.9.0.8.nupkg.sha512", + "microsoft.entityframeworkcore.relational.nuspec" + ] + }, + "Microsoft.Extensions.Caching.Abstractions/9.0.8": { + "sha512": "4h7bsVoKoiK+SlPM+euX/ayGnKZhl47pPCidLTiio9xyG+vgVVfcYxcYQgjm0SCrdSxjG0EGIAKF8EFr3G8Ifw==", + "type": "package", + "path": "microsoft.extensions.caching.abstractions/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Caching.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml", + "microsoft.extensions.caching.abstractions.9.0.8.nupkg.sha512", + "microsoft.extensions.caching.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Caching.Memory/9.0.8": { + "sha512": "grR+oPyj8HVn4DT8CFUUdSw2pZZKS13KjytFe4txpHQliGM1GEDotohmjgvyl3hm7RFB3FRqvbouEX3/1ewp5A==", + "type": "package", + "path": "microsoft.extensions.caching.memory/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Caching.Memory.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Memory.targets", + "lib/net462/Microsoft.Extensions.Caching.Memory.dll", + "lib/net462/Microsoft.Extensions.Caching.Memory.xml", + "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/net8.0/Microsoft.Extensions.Caching.Memory.xml", + "lib/net9.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/net9.0/Microsoft.Extensions.Caching.Memory.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml", + "microsoft.extensions.caching.memory.9.0.8.nupkg.sha512", + "microsoft.extensions.caching.memory.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.8": { + "sha512": "yNou2KM35RvzOh4vUFtl2l33rWPvOCoba+nzEDJ+BgD8aOL/jew4WPCibQvntRfOJ2pJU8ARygSMD+pdjvDHuA==", + "type": "package", + "path": "microsoft.extensions.configuration.abstractions/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "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/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.9.0.8.nupkg.sha512", + "microsoft.extensions.configuration.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection/9.0.8": { + "sha512": "JJjI2Fa+QtZcUyuNjbKn04OjIUX5IgFGFu/Xc+qvzh1rXdZHLcnqqVXhR4093bGirTwacRlHiVg1XYI9xum6QQ==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets", + "lib/net462/Microsoft.Extensions.DependencyInjection.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml", + "microsoft.extensions.dependencyinjection.9.0.8.nupkg.sha512", + "microsoft.extensions.dependencyinjection.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.8": { + "sha512": "xY3lTjj4+ZYmiKIkyWitddrp1uL5uYiweQjqo4BKBw01ZC4HhcfgLghDpPZcUlppgWAFqFy9SgkiYWOMx365pw==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "microsoft.extensions.dependencyinjection.abstractions.9.0.8.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Identity.Core/9.0.8": { + "sha512": "giUYz84GHAizDucZp5vWAusDO2s9Jrrg2jQ6HUQNGs5HQMKJVobLPMQSiyg8R4yecH0pIc0QjANh0B/Kw13BHA==", + "type": "package", + "path": "microsoft.extensions.identity.core/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/Microsoft.Extensions.Identity.Core.dll", + "lib/net462/Microsoft.Extensions.Identity.Core.xml", + "lib/net9.0/Microsoft.Extensions.Identity.Core.dll", + "lib/net9.0/Microsoft.Extensions.Identity.Core.xml", + "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.dll", + "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.xml", + "microsoft.extensions.identity.core.9.0.8.nupkg.sha512", + "microsoft.extensions.identity.core.nuspec" + ] + }, + "Microsoft.Extensions.Identity.Stores/9.0.8": { + "sha512": "sycaHcq78yI591+KxEdd53a7pJGQEl9H/wDsFkaPNE9g7loyq8vufPcc/9RH3KlGt5joR5Ey7PdoRSrlLjCgJg==", + "type": "package", + "path": "microsoft.extensions.identity.stores/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/Microsoft.Extensions.Identity.Stores.dll", + "lib/net462/Microsoft.Extensions.Identity.Stores.xml", + "lib/net9.0/Microsoft.Extensions.Identity.Stores.dll", + "lib/net9.0/Microsoft.Extensions.Identity.Stores.xml", + "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.dll", + "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.xml", + "microsoft.extensions.identity.stores.9.0.8.nupkg.sha512", + "microsoft.extensions.identity.stores.nuspec" + ] + }, + "Microsoft.Extensions.Localization/9.0.1": { + "sha512": "UgvX4Yb2T3tEsKT30ktZr0H7kTRPapCgEH0bdTwxiEGSdA39/hAQMvvb+vgHpqmevDU5+puyI9ujRkmmbF946w==", + "type": "package", + "path": "microsoft.extensions.localization/9.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/Microsoft.Extensions.Localization.dll", + "lib/net462/Microsoft.Extensions.Localization.xml", + "lib/net9.0/Microsoft.Extensions.Localization.dll", + "lib/net9.0/Microsoft.Extensions.Localization.xml", + "lib/netstandard2.0/Microsoft.Extensions.Localization.dll", + "lib/netstandard2.0/Microsoft.Extensions.Localization.xml", + "microsoft.extensions.localization.9.0.1.nupkg.sha512", + "microsoft.extensions.localization.nuspec" + ] + }, + "Microsoft.Extensions.Localization.Abstractions/9.0.1": { + "sha512": "CABog43lyaZQMjmlktuImCy6zmAzRBaXqN81uPaMQjlp//ISDVYItZPh6KWpWRF4MY/B67X5oDc3JTUpfdocZw==", + "type": "package", + "path": "microsoft.extensions.localization.abstractions/9.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/Microsoft.Extensions.Localization.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Localization.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.Localization.Abstractions.dll", + "lib/net9.0/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.9.0.1.nupkg.sha512", + "microsoft.extensions.localization.abstractions.nuspec" + ] + }, + "Microsoft.Extensions.Logging/9.0.8": { + "sha512": "Z/7ze+0iheT7FJeZPqJKARYvyC2bmwu3whbm/48BJjdlGVvgDguoCqJIkI/67NkroTYobd5geai1WheNQvWrgA==", + "type": "package", + "path": "microsoft.extensions.logging/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "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/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.9.0.8.nupkg.sha512", + "microsoft.extensions.logging.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.8": { + "sha512": "pYnAffJL7ARD/HCnnPvnFKSIHnTSmWz84WIlT9tPeQ4lHNiu0Az7N/8itihWvcF8sT+VVD5lq8V+ckMzu4SbOw==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", + "microsoft.extensions.logging.abstractions.9.0.8.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Options/9.0.8": { + "sha512": "OmTaQ0v4gxGQkehpwWIqPoEiwsPuG/u4HUsbOFoWGx4DKET2AXzopnFe/fE608FIhzc/kcg2p8JdyMRCCUzitQ==", + "type": "package", + "path": "microsoft.extensions.options/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Options.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "buildTransitive/net461/Microsoft.Extensions.Options.targets", + "buildTransitive/net462/Microsoft.Extensions.Options.targets", + "buildTransitive/net8.0/Microsoft.Extensions.Options.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Options.targets", + "lib/net462/Microsoft.Extensions.Options.dll", + "lib/net462/Microsoft.Extensions.Options.xml", + "lib/net8.0/Microsoft.Extensions.Options.dll", + "lib/net8.0/Microsoft.Extensions.Options.xml", + "lib/net9.0/Microsoft.Extensions.Options.dll", + "lib/net9.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.0/Microsoft.Extensions.Options.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.1/Microsoft.Extensions.Options.dll", + "lib/netstandard2.1/Microsoft.Extensions.Options.xml", + "microsoft.extensions.options.9.0.8.nupkg.sha512", + "microsoft.extensions.options.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Primitives/9.0.8": { + "sha512": "tizSIOEsIgSNSSh+hKeUVPK7xmTIjR8s+mJWOu1KXV3htvNQiPMFRMO17OdI1y/4ZApdBVk49u/08QGC9yvLug==", + "type": "package", + "path": "microsoft.extensions.primitives/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Primitives.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets", + "lib/net462/Microsoft.Extensions.Primitives.dll", + "lib/net462/Microsoft.Extensions.Primitives.xml", + "lib/net8.0/Microsoft.Extensions.Primitives.dll", + "lib/net8.0/Microsoft.Extensions.Primitives.xml", + "lib/net9.0/Microsoft.Extensions.Primitives.dll", + "lib/net9.0/Microsoft.Extensions.Primitives.xml", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", + "microsoft.extensions.primitives.9.0.8.nupkg.sha512", + "microsoft.extensions.primitives.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.JSInterop/9.0.1": { + "sha512": "/xBwIfb0YoC2Muv6EsHjxpqZw2aKv94+i0g0FWZvqvGv3DeAy+8wipAuECVvKYEs2EIclRD41bjajHLoD6mTtw==", + "type": "package", + "path": "microsoft.jsinterop/9.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net9.0/Microsoft.JSInterop.dll", + "lib/net9.0/Microsoft.JSInterop.xml", + "microsoft.jsinterop.9.0.1.nupkg.sha512", + "microsoft.jsinterop.nuspec" + ] + }, + "Microsoft.Win32.Registry/4.7.0": { + "sha512": "KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", + "type": "package", + "path": "microsoft.win32.registry/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.xml", + "lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "microsoft.win32.registry.4.7.0.nupkg.sha512", + "microsoft.win32.registry.nuspec", + "ref/net46/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.xml", + "ref/net472/Microsoft.Win32.Registry.dll", + "ref/net472/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/Microsoft.Win32.Registry.dll", + "ref/netstandard1.3/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml", + "ref/netstandard2.0/Microsoft.Win32.Registry.dll", + "ref/netstandard2.0/Microsoft.Win32.Registry.xml", + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml", + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "sha512": "hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==", + "type": "package", + "path": "microsoft.win32.systemevents/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Win32.SystemEvents.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Win32.SystemEvents.dll", + "lib/net461/Microsoft.Win32.SystemEvents.xml", + "lib/net6.0/Microsoft.Win32.SystemEvents.dll", + "lib/net6.0/Microsoft.Win32.SystemEvents.xml", + "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll", + "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml", + "microsoft.win32.systemevents.6.0.0.nupkg.sha512", + "microsoft.win32.systemevents.nuspec", + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.xml", + "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml", + "useSharedDesignerContext.txt" + ] + }, + "MudBlazor/8.13.0": { + "sha512": "Y6JW93zf8tiVhMSkkL0mZ3ruqjOTNftvVoX3sik6NEnIye+Gs0FXI8rhXfrH2LU79Mw/fOtT5ms3L/Q4TKx2kA==", + "type": "package", + "path": "mudblazor/8.13.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE", + "Nuget.png", + "README.md", + "analyzers/dotnet/cs/MudBlazor.Analyzers.dll", + "build/Microsoft.AspNetCore.StaticWebAssetEndpoints.props", + "build/Microsoft.AspNetCore.StaticWebAssets.props", + "build/MudBlazor.props", + "build/MudBlazor.targets", + "buildMultiTargeting/MudBlazor.props", + "buildTransitive/MudBlazor.props", + "lib/net8.0/MudBlazor.dll", + "lib/net8.0/MudBlazor.xml", + "lib/net9.0/MudBlazor.dll", + "lib/net9.0/MudBlazor.xml", + "mudblazor.8.13.0.nupkg.sha512", + "mudblazor.nuspec", + "staticwebassets/MudBlazor.min.css", + "staticwebassets/MudBlazor.min.js" + ] + }, + "Npgsql/9.0.3": { + "sha512": "tPvY61CxOAWxNsKLEBg+oR646X4Bc8UmyQ/tJszL/7mEmIXQnnBhVJZrZEEUv0Bstu0mEsHZD5At3EO8zQRAYw==", + "type": "package", + "path": "npgsql/9.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net6.0/Npgsql.dll", + "lib/net6.0/Npgsql.xml", + "lib/net8.0/Npgsql.dll", + "lib/net8.0/Npgsql.xml", + "npgsql.9.0.3.nupkg.sha512", + "npgsql.nuspec", + "postgresql.png" + ] + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/9.0.4": { + "sha512": "mw5vcY2IEc7L+IeGrxpp/J5OSnCcjkjAgJYCm/eD52wpZze8zsSifdqV7zXslSMmfJG2iIUGZyo3KuDtEFKwMQ==", + "type": "package", + "path": "npgsql.entityframeworkcore.postgresql/9.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll", + "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.xml", + "npgsql.entityframeworkcore.postgresql.9.0.4.nupkg.sha512", + "npgsql.entityframeworkcore.postgresql.nuspec", + "postgresql.png" + ] + }, + "runtime.native.System.Data.SqlClient.sni/4.7.0": { + "sha512": "9kyFSIdN3T0qjDQ2R0HRXYIhS3l5psBzQi6qqhdLz+SzFyEy4sVxNOke+yyYv8Cu8rPER12c3RDjLT8wF3WBYQ==", + "type": "package", + "path": "runtime.native.system.data.sqlclient.sni/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512", + "runtime.native.system.data.sqlclient.sni.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "sha512": "LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==", + "type": "package", + "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.nuspec", + "runtimes/win-arm64/native/sni.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "sha512": "38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==", + "type": "package", + "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "runtime.win-x64.runtime.native.system.data.sqlclient.sni.nuspec", + "runtimes/win-x64/native/sni.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "sha512": "YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==", + "type": "package", + "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "runtime.win-x86.runtime.native.system.data.sqlclient.sni.nuspec", + "runtimes/win-x86/native/sni.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.CodeDom/6.0.0": { + "sha512": "CPc6tWO1LAer3IzfZufDBRL+UZQcj5uS207NHALQzP84Vp/z6wF0Aa0YZImOQY8iStY0A2zI/e3ihKNPfUm8XA==", + "type": "package", + "path": "system.codedom/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.CodeDom.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.CodeDom.dll", + "lib/net461/System.CodeDom.xml", + "lib/net6.0/System.CodeDom.dll", + "lib/net6.0/System.CodeDom.xml", + "lib/netstandard2.0/System.CodeDom.dll", + "lib/netstandard2.0/System.CodeDom.xml", + "system.codedom.6.0.0.nupkg.sha512", + "system.codedom.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.ComponentModel.Annotations/5.0.0": { + "sha512": "dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==", + "type": "package", + "path": "system.componentmodel.annotations/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.ComponentModel.Annotations.dll", + "lib/netcore50/System.ComponentModel.Annotations.dll", + "lib/netstandard1.4/System.ComponentModel.Annotations.dll", + "lib/netstandard2.0/System.ComponentModel.Annotations.dll", + "lib/netstandard2.1/System.ComponentModel.Annotations.dll", + "lib/netstandard2.1/System.ComponentModel.Annotations.xml", + "lib/portable-net45+win8/_._", + "lib/win8/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.ComponentModel.Annotations.dll", + "ref/net461/System.ComponentModel.Annotations.xml", + "ref/netcore50/System.ComponentModel.Annotations.dll", + "ref/netcore50/System.ComponentModel.Annotations.xml", + "ref/netcore50/de/System.ComponentModel.Annotations.xml", + "ref/netcore50/es/System.ComponentModel.Annotations.xml", + "ref/netcore50/fr/System.ComponentModel.Annotations.xml", + "ref/netcore50/it/System.ComponentModel.Annotations.xml", + "ref/netcore50/ja/System.ComponentModel.Annotations.xml", + "ref/netcore50/ko/System.ComponentModel.Annotations.xml", + "ref/netcore50/ru/System.ComponentModel.Annotations.xml", + "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/System.ComponentModel.Annotations.dll", + "ref/netstandard1.1/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/System.ComponentModel.Annotations.dll", + "ref/netstandard1.3/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/System.ComponentModel.Annotations.dll", + "ref/netstandard1.4/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard2.0/System.ComponentModel.Annotations.dll", + "ref/netstandard2.0/System.ComponentModel.Annotations.xml", + "ref/netstandard2.1/System.ComponentModel.Annotations.dll", + "ref/netstandard2.1/System.ComponentModel.Annotations.xml", + "ref/portable-net45+win8/_._", + "ref/win8/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.annotations.5.0.0.nupkg.sha512", + "system.componentmodel.annotations.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Configuration.ConfigurationManager/6.0.1": { + "sha512": "jXw9MlUu/kRfEU0WyTptAVueupqIeE3/rl0EZDMlf8pcvJnitQ8HeVEp69rZdaStXwTV72boi/Bhw8lOeO+U2w==", + "type": "package", + "path": "system.configuration.configurationmanager/6.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Configuration.ConfigurationManager.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Configuration.ConfigurationManager.dll", + "lib/net461/System.Configuration.ConfigurationManager.xml", + "lib/net6.0/System.Configuration.ConfigurationManager.dll", + "lib/net6.0/System.Configuration.ConfigurationManager.xml", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml", + "runtimes/win/lib/net461/System.Configuration.ConfigurationManager.dll", + "runtimes/win/lib/net461/System.Configuration.ConfigurationManager.xml", + "system.configuration.configurationmanager.6.0.1.nupkg.sha512", + "system.configuration.configurationmanager.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Data.SqlClient/4.8.6": { + "sha512": "2Ij/LCaTQRyAi5lAv7UUTV9R2FobC8xN9mE0fXBZohum/xLl8IZVmE98Rq5ugQHjCgTBRKqpXRb4ORulRdA6Ig==", + "type": "package", + "path": "system.data.sqlclient/4.8.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net451/System.Data.SqlClient.dll", + "lib/net46/System.Data.SqlClient.dll", + "lib/net461/System.Data.SqlClient.dll", + "lib/net461/System.Data.SqlClient.xml", + "lib/netcoreapp2.1/System.Data.SqlClient.dll", + "lib/netcoreapp2.1/System.Data.SqlClient.xml", + "lib/netstandard1.2/System.Data.SqlClient.dll", + "lib/netstandard1.2/System.Data.SqlClient.xml", + "lib/netstandard1.3/System.Data.SqlClient.dll", + "lib/netstandard1.3/System.Data.SqlClient.xml", + "lib/netstandard2.0/System.Data.SqlClient.dll", + "lib/netstandard2.0/System.Data.SqlClient.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net451/System.Data.SqlClient.dll", + "ref/net46/System.Data.SqlClient.dll", + "ref/net461/System.Data.SqlClient.dll", + "ref/net461/System.Data.SqlClient.xml", + "ref/netcoreapp2.1/System.Data.SqlClient.dll", + "ref/netcoreapp2.1/System.Data.SqlClient.xml", + "ref/netstandard1.2/System.Data.SqlClient.dll", + "ref/netstandard1.2/System.Data.SqlClient.xml", + "ref/netstandard1.2/de/System.Data.SqlClient.xml", + "ref/netstandard1.2/es/System.Data.SqlClient.xml", + "ref/netstandard1.2/fr/System.Data.SqlClient.xml", + "ref/netstandard1.2/it/System.Data.SqlClient.xml", + "ref/netstandard1.2/ja/System.Data.SqlClient.xml", + "ref/netstandard1.2/ko/System.Data.SqlClient.xml", + "ref/netstandard1.2/ru/System.Data.SqlClient.xml", + "ref/netstandard1.2/zh-hans/System.Data.SqlClient.xml", + "ref/netstandard1.2/zh-hant/System.Data.SqlClient.xml", + "ref/netstandard1.3/System.Data.SqlClient.dll", + "ref/netstandard1.3/System.Data.SqlClient.xml", + "ref/netstandard1.3/de/System.Data.SqlClient.xml", + "ref/netstandard1.3/es/System.Data.SqlClient.xml", + "ref/netstandard1.3/fr/System.Data.SqlClient.xml", + "ref/netstandard1.3/it/System.Data.SqlClient.xml", + "ref/netstandard1.3/ja/System.Data.SqlClient.xml", + "ref/netstandard1.3/ko/System.Data.SqlClient.xml", + "ref/netstandard1.3/ru/System.Data.SqlClient.xml", + "ref/netstandard1.3/zh-hans/System.Data.SqlClient.xml", + "ref/netstandard1.3/zh-hant/System.Data.SqlClient.xml", + "ref/netstandard2.0/System.Data.SqlClient.dll", + "ref/netstandard2.0/System.Data.SqlClient.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll", + "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.xml", + "runtimes/unix/lib/netstandard1.3/System.Data.SqlClient.dll", + "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll", + "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.xml", + "runtimes/win/lib/net451/System.Data.SqlClient.dll", + "runtimes/win/lib/net46/System.Data.SqlClient.dll", + "runtimes/win/lib/net461/System.Data.SqlClient.dll", + "runtimes/win/lib/net461/System.Data.SqlClient.xml", + "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll", + "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.xml", + "runtimes/win/lib/netstandard1.3/System.Data.SqlClient.dll", + "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll", + "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.xml", + "runtimes/win/lib/uap10.0.16299/System.Data.SqlClient.dll", + "runtimes/win/lib/uap10.0.16299/System.Data.SqlClient.xml", + "system.data.sqlclient.4.8.6.nupkg.sha512", + "system.data.sqlclient.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Drawing.Common/6.0.0": { + "sha512": "NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==", + "type": "package", + "path": "system.drawing.common/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Drawing.Common.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Drawing.Common.dll", + "lib/net461/System.Drawing.Common.xml", + "lib/net6.0/System.Drawing.Common.dll", + "lib/net6.0/System.Drawing.Common.xml", + "lib/netcoreapp3.1/System.Drawing.Common.dll", + "lib/netcoreapp3.1/System.Drawing.Common.xml", + "lib/netstandard2.0/System.Drawing.Common.dll", + "lib/netstandard2.0/System.Drawing.Common.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "runtimes/unix/lib/net6.0/System.Drawing.Common.dll", + "runtimes/unix/lib/net6.0/System.Drawing.Common.xml", + "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.dll", + "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.xml", + "runtimes/win/lib/net6.0/System.Drawing.Common.dll", + "runtimes/win/lib/net6.0/System.Drawing.Common.xml", + "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.dll", + "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.xml", + "system.drawing.common.6.0.0.nupkg.sha512", + "system.drawing.common.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.AccessControl/6.0.0": { + "sha512": "AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==", + "type": "package", + "path": "system.security.accesscontrol/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Security.AccessControl.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.xml", + "lib/net6.0/System.Security.AccessControl.dll", + "lib/net6.0/System.Security.AccessControl.xml", + "lib/netstandard2.0/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.xml", + "runtimes/win/lib/net461/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.xml", + "runtimes/win/lib/net6.0/System.Security.AccessControl.dll", + "runtimes/win/lib/net6.0/System.Security.AccessControl.xml", + "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.dll", + "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.xml", + "system.security.accesscontrol.6.0.0.nupkg.sha512", + "system.security.accesscontrol.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Cryptography.ProtectedData/6.0.0": { + "sha512": "rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==", + "type": "package", + "path": "system.security.cryptography.protecteddata/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Security.Cryptography.ProtectedData.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Security.Cryptography.ProtectedData.dll", + "lib/net461/System.Security.Cryptography.ProtectedData.xml", + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll", + "lib/net6.0/System.Security.Cryptography.ProtectedData.xml", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml", + "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.xml", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512", + "system.security.cryptography.protecteddata.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Permissions/6.0.0": { + "sha512": "T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==", + "type": "package", + "path": "system.security.permissions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Security.Permissions.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Security.Permissions.dll", + "lib/net461/System.Security.Permissions.xml", + "lib/net5.0/System.Security.Permissions.dll", + "lib/net5.0/System.Security.Permissions.xml", + "lib/net6.0/System.Security.Permissions.dll", + "lib/net6.0/System.Security.Permissions.xml", + "lib/netcoreapp3.1/System.Security.Permissions.dll", + "lib/netcoreapp3.1/System.Security.Permissions.xml", + "lib/netstandard2.0/System.Security.Permissions.dll", + "lib/netstandard2.0/System.Security.Permissions.xml", + "runtimes/win/lib/net461/System.Security.Permissions.dll", + "runtimes/win/lib/net461/System.Security.Permissions.xml", + "system.security.permissions.6.0.0.nupkg.sha512", + "system.security.permissions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Principal.Windows/4.7.0": { + "sha512": "ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==", + "type": "package", + "path": "system.security.principal.windows/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.xml", + "lib/netstandard1.3/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.xml", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.xml", + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll", + "ref/netcoreapp3.0/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/System.Security.Principal.Windows.dll", + "ref/netstandard1.3/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/de/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/es/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/it/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml", + "ref/netstandard2.0/System.Security.Principal.Windows.dll", + "ref/netstandard2.0/System.Security.Principal.Windows.xml", + "ref/uap10.0.16299/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.principal.windows.4.7.0.nupkg.sha512", + "system.security.principal.windows.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Windows.Extensions/6.0.0": { + "sha512": "IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==", + "type": "package", + "path": "system.windows.extensions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net6.0/System.Windows.Extensions.dll", + "lib/net6.0/System.Windows.Extensions.xml", + "lib/netcoreapp3.1/System.Windows.Extensions.dll", + "lib/netcoreapp3.1/System.Windows.Extensions.xml", + "runtimes/win/lib/net6.0/System.Windows.Extensions.dll", + "runtimes/win/lib/net6.0/System.Windows.Extensions.xml", + "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.dll", + "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.xml", + "system.windows.extensions.6.0.0.nupkg.sha512", + "system.windows.extensions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "OpenArchival.DataAccess/1.0.0": { + "type": "project", + "path": "../OpenArchival.DataAccess/OpenArchival.DataAccess.csproj", + "msbuildProject": "../OpenArchival.DataAccess/OpenArchival.DataAccess.csproj" + } + }, + "projectFileDependencyGroups": { + "net9.0": [ + "CodeBeam.MudExtensions >= 6.3.0", + "MudBlazor >= 8.13.0", + "OpenArchival.DataAccess >= 1.0.0" + ] + }, + "packageFolders": { + "C:\\Users\\vtall\\.nuget\\packages\\": {}, + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\OpenArchival.Blazor.FileViewer.csproj", + "projectName": "OpenArchival.Blazor.FileViewer", + "projectPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\OpenArchival.Blazor.FileViewer.csproj", + "packagesPath": "C:\\Users\\vtall\\.nuget\\packages\\", + "outputPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\NuGet.Config", + "C:\\Users\\vtall\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net9.0" + ], + "sources": { + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "projectReferences": { + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj": { + "projectPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "9.0.300" + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "dependencies": { + "CodeBeam.MudExtensions": { + "target": "Package", + "version": "[6.3.0, )" + }, + "MudBlazor": { + "target": "Package", + "version": "[8.13.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.304/PortableRuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/OpenArchival.Blazor.FileViewer/obj/project.nuget.cache b/OpenArchival.Blazor.FileViewer/obj/project.nuget.cache new file mode 100644 index 0000000..cf2983b --- /dev/null +++ b/OpenArchival.Blazor.FileViewer/obj/project.nuget.cache @@ -0,0 +1,60 @@ +{ + "version": 2, + "dgSpecHash": "sCTFKtcKUPU=", + "success": true, + "projectFilePath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\OpenArchival.Blazor.FileViewer.csproj", + "expectedPackageFiles": [ + "C:\\Users\\vtall\\.nuget\\packages\\buildbundlerminifier\\3.2.449\\buildbundlerminifier.3.2.449.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\codebeam.mudextensions.6.3.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\csvhelper\\30.0.1\\csvhelper.30.0.1.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\entityframework\\6.5.1\\entityframework.6.5.1.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.aspnetcore.authorization\\9.0.1\\microsoft.aspnetcore.authorization.9.0.1.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.aspnetcore.components\\9.0.1\\microsoft.aspnetcore.components.9.0.1.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.aspnetcore.components.analyzers\\9.0.1\\microsoft.aspnetcore.components.analyzers.9.0.1.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.aspnetcore.components.forms\\9.0.1\\microsoft.aspnetcore.components.forms.9.0.1.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.aspnetcore.components.web\\9.0.1\\microsoft.aspnetcore.components.web.9.0.1.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.aspnetcore.cryptography.internal\\9.0.8\\microsoft.aspnetcore.cryptography.internal.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.aspnetcore.cryptography.keyderivation\\9.0.8\\microsoft.aspnetcore.cryptography.keyderivation.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.aspnetcore.identity.entityframeworkcore\\9.0.8\\microsoft.aspnetcore.identity.entityframeworkcore.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.aspnetcore.metadata\\9.0.1\\microsoft.aspnetcore.metadata.9.0.1.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.csharp\\4.7.0\\microsoft.csharp.4.7.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.entityframeworkcore\\9.0.8\\microsoft.entityframeworkcore.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\9.0.8\\microsoft.entityframeworkcore.abstractions.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\9.0.8\\microsoft.entityframeworkcore.analyzers.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\9.0.8\\microsoft.entityframeworkcore.relational.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\9.0.8\\microsoft.extensions.caching.abstractions.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.caching.memory\\9.0.8\\microsoft.extensions.caching.memory.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\9.0.8\\microsoft.extensions.configuration.abstractions.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\9.0.8\\microsoft.extensions.dependencyinjection.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\9.0.8\\microsoft.extensions.dependencyinjection.abstractions.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.identity.core\\9.0.8\\microsoft.extensions.identity.core.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.identity.stores\\9.0.8\\microsoft.extensions.identity.stores.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.localization\\9.0.1\\microsoft.extensions.localization.9.0.1.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.localization.abstractions\\9.0.1\\microsoft.extensions.localization.abstractions.9.0.1.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.logging\\9.0.8\\microsoft.extensions.logging.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\9.0.8\\microsoft.extensions.logging.abstractions.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.options\\9.0.8\\microsoft.extensions.options.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.primitives\\9.0.8\\microsoft.extensions.primitives.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.jsinterop\\9.0.1\\microsoft.jsinterop.9.0.1.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.win32.registry\\4.7.0\\microsoft.win32.registry.4.7.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.win32.systemevents\\6.0.0\\microsoft.win32.systemevents.6.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\mudblazor.8.13.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\npgsql\\9.0.3\\npgsql.9.0.3.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\npgsql.entityframeworkcore.postgresql\\9.0.4\\npgsql.entityframeworkcore.postgresql.9.0.4.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\runtime.native.system.data.sqlclient.sni\\4.7.0\\runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\runtime.win-arm64.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\runtime.win-x64.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\runtime.win-x86.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.codedom\\6.0.0\\system.codedom.6.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.componentmodel.annotations\\5.0.0\\system.componentmodel.annotations.5.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.configuration.configurationmanager\\6.0.1\\system.configuration.configurationmanager.6.0.1.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.data.sqlclient\\4.8.6\\system.data.sqlclient.4.8.6.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.drawing.common\\6.0.0\\system.drawing.common.6.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.security.accesscontrol\\6.0.0\\system.security.accesscontrol.6.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.security.cryptography.protecteddata\\6.0.0\\system.security.cryptography.protecteddata.6.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.security.permissions\\6.0.0\\system.security.permissions.6.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.security.principal.windows\\4.7.0\\system.security.principal.windows.4.7.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.windows.extensions\\6.0.0\\system.windows.extensions.6.0.0.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/OpenArchival.Blazor/Components/App.razor b/OpenArchival.Blazor/Components/App.razor index 134a5d3..43c1c7b 100644 --- a/OpenArchival.Blazor/Components/App.razor +++ b/OpenArchival.Blazor/Components/App.razor @@ -18,6 +18,8 @@ + + diff --git a/OpenArchival.Blazor/Components/CustomComponents/ChipContainer.razor b/OpenArchival.Blazor/Components/CustomComponents/ChipContainer.razor index c5ddbdb..3a35fb8 100644 --- a/OpenArchival.Blazor/Components/CustomComponents/ChipContainer.razor +++ b/OpenArchival.Blazor/Components/CustomComponents/ChipContainer.razor @@ -5,9 +5,17 @@ @* Loop through and display each item as a chip *@ @foreach (var item in Items) { - - @DisplayFunc(item) - + @if (DeleteEnabled) + { + + @DisplayFunc(item) + + } else + { + + @DisplayFunc(item) + + } } @* Render the input control provided by the consumer *@ @@ -22,6 +30,9 @@ @code { + [Parameter] + public bool DeleteEnabled { get; set; } = true; + /// /// The list of items to display and manage. /// @@ -51,8 +62,6 @@ [Parameter] public Func DisplayFunc { get; set; } = item => item?.ToString() ?? string.Empty; - - /// /// A public method that the consumer's input control can call to add a new item. /// diff --git a/OpenArchival.Blazor/Components/CustomComponents/UploadDropBox.razor b/OpenArchival.Blazor/Components/CustomComponents/UploadDropBox.razor index db019a5..affa860 100644 --- a/OpenArchival.Blazor/Components/CustomComponents/UploadDropBox.razor +++ b/OpenArchival.Blazor/Components/CustomComponents/UploadDropBox.razor @@ -230,4 +230,19 @@ private void ClearDragClass() => _dragClass = DefaultDragClass; + + public void RemoveFile(string filename) + { + var existingFile = ExistingFiles.Where(f => f.OriginalName == filename).FirstOrDefault(); + if (existingFile is not null) + { + ExistingFiles.Remove(existingFile); + } + + var file = Files.Where(f => f.Name == filename).FirstOrDefault(); + if (file is not null) + { + Files.Remove(file); + } + } } \ No newline at end of file diff --git a/OpenArchival.Blazor/Components/Pages/Administration/ArchiveConfiguration.razor b/OpenArchival.Blazor/Components/Pages/Administration/ArchiveConfiguration.razor index a2a328c..00b3e45 100644 --- a/OpenArchival.Blazor/Components/Pages/Administration/ArchiveConfiguration.razor +++ b/OpenArchival.Blazor/Components/Pages/Administration/ArchiveConfiguration.razor @@ -44,6 +44,7 @@ if (result is not null && !result.Canceled) { + } } */ diff --git a/OpenArchival.Blazor/Components/Pages/Administration/ArchiveItems/AddArchiveGroupingComponent.razor b/OpenArchival.Blazor/Components/Pages/Administration/ArchiveItems/AddArchiveGroupingComponent.razor index 3e8eadb..756a21d 100644 --- a/OpenArchival.Blazor/Components/Pages/Administration/ArchiveItems/AddArchiveGroupingComponent.razor +++ b/OpenArchival.Blazor/Components/Pages/Administration/ArchiveItems/AddArchiveGroupingComponent.razor @@ -2,6 +2,7 @@ @using OpenArchival.Blazor.Components.Pages.Administration.Categories @using OpenArchival.DataAccess; @using System.ComponentModel.DataAnnotations +@using MudBlazor @inject IDialogService DialogService @inject NavigationManager NavigationManager; @@ -193,6 +194,9 @@ { // The data entry should only be shown if a category has been selected _isFormDivVisible = true; + } else + { + _isFormDivVisible = false; } if (Model is not null) @@ -223,11 +227,11 @@ if (IsValid && ClearOnPublish) { - Model = new(); + Model = new(); await _uploadComponent.ClearClicked.InvokeAsync(); StateHasChanged(); } - + await GroupingPublished.InvokeAsync(oldModel); } @@ -343,10 +347,10 @@ return categories; } - private async void OnDeleteEntryClicked(int index) + private async void OnDeleteEntryClicked((int index, string filename) data) { - Model.ArtifactEntries.RemoveAt(index); - _uploadComponent.Files.RemoveAt(index); + Model.ArtifactEntries.RemoveAt(data.index); + _uploadComponent.RemoveFile(data.filename); StateHasChanged(); } } diff --git a/OpenArchival.Blazor/Components/Pages/Administration/ArchiveItems/ArchiveEntryCreatorCard.razor b/OpenArchival.Blazor/Components/Pages/Administration/ArchiveItems/ArchiveEntryCreatorCard.razor index 465ca41..27f2569 100644 --- a/OpenArchival.Blazor/Components/Pages/Administration/ArchiveItems/ArchiveEntryCreatorCard.razor +++ b/OpenArchival.Blazor/Components/Pages/Administration/ArchiveItems/ArchiveEntryCreatorCard.razor @@ -96,7 +96,7 @@ - + @@ -149,7 +149,7 @@ For="@(() => Model.FileTextContent)"> Additional files - + @@ -170,7 +170,7 @@ public required int ArtifactEntryIndex {get; set;} [Parameter] - public EventCallback OnEntryDeletedClicked { get; set; } + public EventCallback<(int index, string filename)> OnEntryDeletedClicked { get; set; } private ChipContainer _tagsChipContainer; @@ -198,6 +198,23 @@ public List ValidationResults { get; private set; } = []; + public UploadDropBox _uploadDropBox = default!; + + protected override Task OnParametersSetAsync() + { + if (_uploadDropBox is not null && Model is not null && Model.Files is not null) + { + _uploadDropBox.ExistingFiles = Model.Files.GetRange(1, Model.Files.Count - 1); + } + + if (Model.Files is not null && Model.Files.Any()) + { + MainFilePath = Model.Files[0]; + } + + return base.OnParametersSetAsync(); + } + public async Task OnInputsChanged() { // 1. Clear previous validation errors @@ -217,12 +234,17 @@ { if (MainFilePath is not null) { + var oldFiles = Model.Files.GetRange(1, Model.Files.Count - 1); Model.Files = [MainFilePath]; + Model.Files.AddRange(oldFiles); + Model.Files.AddRange(filePathListings); } else { Model.Files = []; } Model.Files.AddRange(filePathListings); + + StateHasChanged(); } private async Task OnFilesCleared() @@ -296,6 +318,6 @@ } private async Task OnDeleteEntryClicked(MouseEventArgs args) { - await OnEntryDeletedClicked.InvokeAsync(ArtifactEntryIndex); + await OnEntryDeletedClicked.InvokeAsync((ArtifactEntryIndex, MainFilePath.OriginalName)); } } \ No newline at end of file diff --git a/OpenArchival.Blazor/Components/Pages/Administration/ArchiveItems/ValidationModels/ArtifactEntryValidationModel.cs b/OpenArchival.Blazor/Components/Pages/Administration/ArchiveItems/ValidationModels/ArtifactEntryValidationModel.cs index dce383c..f9d1e2a 100644 --- a/OpenArchival.Blazor/Components/Pages/Administration/ArchiveItems/ValidationModels/ArtifactEntryValidationModel.cs +++ b/OpenArchival.Blazor/Components/Pages/Administration/ArchiveItems/ValidationModels/ArtifactEntryValidationModel.cs @@ -6,6 +6,11 @@ using System.ComponentModel.DataAnnotations; public class ArtifactEntryValidationModel { + /// + /// Used when translating between the validation model and the database model + /// + public int? Id { get; set; } + [Required(AllowEmptyStrings = false, ErrorMessage = "An artifact numbering must be supplied")] public string? ArtifactNumber { get; set; } @@ -33,14 +38,8 @@ public class ArtifactEntryValidationModel public string? FileTextContent { get; set; } public List RelatedArtifacts { get; set; } = []; - - /* - public IEnumerable Validate(ValidationContext context) - { - - } - */ - public bool IsPublicallyVisible { get; set; } + + public bool IsPublicallyVisible { get; set; } = true; public ArtifactEntry ToArtifactEntry(ArtifactGrouping? parent = null) { @@ -59,10 +58,9 @@ public class ArtifactEntryValidationModel defects.Add(new ArtifactDefect() { Description=defect}); } - - var entry = new ArtifactEntry() { + Id = Id ?? 0, Files = Files, Type = new DataAccess.ArtifactType() { Name = Type }, ArtifactNumber = ArtifactNumber, diff --git a/OpenArchival.Blazor/Components/Pages/Administration/ArchiveItems/ValidationModels/ArtifactGroupingValidationModel.cs b/OpenArchival.Blazor/Components/Pages/Administration/ArchiveItems/ValidationModels/ArtifactGroupingValidationModel.cs index 59812ce..4b0e2ee 100644 --- a/OpenArchival.Blazor/Components/Pages/Administration/ArchiveItems/ValidationModels/ArtifactGroupingValidationModel.cs +++ b/OpenArchival.Blazor/Components/Pages/Administration/ArchiveItems/ValidationModels/ArtifactGroupingValidationModel.cs @@ -26,7 +26,7 @@ public class ArtifactGroupingValidationModel : IValidatableObject public List ArtifactEntries { get; set; } = new(); - public bool IsPublicallyVisible { get; set; } + public bool IsPublicallyVisible { get; set; } = true; public ArtifactGrouping ToArtifactGrouping() { @@ -75,6 +75,7 @@ public class ArtifactGroupingValidationModel : IValidatableObject var validationModel = new ArtifactEntryValidationModel() { + Id = entry.Id, Title = entry.Title, StorageLocation = entry.StorageLocation.Location, ArtifactNumber = entry.ArtifactNumber, @@ -131,7 +132,7 @@ public class ArtifactGroupingValidationModel : IValidatableObject } } - if (ArtifactEntries.IsNullOrEmpty()) + if (ArtifactEntries is null || ArtifactEntries.Count == 0) { yield return new ValidationResult("Must upload one or more files"); } diff --git a/OpenArchival.Blazor/Components/Pages/Administration/Categories/ValidationModels/CategoryValidationModel.cs b/OpenArchival.Blazor/Components/Pages/Administration/Categories/ValidationModels/CategoryValidationModel.cs index 76295c8..e3d2d15 100644 --- a/OpenArchival.Blazor/Components/Pages/Administration/Categories/ValidationModels/CategoryValidationModel.cs +++ b/OpenArchival.Blazor/Components/Pages/Administration/Categories/ValidationModels/CategoryValidationModel.cs @@ -29,7 +29,7 @@ public class CategoryValidationModel public IEnumerable Validate(ValidationContext context) { - if (FieldNames.IsNullOrEmpty() || FieldDescriptions.IsNullOrEmpty()) + if ((FieldNames is null || FieldNames.Count == 0) || (FieldDescriptions is null || FieldDescriptions.Count == 0)) { yield return new ValidationResult( "Either the FieldNames or FieldDescriptions were null or empty. At least one is required", diff --git a/OpenArchival.Blazor/Components/Pages/ArchiveDisplay/ArchiveEntryDisplay.razor b/OpenArchival.Blazor/Components/Pages/ArchiveDisplay/ArchiveEntryDisplay.razor index ec7c2aa..92d118c 100644 --- a/OpenArchival.Blazor/Components/Pages/ArchiveDisplay/ArchiveEntryDisplay.razor +++ b/OpenArchival.Blazor/Components/Pages/ArchiveDisplay/ArchiveEntryDisplay.razor @@ -1,5 +1,85 @@ -

ArchiveEntryDisplay

+@using OpenArchival.Blazor.FileViewer + + + + @ArtifactEntry.Title + + + + + Artifact Identifier + + @ArtifactEntry.ArtifactIdentifier + + Primary Artifact Type + + @ArtifactEntry.Type.Name + + @if (!string.IsNullOrEmpty(ArtifactEntry.StorageLocation.Location)) + { + Storage Location + + @ArtifactEntry.StorageLocation.Location + } + + @if (ArtifactEntry.Tags.Count > 0) + { + Tags + + + } + + @if (ArtifactEntry.ListedNames.Count > 0) + { + Listed Names + + + } + + @if (ArtifactEntry.AssociatedDates.Count > 0) + { + Associated Dates + + + } + + + + Description + + @ArtifactEntry.Description + + + + @foreach (FilePathListing file in ArtifactEntry.Files) + { + @file.OriginalName + } + + + + +@inject IJSRuntime JSRuntime +@inject ISnackbar Snackbar @code { + [Parameter] + public required ArtifactEntry ArtifactEntry { get; set; } + private async Task OnFileDownloadClicked(FilePathListing file) + { + try + { + byte[] fileBytes = await File.ReadAllBytesAsync(file.Path); + + string mimeType = ""; + + await JSRuntime.InvokeVoidAsync("downloadFileFromBytes", file.OriginalName, mimeType, Convert.ToBase64String(fileBytes)); + } + catch (Exception ex) + { + Snackbar.Add($"Failed to download file {file.OriginalName}", Severity.Error); + throw ex; + } + } } diff --git a/OpenArchival.Blazor/Components/Pages/ArchiveDisplay/ArchiveGroupingDisplay.razor b/OpenArchival.Blazor/Components/Pages/ArchiveDisplay/ArchiveGroupingDisplay.razor index 5084b6d..65f362e 100644 --- a/OpenArchival.Blazor/Components/Pages/ArchiveDisplay/ArchiveGroupingDisplay.razor +++ b/OpenArchival.Blazor/Components/Pages/ArchiveDisplay/ArchiveGroupingDisplay.razor @@ -1,12 +1,55 @@ @page "/archive/{GroupingIdString}" @using OpenArchival.DataAccess; +@using OpenArchival.Blazor.FileViewer @inject IArtifactGroupingProvider GroupingProvider; @inject NavigationManager NavigationManager; @if (_artifactGrouping is not null) { - @_artifactGrouping.Title + + + @_artifactGrouping.Title + + + + @**@ + + + + + + + Description + + @_artifactGrouping.Description + + + + + Artifact Identifier + + @_artifactGrouping.ArtifactGroupingIdentifier + + Primary Artifact Category + + @_artifactGrouping.Category.Name + + Primary Artifact Type + + @_artifactGrouping.Type.Name + + + + + + + @foreach (ArtifactEntry child in _artifactGrouping.ChildArtifactEntries) { + + } + + + } @code { diff --git a/OpenArchival.Blazor/Components/Pages/ArchiveDisplay/FileDisplayBase.razor b/OpenArchival.Blazor/Components/Pages/ArchiveDisplay/FileDisplayBase.razor deleted file mode 100644 index d150b95..0000000 --- a/OpenArchival.Blazor/Components/Pages/ArchiveDisplay/FileDisplayBase.razor +++ /dev/null @@ -1,5 +0,0 @@ -

FileDisplayBase

- -@code { - -} diff --git a/OpenArchival.Blazor/Components/Pages/ArchiveDisplay/FileDisplayComponent.razor b/OpenArchival.Blazor/Components/Pages/ArchiveDisplay/FileDisplayComponent.razor new file mode 100644 index 0000000..690485b --- /dev/null +++ b/OpenArchival.Blazor/Components/Pages/ArchiveDisplay/FileDisplayComponent.razor @@ -0,0 +1,34 @@ +@if (File is not null) +{ + +} + +@code { + [Parameter] + public required FilePathListing File { get; set; } + + /// + /// Sets the width of the image box while it loads + /// + [Parameter] + public int Width { get; set; } = 600; + + /// + /// Sets the height of the image box while it loads + /// + [Parameter] + public int Height { get; set; } = 400; + + [Parameter] + public string AltText { get; set; } = ""; + + protected override Task OnParametersSetAsync() + { + if (File is not null || !string.IsNullOrEmpty(AltText)) + { + StateHasChanged(); + } + + return base.OnParametersSetAsync(); + } +} diff --git a/OpenArchival.Blazor/Components/Pages/ArchiveDisplay/FileDisplayComponentFactory.cs b/OpenArchival.Blazor/Components/Pages/ArchiveDisplay/FileDisplayComponentFactory.cs new file mode 100644 index 0000000..6e6b2c4 --- /dev/null +++ b/OpenArchival.Blazor/Components/Pages/ArchiveDisplay/FileDisplayComponentFactory.cs @@ -0,0 +1,46 @@ +using OpenArchival.Blazor.Components.Pages.ArchiveDisplay; +using System.Collections.Generic; +using System.Collections.Specialized; + +namespace OpenArchival.Blazor; + +public class FileDisplayComponentFactory +{ + private Dictionary _extensionToComponents { get; set; } = []; + + public FileDisplayComponentFactory() + { + // Supported image file types taken from https://developer.mozilla.org/en-US/docs/Web/Media/Guides/Formats/Image_types + RegisterComponent(".apng"); + RegisterComponent(".png"); + RegisterComponent(".avif"); + RegisterComponent(".gif"); + RegisterComponent(".jpg"); + RegisterComponent(".jpeg"); + RegisterComponent(".jfif"); + RegisterComponent(".pjpeg"); + RegisterComponent(".pjg"); + RegisterComponent(".png"); + RegisterComponent(".svg"); + RegisterComponent(".webp"); + } + + private string GetExtensionKey(string pathOrExtension) + { + return Path.GetExtension(pathOrExtension).ToUpperInvariant(); + } + + public bool RegisterComponent(string filenameOrExtension) where ComponentType : IFileDisplayComponent + { + string extensionString = GetExtensionKey(filenameOrExtension); + + _extensionToComponents.Add(extensionString, typeof(ComponentType)); + return true; + } + + public Type? GetDisplayComponentType(string filenameOrExtension) { + var result = _extensionToComponents.TryGetValue(GetExtensionKey(filenameOrExtension), out var component); + + return (result) ? component : null; + } +} diff --git a/OpenArchival.Blazor/Components/Pages/ArchiveDisplay/FileDisplayImage.razor b/OpenArchival.Blazor/Components/Pages/ArchiveDisplay/FileDisplayImage.razor index 3a5a737..18eb39d 100644 --- a/OpenArchival.Blazor/Components/Pages/ArchiveDisplay/FileDisplayImage.razor +++ b/OpenArchival.Blazor/Components/Pages/ArchiveDisplay/FileDisplayImage.razor @@ -1,5 +1,7 @@ -

FileDisplayImage

+@implements IFileDisplayComponent +

FileDisplayImage

@code { - + [Parameter] + public required FilePathListing FilePath { get; set; } } diff --git a/OpenArchival.Blazor/Components/Pages/ArchiveDisplay/IFileDisplayComponent.cs b/OpenArchival.Blazor/Components/Pages/ArchiveDisplay/IFileDisplayComponent.cs index 00a70f5..879ad15 100644 --- a/OpenArchival.Blazor/Components/Pages/ArchiveDisplay/IFileDisplayComponent.cs +++ b/OpenArchival.Blazor/Components/Pages/ArchiveDisplay/IFileDisplayComponent.cs @@ -1,5 +1,8 @@ -namespace OpenArchival.Blazor; +using OpenArchival.DataAccess; + +namespace OpenArchival.Blazor; public interface IFileDisplayComponent { + public FilePathListing FilePath { get; set; } } diff --git a/OpenArchival.Blazor/Components/Routes.razor b/OpenArchival.Blazor/Components/Routes.razor index 86473b0..a252974 100644 --- a/OpenArchival.Blazor/Components/Routes.razor +++ b/OpenArchival.Blazor/Components/Routes.razor @@ -1,5 +1,7 @@ @using OpenArchival.Blazor.Components.Account.Shared - + + diff --git a/OpenArchival.Blazor/Controllers/FilesController.cs b/OpenArchival.Blazor/Controllers/FilesController.cs new file mode 100644 index 0000000..9517b6f --- /dev/null +++ b/OpenArchival.Blazor/Controllers/FilesController.cs @@ -0,0 +1,53 @@ +using Microsoft.AspNetCore.Mvc; +using Microsoft.EntityFrameworkCore; +using OpenArchival.DataAccess; // Assuming your DbContext or service is here + +[Route("api/[controller]")] +[ApiController] +public class FilesController : ControllerBase +{ + // Inject your database context or a service to find file paths + private readonly IDbContextFactory _context; + + public FilesController(IDbContextFactory dbFactory) + { + _context = dbFactory; + } + + [HttpGet("{id}")] + public async Task GetFile(int id) + { + await using var context = await _context.CreateDbContextAsync(); + + FilePathListing fileRecord = await context.ArtifactFilePaths.FindAsync(id); + + if (fileRecord == null) + { + return NotFound(); + } + + var physicalPath = fileRecord.Path; + + if (!System.IO.File.Exists(physicalPath)) + { + return NotFound(); + } + + var fileStream = new FileStream(physicalPath, FileMode.Open, FileAccess.Read); + + return new FileStreamResult(fileStream, GetMimeType(physicalPath)); + } + + private static string GetMimeType(string filePath) + { + var extension = Path.GetExtension(filePath).ToLowerInvariant(); + return extension switch + { + ".jpg" => "image/jpeg", + ".jpeg" => "image/jpeg", + ".png" => "image/png", + ".gif" => "image/gif", + _ => "application/octet-stream", // Default for unknown file types + }; + } +} \ No newline at end of file diff --git a/OpenArchival.Blazor/Dockerfile b/OpenArchival.Blazor/Dockerfile index 854f533..7affa19 100644 --- a/OpenArchival.Blazor/Dockerfile +++ b/OpenArchival.Blazor/Dockerfile @@ -15,6 +15,7 @@ WORKDIR /src COPY ["nuget.config", "."] COPY ["OpenArchival.Blazor/OpenArchival.Blazor.csproj", "OpenArchival.Blazor/"] COPY ["OpenArchival.DataAccess/OpenArchival.DataAccess.csproj", "OpenArchival.DataAccess/"] +COPY ["OpenArchival.FileViewer/OpenArchival.FileViewer.csproj", "OpenArchival.FileViewer/"] RUN dotnet restore "./OpenArchival.Blazor/OpenArchival.Blazor.csproj" COPY . . WORKDIR "/src/OpenArchival.Blazor" diff --git a/OpenArchival.Blazor/OpenArchival.Blazor.csproj b/OpenArchival.Blazor/OpenArchival.Blazor.csproj index c583e69..d2f941c 100644 --- a/OpenArchival.Blazor/OpenArchival.Blazor.csproj +++ b/OpenArchival.Blazor/OpenArchival.Blazor.csproj @@ -14,7 +14,7 @@ - + @@ -22,10 +22,14 @@ + + + + diff --git a/OpenArchival.Blazor/OpenArchivalUploads/0d48579c-1d03-4150-95b0-0589a717bc46.docx b/OpenArchival.Blazor/OpenArchivalUploads/0d48579c-1d03-4150-95b0-0589a717bc46.docx new file mode 100644 index 0000000..5c855e8 Binary files /dev/null and b/OpenArchival.Blazor/OpenArchivalUploads/0d48579c-1d03-4150-95b0-0589a717bc46.docx differ diff --git a/OpenArchival.Blazor/OpenArchivalUploads/1aa39ec4-060f-4a4f-96eb-0cc6ca203e19.png b/OpenArchival.Blazor/OpenArchivalUploads/1aa39ec4-060f-4a4f-96eb-0cc6ca203e19.png new file mode 100644 index 0000000..0bf37ec Binary files /dev/null and b/OpenArchival.Blazor/OpenArchivalUploads/1aa39ec4-060f-4a4f-96eb-0cc6ca203e19.png differ diff --git a/OpenArchival.Blazor/OpenArchivalUploads/1c15d96a-fa24-44d2-9ceb-fc7a877842ce.exe b/OpenArchival.Blazor/OpenArchivalUploads/1c15d96a-fa24-44d2-9ceb-fc7a877842ce.exe new file mode 100644 index 0000000..ed50eb4 Binary files /dev/null and b/OpenArchival.Blazor/OpenArchivalUploads/1c15d96a-fa24-44d2-9ceb-fc7a877842ce.exe differ diff --git a/OpenArchival.Blazor/OpenArchivalUploads/2217a330-698d-4a2d-ba01-e38c382f7084 b/OpenArchival.Blazor/OpenArchivalUploads/2217a330-698d-4a2d-ba01-e38c382f7084 new file mode 100644 index 0000000..4c4487e --- /dev/null +++ b/OpenArchival.Blazor/OpenArchivalUploads/2217a330-698d-4a2d-ba01-e38c382f7084 @@ -0,0 +1,196 @@ +# Language part removed. With clang-format >=20.1, the C and Cpp are separately handled, +# so either there is no language at all, or we need to create 2 formats for C and Cpp, separately + +--- +# Language: Cpp +# BasedOnStyle: LLVM +AccessModifierOffset: -2 +AlignAfterOpenBracket: Align +AlignArrayOfStructures: None +AlignConsecutiveMacros: + Enabled: true + AcrossEmptyLines: true + AcrossComments: true +AlignConsecutiveAssignments: None +AlignConsecutiveBitFields: + Enabled: true + AcrossEmptyLines: true + AcrossComments: true +AlignConsecutiveDeclarations: None +AlignEscapedNewlines: Right +AlignOperands: Align +SortIncludes: true +InsertBraces: true # Control statements must have curly brackets +AlignTrailingComments: true +AllowAllArgumentsOnNextLine: true +AllowAllParametersOfDeclarationOnNextLine: true +AllowShortEnumsOnASingleLine: true +AllowShortBlocksOnASingleLine: Empty +AllowShortCaseLabelsOnASingleLine: true +AllowShortFunctionsOnASingleLine: All +AllowShortLambdasOnASingleLine: All +AllowShortIfStatementsOnASingleLine: Never +AllowShortLoopsOnASingleLine: false +AlwaysBreakAfterDefinitionReturnType: None +AlwaysBreakAfterReturnType: AllDefinitions +AlwaysBreakBeforeMultilineStrings: false +AlwaysBreakTemplateDeclarations: Yes +AttributeMacros: + - __capability +BinPackArguments: true +BinPackParameters: true +BraceWrapping: + AfterCaseLabel: false + AfterClass: false + AfterControlStatement: Never + AfterEnum: false + AfterFunction: false + AfterNamespace: false + AfterObjCDeclaration: false + AfterStruct: false + AfterUnion: false + AfterExternBlock: false + BeforeCatch: false + BeforeElse: false + BeforeLambdaBody: false + BeforeWhile: false + IndentBraces: false + SplitEmptyFunction: true + SplitEmptyRecord: true + SplitEmptyNamespace: true +BreakBeforeBinaryOperators: NonAssignment +BreakBeforeConceptDeclarations: true +BreakBeforeBraces: Attach +BreakBeforeInheritanceComma: false +BreakInheritanceList: BeforeColon +BreakBeforeTernaryOperators: true +BreakConstructorInitializersBeforeComma: false +BreakConstructorInitializers: BeforeColon +BreakAfterJavaFieldAnnotations: false +BreakStringLiterals: true +ColumnLimit: 120 +CommentPragmas: "^ IWYU pragma:" +QualifierAlignment: Leave +CompactNamespaces: false +ConstructorInitializerIndentWidth: 4 +ContinuationIndentWidth: 4 +Cpp11BracedListStyle: true +DeriveLineEnding: true +DerivePointerAlignment: false +DisableFormat: false +EmptyLineAfterAccessModifier: Never +EmptyLineBeforeAccessModifier: LogicalBlock +ExperimentalAutoDetectBinPacking: false +PackConstructorInitializers: BinPack +BasedOnStyle: "" +ConstructorInitializerAllOnOneLineOrOnePerLine: false +AllowAllConstructorInitializersOnNextLine: true +FixNamespaceComments: true +ForEachMacros: + - foreach + - Q_FOREACH + - BOOST_FOREACH +IfMacros: + - KJ_IF_MAYBE +IncludeBlocks: Preserve +IncludeCategories: + - Regex: "^<(.*)>" + Priority: 0 + - Regex: '^"(.*)"' + Priority: 1 + - Regex: "(.*)" + Priority: 2 +IncludeIsMainRegex: "(Test)?$" +IncludeIsMainSourceRegex: "" +IndentAccessModifiers: false +IndentCaseLabels: true +IndentCaseBlocks: false +IndentGotoLabels: true +IndentPPDirectives: None +IndentExternBlock: AfterExternBlock +IndentRequires: true +IndentWidth: 4 +IndentWrappedFunctionNames: false +InsertTrailingCommas: None +JavaScriptQuotes: Leave +JavaScriptWrapImports: true +KeepEmptyLinesAtTheStartOfBlocks: true +LambdaBodyIndentation: Signature +MacroBlockBegin: "" +MacroBlockEnd: "" +MaxEmptyLinesToKeep: 1 +NamespaceIndentation: None +ObjCBinPackProtocolList: Auto +ObjCBlockIndentWidth: 2 +ObjCBreakBeforeNestedBlockParam: true +ObjCSpaceAfterProperty: false +ObjCSpaceBeforeProtocolList: true +PenaltyBreakAssignment: 2 +PenaltyBreakBeforeFirstCallParameter: 19 +PenaltyBreakComment: 300 +PenaltyBreakFirstLessLess: 120 +PenaltyBreakOpenParenthesis: 0 +PenaltyBreakString: 1000 +PenaltyBreakTemplateDeclaration: 10 +PenaltyExcessCharacter: 1000000 +PenaltyReturnTypeOnItsOwnLine: 60 +PenaltyIndentedWhitespace: 0 +PointerAlignment: Left +PPIndentWidth: -1 +ReferenceAlignment: Pointer +ReflowComments: false +RemoveBracesLLVM: false +SeparateDefinitionBlocks: Always +ShortNamespaceLines: 1 +SortJavaStaticImport: Before +SortUsingDeclarations: true +SpaceAfterCStyleCast: false +SpaceAfterLogicalNot: false +SpaceAfterTemplateKeyword: true +SpaceBeforeAssignmentOperators: true +SpaceBeforeCaseColon: false +SpaceBeforeParens: ControlStatements +SpaceBeforeParensOptions: + AfterControlStatements: true + AfterForeachMacros: true + AfterFunctionDefinitionName: false + AfterFunctionDeclarationName: false + AfterIfMacros: true + AfterOverloadedOperator: false + BeforeNonEmptyParentheses: false +SpaceAroundPointerQualifiers: Default +SpaceBeforeRangeBasedForLoopColon: true +SpaceInEmptyBlock: false +SpaceInEmptyParentheses: false +SpacesBeforeTrailingComments: 1 +SpacesInAngles: Never +SpacesInConditionalStatement: false +SpacesInContainerLiterals: true +SpacesInCStyleCastParentheses: false +SpacesInLineCommentPrefix: + Minimum: 1 + Maximum: -1 +SpacesInParentheses: false +SpacesInSquareBrackets: false +SpaceBeforeSquareBrackets: false +BitFieldColonSpacing: Both +Standard: Latest +StatementAttributeLikeMacros: + - Q_EMIT +StatementMacros: + - Q_UNUSED + - QT_REQUIRE_VERSION +TabWidth: 8 +UseCRLF: false +UseTab: Never +WhitespaceSensitiveMacros: + - STRINGIZE + - PP_STRINGIZE + - BOOST_PP_STRINGIZE + - NS_SWIFT_NAME + - CF_SWIFT_NAME +SpaceBeforeCpp11BracedList: false +SpaceBeforeCtorInitializerColon: true +SpaceBeforeInheritanceColon: true +--- + diff --git a/OpenArchival.Blazor/OpenArchivalUploads/22962bcd-2f0e-44c8-95f0-b9d471305089.exe b/OpenArchival.Blazor/OpenArchivalUploads/22962bcd-2f0e-44c8-95f0-b9d471305089.exe new file mode 100644 index 0000000..6a4f1aa Binary files /dev/null and b/OpenArchival.Blazor/OpenArchivalUploads/22962bcd-2f0e-44c8-95f0-b9d471305089.exe differ diff --git a/OpenArchival.Blazor/OpenArchivalUploads/27562b2a-864c-40dc-8944-94826418b0de.conf b/OpenArchival.Blazor/OpenArchivalUploads/27562b2a-864c-40dc-8944-94826418b0de.conf new file mode 100644 index 0000000..73a4332 --- /dev/null +++ b/OpenArchival.Blazor/OpenArchivalUploads/27562b2a-864c-40dc-8944-94826418b0de.conf @@ -0,0 +1,10 @@ +[Interface] +PrivateKey = SHZ+vDoQyTFLr+sEYBY8r0TXMFnMtsMaA5pcxcKSUWI= +Address = 10.88.203.3/24,fd11:5ee:bad:c0de::a58:cb03/64 +DNS = 10.88.203.1 + +[Peer] +PublicKey = FVK/Fqod0nha+1l1sGZi2cx1LUU+Ihj6IKF4+g4dmA0= +PresharedKey = UdNe7MRgwjEBZ05wg+x7kXEfZJGOCggvtSwCYvMhU4s= +Endpoint = pihole.vtallen.com:51820 +AllowedIPs = 0.0.0.0/0, ::0/0 diff --git a/OpenArchival.Blazor/OpenArchivalUploads/2a0da275-1957-4c08-a43d-f203fbda3ae0.jpg b/OpenArchival.Blazor/OpenArchivalUploads/2a0da275-1957-4c08-a43d-f203fbda3ae0.jpg new file mode 100644 index 0000000..20cdf54 Binary files /dev/null and b/OpenArchival.Blazor/OpenArchivalUploads/2a0da275-1957-4c08-a43d-f203fbda3ae0.jpg differ diff --git a/OpenArchival.Blazor/OpenArchivalUploads/368e5cd1-a4ba-4ded-9094-4b1b0c3c5399.docx b/OpenArchival.Blazor/OpenArchivalUploads/368e5cd1-a4ba-4ded-9094-4b1b0c3c5399.docx new file mode 100644 index 0000000..5c855e8 Binary files /dev/null and b/OpenArchival.Blazor/OpenArchivalUploads/368e5cd1-a4ba-4ded-9094-4b1b0c3c5399.docx differ diff --git a/OpenArchival.Blazor/OpenArchivalUploads/385bc58e-cf7c-42fd-a714-46cb65f3fc97.png b/OpenArchival.Blazor/OpenArchivalUploads/385bc58e-cf7c-42fd-a714-46cb65f3fc97.png new file mode 100644 index 0000000..0bf37ec Binary files /dev/null and b/OpenArchival.Blazor/OpenArchivalUploads/385bc58e-cf7c-42fd-a714-46cb65f3fc97.png differ diff --git a/OpenArchival.Blazor/OpenArchivalUploads/3b2cd427-4d1e-4b4e-b6d5-5158ef0bb8a7.pdf b/OpenArchival.Blazor/OpenArchivalUploads/3b2cd427-4d1e-4b4e-b6d5-5158ef0bb8a7.pdf new file mode 100644 index 0000000..40b604e Binary files /dev/null and b/OpenArchival.Blazor/OpenArchivalUploads/3b2cd427-4d1e-4b4e-b6d5-5158ef0bb8a7.pdf differ diff --git a/OpenArchival.Blazor/OpenArchivalUploads/49aeb5f1-5390-4cee-a995-8487557f2501.conf b/OpenArchival.Blazor/OpenArchivalUploads/49aeb5f1-5390-4cee-a995-8487557f2501.conf new file mode 100644 index 0000000..73a4332 --- /dev/null +++ b/OpenArchival.Blazor/OpenArchivalUploads/49aeb5f1-5390-4cee-a995-8487557f2501.conf @@ -0,0 +1,10 @@ +[Interface] +PrivateKey = SHZ+vDoQyTFLr+sEYBY8r0TXMFnMtsMaA5pcxcKSUWI= +Address = 10.88.203.3/24,fd11:5ee:bad:c0de::a58:cb03/64 +DNS = 10.88.203.1 + +[Peer] +PublicKey = FVK/Fqod0nha+1l1sGZi2cx1LUU+Ihj6IKF4+g4dmA0= +PresharedKey = UdNe7MRgwjEBZ05wg+x7kXEfZJGOCggvtSwCYvMhU4s= +Endpoint = pihole.vtallen.com:51820 +AllowedIPs = 0.0.0.0/0, ::0/0 diff --git a/OpenArchival.Blazor/OpenArchivalUploads/4cbcc151-0089-4060-92cb-ea0c27d38f3f.exe b/OpenArchival.Blazor/OpenArchivalUploads/4cbcc151-0089-4060-92cb-ea0c27d38f3f.exe new file mode 100644 index 0000000..44f375c Binary files /dev/null and b/OpenArchival.Blazor/OpenArchivalUploads/4cbcc151-0089-4060-92cb-ea0c27d38f3f.exe differ diff --git a/OpenArchival.Blazor/OpenArchivalUploads/4ea9a636-cf80-44d7-9192-25f61f79d6da.pdf b/OpenArchival.Blazor/OpenArchivalUploads/4ea9a636-cf80-44d7-9192-25f61f79d6da.pdf new file mode 100644 index 0000000..40b604e Binary files /dev/null and b/OpenArchival.Blazor/OpenArchivalUploads/4ea9a636-cf80-44d7-9192-25f61f79d6da.pdf differ diff --git a/OpenArchival.Blazor/OpenArchivalUploads/55524b17-abb5-4dba-892b-58de3285dfc4.pdf b/OpenArchival.Blazor/OpenArchivalUploads/55524b17-abb5-4dba-892b-58de3285dfc4.pdf new file mode 100644 index 0000000..40b604e Binary files /dev/null and b/OpenArchival.Blazor/OpenArchivalUploads/55524b17-abb5-4dba-892b-58de3285dfc4.pdf differ diff --git a/OpenArchival.Blazor/OpenArchivalUploads/5a2f3dbc-27bb-4f14-b5df-407164355659.pdf b/OpenArchival.Blazor/OpenArchivalUploads/5a2f3dbc-27bb-4f14-b5df-407164355659.pdf new file mode 100644 index 0000000..40b604e Binary files /dev/null and b/OpenArchival.Blazor/OpenArchivalUploads/5a2f3dbc-27bb-4f14-b5df-407164355659.pdf differ diff --git a/OpenArchival.Blazor/OpenArchivalUploads/5a55feb1-5358-40be-af3b-fc50ef919a75.exe b/OpenArchival.Blazor/OpenArchivalUploads/5a55feb1-5358-40be-af3b-fc50ef919a75.exe new file mode 100644 index 0000000..87038fd Binary files /dev/null and b/OpenArchival.Blazor/OpenArchivalUploads/5a55feb1-5358-40be-af3b-fc50ef919a75.exe differ diff --git a/OpenArchival.Blazor/OpenArchivalUploads/5b1d0376-03de-44dc-8d61-1982f12578da.conf b/OpenArchival.Blazor/OpenArchivalUploads/5b1d0376-03de-44dc-8d61-1982f12578da.conf new file mode 100644 index 0000000..73a4332 --- /dev/null +++ b/OpenArchival.Blazor/OpenArchivalUploads/5b1d0376-03de-44dc-8d61-1982f12578da.conf @@ -0,0 +1,10 @@ +[Interface] +PrivateKey = SHZ+vDoQyTFLr+sEYBY8r0TXMFnMtsMaA5pcxcKSUWI= +Address = 10.88.203.3/24,fd11:5ee:bad:c0de::a58:cb03/64 +DNS = 10.88.203.1 + +[Peer] +PublicKey = FVK/Fqod0nha+1l1sGZi2cx1LUU+Ihj6IKF4+g4dmA0= +PresharedKey = UdNe7MRgwjEBZ05wg+x7kXEfZJGOCggvtSwCYvMhU4s= +Endpoint = pihole.vtallen.com:51820 +AllowedIPs = 0.0.0.0/0, ::0/0 diff --git a/OpenArchival.Blazor/OpenArchivalUploads/5f8eed67-0075-4d6f-ad3f-d71b5175ad36.pdf b/OpenArchival.Blazor/OpenArchivalUploads/5f8eed67-0075-4d6f-ad3f-d71b5175ad36.pdf new file mode 100644 index 0000000..40b604e Binary files /dev/null and b/OpenArchival.Blazor/OpenArchivalUploads/5f8eed67-0075-4d6f-ad3f-d71b5175ad36.pdf differ diff --git a/OpenArchival.Blazor/OpenArchivalUploads/69dc4f2e-ede2-4f6f-a827-e0e279d5bcf7.pdf b/OpenArchival.Blazor/OpenArchivalUploads/69dc4f2e-ede2-4f6f-a827-e0e279d5bcf7.pdf new file mode 100644 index 0000000..40b604e Binary files /dev/null and b/OpenArchival.Blazor/OpenArchivalUploads/69dc4f2e-ede2-4f6f-a827-e0e279d5bcf7.pdf differ diff --git a/OpenArchival.Blazor/OpenArchivalUploads/6c1a77ee-504a-4e57-8e8c-a5a3f17351b9.pdf b/OpenArchival.Blazor/OpenArchivalUploads/6c1a77ee-504a-4e57-8e8c-a5a3f17351b9.pdf new file mode 100644 index 0000000..40b604e Binary files /dev/null and b/OpenArchival.Blazor/OpenArchivalUploads/6c1a77ee-504a-4e57-8e8c-a5a3f17351b9.pdf differ diff --git a/OpenArchival.Blazor/OpenArchivalUploads/6d256654-102b-4b97-9131-0750088ffd49.exe b/OpenArchival.Blazor/OpenArchivalUploads/6d256654-102b-4b97-9131-0750088ffd49.exe new file mode 100644 index 0000000..032922d Binary files /dev/null and b/OpenArchival.Blazor/OpenArchivalUploads/6d256654-102b-4b97-9131-0750088ffd49.exe differ diff --git a/OpenArchival.Blazor/OpenArchivalUploads/6dc2e9c6-36ec-4d9c-88b1-c82ac1cb28aa.docx b/OpenArchival.Blazor/OpenArchivalUploads/6dc2e9c6-36ec-4d9c-88b1-c82ac1cb28aa.docx new file mode 100644 index 0000000..5c855e8 Binary files /dev/null and b/OpenArchival.Blazor/OpenArchivalUploads/6dc2e9c6-36ec-4d9c-88b1-c82ac1cb28aa.docx differ diff --git a/OpenArchival.Blazor/OpenArchivalUploads/73a45d75-b061-4f26-a823-a2dcb8f961e6.conf b/OpenArchival.Blazor/OpenArchivalUploads/73a45d75-b061-4f26-a823-a2dcb8f961e6.conf new file mode 100644 index 0000000..73a4332 --- /dev/null +++ b/OpenArchival.Blazor/OpenArchivalUploads/73a45d75-b061-4f26-a823-a2dcb8f961e6.conf @@ -0,0 +1,10 @@ +[Interface] +PrivateKey = SHZ+vDoQyTFLr+sEYBY8r0TXMFnMtsMaA5pcxcKSUWI= +Address = 10.88.203.3/24,fd11:5ee:bad:c0de::a58:cb03/64 +DNS = 10.88.203.1 + +[Peer] +PublicKey = FVK/Fqod0nha+1l1sGZi2cx1LUU+Ihj6IKF4+g4dmA0= +PresharedKey = UdNe7MRgwjEBZ05wg+x7kXEfZJGOCggvtSwCYvMhU4s= +Endpoint = pihole.vtallen.com:51820 +AllowedIPs = 0.0.0.0/0, ::0/0 diff --git a/OpenArchival.Blazor/OpenArchivalUploads/7506cd1a-909a-45e3-ab3d-2c1c068f1362.mp3 b/OpenArchival.Blazor/OpenArchivalUploads/7506cd1a-909a-45e3-ab3d-2c1c068f1362.mp3 new file mode 100644 index 0000000..52c3b5b Binary files /dev/null and b/OpenArchival.Blazor/OpenArchivalUploads/7506cd1a-909a-45e3-ab3d-2c1c068f1362.mp3 differ diff --git a/OpenArchival.Blazor/OpenArchivalUploads/762966fb-4ed9-443a-a6e9-d6365e1ba0d6.conf b/OpenArchival.Blazor/OpenArchivalUploads/762966fb-4ed9-443a-a6e9-d6365e1ba0d6.conf new file mode 100644 index 0000000..73a4332 --- /dev/null +++ b/OpenArchival.Blazor/OpenArchivalUploads/762966fb-4ed9-443a-a6e9-d6365e1ba0d6.conf @@ -0,0 +1,10 @@ +[Interface] +PrivateKey = SHZ+vDoQyTFLr+sEYBY8r0TXMFnMtsMaA5pcxcKSUWI= +Address = 10.88.203.3/24,fd11:5ee:bad:c0de::a58:cb03/64 +DNS = 10.88.203.1 + +[Peer] +PublicKey = FVK/Fqod0nha+1l1sGZi2cx1LUU+Ihj6IKF4+g4dmA0= +PresharedKey = UdNe7MRgwjEBZ05wg+x7kXEfZJGOCggvtSwCYvMhU4s= +Endpoint = pihole.vtallen.com:51820 +AllowedIPs = 0.0.0.0/0, ::0/0 diff --git a/OpenArchival.Blazor/OpenArchivalUploads/77d6287b-bb13-4af6-93e1-e239a6c93e9e.conf b/OpenArchival.Blazor/OpenArchivalUploads/77d6287b-bb13-4af6-93e1-e239a6c93e9e.conf new file mode 100644 index 0000000..73a4332 --- /dev/null +++ b/OpenArchival.Blazor/OpenArchivalUploads/77d6287b-bb13-4af6-93e1-e239a6c93e9e.conf @@ -0,0 +1,10 @@ +[Interface] +PrivateKey = SHZ+vDoQyTFLr+sEYBY8r0TXMFnMtsMaA5pcxcKSUWI= +Address = 10.88.203.3/24,fd11:5ee:bad:c0de::a58:cb03/64 +DNS = 10.88.203.1 + +[Peer] +PublicKey = FVK/Fqod0nha+1l1sGZi2cx1LUU+Ihj6IKF4+g4dmA0= +PresharedKey = UdNe7MRgwjEBZ05wg+x7kXEfZJGOCggvtSwCYvMhU4s= +Endpoint = pihole.vtallen.com:51820 +AllowedIPs = 0.0.0.0/0, ::0/0 diff --git a/OpenArchival.Blazor/OpenArchivalUploads/77d6d6c1-83de-414a-847c-24faa3ca6c4b.png b/OpenArchival.Blazor/OpenArchivalUploads/77d6d6c1-83de-414a-847c-24faa3ca6c4b.png new file mode 100644 index 0000000..0bf37ec Binary files /dev/null and b/OpenArchival.Blazor/OpenArchivalUploads/77d6d6c1-83de-414a-847c-24faa3ca6c4b.png differ diff --git a/OpenArchival.Blazor/OpenArchivalUploads/7ee38d1e-3bb3-4007-a398-778b082d3a2d.exe b/OpenArchival.Blazor/OpenArchivalUploads/7ee38d1e-3bb3-4007-a398-778b082d3a2d.exe new file mode 100644 index 0000000..032922d Binary files /dev/null and b/OpenArchival.Blazor/OpenArchivalUploads/7ee38d1e-3bb3-4007-a398-778b082d3a2d.exe differ diff --git a/OpenArchival.Blazor/OpenArchivalUploads/82b4d34a-9e2a-46f4-a136-dbbd828fd5e0.exe b/OpenArchival.Blazor/OpenArchivalUploads/82b4d34a-9e2a-46f4-a136-dbbd828fd5e0.exe new file mode 100644 index 0000000..203ab8c Binary files /dev/null and b/OpenArchival.Blazor/OpenArchivalUploads/82b4d34a-9e2a-46f4-a136-dbbd828fd5e0.exe differ diff --git a/OpenArchival.Blazor/OpenArchivalUploads/8bd146d8-51d5-412f-b8de-3e84904b83ac.exe b/OpenArchival.Blazor/OpenArchivalUploads/8bd146d8-51d5-412f-b8de-3e84904b83ac.exe new file mode 100644 index 0000000..203ab8c Binary files /dev/null and b/OpenArchival.Blazor/OpenArchivalUploads/8bd146d8-51d5-412f-b8de-3e84904b83ac.exe differ diff --git a/OpenArchival.Blazor/OpenArchivalUploads/8c6cf9be-f3d5-424f-b576-fcbefa3d98f3.exe b/OpenArchival.Blazor/OpenArchivalUploads/8c6cf9be-f3d5-424f-b576-fcbefa3d98f3.exe new file mode 100644 index 0000000..203ab8c Binary files /dev/null and b/OpenArchival.Blazor/OpenArchivalUploads/8c6cf9be-f3d5-424f-b576-fcbefa3d98f3.exe differ diff --git a/OpenArchival.Blazor/OpenArchivalUploads/8e83ce73-6508-405c-8501-76a360b12777.png b/OpenArchival.Blazor/OpenArchivalUploads/8e83ce73-6508-405c-8501-76a360b12777.png new file mode 100644 index 0000000..0bf37ec Binary files /dev/null and b/OpenArchival.Blazor/OpenArchivalUploads/8e83ce73-6508-405c-8501-76a360b12777.png differ diff --git a/OpenArchival.Blazor/OpenArchivalUploads/8ecc9dcf-70db-425c-8445-1157dc10e6c1.pdf b/OpenArchival.Blazor/OpenArchivalUploads/8ecc9dcf-70db-425c-8445-1157dc10e6c1.pdf new file mode 100644 index 0000000..40b604e Binary files /dev/null and b/OpenArchival.Blazor/OpenArchivalUploads/8ecc9dcf-70db-425c-8445-1157dc10e6c1.pdf differ diff --git a/OpenArchival.Blazor/OpenArchivalUploads/9eeab7eb-c0d6-4da9-8e4a-97a974167648.jpeg b/OpenArchival.Blazor/OpenArchivalUploads/9eeab7eb-c0d6-4da9-8e4a-97a974167648.jpeg new file mode 100644 index 0000000..803e5d5 Binary files /dev/null and b/OpenArchival.Blazor/OpenArchivalUploads/9eeab7eb-c0d6-4da9-8e4a-97a974167648.jpeg differ diff --git a/OpenArchival.Blazor/OpenArchivalUploads/9f0a704d-1d0e-488c-a2af-8d3c45b5a497.docx b/OpenArchival.Blazor/OpenArchivalUploads/9f0a704d-1d0e-488c-a2af-8d3c45b5a497.docx new file mode 100644 index 0000000..5c855e8 Binary files /dev/null and b/OpenArchival.Blazor/OpenArchivalUploads/9f0a704d-1d0e-488c-a2af-8d3c45b5a497.docx differ diff --git a/OpenArchival.Blazor/OpenArchivalUploads/a85d87b6-651c-4b8a-8601-6de203a54a79.conf b/OpenArchival.Blazor/OpenArchivalUploads/a85d87b6-651c-4b8a-8601-6de203a54a79.conf new file mode 100644 index 0000000..73a4332 --- /dev/null +++ b/OpenArchival.Blazor/OpenArchivalUploads/a85d87b6-651c-4b8a-8601-6de203a54a79.conf @@ -0,0 +1,10 @@ +[Interface] +PrivateKey = SHZ+vDoQyTFLr+sEYBY8r0TXMFnMtsMaA5pcxcKSUWI= +Address = 10.88.203.3/24,fd11:5ee:bad:c0de::a58:cb03/64 +DNS = 10.88.203.1 + +[Peer] +PublicKey = FVK/Fqod0nha+1l1sGZi2cx1LUU+Ihj6IKF4+g4dmA0= +PresharedKey = UdNe7MRgwjEBZ05wg+x7kXEfZJGOCggvtSwCYvMhU4s= +Endpoint = pihole.vtallen.com:51820 +AllowedIPs = 0.0.0.0/0, ::0/0 diff --git a/OpenArchival.Blazor/OpenArchivalUploads/adf7432d-56ff-46c2-a92c-7e79b5e96257.jpg b/OpenArchival.Blazor/OpenArchivalUploads/adf7432d-56ff-46c2-a92c-7e79b5e96257.jpg new file mode 100644 index 0000000..f686916 Binary files /dev/null and b/OpenArchival.Blazor/OpenArchivalUploads/adf7432d-56ff-46c2-a92c-7e79b5e96257.jpg differ diff --git a/OpenArchival.Blazor/OpenArchivalUploads/ae632bc4-509a-413e-bdb8-5d26abc449bb.pdf b/OpenArchival.Blazor/OpenArchivalUploads/ae632bc4-509a-413e-bdb8-5d26abc449bb.pdf new file mode 100644 index 0000000..40b604e Binary files /dev/null and b/OpenArchival.Blazor/OpenArchivalUploads/ae632bc4-509a-413e-bdb8-5d26abc449bb.pdf differ diff --git a/OpenArchival.Blazor/OpenArchivalUploads/af64ce55-a401-4797-8121-0c78d5b8591c.png b/OpenArchival.Blazor/OpenArchivalUploads/af64ce55-a401-4797-8121-0c78d5b8591c.png new file mode 100644 index 0000000..0bf37ec Binary files /dev/null and b/OpenArchival.Blazor/OpenArchivalUploads/af64ce55-a401-4797-8121-0c78d5b8591c.png differ diff --git a/OpenArchival.Blazor/OpenArchivalUploads/b2dede2f-bee9-42f2-b021-522c2723d66f.exe b/OpenArchival.Blazor/OpenArchivalUploads/b2dede2f-bee9-42f2-b021-522c2723d66f.exe new file mode 100644 index 0000000..efe9c9d Binary files /dev/null and b/OpenArchival.Blazor/OpenArchivalUploads/b2dede2f-bee9-42f2-b021-522c2723d66f.exe differ diff --git a/OpenArchival.Blazor/OpenArchivalUploads/b9dfbe63-87d8-4841-9feb-e04bbfd30980.exe b/OpenArchival.Blazor/OpenArchivalUploads/b9dfbe63-87d8-4841-9feb-e04bbfd30980.exe new file mode 100644 index 0000000..e69de29 diff --git a/OpenArchival.Blazor/OpenArchivalUploads/c80ddf7f-2df9-450e-b43c-a6fac8c60ac0.conf b/OpenArchival.Blazor/OpenArchivalUploads/c80ddf7f-2df9-450e-b43c-a6fac8c60ac0.conf new file mode 100644 index 0000000..73a4332 --- /dev/null +++ b/OpenArchival.Blazor/OpenArchivalUploads/c80ddf7f-2df9-450e-b43c-a6fac8c60ac0.conf @@ -0,0 +1,10 @@ +[Interface] +PrivateKey = SHZ+vDoQyTFLr+sEYBY8r0TXMFnMtsMaA5pcxcKSUWI= +Address = 10.88.203.3/24,fd11:5ee:bad:c0de::a58:cb03/64 +DNS = 10.88.203.1 + +[Peer] +PublicKey = FVK/Fqod0nha+1l1sGZi2cx1LUU+Ihj6IKF4+g4dmA0= +PresharedKey = UdNe7MRgwjEBZ05wg+x7kXEfZJGOCggvtSwCYvMhU4s= +Endpoint = pihole.vtallen.com:51820 +AllowedIPs = 0.0.0.0/0, ::0/0 diff --git a/OpenArchival.Blazor/OpenArchivalUploads/c9633110-e75e-4fa1-abe3-eb0c8c009854.conf b/OpenArchival.Blazor/OpenArchivalUploads/c9633110-e75e-4fa1-abe3-eb0c8c009854.conf new file mode 100644 index 0000000..73a4332 --- /dev/null +++ b/OpenArchival.Blazor/OpenArchivalUploads/c9633110-e75e-4fa1-abe3-eb0c8c009854.conf @@ -0,0 +1,10 @@ +[Interface] +PrivateKey = SHZ+vDoQyTFLr+sEYBY8r0TXMFnMtsMaA5pcxcKSUWI= +Address = 10.88.203.3/24,fd11:5ee:bad:c0de::a58:cb03/64 +DNS = 10.88.203.1 + +[Peer] +PublicKey = FVK/Fqod0nha+1l1sGZi2cx1LUU+Ihj6IKF4+g4dmA0= +PresharedKey = UdNe7MRgwjEBZ05wg+x7kXEfZJGOCggvtSwCYvMhU4s= +Endpoint = pihole.vtallen.com:51820 +AllowedIPs = 0.0.0.0/0, ::0/0 diff --git a/OpenArchival.Blazor/OpenArchivalUploads/ccfe89b8-586d-4298-84c2-b6ff04dba4a0.png b/OpenArchival.Blazor/OpenArchivalUploads/ccfe89b8-586d-4298-84c2-b6ff04dba4a0.png new file mode 100644 index 0000000..0bf37ec Binary files /dev/null and b/OpenArchival.Blazor/OpenArchivalUploads/ccfe89b8-586d-4298-84c2-b6ff04dba4a0.png differ diff --git a/OpenArchival.Blazor/OpenArchivalUploads/cea34c03-7bb0-43e9-9405-f13dc98dddf6.exe b/OpenArchival.Blazor/OpenArchivalUploads/cea34c03-7bb0-43e9-9405-f13dc98dddf6.exe new file mode 100644 index 0000000..032922d Binary files /dev/null and b/OpenArchival.Blazor/OpenArchivalUploads/cea34c03-7bb0-43e9-9405-f13dc98dddf6.exe differ diff --git a/OpenArchival.Blazor/OpenArchivalUploads/dfb49919-e802-46d9-a03a-4aa48527612b.conf b/OpenArchival.Blazor/OpenArchivalUploads/dfb49919-e802-46d9-a03a-4aa48527612b.conf new file mode 100644 index 0000000..73a4332 --- /dev/null +++ b/OpenArchival.Blazor/OpenArchivalUploads/dfb49919-e802-46d9-a03a-4aa48527612b.conf @@ -0,0 +1,10 @@ +[Interface] +PrivateKey = SHZ+vDoQyTFLr+sEYBY8r0TXMFnMtsMaA5pcxcKSUWI= +Address = 10.88.203.3/24,fd11:5ee:bad:c0de::a58:cb03/64 +DNS = 10.88.203.1 + +[Peer] +PublicKey = FVK/Fqod0nha+1l1sGZi2cx1LUU+Ihj6IKF4+g4dmA0= +PresharedKey = UdNe7MRgwjEBZ05wg+x7kXEfZJGOCggvtSwCYvMhU4s= +Endpoint = pihole.vtallen.com:51820 +AllowedIPs = 0.0.0.0/0, ::0/0 diff --git a/OpenArchival.Blazor/OpenArchivalUploads/e04f42f3-6cdd-4098-a83f-d9f5b7ae212c.exe b/OpenArchival.Blazor/OpenArchivalUploads/e04f42f3-6cdd-4098-a83f-d9f5b7ae212c.exe new file mode 100644 index 0000000..203ab8c Binary files /dev/null and b/OpenArchival.Blazor/OpenArchivalUploads/e04f42f3-6cdd-4098-a83f-d9f5b7ae212c.exe differ diff --git a/OpenArchival.Blazor/OpenArchivalUploads/e4ecd6fe-0066-4e39-a920-f1d2f1a5a3c4.conf b/OpenArchival.Blazor/OpenArchivalUploads/e4ecd6fe-0066-4e39-a920-f1d2f1a5a3c4.conf new file mode 100644 index 0000000..73a4332 --- /dev/null +++ b/OpenArchival.Blazor/OpenArchivalUploads/e4ecd6fe-0066-4e39-a920-f1d2f1a5a3c4.conf @@ -0,0 +1,10 @@ +[Interface] +PrivateKey = SHZ+vDoQyTFLr+sEYBY8r0TXMFnMtsMaA5pcxcKSUWI= +Address = 10.88.203.3/24,fd11:5ee:bad:c0de::a58:cb03/64 +DNS = 10.88.203.1 + +[Peer] +PublicKey = FVK/Fqod0nha+1l1sGZi2cx1LUU+Ihj6IKF4+g4dmA0= +PresharedKey = UdNe7MRgwjEBZ05wg+x7kXEfZJGOCggvtSwCYvMhU4s= +Endpoint = pihole.vtallen.com:51820 +AllowedIPs = 0.0.0.0/0, ::0/0 diff --git a/OpenArchival.Blazor/OpenArchivalUploads/e8dc2afe-464a-416e-9efd-4fc93784e6ae.docx b/OpenArchival.Blazor/OpenArchivalUploads/e8dc2afe-464a-416e-9efd-4fc93784e6ae.docx new file mode 100644 index 0000000..5c855e8 Binary files /dev/null and b/OpenArchival.Blazor/OpenArchivalUploads/e8dc2afe-464a-416e-9efd-4fc93784e6ae.docx differ diff --git a/OpenArchival.Blazor/OpenArchivalUploads/eb13948f-7876-4af8-9234-f33f1af1c9ce.png b/OpenArchival.Blazor/OpenArchivalUploads/eb13948f-7876-4af8-9234-f33f1af1c9ce.png new file mode 100644 index 0000000..0bf37ec Binary files /dev/null and b/OpenArchival.Blazor/OpenArchivalUploads/eb13948f-7876-4af8-9234-f33f1af1c9ce.png differ diff --git a/OpenArchival.Blazor/OpenArchivalUploads/f0bf488c-0451-4aa3-b5b6-ae0b57ecd337.exe b/OpenArchival.Blazor/OpenArchivalUploads/f0bf488c-0451-4aa3-b5b6-ae0b57ecd337.exe new file mode 100644 index 0000000..44f375c Binary files /dev/null and b/OpenArchival.Blazor/OpenArchivalUploads/f0bf488c-0451-4aa3-b5b6-ae0b57ecd337.exe differ diff --git a/OpenArchival.Blazor/OpenArchivalUploads/f1d61323-ecd5-41bf-9aad-afe3aac6cbe6.conf b/OpenArchival.Blazor/OpenArchivalUploads/f1d61323-ecd5-41bf-9aad-afe3aac6cbe6.conf new file mode 100644 index 0000000..73a4332 --- /dev/null +++ b/OpenArchival.Blazor/OpenArchivalUploads/f1d61323-ecd5-41bf-9aad-afe3aac6cbe6.conf @@ -0,0 +1,10 @@ +[Interface] +PrivateKey = SHZ+vDoQyTFLr+sEYBY8r0TXMFnMtsMaA5pcxcKSUWI= +Address = 10.88.203.3/24,fd11:5ee:bad:c0de::a58:cb03/64 +DNS = 10.88.203.1 + +[Peer] +PublicKey = FVK/Fqod0nha+1l1sGZi2cx1LUU+Ihj6IKF4+g4dmA0= +PresharedKey = UdNe7MRgwjEBZ05wg+x7kXEfZJGOCggvtSwCYvMhU4s= +Endpoint = pihole.vtallen.com:51820 +AllowedIPs = 0.0.0.0/0, ::0/0 diff --git a/OpenArchival.Blazor/OpenArchivalUploads/f3c77a43-ed8d-406f-973f-54405c4e642f.exe b/OpenArchival.Blazor/OpenArchivalUploads/f3c77a43-ed8d-406f-973f-54405c4e642f.exe new file mode 100644 index 0000000..203ab8c Binary files /dev/null and b/OpenArchival.Blazor/OpenArchivalUploads/f3c77a43-ed8d-406f-973f-54405c4e642f.exe differ diff --git a/OpenArchival.Blazor/OpenArchivalUploads/f465f70e-94c5-4403-bf29-2832293d870f.conf b/OpenArchival.Blazor/OpenArchivalUploads/f465f70e-94c5-4403-bf29-2832293d870f.conf new file mode 100644 index 0000000..73a4332 --- /dev/null +++ b/OpenArchival.Blazor/OpenArchivalUploads/f465f70e-94c5-4403-bf29-2832293d870f.conf @@ -0,0 +1,10 @@ +[Interface] +PrivateKey = SHZ+vDoQyTFLr+sEYBY8r0TXMFnMtsMaA5pcxcKSUWI= +Address = 10.88.203.3/24,fd11:5ee:bad:c0de::a58:cb03/64 +DNS = 10.88.203.1 + +[Peer] +PublicKey = FVK/Fqod0nha+1l1sGZi2cx1LUU+Ihj6IKF4+g4dmA0= +PresharedKey = UdNe7MRgwjEBZ05wg+x7kXEfZJGOCggvtSwCYvMhU4s= +Endpoint = pihole.vtallen.com:51820 +AllowedIPs = 0.0.0.0/0, ::0/0 diff --git a/OpenArchival.Blazor/OpenArchivalUploads/fbc0dba3-b37c-46ad-970f-3c43b9060365.conf b/OpenArchival.Blazor/OpenArchivalUploads/fbc0dba3-b37c-46ad-970f-3c43b9060365.conf new file mode 100644 index 0000000..73a4332 --- /dev/null +++ b/OpenArchival.Blazor/OpenArchivalUploads/fbc0dba3-b37c-46ad-970f-3c43b9060365.conf @@ -0,0 +1,10 @@ +[Interface] +PrivateKey = SHZ+vDoQyTFLr+sEYBY8r0TXMFnMtsMaA5pcxcKSUWI= +Address = 10.88.203.3/24,fd11:5ee:bad:c0de::a58:cb03/64 +DNS = 10.88.203.1 + +[Peer] +PublicKey = FVK/Fqod0nha+1l1sGZi2cx1LUU+Ihj6IKF4+g4dmA0= +PresharedKey = UdNe7MRgwjEBZ05wg+x7kXEfZJGOCggvtSwCYvMhU4s= +Endpoint = pihole.vtallen.com:51820 +AllowedIPs = 0.0.0.0/0, ::0/0 diff --git a/OpenArchival.Blazor/OpenArchivalUploads/fff73e26-b75d-4be4-94c5-0d7e2f1af068.exe b/OpenArchival.Blazor/OpenArchivalUploads/fff73e26-b75d-4be4-94c5-0d7e2f1af068.exe new file mode 100644 index 0000000..6a4f1aa Binary files /dev/null and b/OpenArchival.Blazor/OpenArchivalUploads/fff73e26-b75d-4be4-94c5-0d7e2f1af068.exe differ diff --git a/OpenArchival.Blazor/Program.cs b/OpenArchival.Blazor/Program.cs index 9040484..3bbe4c8 100644 --- a/OpenArchival.Blazor/Program.cs +++ b/OpenArchival.Blazor/Program.cs @@ -14,6 +14,7 @@ builder.Services.AddRazorComponents() .AddInteractiveServerComponents(); builder.Services.AddMudServices(); builder.Services.AddMudExtensions(); +builder.Services.AddControllers(); // --- Database & Identity Configuration --- // Get the single connection string for your PostgreSQL database. @@ -69,6 +70,8 @@ builder.Services.AddLogging(); var app = builder.Build(); +app.MapControllers(); + using (var scope = app.Services.CreateScope()) { var serviceProvider = scope.ServiceProvider; diff --git a/OpenArchival.Blazor/bin/Debug/net9.0/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.dll b/OpenArchival.Blazor/bin/Debug/net9.0/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.dll index c2fdf47..3f43fcd 100644 Binary files a/OpenArchival.Blazor/bin/Debug/net9.0/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.dll and b/OpenArchival.Blazor/bin/Debug/net9.0/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.dll differ diff --git a/OpenArchival.Blazor/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Abstractions.dll b/OpenArchival.Blazor/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Abstractions.dll index a73a07e..69538cb 100644 Binary files a/OpenArchival.Blazor/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Abstractions.dll and b/OpenArchival.Blazor/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Abstractions.dll differ diff --git a/OpenArchival.Blazor/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Design.dll b/OpenArchival.Blazor/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Design.dll index ddc9b28..650dbdc 100644 Binary files a/OpenArchival.Blazor/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Design.dll and b/OpenArchival.Blazor/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Design.dll differ diff --git a/OpenArchival.Blazor/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Relational.dll b/OpenArchival.Blazor/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Relational.dll index 386de7f..083c63b 100644 Binary files a/OpenArchival.Blazor/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Relational.dll and b/OpenArchival.Blazor/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Relational.dll differ diff --git a/OpenArchival.Blazor/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.SqlServer.dll b/OpenArchival.Blazor/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.SqlServer.dll index c5eee35..70da694 100644 Binary files a/OpenArchival.Blazor/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.SqlServer.dll and b/OpenArchival.Blazor/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.SqlServer.dll differ diff --git a/OpenArchival.Blazor/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.dll b/OpenArchival.Blazor/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.dll index 0110c7f..8face4d 100644 Binary files a/OpenArchival.Blazor/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.dll and b/OpenArchival.Blazor/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.dll differ diff --git a/OpenArchival.Blazor/bin/Debug/net9.0/Microsoft.Extensions.Caching.Abstractions.dll b/OpenArchival.Blazor/bin/Debug/net9.0/Microsoft.Extensions.Caching.Abstractions.dll index 3817d75..17a80ed 100644 Binary files a/OpenArchival.Blazor/bin/Debug/net9.0/Microsoft.Extensions.Caching.Abstractions.dll and b/OpenArchival.Blazor/bin/Debug/net9.0/Microsoft.Extensions.Caching.Abstractions.dll differ diff --git a/OpenArchival.Blazor/bin/Debug/net9.0/Microsoft.Extensions.Caching.Memory.dll b/OpenArchival.Blazor/bin/Debug/net9.0/Microsoft.Extensions.Caching.Memory.dll index 99e0248..25650b6 100644 Binary files a/OpenArchival.Blazor/bin/Debug/net9.0/Microsoft.Extensions.Caching.Memory.dll and b/OpenArchival.Blazor/bin/Debug/net9.0/Microsoft.Extensions.Caching.Memory.dll differ diff --git a/OpenArchival.Blazor/bin/Debug/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll b/OpenArchival.Blazor/bin/Debug/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll index 17e344e..5230a86 100644 Binary files a/OpenArchival.Blazor/bin/Debug/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll and b/OpenArchival.Blazor/bin/Debug/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll differ diff --git a/OpenArchival.Blazor/bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/OpenArchival.Blazor/bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll index e7affaf..f531f26 100644 Binary files a/OpenArchival.Blazor/bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll and b/OpenArchival.Blazor/bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll differ diff --git a/OpenArchival.Blazor/bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.dll b/OpenArchival.Blazor/bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.dll index 6191756..7fbaa22 100644 Binary files a/OpenArchival.Blazor/bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.dll and b/OpenArchival.Blazor/bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.dll differ diff --git a/OpenArchival.Blazor/bin/Debug/net9.0/Microsoft.Extensions.DependencyModel.dll b/OpenArchival.Blazor/bin/Debug/net9.0/Microsoft.Extensions.DependencyModel.dll index f6ba3c5..0919f2c 100644 Binary files a/OpenArchival.Blazor/bin/Debug/net9.0/Microsoft.Extensions.DependencyModel.dll and b/OpenArchival.Blazor/bin/Debug/net9.0/Microsoft.Extensions.DependencyModel.dll differ diff --git a/OpenArchival.Blazor/bin/Debug/net9.0/Microsoft.Extensions.Logging.Abstractions.dll b/OpenArchival.Blazor/bin/Debug/net9.0/Microsoft.Extensions.Logging.Abstractions.dll index cb1d711..ab89c5b 100644 Binary files a/OpenArchival.Blazor/bin/Debug/net9.0/Microsoft.Extensions.Logging.Abstractions.dll and b/OpenArchival.Blazor/bin/Debug/net9.0/Microsoft.Extensions.Logging.Abstractions.dll differ diff --git a/OpenArchival.Blazor/bin/Debug/net9.0/Microsoft.Extensions.Logging.dll b/OpenArchival.Blazor/bin/Debug/net9.0/Microsoft.Extensions.Logging.dll index 61d3a7e..85d21f3 100644 Binary files a/OpenArchival.Blazor/bin/Debug/net9.0/Microsoft.Extensions.Logging.dll and b/OpenArchival.Blazor/bin/Debug/net9.0/Microsoft.Extensions.Logging.dll differ diff --git a/OpenArchival.Blazor/bin/Debug/net9.0/Microsoft.Extensions.Options.dll b/OpenArchival.Blazor/bin/Debug/net9.0/Microsoft.Extensions.Options.dll index bfb0647..8189fd3 100644 Binary files a/OpenArchival.Blazor/bin/Debug/net9.0/Microsoft.Extensions.Options.dll and b/OpenArchival.Blazor/bin/Debug/net9.0/Microsoft.Extensions.Options.dll differ diff --git a/OpenArchival.Blazor/bin/Debug/net9.0/Microsoft.Extensions.Primitives.dll b/OpenArchival.Blazor/bin/Debug/net9.0/Microsoft.Extensions.Primitives.dll index b7e4481..f25294e 100644 Binary files a/OpenArchival.Blazor/bin/Debug/net9.0/Microsoft.Extensions.Primitives.dll and b/OpenArchival.Blazor/bin/Debug/net9.0/Microsoft.Extensions.Primitives.dll differ diff --git a/OpenArchival.Blazor/bin/Debug/net9.0/Microsoft.IdentityModel.Abstractions.dll b/OpenArchival.Blazor/bin/Debug/net9.0/Microsoft.IdentityModel.Abstractions.dll index dfcb632..f85ae59 100644 Binary files a/OpenArchival.Blazor/bin/Debug/net9.0/Microsoft.IdentityModel.Abstractions.dll and b/OpenArchival.Blazor/bin/Debug/net9.0/Microsoft.IdentityModel.Abstractions.dll differ diff --git a/OpenArchival.Blazor/bin/Debug/net9.0/Microsoft.IdentityModel.Logging.dll b/OpenArchival.Blazor/bin/Debug/net9.0/Microsoft.IdentityModel.Logging.dll index ce60b3c..170078a 100644 Binary files a/OpenArchival.Blazor/bin/Debug/net9.0/Microsoft.IdentityModel.Logging.dll and b/OpenArchival.Blazor/bin/Debug/net9.0/Microsoft.IdentityModel.Logging.dll differ diff --git a/OpenArchival.Blazor/bin/Debug/net9.0/Microsoft.IdentityModel.Tokens.dll b/OpenArchival.Blazor/bin/Debug/net9.0/Microsoft.IdentityModel.Tokens.dll index da12e5f..009ce65 100644 Binary files a/OpenArchival.Blazor/bin/Debug/net9.0/Microsoft.IdentityModel.Tokens.dll and b/OpenArchival.Blazor/bin/Debug/net9.0/Microsoft.IdentityModel.Tokens.dll differ diff --git a/OpenArchival.Blazor/bin/Debug/net9.0/MudBlazor.dll b/OpenArchival.Blazor/bin/Debug/net9.0/MudBlazor.dll index 364caa6..323705d 100644 Binary files a/OpenArchival.Blazor/bin/Debug/net9.0/MudBlazor.dll and b/OpenArchival.Blazor/bin/Debug/net9.0/MudBlazor.dll differ diff --git a/OpenArchival.Blazor/bin/Debug/net9.0/OpenArchival.Blazor.AdminPages.dll b/OpenArchival.Blazor/bin/Debug/net9.0/OpenArchival.Blazor.AdminPages.dll new file mode 100644 index 0000000..ccec9ca Binary files /dev/null and b/OpenArchival.Blazor/bin/Debug/net9.0/OpenArchival.Blazor.AdminPages.dll differ diff --git a/OpenArchival.Blazor/bin/Debug/net9.0/OpenArchival.Blazor.AdminPages.pdb b/OpenArchival.Blazor/bin/Debug/net9.0/OpenArchival.Blazor.AdminPages.pdb new file mode 100644 index 0000000..0e40e46 Binary files /dev/null and b/OpenArchival.Blazor/bin/Debug/net9.0/OpenArchival.Blazor.AdminPages.pdb differ diff --git a/OpenArchival.Blazor/bin/Debug/net9.0/OpenArchival.Blazor.AdminPages.staticwebassets.endpoints.json b/OpenArchival.Blazor/bin/Debug/net9.0/OpenArchival.Blazor.AdminPages.staticwebassets.endpoints.json new file mode 100644 index 0000000..a523bab --- /dev/null +++ b/OpenArchival.Blazor/bin/Debug/net9.0/OpenArchival.Blazor.AdminPages.staticwebassets.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.css","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"21465"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk=\""},{"Name":"Last-Modified","Value":"Sun, 26 Feb 2023 14:08:26 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.css","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000295508274"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3383"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"6PJ7t7WR38pQTSYe6IR0pbqo2cIZK5wuW/w26kprtBg=\""},{"Name":"ETag","Value":"W/\"Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:28 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.css.gz","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3383"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"6PJ7t7WR38pQTSYe6IR0pbqo2cIZK5wuW/w26kprtBg=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:28 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6PJ7t7WR38pQTSYe6IR0pbqo2cIZK5wuW/w26kprtBg="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.js","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"328"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc=\""},{"Name":"Last-Modified","Value":"Sun, 26 Feb 2023 14:08:26 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.js","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005076142132"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"196"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"B4PUgpr06+d3lAMWknp0EVkaGxPZJdpp5/UidGHzvnc=\""},{"Name":"ETag","Value":"W/\"FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:28 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.js.gz","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"196"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"B4PUgpr06+d3lAMWknp0EVkaGxPZJdpp5/UidGHzvnc=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:28 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-B4PUgpr06+d3lAMWknp0EVkaGxPZJdpp5/UidGHzvnc="}]},{"Route":"_content/CodeBeam.MudExtensions/Mud_Secondary.png","AssetFile":"_content/CodeBeam.MudExtensions/Mud_Secondary.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4558"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"G3hYUw4Ps9P/IQ3lw2zu96RSZaOf4zU+4QkXkH8Xi3Y=\""},{"Name":"Last-Modified","Value":"Sat, 08 Oct 2022 09:55:02 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G3hYUw4Ps9P/IQ3lw2zu96RSZaOf4zU+4QkXkH8Xi3Y="}]},{"Route":"_content/MudBlazor/MudBlazor.min.css","AssetFile":"_content/MudBlazor/MudBlazor.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"606250"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0=\""},{"Name":"Last-Modified","Value":"Wed, 01 Oct 2025 21:51:05 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0="}]},{"Route":"_content/MudBlazor/MudBlazor.min.css","AssetFile":"_content/MudBlazor/MudBlazor.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015264845"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"65509"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"VcBMO3aXrzxl+jfWY+TaxPKsd3L0UWjeJZliEXOyzzI=\""},{"Name":"ETag","Value":"W/\"TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:28 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0="}]},{"Route":"_content/MudBlazor/MudBlazor.min.css.gz","AssetFile":"_content/MudBlazor/MudBlazor.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"65509"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"VcBMO3aXrzxl+jfWY+TaxPKsd3L0UWjeJZliEXOyzzI=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:28 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VcBMO3aXrzxl+jfWY+TaxPKsd3L0UWjeJZliEXOyzzI="}]},{"Route":"_content/MudBlazor/MudBlazor.min.jk5eo7zo4m.css","AssetFile":"_content/MudBlazor/MudBlazor.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"606250"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0=\""},{"Name":"Last-Modified","Value":"Wed, 01 Oct 2025 21:51:05 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jk5eo7zo4m"},{"Name":"integrity","Value":"sha256-TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.css"}]},{"Route":"_content/MudBlazor/MudBlazor.min.js","AssetFile":"_content/MudBlazor/MudBlazor.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"75165"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw=\""},{"Name":"Last-Modified","Value":"Wed, 01 Oct 2025 21:51:05 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js","AssetFile":"_content/MudBlazor/MudBlazor.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000061150859"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16352"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"0BJxfo+EOJvNKoBv/2ahm4RKrPjv7PhB/R16C3XOHDo=\""},{"Name":"ETag","Value":"W/\"hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:28 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js.gz","AssetFile":"_content/MudBlazor/MudBlazor.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16352"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"0BJxfo+EOJvNKoBv/2ahm4RKrPjv7PhB/R16C3XOHDo=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:28 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0BJxfo+EOJvNKoBv/2ahm4RKrPjv7PhB/R16C3XOHDo="}]},{"Route":"_content/MudBlazor/MudBlazor.min.tjzqk7tnel.js","AssetFile":"_content/MudBlazor/MudBlazor.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"75165"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw=\""},{"Name":"Last-Modified","Value":"Wed, 01 Oct 2025 21:51:05 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tjzqk7tnel"},{"Name":"integrity","Value":"sha256-hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.js"}]}]} \ No newline at end of file diff --git a/OpenArchival.Blazor/bin/Debug/net9.0/OpenArchival.Blazor.AdminPages.staticwebassets.runtime.json b/OpenArchival.Blazor/bin/Debug/net9.0/OpenArchival.Blazor.AdminPages.staticwebassets.runtime.json new file mode 100644 index 0000000..10c2d76 --- /dev/null +++ b/OpenArchival.Blazor/bin/Debug/net9.0/OpenArchival.Blazor.AdminPages.staticwebassets.runtime.json @@ -0,0 +1 @@ +{"ContentRoots":["C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\","C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.AdminPages\\obj\\Debug\\net9.0\\compressed\\","C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\"],"Root":{"Children":{"_content":{"Children":{"CodeBeam.MudExtensions":{"Children":{"Mud_Secondary.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"Mud_Secondary.png"},"Patterns":null},"MudExtensions.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"MudExtensions.min.css"},"Patterns":null},"MudExtensions.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"24gzn4tg1a-qz4batx9cb.gz"},"Patterns":null},"MudExtensions.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"MudExtensions.min.js"},"Patterns":null},"MudExtensions.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"stwk5nfoxp-loe7cozwzj.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"MudBlazor":{"Children":{"MudBlazor.min.css":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"MudBlazor.min.css"},"Patterns":null},"MudBlazor.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"tzxjg6is5z-jk5eo7zo4m.gz"},"Patterns":null},"MudBlazor.min.js":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"MudBlazor.min.js"},"Patterns":null},"MudBlazor.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"0wz98yz2xy-tjzqk7tnel.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}} \ No newline at end of file diff --git a/OpenArchival.Blazor/bin/Debug/net9.0/OpenArchival.Blazor.CustomComponents.dll b/OpenArchival.Blazor/bin/Debug/net9.0/OpenArchival.Blazor.CustomComponents.dll new file mode 100644 index 0000000..898228c Binary files /dev/null and b/OpenArchival.Blazor/bin/Debug/net9.0/OpenArchival.Blazor.CustomComponents.dll differ diff --git a/OpenArchival.Blazor/bin/Debug/net9.0/OpenArchival.Blazor.CustomComponents.pdb b/OpenArchival.Blazor/bin/Debug/net9.0/OpenArchival.Blazor.CustomComponents.pdb new file mode 100644 index 0000000..29f5933 Binary files /dev/null and b/OpenArchival.Blazor/bin/Debug/net9.0/OpenArchival.Blazor.CustomComponents.pdb differ diff --git a/OpenArchival.Blazor/bin/Debug/net9.0/OpenArchival.Blazor.CustomComponents.staticwebassets.endpoints.json b/OpenArchival.Blazor/bin/Debug/net9.0/OpenArchival.Blazor.CustomComponents.staticwebassets.endpoints.json new file mode 100644 index 0000000..615d6e4 --- /dev/null +++ b/OpenArchival.Blazor/bin/Debug/net9.0/OpenArchival.Blazor.CustomComponents.staticwebassets.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.css","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"21465"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk=\""},{"Name":"Last-Modified","Value":"Sun, 26 Feb 2023 14:08:26 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.css","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000295508274"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3383"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"6PJ7t7WR38pQTSYe6IR0pbqo2cIZK5wuW/w26kprtBg=\""},{"Name":"ETag","Value":"W/\"Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:26 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.css.gz","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3383"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"6PJ7t7WR38pQTSYe6IR0pbqo2cIZK5wuW/w26kprtBg=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:26 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6PJ7t7WR38pQTSYe6IR0pbqo2cIZK5wuW/w26kprtBg="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.js","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"328"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc=\""},{"Name":"Last-Modified","Value":"Sun, 26 Feb 2023 14:08:26 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.js","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005076142132"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"196"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"B4PUgpr06+d3lAMWknp0EVkaGxPZJdpp5/UidGHzvnc=\""},{"Name":"ETag","Value":"W/\"FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:26 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.js.gz","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"196"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"B4PUgpr06+d3lAMWknp0EVkaGxPZJdpp5/UidGHzvnc=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:26 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-B4PUgpr06+d3lAMWknp0EVkaGxPZJdpp5/UidGHzvnc="}]},{"Route":"_content/CodeBeam.MudExtensions/Mud_Secondary.png","AssetFile":"_content/CodeBeam.MudExtensions/Mud_Secondary.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4558"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"G3hYUw4Ps9P/IQ3lw2zu96RSZaOf4zU+4QkXkH8Xi3Y=\""},{"Name":"Last-Modified","Value":"Sat, 08 Oct 2022 09:55:02 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G3hYUw4Ps9P/IQ3lw2zu96RSZaOf4zU+4QkXkH8Xi3Y="}]},{"Route":"_content/MudBlazor/MudBlazor.min.css","AssetFile":"_content/MudBlazor/MudBlazor.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"606250"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0=\""},{"Name":"Last-Modified","Value":"Wed, 01 Oct 2025 21:51:05 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0="}]},{"Route":"_content/MudBlazor/MudBlazor.min.css","AssetFile":"_content/MudBlazor/MudBlazor.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015264845"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"65509"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"VcBMO3aXrzxl+jfWY+TaxPKsd3L0UWjeJZliEXOyzzI=\""},{"Name":"ETag","Value":"W/\"TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:26 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0="}]},{"Route":"_content/MudBlazor/MudBlazor.min.css.gz","AssetFile":"_content/MudBlazor/MudBlazor.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"65509"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"VcBMO3aXrzxl+jfWY+TaxPKsd3L0UWjeJZliEXOyzzI=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:26 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VcBMO3aXrzxl+jfWY+TaxPKsd3L0UWjeJZliEXOyzzI="}]},{"Route":"_content/MudBlazor/MudBlazor.min.jk5eo7zo4m.css","AssetFile":"_content/MudBlazor/MudBlazor.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"606250"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0=\""},{"Name":"Last-Modified","Value":"Wed, 01 Oct 2025 21:51:05 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jk5eo7zo4m"},{"Name":"integrity","Value":"sha256-TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.css"}]},{"Route":"_content/MudBlazor/MudBlazor.min.js","AssetFile":"_content/MudBlazor/MudBlazor.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"75165"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw=\""},{"Name":"Last-Modified","Value":"Wed, 01 Oct 2025 21:51:05 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js","AssetFile":"_content/MudBlazor/MudBlazor.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000061150859"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16352"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"0BJxfo+EOJvNKoBv/2ahm4RKrPjv7PhB/R16C3XOHDo=\""},{"Name":"ETag","Value":"W/\"hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:26 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js.gz","AssetFile":"_content/MudBlazor/MudBlazor.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16352"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"0BJxfo+EOJvNKoBv/2ahm4RKrPjv7PhB/R16C3XOHDo=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:26 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0BJxfo+EOJvNKoBv/2ahm4RKrPjv7PhB/R16C3XOHDo="}]},{"Route":"_content/MudBlazor/MudBlazor.min.tjzqk7tnel.js","AssetFile":"_content/MudBlazor/MudBlazor.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"75165"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw=\""},{"Name":"Last-Modified","Value":"Wed, 01 Oct 2025 21:51:05 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tjzqk7tnel"},{"Name":"integrity","Value":"sha256-hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.js"}]}]} \ No newline at end of file diff --git a/OpenArchival.Blazor/bin/Debug/net9.0/OpenArchival.Blazor.CustomComponents.staticwebassets.runtime.json b/OpenArchival.Blazor/bin/Debug/net9.0/OpenArchival.Blazor.CustomComponents.staticwebassets.runtime.json new file mode 100644 index 0000000..389aabf --- /dev/null +++ b/OpenArchival.Blazor/bin/Debug/net9.0/OpenArchival.Blazor.CustomComponents.staticwebassets.runtime.json @@ -0,0 +1 @@ +{"ContentRoots":["C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\","C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\obj\\Debug\\net9.0\\compressed\\","C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\"],"Root":{"Children":{"_content":{"Children":{"CodeBeam.MudExtensions":{"Children":{"Mud_Secondary.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"Mud_Secondary.png"},"Patterns":null},"MudExtensions.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"MudExtensions.min.css"},"Patterns":null},"MudExtensions.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"24gzn4tg1a-qz4batx9cb.gz"},"Patterns":null},"MudExtensions.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"MudExtensions.min.js"},"Patterns":null},"MudExtensions.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"stwk5nfoxp-loe7cozwzj.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"MudBlazor":{"Children":{"MudBlazor.min.css":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"MudBlazor.min.css"},"Patterns":null},"MudBlazor.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"tzxjg6is5z-jk5eo7zo4m.gz"},"Patterns":null},"MudBlazor.min.js":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"MudBlazor.min.js"},"Patterns":null},"MudBlazor.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"0wz98yz2xy-tjzqk7tnel.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}} \ No newline at end of file diff --git a/OpenArchival.Blazor/bin/Debug/net9.0/OpenArchival.Blazor.FileViewer.dll b/OpenArchival.Blazor/bin/Debug/net9.0/OpenArchival.Blazor.FileViewer.dll new file mode 100644 index 0000000..33bc30c Binary files /dev/null and b/OpenArchival.Blazor/bin/Debug/net9.0/OpenArchival.Blazor.FileViewer.dll differ diff --git a/OpenArchival.Blazor/bin/Debug/net9.0/OpenArchival.Blazor.FileViewer.pdb b/OpenArchival.Blazor/bin/Debug/net9.0/OpenArchival.Blazor.FileViewer.pdb new file mode 100644 index 0000000..04280da Binary files /dev/null and b/OpenArchival.Blazor/bin/Debug/net9.0/OpenArchival.Blazor.FileViewer.pdb differ diff --git a/OpenArchival.Blazor/bin/Debug/net9.0/OpenArchival.Blazor.FileViewer.staticwebassets.endpoints.json b/OpenArchival.Blazor/bin/Debug/net9.0/OpenArchival.Blazor.FileViewer.staticwebassets.endpoints.json new file mode 100644 index 0000000..39f4a22 --- /dev/null +++ b/OpenArchival.Blazor/bin/Debug/net9.0/OpenArchival.Blazor.FileViewer.staticwebassets.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[{"Route":"OpenArchival.Blazor.FileViewer.83wakjp31g.styles.css","AssetFile":"OpenArchival.Blazor.FileViewer.styles.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.006134969325"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"162"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"w7pUrtgbGsKChPQ+JZf6wIJIlRo5ItP1AJKKjbLPBUM=\""},{"Name":"ETag","Value":"W/\"9NCmFFvSZYsIWCQoks2vSnN9EMEwePSQhoXfFOCn5mg=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"83wakjp31g"},{"Name":"integrity","Value":"sha256-9NCmFFvSZYsIWCQoks2vSnN9EMEwePSQhoXfFOCn5mg="},{"Name":"label","Value":"OpenArchival.Blazor.FileViewer.styles.css"}]},{"Route":"OpenArchival.Blazor.FileViewer.83wakjp31g.styles.css","AssetFile":"OpenArchival.Blazor.FileViewer.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"186"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"9NCmFFvSZYsIWCQoks2vSnN9EMEwePSQhoXfFOCn5mg=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"83wakjp31g"},{"Name":"integrity","Value":"sha256-9NCmFFvSZYsIWCQoks2vSnN9EMEwePSQhoXfFOCn5mg="},{"Name":"label","Value":"OpenArchival.Blazor.FileViewer.styles.css"}]},{"Route":"OpenArchival.Blazor.FileViewer.83wakjp31g.styles.css.gz","AssetFile":"OpenArchival.Blazor.FileViewer.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":"162"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"w7pUrtgbGsKChPQ+JZf6wIJIlRo5ItP1AJKKjbLPBUM=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"83wakjp31g"},{"Name":"integrity","Value":"sha256-w7pUrtgbGsKChPQ+JZf6wIJIlRo5ItP1AJKKjbLPBUM="},{"Name":"label","Value":"OpenArchival.Blazor.FileViewer.styles.css.gz"}]},{"Route":"OpenArchival.Blazor.FileViewer.styles.css","AssetFile":"OpenArchival.Blazor.FileViewer.styles.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.006134969325"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"162"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"w7pUrtgbGsKChPQ+JZf6wIJIlRo5ItP1AJKKjbLPBUM=\""},{"Name":"ETag","Value":"W/\"9NCmFFvSZYsIWCQoks2vSnN9EMEwePSQhoXfFOCn5mg=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9NCmFFvSZYsIWCQoks2vSnN9EMEwePSQhoXfFOCn5mg="}]},{"Route":"OpenArchival.Blazor.FileViewer.styles.css","AssetFile":"OpenArchival.Blazor.FileViewer.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"186"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"9NCmFFvSZYsIWCQoks2vSnN9EMEwePSQhoXfFOCn5mg=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9NCmFFvSZYsIWCQoks2vSnN9EMEwePSQhoXfFOCn5mg="}]},{"Route":"OpenArchival.Blazor.FileViewer.styles.css.gz","AssetFile":"OpenArchival.Blazor.FileViewer.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":"162"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"w7pUrtgbGsKChPQ+JZf6wIJIlRo5ItP1AJKKjbLPBUM=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-w7pUrtgbGsKChPQ+JZf6wIJIlRo5ItP1AJKKjbLPBUM="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.css","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"21465"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk=\""},{"Name":"Last-Modified","Value":"Sun, 26 Feb 2023 14:08:26 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.css","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000295508274"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3383"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"6PJ7t7WR38pQTSYe6IR0pbqo2cIZK5wuW/w26kprtBg=\""},{"Name":"ETag","Value":"W/\"Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.css.gz","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3383"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"6PJ7t7WR38pQTSYe6IR0pbqo2cIZK5wuW/w26kprtBg=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6PJ7t7WR38pQTSYe6IR0pbqo2cIZK5wuW/w26kprtBg="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.js","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"328"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc=\""},{"Name":"Last-Modified","Value":"Sun, 26 Feb 2023 14:08:26 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.js","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005076142132"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"196"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"B4PUgpr06+d3lAMWknp0EVkaGxPZJdpp5/UidGHzvnc=\""},{"Name":"ETag","Value":"W/\"FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.js.gz","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"196"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"B4PUgpr06+d3lAMWknp0EVkaGxPZJdpp5/UidGHzvnc=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-B4PUgpr06+d3lAMWknp0EVkaGxPZJdpp5/UidGHzvnc="}]},{"Route":"_content/CodeBeam.MudExtensions/Mud_Secondary.png","AssetFile":"_content/CodeBeam.MudExtensions/Mud_Secondary.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4558"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"G3hYUw4Ps9P/IQ3lw2zu96RSZaOf4zU+4QkXkH8Xi3Y=\""},{"Name":"Last-Modified","Value":"Sat, 08 Oct 2022 09:55:02 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G3hYUw4Ps9P/IQ3lw2zu96RSZaOf4zU+4QkXkH8Xi3Y="}]},{"Route":"_content/MudBlazor/MudBlazor.min.css","AssetFile":"_content/MudBlazor/MudBlazor.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"606250"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0=\""},{"Name":"Last-Modified","Value":"Wed, 01 Oct 2025 21:51:05 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0="}]},{"Route":"_content/MudBlazor/MudBlazor.min.css","AssetFile":"_content/MudBlazor/MudBlazor.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015264845"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"65509"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"VcBMO3aXrzxl+jfWY+TaxPKsd3L0UWjeJZliEXOyzzI=\""},{"Name":"ETag","Value":"W/\"TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0="}]},{"Route":"_content/MudBlazor/MudBlazor.min.css.gz","AssetFile":"_content/MudBlazor/MudBlazor.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"65509"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"VcBMO3aXrzxl+jfWY+TaxPKsd3L0UWjeJZliEXOyzzI=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VcBMO3aXrzxl+jfWY+TaxPKsd3L0UWjeJZliEXOyzzI="}]},{"Route":"_content/MudBlazor/MudBlazor.min.jk5eo7zo4m.css","AssetFile":"_content/MudBlazor/MudBlazor.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"606250"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0=\""},{"Name":"Last-Modified","Value":"Wed, 01 Oct 2025 21:51:05 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jk5eo7zo4m"},{"Name":"integrity","Value":"sha256-TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.css"}]},{"Route":"_content/MudBlazor/MudBlazor.min.js","AssetFile":"_content/MudBlazor/MudBlazor.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"75165"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw=\""},{"Name":"Last-Modified","Value":"Wed, 01 Oct 2025 21:51:05 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js","AssetFile":"_content/MudBlazor/MudBlazor.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000061150859"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16352"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"0BJxfo+EOJvNKoBv/2ahm4RKrPjv7PhB/R16C3XOHDo=\""},{"Name":"ETag","Value":"W/\"hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js.gz","AssetFile":"_content/MudBlazor/MudBlazor.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16352"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"0BJxfo+EOJvNKoBv/2ahm4RKrPjv7PhB/R16C3XOHDo=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0BJxfo+EOJvNKoBv/2ahm4RKrPjv7PhB/R16C3XOHDo="}]},{"Route":"_content/MudBlazor/MudBlazor.min.tjzqk7tnel.js","AssetFile":"_content/MudBlazor/MudBlazor.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"75165"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw=\""},{"Name":"Last-Modified","Value":"Wed, 01 Oct 2025 21:51:05 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tjzqk7tnel"},{"Name":"integrity","Value":"sha256-hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.js"}]}]} \ No newline at end of file diff --git a/OpenArchival.Blazor/bin/Debug/net9.0/OpenArchival.Blazor.FileViewer.staticwebassets.runtime.json b/OpenArchival.Blazor/bin/Debug/net9.0/OpenArchival.Blazor.FileViewer.staticwebassets.runtime.json new file mode 100644 index 0000000..dd248b8 --- /dev/null +++ b/OpenArchival.Blazor/bin/Debug/net9.0/OpenArchival.Blazor.FileViewer.staticwebassets.runtime.json @@ -0,0 +1 @@ +{"ContentRoots":["C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\scopedcss\\bundle\\","C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\compressed\\","C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\","C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\"],"Root":{"Children":{"OpenArchival.Blazor.FileViewer.styles.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"OpenArchival.Blazor.FileViewer.styles.css"},"Patterns":null},"OpenArchival.Blazor.FileViewer.styles.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"94gzerkhdz-83wakjp31g.gz"},"Patterns":null},"_content":{"Children":{"CodeBeam.MudExtensions":{"Children":{"Mud_Secondary.png":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"Mud_Secondary.png"},"Patterns":null},"MudExtensions.min.css":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"MudExtensions.min.css"},"Patterns":null},"MudExtensions.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"24gzn4tg1a-qz4batx9cb.gz"},"Patterns":null},"MudExtensions.min.js":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"MudExtensions.min.js"},"Patterns":null},"MudExtensions.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"stwk5nfoxp-loe7cozwzj.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"MudBlazor":{"Children":{"MudBlazor.min.css":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"MudBlazor.min.css"},"Patterns":null},"MudBlazor.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"tzxjg6is5z-jk5eo7zo4m.gz"},"Patterns":null},"MudBlazor.min.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"MudBlazor.min.js"},"Patterns":null},"MudBlazor.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"0wz98yz2xy-tjzqk7tnel.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}} \ No newline at end of file diff --git a/OpenArchival.Blazor/bin/Debug/net9.0/OpenArchival.Blazor.deps.json b/OpenArchival.Blazor/bin/Debug/net9.0/OpenArchival.Blazor.deps.json index 2e58b77..5f56958 100644 --- a/OpenArchival.Blazor/bin/Debug/net9.0/OpenArchival.Blazor.deps.json +++ b/OpenArchival.Blazor/bin/Debug/net9.0/OpenArchival.Blazor.deps.json @@ -10,16 +10,20 @@ "dependencies": { "CodeBeam.MudExtensions": "6.3.0", "Dapper": "2.1.66", - "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore": "9.0.8", - "Microsoft.EntityFrameworkCore": "9.0.8", - "Microsoft.EntityFrameworkCore.SqlServer": "9.0.8", - "Microsoft.EntityFrameworkCore.Tools": "9.0.8", + "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore": "9.0.9", + "Microsoft.EntityFrameworkCore": "9.0.9", + "Microsoft.EntityFrameworkCore.SqlServer": "9.0.9", + "Microsoft.EntityFrameworkCore.Tools": "9.0.9", "Microsoft.VisualStudio.Azure.Containers.Tools.Targets": "1.22.1", - "MudBlazor": "8.12.0", + "MudBlazor": "8.13.0", "Npgsql": "9.0.3", "Npgsql.DependencyInjection": "9.0.3", "Npgsql.EntityFrameworkCore.PostgreSQL": "9.0.4", - "OpenArchival.DataAccess": "1.0.0" + "OpenArchival.Blazor.AdminPages": "1.0.0", + "OpenArchival.Blazor.CustomComponents": "1.0.0", + "OpenArchival.Blazor.FileViewer": "1.0.0", + "OpenArchival.DataAccess": "1.0.0", + "System.Collections": "4.3.0" }, "runtime": { "OpenArchival.Blazor.dll": {} @@ -33,7 +37,7 @@ "System.Memory.Data": "1.0.2", "System.Numerics.Vectors": "4.5.0", "System.Text.Encodings.Web": "6.0.0", - "System.Text.Json": "9.0.8", + "System.Text.Json": "9.0.9", "System.Threading.Tasks.Extensions": "4.5.4" }, "runtime": { @@ -50,7 +54,7 @@ "Microsoft.Identity.Client.Extensions.Msal": "4.61.3", "System.Memory": "4.5.4", "System.Security.Cryptography.ProtectedData": "6.0.0", - "System.Text.Json": "9.0.8", + "System.Text.Json": "9.0.9", "System.Threading.Tasks.Extensions": "4.5.4" }, "runtime": { @@ -67,7 +71,7 @@ "CsvHelper": "30.0.1", "Microsoft.AspNetCore.Components": "9.0.1", "Microsoft.AspNetCore.Components.Web": "9.0.1", - "MudBlazor": "8.12.0" + "MudBlazor": "8.13.0" }, "runtime": { "lib/net7.0/CodeBeam.MudExtensions.dll": { @@ -122,8 +126,8 @@ "Microsoft.AspNetCore.Authorization/9.0.1": { "dependencies": { "Microsoft.AspNetCore.Metadata": "9.0.1", - "Microsoft.Extensions.Logging.Abstractions": "9.0.8", - "Microsoft.Extensions.Options": "9.0.8" + "Microsoft.Extensions.Logging.Abstractions": "9.0.9", + "Microsoft.Extensions.Options": "9.0.9" }, "runtime": { "lib/net9.0/Microsoft.AspNetCore.Authorization.dll": { @@ -160,8 +164,8 @@ "dependencies": { "Microsoft.AspNetCore.Components": "9.0.1", "Microsoft.AspNetCore.Components.Forms": "9.0.1", - "Microsoft.Extensions.DependencyInjection": "9.0.8", - "Microsoft.Extensions.Primitives": "9.0.8", + "Microsoft.Extensions.DependencyInjection": "9.0.9", + "Microsoft.Extensions.Primitives": "9.0.9", "Microsoft.JSInterop": "9.0.1" }, "runtime": { @@ -190,20 +194,20 @@ } } }, - "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore/9.0.8": { + "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore/9.0.9": { "dependencies": { - "Microsoft.EntityFrameworkCore.Relational": "9.0.8" + "Microsoft.EntityFrameworkCore.Relational": "9.0.9" }, "runtime": { "lib/net9.0/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.dll": { - "assemblyVersion": "9.0.8.0", - "fileVersion": "9.0.825.36808" + "assemblyVersion": "9.0.9.0", + "fileVersion": "9.0.925.42003" } } }, "Microsoft.AspNetCore.Identity.EntityFrameworkCore/9.0.8": { "dependencies": { - "Microsoft.EntityFrameworkCore.Relational": "9.0.8", + "Microsoft.EntityFrameworkCore.Relational": "9.0.9", "Microsoft.Extensions.Identity.Stores": "9.0.8" }, "runtime": { @@ -463,7 +467,7 @@ "Microsoft.Build.Framework": "17.8.3", "Microsoft.CodeAnalysis.Common": "4.8.0", "Microsoft.CodeAnalysis.Workspaces.Common": "4.8.0", - "System.Text.Json": "9.0.8" + "System.Text.Json": "9.0.9" }, "runtime": { "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll": { @@ -579,30 +583,30 @@ } } }, - "Microsoft.EntityFrameworkCore/9.0.8": { + "Microsoft.EntityFrameworkCore/9.0.9": { "dependencies": { - "Microsoft.EntityFrameworkCore.Abstractions": "9.0.8", - "Microsoft.EntityFrameworkCore.Analyzers": "9.0.8", - "Microsoft.Extensions.Caching.Memory": "9.0.8", - "Microsoft.Extensions.Logging": "9.0.8" + "Microsoft.EntityFrameworkCore.Abstractions": "9.0.9", + "Microsoft.EntityFrameworkCore.Analyzers": "9.0.9", + "Microsoft.Extensions.Caching.Memory": "9.0.9", + "Microsoft.Extensions.Logging": "9.0.9" }, "runtime": { "lib/net8.0/Microsoft.EntityFrameworkCore.dll": { - "assemblyVersion": "9.0.8.0", - "fileVersion": "9.0.825.36802" + "assemblyVersion": "9.0.9.0", + "fileVersion": "9.0.925.41909" } } }, - "Microsoft.EntityFrameworkCore.Abstractions/9.0.8": { + "Microsoft.EntityFrameworkCore.Abstractions/9.0.9": { "runtime": { "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { - "assemblyVersion": "9.0.8.0", - "fileVersion": "9.0.825.36802" + "assemblyVersion": "9.0.9.0", + "fileVersion": "9.0.925.41909" } } }, - "Microsoft.EntityFrameworkCore.Analyzers/9.0.8": {}, - "Microsoft.EntityFrameworkCore.Design/9.0.8": { + "Microsoft.EntityFrameworkCore.Analyzers/9.0.9": {}, + "Microsoft.EntityFrameworkCore.Design/9.0.9": { "dependencies": { "Humanizer.Core": "2.14.1", "Microsoft.Build.Framework": "17.8.3", @@ -610,126 +614,126 @@ "Microsoft.CodeAnalysis.CSharp": "4.8.0", "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.8.0", "Microsoft.CodeAnalysis.Workspaces.MSBuild": "4.8.0", - "Microsoft.EntityFrameworkCore.Relational": "9.0.8", - "Microsoft.Extensions.Caching.Memory": "9.0.8", - "Microsoft.Extensions.Configuration.Abstractions": "9.0.8", - "Microsoft.Extensions.DependencyModel": "9.0.8", - "Microsoft.Extensions.Logging": "9.0.8", + "Microsoft.EntityFrameworkCore.Relational": "9.0.9", + "Microsoft.Extensions.Caching.Memory": "9.0.9", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.9", + "Microsoft.Extensions.DependencyModel": "9.0.9", + "Microsoft.Extensions.Logging": "9.0.9", "Mono.TextTemplating": "3.0.0", - "System.Text.Json": "9.0.8" + "System.Text.Json": "9.0.9" }, "runtime": { "lib/net8.0/Microsoft.EntityFrameworkCore.Design.dll": { - "assemblyVersion": "9.0.8.0", - "fileVersion": "9.0.825.36802" + "assemblyVersion": "9.0.9.0", + "fileVersion": "9.0.925.41909" } } }, - "Microsoft.EntityFrameworkCore.Relational/9.0.8": { + "Microsoft.EntityFrameworkCore.Relational/9.0.9": { "dependencies": { - "Microsoft.EntityFrameworkCore": "9.0.8", - "Microsoft.Extensions.Caching.Memory": "9.0.8", - "Microsoft.Extensions.Configuration.Abstractions": "9.0.8", - "Microsoft.Extensions.Logging": "9.0.8" + "Microsoft.EntityFrameworkCore": "9.0.9", + "Microsoft.Extensions.Caching.Memory": "9.0.9", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.9", + "Microsoft.Extensions.Logging": "9.0.9" }, "runtime": { "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": { - "assemblyVersion": "9.0.8.0", - "fileVersion": "9.0.825.36802" + "assemblyVersion": "9.0.9.0", + "fileVersion": "9.0.925.41909" } } }, - "Microsoft.EntityFrameworkCore.SqlServer/9.0.8": { + "Microsoft.EntityFrameworkCore.SqlServer/9.0.9": { "dependencies": { "Microsoft.Data.SqlClient": "5.1.6", - "Microsoft.EntityFrameworkCore.Relational": "9.0.8", - "Microsoft.Extensions.Caching.Memory": "9.0.8", - "Microsoft.Extensions.Configuration.Abstractions": "9.0.8", - "Microsoft.Extensions.Logging": "9.0.8", - "System.Formats.Asn1": "9.0.8", - "System.Text.Json": "9.0.8" + "Microsoft.EntityFrameworkCore.Relational": "9.0.9", + "Microsoft.Extensions.Caching.Memory": "9.0.9", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.9", + "Microsoft.Extensions.Logging": "9.0.9", + "System.Formats.Asn1": "9.0.9", + "System.Text.Json": "9.0.9" }, "runtime": { "lib/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll": { - "assemblyVersion": "9.0.8.0", - "fileVersion": "9.0.825.36802" + "assemblyVersion": "9.0.9.0", + "fileVersion": "9.0.925.41909" } } }, - "Microsoft.EntityFrameworkCore.Tools/9.0.8": { + "Microsoft.EntityFrameworkCore.Tools/9.0.9": { "dependencies": { - "Microsoft.EntityFrameworkCore.Design": "9.0.8" + "Microsoft.EntityFrameworkCore.Design": "9.0.9" } }, - "Microsoft.Extensions.Caching.Abstractions/9.0.8": { + "Microsoft.Extensions.Caching.Abstractions/9.0.9": { "dependencies": { - "Microsoft.Extensions.Primitives": "9.0.8" + "Microsoft.Extensions.Primitives": "9.0.9" }, "runtime": { "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.dll": { "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.825.36511" + "fileVersion": "9.0.925.41916" } } }, - "Microsoft.Extensions.Caching.Memory/9.0.8": { + "Microsoft.Extensions.Caching.Memory/9.0.9": { "dependencies": { - "Microsoft.Extensions.Caching.Abstractions": "9.0.8", - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8", - "Microsoft.Extensions.Logging.Abstractions": "9.0.8", - "Microsoft.Extensions.Options": "9.0.8", - "Microsoft.Extensions.Primitives": "9.0.8" + "Microsoft.Extensions.Caching.Abstractions": "9.0.9", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.9", + "Microsoft.Extensions.Logging.Abstractions": "9.0.9", + "Microsoft.Extensions.Options": "9.0.9", + "Microsoft.Extensions.Primitives": "9.0.9" }, "runtime": { "lib/net9.0/Microsoft.Extensions.Caching.Memory.dll": { "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.825.36511" + "fileVersion": "9.0.925.41916" } } }, - "Microsoft.Extensions.Configuration.Abstractions/9.0.8": { + "Microsoft.Extensions.Configuration.Abstractions/9.0.9": { "dependencies": { - "Microsoft.Extensions.Primitives": "9.0.8" + "Microsoft.Extensions.Primitives": "9.0.9" }, "runtime": { "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": { "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.825.36511" + "fileVersion": "9.0.925.41916" } } }, - "Microsoft.Extensions.DependencyInjection/9.0.8": { + "Microsoft.Extensions.DependencyInjection/9.0.9": { "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8" + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.9" }, "runtime": { "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": { "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.825.36511" + "fileVersion": "9.0.925.41916" } } }, - "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.8": { + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.9": { "runtime": { "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.825.36511" + "fileVersion": "9.0.925.41916" } } }, - "Microsoft.Extensions.DependencyModel/9.0.8": { + "Microsoft.Extensions.DependencyModel/9.0.9": { "runtime": { "lib/net9.0/Microsoft.Extensions.DependencyModel.dll": { - "assemblyVersion": "9.0.0.8", - "fileVersion": "9.0.825.36511" + "assemblyVersion": "9.0.0.9", + "fileVersion": "9.0.925.41916" } } }, "Microsoft.Extensions.Identity.Core/9.0.8": { "dependencies": { "Microsoft.AspNetCore.Cryptography.KeyDerivation": "9.0.8", - "Microsoft.Extensions.Logging": "9.0.8", - "Microsoft.Extensions.Options": "9.0.8" + "Microsoft.Extensions.Logging": "9.0.9", + "Microsoft.Extensions.Options": "9.0.9" }, "runtime": { "lib/net9.0/Microsoft.Extensions.Identity.Core.dll": { @@ -740,9 +744,9 @@ }, "Microsoft.Extensions.Identity.Stores/9.0.8": { "dependencies": { - "Microsoft.Extensions.Caching.Abstractions": "9.0.8", + "Microsoft.Extensions.Caching.Abstractions": "9.0.9", "Microsoft.Extensions.Identity.Core": "9.0.8", - "Microsoft.Extensions.Logging": "9.0.8" + "Microsoft.Extensions.Logging": "9.0.9" }, "runtime": { "lib/net9.0/Microsoft.Extensions.Identity.Stores.dll": { @@ -753,10 +757,10 @@ }, "Microsoft.Extensions.Localization/9.0.1": { "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.9", "Microsoft.Extensions.Localization.Abstractions": "9.0.1", - "Microsoft.Extensions.Logging.Abstractions": "9.0.8", - "Microsoft.Extensions.Options": "9.0.8" + "Microsoft.Extensions.Logging.Abstractions": "9.0.9", + "Microsoft.Extensions.Options": "9.0.9" }, "runtime": { "lib/net9.0/Microsoft.Extensions.Localization.dll": { @@ -773,53 +777,53 @@ } } }, - "Microsoft.Extensions.Logging/9.0.8": { + "Microsoft.Extensions.Logging/9.0.9": { "dependencies": { - "Microsoft.Extensions.DependencyInjection": "9.0.8", - "Microsoft.Extensions.Logging.Abstractions": "9.0.8", - "Microsoft.Extensions.Options": "9.0.8" + "Microsoft.Extensions.DependencyInjection": "9.0.9", + "Microsoft.Extensions.Logging.Abstractions": "9.0.9", + "Microsoft.Extensions.Options": "9.0.9" }, "runtime": { "lib/net9.0/Microsoft.Extensions.Logging.dll": { "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.825.36511" + "fileVersion": "9.0.925.41916" } } }, - "Microsoft.Extensions.Logging.Abstractions/9.0.8": { + "Microsoft.Extensions.Logging.Abstractions/9.0.9": { "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8" + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.9" }, "runtime": { "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": { "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.825.36511" + "fileVersion": "9.0.925.41916" } } }, - "Microsoft.Extensions.Options/9.0.8": { + "Microsoft.Extensions.Options/9.0.9": { "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8", - "Microsoft.Extensions.Primitives": "9.0.8" + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.9", + "Microsoft.Extensions.Primitives": "9.0.9" }, "runtime": { "lib/net9.0/Microsoft.Extensions.Options.dll": { "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.825.36511" + "fileVersion": "9.0.925.41916" } } }, - "Microsoft.Extensions.Primitives/9.0.8": { + "Microsoft.Extensions.Primitives/9.0.9": { "runtime": { "lib/net9.0/Microsoft.Extensions.Primitives.dll": { "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.825.36511" + "fileVersion": "9.0.925.41916" } } }, "Microsoft.Identity.Client/4.61.3": { "dependencies": { - "Microsoft.IdentityModel.Abstractions": "6.35.0", + "Microsoft.IdentityModel.Abstractions": "8.14.0", "System.Diagnostics.DiagnosticSource": "6.0.1" }, "runtime": { @@ -841,20 +845,20 @@ } } }, - "Microsoft.IdentityModel.Abstractions/6.35.0": { + "Microsoft.IdentityModel.Abstractions/8.14.0": { "runtime": { - "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll": { - "assemblyVersion": "6.35.0.0", - "fileVersion": "6.35.0.41201" + "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll": { + "assemblyVersion": "8.14.0.0", + "fileVersion": "8.14.0.60815" } } }, "Microsoft.IdentityModel.JsonWebTokens/6.35.0": { "dependencies": { - "Microsoft.IdentityModel.Tokens": "6.35.0", + "Microsoft.IdentityModel.Tokens": "8.14.0", "System.Text.Encoding": "4.3.0", "System.Text.Encodings.Web": "6.0.0", - "System.Text.Json": "9.0.8" + "System.Text.Json": "9.0.9" }, "runtime": { "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll": { @@ -863,21 +867,21 @@ } } }, - "Microsoft.IdentityModel.Logging/6.35.0": { + "Microsoft.IdentityModel.Logging/8.14.0": { "dependencies": { - "Microsoft.IdentityModel.Abstractions": "6.35.0" + "Microsoft.IdentityModel.Abstractions": "8.14.0" }, "runtime": { - "lib/net6.0/Microsoft.IdentityModel.Logging.dll": { - "assemblyVersion": "6.35.0.0", - "fileVersion": "6.35.0.41201" + "lib/net9.0/Microsoft.IdentityModel.Logging.dll": { + "assemblyVersion": "8.14.0.0", + "fileVersion": "8.14.0.60815" } } }, "Microsoft.IdentityModel.Protocols/6.35.0": { "dependencies": { - "Microsoft.IdentityModel.Logging": "6.35.0", - "Microsoft.IdentityModel.Tokens": "6.35.0" + "Microsoft.IdentityModel.Logging": "8.14.0", + "Microsoft.IdentityModel.Tokens": "8.14.0" }, "runtime": { "lib/net6.0/Microsoft.IdentityModel.Protocols.dll": { @@ -898,16 +902,15 @@ } } }, - "Microsoft.IdentityModel.Tokens/6.35.0": { + "Microsoft.IdentityModel.Tokens/8.14.0": { "dependencies": { - "Microsoft.CSharp": "4.7.0", - "Microsoft.IdentityModel.Logging": "6.35.0", - "System.Security.Cryptography.Cng": "5.0.0" + "Microsoft.Extensions.Logging.Abstractions": "9.0.9", + "Microsoft.IdentityModel.Logging": "8.14.0" }, "runtime": { - "lib/net6.0/Microsoft.IdentityModel.Tokens.dll": { - "assemblyVersion": "6.35.0.0", - "fileVersion": "6.35.0.41201" + "lib/net9.0/Microsoft.IdentityModel.Tokens.dll": { + "assemblyVersion": "8.14.0.0", + "fileVersion": "8.14.0.60815" } } }, @@ -963,7 +966,7 @@ } } }, - "MudBlazor/8.12.0": { + "MudBlazor/8.13.0": { "dependencies": { "Microsoft.AspNetCore.Components": "9.0.1", "Microsoft.AspNetCore.Components.Web": "9.0.1", @@ -971,14 +974,14 @@ }, "runtime": { "lib/net9.0/MudBlazor.dll": { - "assemblyVersion": "8.12.0.0", - "fileVersion": "8.12.0.0" + "assemblyVersion": "8.13.0.0", + "fileVersion": "8.13.0.0" } } }, "Npgsql/9.0.3": { "dependencies": { - "Microsoft.Extensions.Logging.Abstractions": "9.0.8" + "Microsoft.Extensions.Logging.Abstractions": "9.0.9" }, "runtime": { "lib/net8.0/Npgsql.dll": { @@ -989,7 +992,7 @@ }, "Npgsql.DependencyInjection/9.0.3": { "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.9", "Npgsql": "9.0.3" }, "runtime": { @@ -1001,8 +1004,8 @@ }, "Npgsql.EntityFrameworkCore.PostgreSQL/9.0.4": { "dependencies": { - "Microsoft.EntityFrameworkCore": "9.0.8", - "Microsoft.EntityFrameworkCore.Relational": "9.0.8", + "Microsoft.EntityFrameworkCore": "9.0.9", + "Microsoft.EntityFrameworkCore.Relational": "9.0.9", "Npgsql": "9.0.3" }, "runtime": { @@ -1049,7 +1052,7 @@ "System.ClientModel/1.0.0": { "dependencies": { "System.Memory.Data": "1.0.2", - "System.Text.Json": "9.0.8" + "System.Text.Json": "9.0.9" }, "runtime": { "lib/net6.0/System.ClientModel.dll": { @@ -1066,6 +1069,13 @@ } } }, + "System.Collections/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, "System.Collections.Immutable/7.0.0": {}, "System.ComponentModel.Annotations/5.0.0": {}, "System.Composition/7.0.0": { @@ -1197,11 +1207,18 @@ } } }, - "System.Formats.Asn1/9.0.8": {}, + "System.Formats.Asn1/9.0.9": { + "runtime": { + "lib/net9.0/System.Formats.Asn1.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.925.41916" + } + } + }, "System.IdentityModel.Tokens.Jwt/6.35.0": { "dependencies": { "Microsoft.IdentityModel.JsonWebTokens": "6.35.0", - "Microsoft.IdentityModel.Tokens": "6.35.0" + "Microsoft.IdentityModel.Tokens": "8.14.0" }, "runtime": { "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll": { @@ -1215,7 +1232,7 @@ "System.Memory.Data/1.0.2": { "dependencies": { "System.Text.Encodings.Web": "6.0.0", - "System.Text.Json": "9.0.8" + "System.Text.Json": "9.0.9" }, "runtime": { "lib/netstandard2.0/System.Memory.Data.dll": { @@ -1259,7 +1276,7 @@ "System.Security.AccessControl/6.0.0": {}, "System.Security.Cryptography.Cng/5.0.0": { "dependencies": { - "System.Formats.Asn1": "9.0.8" + "System.Formats.Asn1": "9.0.9" } }, "System.Security.Cryptography.ProtectedData/6.0.0": { @@ -1308,7 +1325,14 @@ "System.Runtime.CompilerServices.Unsafe": "6.0.0" } }, - "System.Text.Json/9.0.8": {}, + "System.Text.Json/9.0.9": { + "runtime": { + "lib/net9.0/System.Text.Json.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.925.41916" + } + } + }, "System.Threading.Channels/7.0.0": {}, "System.Threading.Tasks.Extensions/4.5.4": {}, "System.Windows.Extensions/6.0.0": { @@ -1330,12 +1354,54 @@ } } }, + "OpenArchival.Blazor.AdminPages/1.0.0": { + "dependencies": { + "CodeBeam.MudExtensions": "6.3.0", + "Microsoft.IdentityModel.Abstractions": "8.14.0", + "Microsoft.IdentityModel.Tokens": "8.14.0", + "MudBlazor": "8.13.0", + "OpenArchival.Blazor.CustomComponents": "1.0.0", + "OpenArchival.DataAccess": "1.0.0" + }, + "runtime": { + "OpenArchival.Blazor.AdminPages.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "OpenArchival.Blazor.CustomComponents/1.0.0": { + "dependencies": { + "CodeBeam.MudExtensions": "6.3.0", + "MudBlazor": "8.13.0", + "OpenArchival.DataAccess": "1.0.0" + }, + "runtime": { + "OpenArchival.Blazor.CustomComponents.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "OpenArchival.Blazor.FileViewer/1.0.0": { + "dependencies": { + "CodeBeam.MudExtensions": "6.3.0", + "MudBlazor": "8.13.0", + "OpenArchival.DataAccess": "1.0.0" + }, + "runtime": { + "OpenArchival.Blazor.FileViewer.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, "OpenArchival.DataAccess/1.0.0": { "dependencies": { "EntityFramework": "6.5.1", "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "9.0.8", - "Microsoft.EntityFrameworkCore": "9.0.8", - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8", + "Microsoft.EntityFrameworkCore": "9.0.9", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.9", "Npgsql": "9.0.3", "Npgsql.EntityFrameworkCore.PostgreSQL": "9.0.4" }, @@ -1459,12 +1525,12 @@ "path": "microsoft.aspnetcore.cryptography.keyderivation/9.0.8", "hashPath": "microsoft.aspnetcore.cryptography.keyderivation.9.0.8.nupkg.sha512" }, - "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore/9.0.8": { + "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore/9.0.9": { "type": "package", "serviceable": true, - "sha512": "sha512-/fr42V7LN7jmlIc7akFQQPPXcEy92+iPr2O7Eum0X3EZv/gcOHKNeaB1MnhViEQs0ylAMVDRTPi3OyoVKRxlDg==", - "path": "microsoft.aspnetcore.diagnostics.entityframeworkcore/9.0.8", - "hashPath": "microsoft.aspnetcore.diagnostics.entityframeworkcore.9.0.8.nupkg.sha512" + "sha512": "sha512-ClnQ7NYH6glI4B8b91qiu0vN+5cuMrltpJJoJQmD9LPNMMTinkqmzEyFBce8r7Y68dEWiq14CBGYdr91++z+NQ==", + "path": "microsoft.aspnetcore.diagnostics.entityframeworkcore/9.0.9", + "hashPath": "microsoft.aspnetcore.diagnostics.entityframeworkcore.9.0.9.nupkg.sha512" }, "Microsoft.AspNetCore.Identity.EntityFrameworkCore/9.0.8": { "type": "package", @@ -1564,96 +1630,96 @@ "path": "microsoft.data.sqlclient.sni.runtime/5.1.1", "hashPath": "microsoft.data.sqlclient.sni.runtime.5.1.1.nupkg.sha512" }, - "Microsoft.EntityFrameworkCore/9.0.8": { + "Microsoft.EntityFrameworkCore/9.0.9": { "type": "package", "serviceable": true, - "sha512": "sha512-bNGdPhN762+BIIO5MFYLjafRqkSS1MqLOc/erd55InvLnFxt9H3N5JNsuag1ZHyBor1VtD42U0CHpgqkWeAYgQ==", - "path": "microsoft.entityframeworkcore/9.0.8", - "hashPath": "microsoft.entityframeworkcore.9.0.8.nupkg.sha512" + "sha512": "sha512-zkt5yQgnpWKX3rOxn+ZcV23Aj0296XCTqg4lx1hKY+wMXBgkn377UhBrY/A4H6kLpNT7wqZN98xCV0YHXu9VRA==", + "path": "microsoft.entityframeworkcore/9.0.9", + "hashPath": "microsoft.entityframeworkcore.9.0.9.nupkg.sha512" }, - "Microsoft.EntityFrameworkCore.Abstractions/9.0.8": { + "Microsoft.EntityFrameworkCore.Abstractions/9.0.9": { "type": "package", "serviceable": true, - "sha512": "sha512-B2yfAIQRRAQ4zvvWqh+HudD+juV3YoLlpXnrog3tU0PM9AFpuq6xo0+mEglN1P43WgdcUiF+65CWBcZe35s15Q==", - "path": "microsoft.entityframeworkcore.abstractions/9.0.8", - "hashPath": "microsoft.entityframeworkcore.abstractions.9.0.8.nupkg.sha512" + "sha512": "sha512-QdM2k3Mnip2QsaxJbCI95dc2SajRMENdmaMhVKj4jPC5dmkoRcu3eEdvZAgDbd4bFVV1jtPGdHtXewtoBMlZqA==", + "path": "microsoft.entityframeworkcore.abstractions/9.0.9", + "hashPath": "microsoft.entityframeworkcore.abstractions.9.0.9.nupkg.sha512" }, - "Microsoft.EntityFrameworkCore.Analyzers/9.0.8": { + "Microsoft.EntityFrameworkCore.Analyzers/9.0.9": { "type": "package", "serviceable": true, - "sha512": "sha512-2EYStCXt4Hi9p3J3EYMQbItJDtASJd064Kcs8C8hj8Jt5srILrR9qlaL0Ryvk8NrWQoCQvIELsmiuqLEZMLvGA==", - "path": "microsoft.entityframeworkcore.analyzers/9.0.8", - "hashPath": "microsoft.entityframeworkcore.analyzers.9.0.8.nupkg.sha512" + "sha512": "sha512-uiKeU/qR0YpaDUa4+g0rAjKCuwfq8YWZGcpPptnFWIr1K7dXQTm/15D2HDwwU4ln3Uf66krYybymuY58ua4hhw==", + "path": "microsoft.entityframeworkcore.analyzers/9.0.9", + "hashPath": "microsoft.entityframeworkcore.analyzers.9.0.9.nupkg.sha512" }, - "Microsoft.EntityFrameworkCore.Design/9.0.8": { + "Microsoft.EntityFrameworkCore.Design/9.0.9": { "type": "package", "serviceable": true, - "sha512": "sha512-02e8OcoumSUAES3VkXrMT9EnNCUKWJoifn5+8fFEbAtRhKL3xg2a/Mj6rsAUGF7tkYFox6oKzJCn0jbm6b8Lbw==", - "path": "microsoft.entityframeworkcore.design/9.0.8", - "hashPath": "microsoft.entityframeworkcore.design.9.0.8.nupkg.sha512" + "sha512": "sha512-cFxH70tohWe3ugCjLhZB01mR7WHpg5dEK6zHsbkDFfpLxWT+HoZQKgchTJgF4bPWBPTyrlYlqfPY212fFtmJjg==", + "path": "microsoft.entityframeworkcore.design/9.0.9", + "hashPath": "microsoft.entityframeworkcore.design.9.0.9.nupkg.sha512" }, - "Microsoft.EntityFrameworkCore.Relational/9.0.8": { + "Microsoft.EntityFrameworkCore.Relational/9.0.9": { "type": "package", "serviceable": true, - "sha512": "sha512-OVhfyxiHxMvYpwQ8Jy3YZi4koy6TK5/Q7C1oq3z6db+HEGuu6x9L1BX5zDIdJxxlRePMyO4D8ORiXj/D7+MUqw==", - "path": "microsoft.entityframeworkcore.relational/9.0.8", - "hashPath": "microsoft.entityframeworkcore.relational.9.0.8.nupkg.sha512" + "sha512": "sha512-SonFU9a8x4jZIhIBtCw1hIE3QKjd4c7Y3mjptoh682dfQe7K9pUPGcEV/sk4n8AJdq4fkyJPCaOdYaObhae/Iw==", + "path": "microsoft.entityframeworkcore.relational/9.0.9", + "hashPath": "microsoft.entityframeworkcore.relational.9.0.9.nupkg.sha512" }, - "Microsoft.EntityFrameworkCore.SqlServer/9.0.8": { + "Microsoft.EntityFrameworkCore.SqlServer/9.0.9": { "type": "package", "serviceable": true, - "sha512": "sha512-yNZJIdLQTTHj6FTv9+IUQwmQvOwvUanTBOG1ibeTaaB1zfTtOqrSFQnjMOkcKOgxu+ofsBEDcuctb/f5xj/Oog==", - "path": "microsoft.entityframeworkcore.sqlserver/9.0.8", - "hashPath": "microsoft.entityframeworkcore.sqlserver.9.0.8.nupkg.sha512" + "sha512": "sha512-t+6Zo92F5CgKyFncPSWRB3DFNwBrGug9F6rlrUFlJEr4Bf0t4ZFhZLg0qfuA3ouT7AQKuLTrvXLxuov8DWcuPQ==", + "path": "microsoft.entityframeworkcore.sqlserver/9.0.9", + "hashPath": "microsoft.entityframeworkcore.sqlserver.9.0.9.nupkg.sha512" }, - "Microsoft.EntityFrameworkCore.Tools/9.0.8": { + "Microsoft.EntityFrameworkCore.Tools/9.0.9": { "type": "package", "serviceable": true, - "sha512": "sha512-gtjwfJsEB5Mz5qOhdYjm+9KWJEVmVu5xxOgrxHxW6dNmhGfwdNXnNx5Nvdk6IHt0hmn0OK6MREMZEOsjrnSCfA==", - "path": "microsoft.entityframeworkcore.tools/9.0.8", - "hashPath": "microsoft.entityframeworkcore.tools.9.0.8.nupkg.sha512" + "sha512": "sha512-Q8n1PXXJApa1qX8HI3r/YuHoJ1HuLwjI2hLqaCV9K9pqQhGpi6Z38laOYwL2ElUOTWCxTKMDEMMYWfPlw6rwgg==", + "path": "microsoft.entityframeworkcore.tools/9.0.9", + "hashPath": "microsoft.entityframeworkcore.tools.9.0.9.nupkg.sha512" }, - "Microsoft.Extensions.Caching.Abstractions/9.0.8": { + "Microsoft.Extensions.Caching.Abstractions/9.0.9": { "type": "package", "serviceable": true, - "sha512": "sha512-4h7bsVoKoiK+SlPM+euX/ayGnKZhl47pPCidLTiio9xyG+vgVVfcYxcYQgjm0SCrdSxjG0EGIAKF8EFr3G8Ifw==", - "path": "microsoft.extensions.caching.abstractions/9.0.8", - "hashPath": "microsoft.extensions.caching.abstractions.9.0.8.nupkg.sha512" + "sha512": "sha512-NgtRHOdPrAEacfjXLSrH/SRrSqGf6Vaa6d16mW2yoyJdg7AJr0BnBvxkv7PkCm/CHVyzojTK7Y+oUDEulqY1Qw==", + "path": "microsoft.extensions.caching.abstractions/9.0.9", + "hashPath": "microsoft.extensions.caching.abstractions.9.0.9.nupkg.sha512" }, - "Microsoft.Extensions.Caching.Memory/9.0.8": { + "Microsoft.Extensions.Caching.Memory/9.0.9": { "type": "package", "serviceable": true, - "sha512": "sha512-grR+oPyj8HVn4DT8CFUUdSw2pZZKS13KjytFe4txpHQliGM1GEDotohmjgvyl3hm7RFB3FRqvbouEX3/1ewp5A==", - "path": "microsoft.extensions.caching.memory/9.0.8", - "hashPath": "microsoft.extensions.caching.memory.9.0.8.nupkg.sha512" + "sha512": "sha512-ln31BtsDsBQxykJgxuCtiUXWRET9FmqeEq0BpPIghkYtGpDDVs8ZcLHAjCCzbw6aGoLek4Z7JaDjSO/CjOD0iw==", + "path": "microsoft.extensions.caching.memory/9.0.9", + "hashPath": "microsoft.extensions.caching.memory.9.0.9.nupkg.sha512" }, - "Microsoft.Extensions.Configuration.Abstractions/9.0.8": { + "Microsoft.Extensions.Configuration.Abstractions/9.0.9": { "type": "package", "serviceable": true, - "sha512": "sha512-yNou2KM35RvzOh4vUFtl2l33rWPvOCoba+nzEDJ+BgD8aOL/jew4WPCibQvntRfOJ2pJU8ARygSMD+pdjvDHuA==", - "path": "microsoft.extensions.configuration.abstractions/9.0.8", - "hashPath": "microsoft.extensions.configuration.abstractions.9.0.8.nupkg.sha512" + "sha512": "sha512-p5RKAY9POvs3axwA/AQRuJeM8AHuE8h4qbP1NxQeGm0ep46aXz1oCLAp/oOYxX1GsjStgdhHrN3XXLLXr0+b3w==", + "path": "microsoft.extensions.configuration.abstractions/9.0.9", + "hashPath": "microsoft.extensions.configuration.abstractions.9.0.9.nupkg.sha512" }, - "Microsoft.Extensions.DependencyInjection/9.0.8": { + "Microsoft.Extensions.DependencyInjection/9.0.9": { "type": "package", "serviceable": true, - "sha512": "sha512-JJjI2Fa+QtZcUyuNjbKn04OjIUX5IgFGFu/Xc+qvzh1rXdZHLcnqqVXhR4093bGirTwacRlHiVg1XYI9xum6QQ==", - "path": "microsoft.extensions.dependencyinjection/9.0.8", - "hashPath": "microsoft.extensions.dependencyinjection.9.0.8.nupkg.sha512" + "sha512": "sha512-zQV2WOSP+3z1EuK91ULxfGgo2Y75bTRnmJHp08+w/YXAyekZutX/qCd88/HOMNh35MDW9mJJJxPpMPS+1Rww8A==", + "path": "microsoft.extensions.dependencyinjection/9.0.9", + "hashPath": "microsoft.extensions.dependencyinjection.9.0.9.nupkg.sha512" }, - "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.8": { + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.9": { "type": "package", "serviceable": true, - "sha512": "sha512-xY3lTjj4+ZYmiKIkyWitddrp1uL5uYiweQjqo4BKBw01ZC4HhcfgLghDpPZcUlppgWAFqFy9SgkiYWOMx365pw==", - "path": "microsoft.extensions.dependencyinjection.abstractions/9.0.8", - "hashPath": "microsoft.extensions.dependencyinjection.abstractions.9.0.8.nupkg.sha512" + "sha512": "sha512-/hymojfWbE9AlDOa0mczR44m00Jj+T3+HZO0ZnVTI032fVycI0ZbNOVFP6kqZMcXiLSYXzR2ilcwaRi6dzeGyA==", + "path": "microsoft.extensions.dependencyinjection.abstractions/9.0.9", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.9.0.9.nupkg.sha512" }, - "Microsoft.Extensions.DependencyModel/9.0.8": { + "Microsoft.Extensions.DependencyModel/9.0.9": { "type": "package", "serviceable": true, - "sha512": "sha512-3CW02zNjyqJ2eORo8Zkznpw6+QvK+tYUKZgKuKuAIYdy73TRFvpaqCwYws1k6/lMSJ7ZqABfWn0/wa5bRsIJ4w==", - "path": "microsoft.extensions.dependencymodel/9.0.8", - "hashPath": "microsoft.extensions.dependencymodel.9.0.8.nupkg.sha512" + "sha512": "sha512-fNGvKct2De8ghm0Bpfq0iWthtzIWabgOTi+gJhNOPhNJIowXNEUE2eZNW/zNCzrHVA3PXg2yZ+3cWZndC2IqYA==", + "path": "microsoft.extensions.dependencymodel/9.0.9", + "hashPath": "microsoft.extensions.dependencymodel.9.0.9.nupkg.sha512" }, "Microsoft.Extensions.Identity.Core/9.0.8": { "type": "package", @@ -1683,33 +1749,33 @@ "path": "microsoft.extensions.localization.abstractions/9.0.1", "hashPath": "microsoft.extensions.localization.abstractions.9.0.1.nupkg.sha512" }, - "Microsoft.Extensions.Logging/9.0.8": { + "Microsoft.Extensions.Logging/9.0.9": { "type": "package", "serviceable": true, - "sha512": "sha512-Z/7ze+0iheT7FJeZPqJKARYvyC2bmwu3whbm/48BJjdlGVvgDguoCqJIkI/67NkroTYobd5geai1WheNQvWrgA==", - "path": "microsoft.extensions.logging/9.0.8", - "hashPath": "microsoft.extensions.logging.9.0.8.nupkg.sha512" + "sha512": "sha512-MaCB0Y9hNDs4YLu3HCJbo199WnJT8xSgajG1JYGANz9FkseQ5f3v/llu3HxLI6mjDlu7pa7ps9BLPWjKzsAAzQ==", + "path": "microsoft.extensions.logging/9.0.9", + "hashPath": "microsoft.extensions.logging.9.0.9.nupkg.sha512" }, - "Microsoft.Extensions.Logging.Abstractions/9.0.8": { + "Microsoft.Extensions.Logging.Abstractions/9.0.9": { "type": "package", "serviceable": true, - "sha512": "sha512-pYnAffJL7ARD/HCnnPvnFKSIHnTSmWz84WIlT9tPeQ4lHNiu0Az7N/8itihWvcF8sT+VVD5lq8V+ckMzu4SbOw==", - "path": "microsoft.extensions.logging.abstractions/9.0.8", - "hashPath": "microsoft.extensions.logging.abstractions.9.0.8.nupkg.sha512" + "sha512": "sha512-FEgpSF+Z9StMvrsSViaybOBwR0f0ZZxDm8xV5cSOFiXN/t+ys+rwAlTd/6yG7Ld1gfppgvLcMasZry3GsI9lGA==", + "path": "microsoft.extensions.logging.abstractions/9.0.9", + "hashPath": "microsoft.extensions.logging.abstractions.9.0.9.nupkg.sha512" }, - "Microsoft.Extensions.Options/9.0.8": { + "Microsoft.Extensions.Options/9.0.9": { "type": "package", "serviceable": true, - "sha512": "sha512-OmTaQ0v4gxGQkehpwWIqPoEiwsPuG/u4HUsbOFoWGx4DKET2AXzopnFe/fE608FIhzc/kcg2p8JdyMRCCUzitQ==", - "path": "microsoft.extensions.options/9.0.8", - "hashPath": "microsoft.extensions.options.9.0.8.nupkg.sha512" + "sha512": "sha512-loxGGHE1FC2AefwPHzrjPq7X92LQm64qnU/whKfo6oWaceewPUVYQJBJs3S3E2qlWwnCpeZ+dGCPTX+5dgVAuQ==", + "path": "microsoft.extensions.options/9.0.9", + "hashPath": "microsoft.extensions.options.9.0.9.nupkg.sha512" }, - "Microsoft.Extensions.Primitives/9.0.8": { + "Microsoft.Extensions.Primitives/9.0.9": { "type": "package", "serviceable": true, - "sha512": "sha512-tizSIOEsIgSNSSh+hKeUVPK7xmTIjR8s+mJWOu1KXV3htvNQiPMFRMO17OdI1y/4ZApdBVk49u/08QGC9yvLug==", - "path": "microsoft.extensions.primitives/9.0.8", - "hashPath": "microsoft.extensions.primitives.9.0.8.nupkg.sha512" + "sha512": "sha512-z4pyMePOrl733ltTowbN565PxBw1oAr8IHmIXNDiDqd22nFpYltX9KhrNC/qBWAG1/Zx5MHX+cOYhWJQYCO/iw==", + "path": "microsoft.extensions.primitives/9.0.9", + "hashPath": "microsoft.extensions.primitives.9.0.9.nupkg.sha512" }, "Microsoft.Identity.Client/4.61.3": { "type": "package", @@ -1725,12 +1791,12 @@ "path": "microsoft.identity.client.extensions.msal/4.61.3", "hashPath": "microsoft.identity.client.extensions.msal.4.61.3.nupkg.sha512" }, - "Microsoft.IdentityModel.Abstractions/6.35.0": { + "Microsoft.IdentityModel.Abstractions/8.14.0": { "type": "package", "serviceable": true, - "sha512": "sha512-xuR8E4Rd96M41CnUSCiOJ2DBh+z+zQSmyrYHdYhD6K4fXBcQGVnRCFQ0efROUYpP+p0zC1BLKr0JRpVuujTZSg==", - "path": "microsoft.identitymodel.abstractions/6.35.0", - "hashPath": "microsoft.identitymodel.abstractions.6.35.0.nupkg.sha512" + "sha512": "sha512-iwbCpSjD3ehfTwBhtSNEtKPK0ICun6ov7Ibx6ISNA9bfwIyzI2Siwyi9eJFCJBwxowK9xcA1mj+jBWiigeqgcQ==", + "path": "microsoft.identitymodel.abstractions/8.14.0", + "hashPath": "microsoft.identitymodel.abstractions.8.14.0.nupkg.sha512" }, "Microsoft.IdentityModel.JsonWebTokens/6.35.0": { "type": "package", @@ -1739,12 +1805,12 @@ "path": "microsoft.identitymodel.jsonwebtokens/6.35.0", "hashPath": "microsoft.identitymodel.jsonwebtokens.6.35.0.nupkg.sha512" }, - "Microsoft.IdentityModel.Logging/6.35.0": { + "Microsoft.IdentityModel.Logging/8.14.0": { "type": "package", "serviceable": true, - "sha512": "sha512-jePrSfGAmqT81JDCNSY+fxVWoGuJKt9e6eJ+vT7+quVS55nWl//jGjUQn4eFtVKt4rt5dXaleZdHRB9J9AJZ7Q==", - "path": "microsoft.identitymodel.logging/6.35.0", - "hashPath": "microsoft.identitymodel.logging.6.35.0.nupkg.sha512" + "sha512": "sha512-eqqnemdW38CKZEHS6diA50BV94QICozDZEvSrsvN3SJXUFwVB9gy+/oz76gldP7nZliA16IglXjXTCTdmU/Ejg==", + "path": "microsoft.identitymodel.logging/8.14.0", + "hashPath": "microsoft.identitymodel.logging.8.14.0.nupkg.sha512" }, "Microsoft.IdentityModel.Protocols/6.35.0": { "type": "package", @@ -1760,12 +1826,12 @@ "path": "microsoft.identitymodel.protocols.openidconnect/6.35.0", "hashPath": "microsoft.identitymodel.protocols.openidconnect.6.35.0.nupkg.sha512" }, - "Microsoft.IdentityModel.Tokens/6.35.0": { + "Microsoft.IdentityModel.Tokens/8.14.0": { "type": "package", "serviceable": true, - "sha512": "sha512-RN7lvp7s3Boucg1NaNAbqDbxtlLj5Qeb+4uSS1TeK5FSBVM40P4DKaTKChT43sHyKfh7V0zkrMph6DdHvyA4bg==", - "path": "microsoft.identitymodel.tokens/6.35.0", - "hashPath": "microsoft.identitymodel.tokens.6.35.0.nupkg.sha512" + "sha512": "sha512-lKIZiBiGd36k02TCdMHp1KlNWisyIvQxcYJvIkz7P4gSQ9zi8dgh6S5Grj8NNG7HWYIPfQymGyoZ6JB5d1Lo1g==", + "path": "microsoft.identitymodel.tokens/8.14.0", + "hashPath": "microsoft.identitymodel.tokens.8.14.0.nupkg.sha512" }, "Microsoft.JSInterop/9.0.1": { "type": "package", @@ -1823,12 +1889,12 @@ "path": "mono.texttemplating/3.0.0", "hashPath": "mono.texttemplating.3.0.0.nupkg.sha512" }, - "MudBlazor/8.12.0": { + "MudBlazor/8.13.0": { "type": "package", "serviceable": true, - "sha512": "sha512-ZwgHPt2DwiQoFeP8jxPzNEsUmJF17ljtospVH+uMUKUKpklz6jEkdE5vNs7PnHaPH9HEbpFEQgJw8QPlnFZjsQ==", - "path": "mudblazor/8.12.0", - "hashPath": "mudblazor.8.12.0.nupkg.sha512" + "sha512": "sha512-Y6JW93zf8tiVhMSkkL0mZ3ruqjOTNftvVoX3sik6NEnIye+Gs0FXI8rhXfrH2LU79Mw/fOtT5ms3L/Q4TKx2kA==", + "path": "mudblazor/8.13.0", + "hashPath": "mudblazor.8.13.0.nupkg.sha512" }, "Npgsql/9.0.3": { "type": "package", @@ -1893,6 +1959,13 @@ "path": "system.codedom/6.0.0", "hashPath": "system.codedom.6.0.0.nupkg.sha512" }, + "System.Collections/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "path": "system.collections/4.3.0", + "hashPath": "system.collections.4.3.0.nupkg.sha512" + }, "System.Collections.Immutable/7.0.0": { "type": "package", "serviceable": true, @@ -1977,12 +2050,12 @@ "path": "system.drawing.common/6.0.0", "hashPath": "system.drawing.common.6.0.0.nupkg.sha512" }, - "System.Formats.Asn1/9.0.8": { + "System.Formats.Asn1/9.0.9": { "type": "package", "serviceable": true, - "sha512": "sha512-gGL0gt2nAArsF2oOMFzClll6QN2FhtooTxEQ+K26uer4lrhahnYIo/qOn5HUSfjHlM91646L5/7dYIMJ86fHkQ==", - "path": "system.formats.asn1/9.0.8", - "hashPath": "system.formats.asn1.9.0.8.nupkg.sha512" + "sha512": "sha512-hnQCFWPAvZM45fFEExgbHTgq6GyfyQdHxyI+PvuzqI1G7KvBYcnNEPHbLJ+1jP+Ip69yBvvUOxaibmDInmOw2Q==", + "path": "system.formats.asn1/9.0.9", + "hashPath": "system.formats.asn1.9.0.9.nupkg.sha512" }, "System.IdentityModel.Tokens.Jwt/6.35.0": { "type": "package", @@ -2103,12 +2176,12 @@ "path": "system.text.encodings.web/6.0.0", "hashPath": "system.text.encodings.web.6.0.0.nupkg.sha512" }, - "System.Text.Json/9.0.8": { + "System.Text.Json/9.0.9": { "type": "package", "serviceable": true, - "sha512": "sha512-mIQir9jBqk0V7X0Nw5hzPJZC8DuGdf+2DS3jAVsr6rq5+/VyH5rza0XGcONJUWBrZ+G6BCwNyjWYd9lncBu48A==", - "path": "system.text.json/9.0.8", - "hashPath": "system.text.json.9.0.8.nupkg.sha512" + "sha512": "sha512-NEnpppwq67fRz/OvQRxsEMgetDJsxlxpEsAFO/4PZYbAyAMd4Ol6KS7phc8uDoKPsnbdzRLKobpX303uQwCqdg==", + "path": "system.text.json/9.0.9", + "hashPath": "system.text.json.9.0.9.nupkg.sha512" }, "System.Threading.Channels/7.0.0": { "type": "package", @@ -2131,6 +2204,21 @@ "path": "system.windows.extensions/6.0.0", "hashPath": "system.windows.extensions.6.0.0.nupkg.sha512" }, + "OpenArchival.Blazor.AdminPages/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "OpenArchival.Blazor.CustomComponents/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "OpenArchival.Blazor.FileViewer/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, "OpenArchival.DataAccess/1.0.0": { "type": "project", "serviceable": false, diff --git a/OpenArchival.Blazor/bin/Debug/net9.0/OpenArchival.Blazor.dll b/OpenArchival.Blazor/bin/Debug/net9.0/OpenArchival.Blazor.dll index 425809b..36c604d 100644 Binary files a/OpenArchival.Blazor/bin/Debug/net9.0/OpenArchival.Blazor.dll and b/OpenArchival.Blazor/bin/Debug/net9.0/OpenArchival.Blazor.dll differ diff --git a/OpenArchival.Blazor/bin/Debug/net9.0/OpenArchival.Blazor.exe b/OpenArchival.Blazor/bin/Debug/net9.0/OpenArchival.Blazor.exe index 3562ff9..41b6ef2 100644 Binary files a/OpenArchival.Blazor/bin/Debug/net9.0/OpenArchival.Blazor.exe and b/OpenArchival.Blazor/bin/Debug/net9.0/OpenArchival.Blazor.exe differ diff --git a/OpenArchival.Blazor/bin/Debug/net9.0/OpenArchival.Blazor.pdb b/OpenArchival.Blazor/bin/Debug/net9.0/OpenArchival.Blazor.pdb index eda9cb2..b7a8e68 100644 Binary files a/OpenArchival.Blazor/bin/Debug/net9.0/OpenArchival.Blazor.pdb and b/OpenArchival.Blazor/bin/Debug/net9.0/OpenArchival.Blazor.pdb differ diff --git a/OpenArchival.Blazor/bin/Debug/net9.0/OpenArchival.Blazor.staticwebassets.endpoints.json b/OpenArchival.Blazor/bin/Debug/net9.0/OpenArchival.Blazor.staticwebassets.endpoints.json index 4966c0b..645f299 100644 --- a/OpenArchival.Blazor/bin/Debug/net9.0/OpenArchival.Blazor.staticwebassets.endpoints.json +++ b/OpenArchival.Blazor/bin/Debug/net9.0/OpenArchival.Blazor.staticwebassets.endpoints.json @@ -1 +1 @@ -{"Version":1,"ManifestType":"Build","Endpoints":[{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.css","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"21465"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk=\""},{"Name":"Last-Modified","Value":"Sun, 26 Feb 2023 14:08:26 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.css","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000295508274"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3383"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"6PJ7t7WR38pQTSYe6IR0pbqo2cIZK5wuW/w26kprtBg=\""},{"Name":"ETag","Value":"W/\"Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk=\""},{"Name":"Last-Modified","Value":"Fri, 05 Sep 2025 16:32:47 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.css.gz","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3383"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"6PJ7t7WR38pQTSYe6IR0pbqo2cIZK5wuW/w26kprtBg=\""},{"Name":"Last-Modified","Value":"Fri, 05 Sep 2025 16:32:47 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6PJ7t7WR38pQTSYe6IR0pbqo2cIZK5wuW/w26kprtBg="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.js","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"328"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc=\""},{"Name":"Last-Modified","Value":"Sun, 26 Feb 2023 14:08:26 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.js","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005076142132"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"196"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"B4PUgpr06+d3lAMWknp0EVkaGxPZJdpp5/UidGHzvnc=\""},{"Name":"ETag","Value":"W/\"FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc=\""},{"Name":"Last-Modified","Value":"Fri, 05 Sep 2025 16:32:47 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.js.gz","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"196"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"B4PUgpr06+d3lAMWknp0EVkaGxPZJdpp5/UidGHzvnc=\""},{"Name":"Last-Modified","Value":"Fri, 05 Sep 2025 16:32:47 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-B4PUgpr06+d3lAMWknp0EVkaGxPZJdpp5/UidGHzvnc="}]},{"Route":"_content/CodeBeam.MudExtensions/Mud_Secondary.png","AssetFile":"_content/CodeBeam.MudExtensions/Mud_Secondary.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4558"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"G3hYUw4Ps9P/IQ3lw2zu96RSZaOf4zU+4QkXkH8Xi3Y=\""},{"Name":"Last-Modified","Value":"Sat, 08 Oct 2022 09:55:02 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G3hYUw4Ps9P/IQ3lw2zu96RSZaOf4zU+4QkXkH8Xi3Y="}]},{"Route":"_content/MudBlazor/MudBlazor.min.0n6lrtb02s.css","AssetFile":"_content/MudBlazor/MudBlazor.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"606258"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"3FM/mjas9rQiq2CY+FQPy1Pe1iCLSx/qZltQxK4dcuQ=\""},{"Name":"Last-Modified","Value":"Tue, 02 Sep 2025 18:25:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0n6lrtb02s"},{"Name":"integrity","Value":"sha256-3FM/mjas9rQiq2CY+FQPy1Pe1iCLSx/qZltQxK4dcuQ="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.css"}]},{"Route":"_content/MudBlazor/MudBlazor.min.css","AssetFile":"_content/MudBlazor/MudBlazor.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"606258"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"3FM/mjas9rQiq2CY+FQPy1Pe1iCLSx/qZltQxK4dcuQ=\""},{"Name":"Last-Modified","Value":"Tue, 02 Sep 2025 18:25:58 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3FM/mjas9rQiq2CY+FQPy1Pe1iCLSx/qZltQxK4dcuQ="}]},{"Route":"_content/MudBlazor/MudBlazor.min.css","AssetFile":"_content/MudBlazor/MudBlazor.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015264845"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"65509"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"G6ttMFl4pZQbeXfp7Od0SO3bC9h9rp9m7NW7DgD0a1Q=\""},{"Name":"ETag","Value":"W/\"3FM/mjas9rQiq2CY+FQPy1Pe1iCLSx/qZltQxK4dcuQ=\""},{"Name":"Last-Modified","Value":"Fri, 05 Sep 2025 16:32:47 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3FM/mjas9rQiq2CY+FQPy1Pe1iCLSx/qZltQxK4dcuQ="}]},{"Route":"_content/MudBlazor/MudBlazor.min.css.gz","AssetFile":"_content/MudBlazor/MudBlazor.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"65509"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"G6ttMFl4pZQbeXfp7Od0SO3bC9h9rp9m7NW7DgD0a1Q=\""},{"Name":"Last-Modified","Value":"Fri, 05 Sep 2025 16:32:47 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G6ttMFl4pZQbeXfp7Od0SO3bC9h9rp9m7NW7DgD0a1Q="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js","AssetFile":"_content/MudBlazor/MudBlazor.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"73682"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Qf9/gSPxTxchB08Wi5WXxjPqw2IQvnyVUW27s7cwoUo=\""},{"Name":"Last-Modified","Value":"Tue, 02 Sep 2025 18:25:58 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Qf9/gSPxTxchB08Wi5WXxjPqw2IQvnyVUW27s7cwoUo="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js","AssetFile":"_content/MudBlazor/MudBlazor.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000062952471"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15884"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"qhJtBPrvSKzfmYIXttsCBAyz1XObWORxmjjeuquTVx8=\""},{"Name":"ETag","Value":"W/\"Qf9/gSPxTxchB08Wi5WXxjPqw2IQvnyVUW27s7cwoUo=\""},{"Name":"Last-Modified","Value":"Fri, 05 Sep 2025 16:32:47 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Qf9/gSPxTxchB08Wi5WXxjPqw2IQvnyVUW27s7cwoUo="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js.gz","AssetFile":"_content/MudBlazor/MudBlazor.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15884"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"qhJtBPrvSKzfmYIXttsCBAyz1XObWORxmjjeuquTVx8=\""},{"Name":"Last-Modified","Value":"Fri, 05 Sep 2025 16:32:47 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qhJtBPrvSKzfmYIXttsCBAyz1XObWORxmjjeuquTVx8="}]},{"Route":"_content/MudBlazor/MudBlazor.min.lftp6ydp6b.js","AssetFile":"_content/MudBlazor/MudBlazor.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"73682"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Qf9/gSPxTxchB08Wi5WXxjPqw2IQvnyVUW27s7cwoUo=\""},{"Name":"Last-Modified","Value":"Tue, 02 Sep 2025 18:25:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lftp6ydp6b"},{"Name":"integrity","Value":"sha256-Qf9/gSPxTxchB08Wi5WXxjPqw2IQvnyVUW27s7cwoUo="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.js"}]},{"Route":"favicon.2jeq8efc6q.ico","AssetFile":"favicon.ico.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000336021505"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2975"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"b7CPHqpoIGsGVgOrEO+r2XPyaLrLUBwkA6R2jOMbS7M=\""},{"Name":"ETag","Value":"W/\"8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA=\""},{"Name":"Last-Modified","Value":"Fri, 05 Sep 2025 16:32:47 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2jeq8efc6q"},{"Name":"integrity","Value":"sha256-8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA="},{"Name":"label","Value":"favicon.ico"}]},{"Route":"favicon.2jeq8efc6q.ico","AssetFile":"favicon.ico","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"15086"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA=\""},{"Name":"Last-Modified","Value":"Tue, 12 Aug 2025 18:28:17 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2jeq8efc6q"},{"Name":"integrity","Value":"sha256-8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA="},{"Name":"label","Value":"favicon.ico"}]},{"Route":"favicon.2jeq8efc6q.ico.gz","AssetFile":"favicon.ico.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":"2975"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"b7CPHqpoIGsGVgOrEO+r2XPyaLrLUBwkA6R2jOMbS7M=\""},{"Name":"Last-Modified","Value":"Fri, 05 Sep 2025 16:32:47 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2jeq8efc6q"},{"Name":"integrity","Value":"sha256-b7CPHqpoIGsGVgOrEO+r2XPyaLrLUBwkA6R2jOMbS7M="},{"Name":"label","Value":"favicon.ico.gz"}]},{"Route":"favicon.ico","AssetFile":"favicon.ico.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000336021505"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2975"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"b7CPHqpoIGsGVgOrEO+r2XPyaLrLUBwkA6R2jOMbS7M=\""},{"Name":"ETag","Value":"W/\"8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA=\""},{"Name":"Last-Modified","Value":"Fri, 05 Sep 2025 16:32:47 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA="}]},{"Route":"favicon.ico","AssetFile":"favicon.ico","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"15086"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA=\""},{"Name":"Last-Modified","Value":"Tue, 12 Aug 2025 18:28:17 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA="}]},{"Route":"favicon.ico.gz","AssetFile":"favicon.ico.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2975"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"b7CPHqpoIGsGVgOrEO+r2XPyaLrLUBwkA6R2jOMbS7M=\""},{"Name":"Last-Modified","Value":"Fri, 05 Sep 2025 16:32:47 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-b7CPHqpoIGsGVgOrEO+r2XPyaLrLUBwkA6R2jOMbS7M="}]}]} \ No newline at end of file +{"Version":1,"ManifestType":"Build","Endpoints":[{"Route":"OpenArchival.Blazor.of6ssq9pmk.styles.css","AssetFile":"OpenArchival.Blazor.styles.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.009708737864"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"102"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"iaEgFyUTJAhMAW+JFVh6LKM3gSG0Kn0oNWuuMVofbCw=\""},{"Name":"ETag","Value":"W/\"lCMY9zSeY9QeKoomwsAHffyneUvstrerzcX/DLZLNWc=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Link","Value":"<_content/OpenArchival.Blazor.FileViewer/OpenArchival.Blazor.FileViewer.83wakjp31g.bundle.scp.css>; rel=\"preload\"; as=\"style\""},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"of6ssq9pmk"},{"Name":"integrity","Value":"sha256-lCMY9zSeY9QeKoomwsAHffyneUvstrerzcX/DLZLNWc="},{"Name":"label","Value":"OpenArchival.Blazor.styles.css"}]},{"Route":"OpenArchival.Blazor.of6ssq9pmk.styles.css","AssetFile":"OpenArchival.Blazor.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"111"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"lCMY9zSeY9QeKoomwsAHffyneUvstrerzcX/DLZLNWc=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Link","Value":"<_content/OpenArchival.Blazor.FileViewer/OpenArchival.Blazor.FileViewer.83wakjp31g.bundle.scp.css>; rel=\"preload\"; as=\"style\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"of6ssq9pmk"},{"Name":"integrity","Value":"sha256-lCMY9zSeY9QeKoomwsAHffyneUvstrerzcX/DLZLNWc="},{"Name":"label","Value":"OpenArchival.Blazor.styles.css"}]},{"Route":"OpenArchival.Blazor.of6ssq9pmk.styles.css.gz","AssetFile":"OpenArchival.Blazor.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":"102"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"iaEgFyUTJAhMAW+JFVh6LKM3gSG0Kn0oNWuuMVofbCw=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"of6ssq9pmk"},{"Name":"integrity","Value":"sha256-iaEgFyUTJAhMAW+JFVh6LKM3gSG0Kn0oNWuuMVofbCw="},{"Name":"label","Value":"OpenArchival.Blazor.styles.css.gz"}]},{"Route":"OpenArchival.Blazor.styles.css","AssetFile":"OpenArchival.Blazor.styles.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.009708737864"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"102"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"iaEgFyUTJAhMAW+JFVh6LKM3gSG0Kn0oNWuuMVofbCw=\""},{"Name":"ETag","Value":"W/\"lCMY9zSeY9QeKoomwsAHffyneUvstrerzcX/DLZLNWc=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Link","Value":"<_content/OpenArchival.Blazor.FileViewer/OpenArchival.Blazor.FileViewer.83wakjp31g.bundle.scp.css>; rel=\"preload\"; as=\"style\""},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lCMY9zSeY9QeKoomwsAHffyneUvstrerzcX/DLZLNWc="}]},{"Route":"OpenArchival.Blazor.styles.css","AssetFile":"OpenArchival.Blazor.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"111"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"lCMY9zSeY9QeKoomwsAHffyneUvstrerzcX/DLZLNWc=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Link","Value":"<_content/OpenArchival.Blazor.FileViewer/OpenArchival.Blazor.FileViewer.83wakjp31g.bundle.scp.css>; rel=\"preload\"; as=\"style\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lCMY9zSeY9QeKoomwsAHffyneUvstrerzcX/DLZLNWc="}]},{"Route":"OpenArchival.Blazor.styles.css.gz","AssetFile":"OpenArchival.Blazor.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":"102"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"iaEgFyUTJAhMAW+JFVh6LKM3gSG0Kn0oNWuuMVofbCw=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-iaEgFyUTJAhMAW+JFVh6LKM3gSG0Kn0oNWuuMVofbCw="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.css","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"21465"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk=\""},{"Name":"Last-Modified","Value":"Sun, 26 Feb 2023 14:08:26 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.css","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000295508274"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3383"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"6PJ7t7WR38pQTSYe6IR0pbqo2cIZK5wuW/w26kprtBg=\""},{"Name":"ETag","Value":"W/\"Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.css.gz","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3383"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"6PJ7t7WR38pQTSYe6IR0pbqo2cIZK5wuW/w26kprtBg=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6PJ7t7WR38pQTSYe6IR0pbqo2cIZK5wuW/w26kprtBg="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.js","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"328"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc=\""},{"Name":"Last-Modified","Value":"Sun, 26 Feb 2023 14:08:26 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.js","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005076142132"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"196"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"B4PUgpr06+d3lAMWknp0EVkaGxPZJdpp5/UidGHzvnc=\""},{"Name":"ETag","Value":"W/\"FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.js.gz","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"196"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"B4PUgpr06+d3lAMWknp0EVkaGxPZJdpp5/UidGHzvnc=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-B4PUgpr06+d3lAMWknp0EVkaGxPZJdpp5/UidGHzvnc="}]},{"Route":"_content/CodeBeam.MudExtensions/Mud_Secondary.png","AssetFile":"_content/CodeBeam.MudExtensions/Mud_Secondary.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4558"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"G3hYUw4Ps9P/IQ3lw2zu96RSZaOf4zU+4QkXkH8Xi3Y=\""},{"Name":"Last-Modified","Value":"Sat, 08 Oct 2022 09:55:02 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G3hYUw4Ps9P/IQ3lw2zu96RSZaOf4zU+4QkXkH8Xi3Y="}]},{"Route":"_content/MudBlazor/MudBlazor.min.css","AssetFile":"_content/MudBlazor/MudBlazor.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"606250"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0=\""},{"Name":"Last-Modified","Value":"Wed, 01 Oct 2025 21:51:05 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0="}]},{"Route":"_content/MudBlazor/MudBlazor.min.css","AssetFile":"_content/MudBlazor/MudBlazor.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015264845"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"65509"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"VcBMO3aXrzxl+jfWY+TaxPKsd3L0UWjeJZliEXOyzzI=\""},{"Name":"ETag","Value":"W/\"TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0="}]},{"Route":"_content/MudBlazor/MudBlazor.min.css.gz","AssetFile":"_content/MudBlazor/MudBlazor.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"65509"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"VcBMO3aXrzxl+jfWY+TaxPKsd3L0UWjeJZliEXOyzzI=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VcBMO3aXrzxl+jfWY+TaxPKsd3L0UWjeJZliEXOyzzI="}]},{"Route":"_content/MudBlazor/MudBlazor.min.jk5eo7zo4m.css","AssetFile":"_content/MudBlazor/MudBlazor.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"606250"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0=\""},{"Name":"Last-Modified","Value":"Wed, 01 Oct 2025 21:51:05 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jk5eo7zo4m"},{"Name":"integrity","Value":"sha256-TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.css"}]},{"Route":"_content/MudBlazor/MudBlazor.min.js","AssetFile":"_content/MudBlazor/MudBlazor.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"75165"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw=\""},{"Name":"Last-Modified","Value":"Wed, 01 Oct 2025 21:51:05 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js","AssetFile":"_content/MudBlazor/MudBlazor.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000061150859"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16352"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"0BJxfo+EOJvNKoBv/2ahm4RKrPjv7PhB/R16C3XOHDo=\""},{"Name":"ETag","Value":"W/\"hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js.gz","AssetFile":"_content/MudBlazor/MudBlazor.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16352"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"0BJxfo+EOJvNKoBv/2ahm4RKrPjv7PhB/R16C3XOHDo=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0BJxfo+EOJvNKoBv/2ahm4RKrPjv7PhB/R16C3XOHDo="}]},{"Route":"_content/MudBlazor/MudBlazor.min.tjzqk7tnel.js","AssetFile":"_content/MudBlazor/MudBlazor.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"75165"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw=\""},{"Name":"Last-Modified","Value":"Wed, 01 Oct 2025 21:51:05 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tjzqk7tnel"},{"Name":"integrity","Value":"sha256-hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.js"}]},{"Route":"_content/OpenArchival.Blazor.FileViewer/OpenArchival.Blazor.FileViewer.83wakjp31g.bundle.scp.css","AssetFile":"_content/OpenArchival.Blazor.FileViewer/OpenArchival.Blazor.FileViewer.83wakjp31g.bundle.scp.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.006134969325"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"162"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"w7pUrtgbGsKChPQ+JZf6wIJIlRo5ItP1AJKKjbLPBUM=\""},{"Name":"ETag","Value":"W/\"9NCmFFvSZYsIWCQoks2vSnN9EMEwePSQhoXfFOCn5mg=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"83wakjp31g"},{"Name":"integrity","Value":"sha256-9NCmFFvSZYsIWCQoks2vSnN9EMEwePSQhoXfFOCn5mg="},{"Name":"label","Value":"_content/OpenArchival.Blazor.FileViewer/OpenArchival.Blazor.FileViewer.bundle.scp.css"}]},{"Route":"_content/OpenArchival.Blazor.FileViewer/OpenArchival.Blazor.FileViewer.83wakjp31g.bundle.scp.css","AssetFile":"_content/OpenArchival.Blazor.FileViewer/OpenArchival.Blazor.FileViewer.83wakjp31g.bundle.scp.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"186"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"9NCmFFvSZYsIWCQoks2vSnN9EMEwePSQhoXfFOCn5mg=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"83wakjp31g"},{"Name":"integrity","Value":"sha256-9NCmFFvSZYsIWCQoks2vSnN9EMEwePSQhoXfFOCn5mg="},{"Name":"label","Value":"_content/OpenArchival.Blazor.FileViewer/OpenArchival.Blazor.FileViewer.bundle.scp.css"}]},{"Route":"_content/OpenArchival.Blazor.FileViewer/OpenArchival.Blazor.FileViewer.83wakjp31g.bundle.scp.css.gz","AssetFile":"_content/OpenArchival.Blazor.FileViewer/OpenArchival.Blazor.FileViewer.83wakjp31g.bundle.scp.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":"162"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"w7pUrtgbGsKChPQ+JZf6wIJIlRo5ItP1AJKKjbLPBUM=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"83wakjp31g"},{"Name":"integrity","Value":"sha256-w7pUrtgbGsKChPQ+JZf6wIJIlRo5ItP1AJKKjbLPBUM="},{"Name":"label","Value":"_content/OpenArchival.Blazor.FileViewer/OpenArchival.Blazor.FileViewer.bundle.scp.css.gz"}]},{"Route":"_content/OpenArchival.Blazor.FileViewer/OpenArchival.Blazor.FileViewer.bundle.scp.css","AssetFile":"_content/OpenArchival.Blazor.FileViewer/OpenArchival.Blazor.FileViewer.83wakjp31g.bundle.scp.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.006134969325"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"162"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"w7pUrtgbGsKChPQ+JZf6wIJIlRo5ItP1AJKKjbLPBUM=\""},{"Name":"ETag","Value":"W/\"9NCmFFvSZYsIWCQoks2vSnN9EMEwePSQhoXfFOCn5mg=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9NCmFFvSZYsIWCQoks2vSnN9EMEwePSQhoXfFOCn5mg="}]},{"Route":"_content/OpenArchival.Blazor.FileViewer/OpenArchival.Blazor.FileViewer.bundle.scp.css","AssetFile":"_content/OpenArchival.Blazor.FileViewer/OpenArchival.Blazor.FileViewer.83wakjp31g.bundle.scp.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"186"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"9NCmFFvSZYsIWCQoks2vSnN9EMEwePSQhoXfFOCn5mg=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9NCmFFvSZYsIWCQoks2vSnN9EMEwePSQhoXfFOCn5mg="}]},{"Route":"_content/OpenArchival.Blazor.FileViewer/OpenArchival.Blazor.FileViewer.bundle.scp.css.gz","AssetFile":"_content/OpenArchival.Blazor.FileViewer/OpenArchival.Blazor.FileViewer.83wakjp31g.bundle.scp.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"162"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"w7pUrtgbGsKChPQ+JZf6wIJIlRo5ItP1AJKKjbLPBUM=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-w7pUrtgbGsKChPQ+JZf6wIJIlRo5ItP1AJKKjbLPBUM="}]},{"Route":"favicon.2jeq8efc6q.ico","AssetFile":"favicon.ico.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000336021505"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2975"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"b7CPHqpoIGsGVgOrEO+r2XPyaLrLUBwkA6R2jOMbS7M=\""},{"Name":"ETag","Value":"W/\"8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2jeq8efc6q"},{"Name":"integrity","Value":"sha256-8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA="},{"Name":"label","Value":"favicon.ico"}]},{"Route":"favicon.2jeq8efc6q.ico","AssetFile":"favicon.ico","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"15086"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA=\""},{"Name":"Last-Modified","Value":"Tue, 09 Sep 2025 18:04:11 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2jeq8efc6q"},{"Name":"integrity","Value":"sha256-8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA="},{"Name":"label","Value":"favicon.ico"}]},{"Route":"favicon.2jeq8efc6q.ico.gz","AssetFile":"favicon.ico.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":"2975"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"b7CPHqpoIGsGVgOrEO+r2XPyaLrLUBwkA6R2jOMbS7M=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2jeq8efc6q"},{"Name":"integrity","Value":"sha256-b7CPHqpoIGsGVgOrEO+r2XPyaLrLUBwkA6R2jOMbS7M="},{"Name":"label","Value":"favicon.ico.gz"}]},{"Route":"favicon.ico","AssetFile":"favicon.ico.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000336021505"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2975"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"b7CPHqpoIGsGVgOrEO+r2XPyaLrLUBwkA6R2jOMbS7M=\""},{"Name":"ETag","Value":"W/\"8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA="}]},{"Route":"favicon.ico","AssetFile":"favicon.ico","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"15086"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA=\""},{"Name":"Last-Modified","Value":"Tue, 09 Sep 2025 18:04:11 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA="}]},{"Route":"favicon.ico.gz","AssetFile":"favicon.ico.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2975"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"b7CPHqpoIGsGVgOrEO+r2XPyaLrLUBwkA6R2jOMbS7M=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-b7CPHqpoIGsGVgOrEO+r2XPyaLrLUBwkA6R2jOMbS7M="}]},{"Route":"js/downloadHelper.js","AssetFile":"js/downloadHelper.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.004237288136"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"235"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"FAg7kmeFsh8jkhGZs/GZGp9lb/FDf6lNCN/9/HzL7Dc=\""},{"Name":"ETag","Value":"W/\"1Y0+hi0re9m8XGNP8FnpYyxExUDrHq+JH6HMHvv/ECc=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1Y0+hi0re9m8XGNP8FnpYyxExUDrHq+JH6HMHvv/ECc="}]},{"Route":"js/downloadHelper.js","AssetFile":"js/downloadHelper.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"346"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"1Y0+hi0re9m8XGNP8FnpYyxExUDrHq+JH6HMHvv/ECc=\""},{"Name":"Last-Modified","Value":"Tue, 07 Oct 2025 16:44:09 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1Y0+hi0re9m8XGNP8FnpYyxExUDrHq+JH6HMHvv/ECc="}]},{"Route":"js/downloadHelper.js.gz","AssetFile":"js/downloadHelper.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"235"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"FAg7kmeFsh8jkhGZs/GZGp9lb/FDf6lNCN/9/HzL7Dc=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FAg7kmeFsh8jkhGZs/GZGp9lb/FDf6lNCN/9/HzL7Dc="}]},{"Route":"js/downloadHelper.zy4ksw00d9.js","AssetFile":"js/downloadHelper.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.004237288136"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"235"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"FAg7kmeFsh8jkhGZs/GZGp9lb/FDf6lNCN/9/HzL7Dc=\""},{"Name":"ETag","Value":"W/\"1Y0+hi0re9m8XGNP8FnpYyxExUDrHq+JH6HMHvv/ECc=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zy4ksw00d9"},{"Name":"integrity","Value":"sha256-1Y0+hi0re9m8XGNP8FnpYyxExUDrHq+JH6HMHvv/ECc="},{"Name":"label","Value":"js/downloadHelper.js"}]},{"Route":"js/downloadHelper.zy4ksw00d9.js","AssetFile":"js/downloadHelper.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"346"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"1Y0+hi0re9m8XGNP8FnpYyxExUDrHq+JH6HMHvv/ECc=\""},{"Name":"Last-Modified","Value":"Tue, 07 Oct 2025 16:44:09 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zy4ksw00d9"},{"Name":"integrity","Value":"sha256-1Y0+hi0re9m8XGNP8FnpYyxExUDrHq+JH6HMHvv/ECc="},{"Name":"label","Value":"js/downloadHelper.js"}]},{"Route":"js/downloadHelper.zy4ksw00d9.js.gz","AssetFile":"js/downloadHelper.js.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":"235"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"FAg7kmeFsh8jkhGZs/GZGp9lb/FDf6lNCN/9/HzL7Dc=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zy4ksw00d9"},{"Name":"integrity","Value":"sha256-FAg7kmeFsh8jkhGZs/GZGp9lb/FDf6lNCN/9/HzL7Dc="},{"Name":"label","Value":"js/downloadHelper.js.gz"}]},{"Route":"js/imageSizeGetter.6k2m17moin.js","AssetFile":"js/imageSizeGetter.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001519756839"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"657"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"E7gYH0HUXBVbrGIOQeZXi1EKyLtFMQvfEx1uCLzd+H0=\""},{"Name":"ETag","Value":"W/\"djPj7C64LX1RuirqUYjojHK/GAwYXsTwjRrnBSiYW9k=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6k2m17moin"},{"Name":"integrity","Value":"sha256-djPj7C64LX1RuirqUYjojHK/GAwYXsTwjRrnBSiYW9k="},{"Name":"label","Value":"js/imageSizeGetter.js"}]},{"Route":"js/imageSizeGetter.6k2m17moin.js","AssetFile":"js/imageSizeGetter.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1824"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"djPj7C64LX1RuirqUYjojHK/GAwYXsTwjRrnBSiYW9k=\""},{"Name":"Last-Modified","Value":"Tue, 07 Oct 2025 20:16:31 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6k2m17moin"},{"Name":"integrity","Value":"sha256-djPj7C64LX1RuirqUYjojHK/GAwYXsTwjRrnBSiYW9k="},{"Name":"label","Value":"js/imageSizeGetter.js"}]},{"Route":"js/imageSizeGetter.6k2m17moin.js.gz","AssetFile":"js/imageSizeGetter.js.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":"657"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"E7gYH0HUXBVbrGIOQeZXi1EKyLtFMQvfEx1uCLzd+H0=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6k2m17moin"},{"Name":"integrity","Value":"sha256-E7gYH0HUXBVbrGIOQeZXi1EKyLtFMQvfEx1uCLzd+H0="},{"Name":"label","Value":"js/imageSizeGetter.js.gz"}]},{"Route":"js/imageSizeGetter.js","AssetFile":"js/imageSizeGetter.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001519756839"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"657"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"E7gYH0HUXBVbrGIOQeZXi1EKyLtFMQvfEx1uCLzd+H0=\""},{"Name":"ETag","Value":"W/\"djPj7C64LX1RuirqUYjojHK/GAwYXsTwjRrnBSiYW9k=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-djPj7C64LX1RuirqUYjojHK/GAwYXsTwjRrnBSiYW9k="}]},{"Route":"js/imageSizeGetter.js","AssetFile":"js/imageSizeGetter.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1824"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"djPj7C64LX1RuirqUYjojHK/GAwYXsTwjRrnBSiYW9k=\""},{"Name":"Last-Modified","Value":"Tue, 07 Oct 2025 20:16:31 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-djPj7C64LX1RuirqUYjojHK/GAwYXsTwjRrnBSiYW9k="}]},{"Route":"js/imageSizeGetter.js.gz","AssetFile":"js/imageSizeGetter.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"657"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"E7gYH0HUXBVbrGIOQeZXi1EKyLtFMQvfEx1uCLzd+H0=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-E7gYH0HUXBVbrGIOQeZXi1EKyLtFMQvfEx1uCLzd+H0="}]}]} \ No newline at end of file diff --git a/OpenArchival.Blazor/bin/Debug/net9.0/OpenArchival.Blazor.staticwebassets.runtime.DT.json b/OpenArchival.Blazor/bin/Debug/net9.0/OpenArchival.Blazor.staticwebassets.runtime.DT.json index cc3130c..0521603 100644 --- a/OpenArchival.Blazor/bin/Debug/net9.0/OpenArchival.Blazor.staticwebassets.runtime.DT.json +++ b/OpenArchival.Blazor/bin/Debug/net9.0/OpenArchival.Blazor.staticwebassets.runtime.DT.json @@ -2,8 +2,11 @@ "ContentRoots": [ "/src/OpenArchival.Blazor/wwwroot/", "/src/OpenArchival.Blazor/obj/Debug/net9.0/compressed/", + "/src/OpenArchival.Blazor/obj/Debug/net9.0/scopedcss/bundle/", "/.nuget/packages/codebeam.mudextensions/6.3.0/staticwebassets/", - "/.nuget/packages/mudblazor/8.12.0/staticwebassets/" + "/.nuget/packages/mudblazor/8.13.0/staticwebassets/", + "/src/OpenArchival.FileViewer/obj/Debug/net9.0/scopedcss/projectbundle/", + "/src/OpenArchival.FileViewer/obj/Debug/net9.0/compressed/" ], "Root": { "Children": { @@ -23,6 +26,60 @@ }, "Patterns": null }, + "OpenArchival.Blazor.styles.css": { + "Children": null, + "Asset": { + "ContentRootIndex": 2, + "SubPath": "OpenArchival.Blazor.styles.css" + }, + "Patterns": null + }, + "OpenArchival.Blazor.styles.css.gz": { + "Children": null, + "Asset": { + "ContentRootIndex": 1, + "SubPath": "6sncp75uxm-j7aimhk5l1.gz" + }, + "Patterns": null + }, + "js": { + "Children": { + "downloadHelper.js": { + "Children": null, + "Asset": { + "ContentRootIndex": 0, + "SubPath": "js/downloadHelper.js" + }, + "Patterns": null + }, + "downloadHelper.js.gz": { + "Children": null, + "Asset": { + "ContentRootIndex": 1, + "SubPath": "i11yscesdd-zy4ksw00d9.gz" + }, + "Patterns": null + }, + "imageSizeGetter.js": { + "Children": null, + "Asset": { + "ContentRootIndex": 0, + "SubPath": "js/imageSizeGetter.js" + }, + "Patterns": null + }, + "imageSizeGetter.js.gz": { + "Children": null, + "Asset": { + "ContentRootIndex": 1, + "SubPath": "rou3pye8gp-6k2m17moin.gz" + }, + "Patterns": null + } + }, + "Asset": null, + "Patterns": null + }, "_content": { "Children": { "CodeBeam.MudExtensions": { @@ -30,7 +87,7 @@ "Mud_Secondary.png": { "Children": null, "Asset": { - "ContentRootIndex": 2, + "ContentRootIndex": 3, "SubPath": "Mud_Secondary.png" }, "Patterns": null @@ -38,7 +95,7 @@ "MudExtensions.min.css": { "Children": null, "Asset": { - "ContentRootIndex": 2, + "ContentRootIndex": 3, "SubPath": "MudExtensions.min.css" }, "Patterns": null @@ -54,7 +111,7 @@ "MudExtensions.min.js": { "Children": null, "Asset": { - "ContentRootIndex": 2, + "ContentRootIndex": 3, "SubPath": "MudExtensions.min.js" }, "Patterns": null @@ -76,7 +133,7 @@ "MudBlazor.min.css": { "Children": null, "Asset": { - "ContentRootIndex": 3, + "ContentRootIndex": 4, "SubPath": "MudBlazor.min.css" }, "Patterns": null @@ -85,14 +142,14 @@ "Children": null, "Asset": { "ContentRootIndex": 1, - "SubPath": "tzxjg6is5z-0n6lrtb02s.gz" + "SubPath": "tzxjg6is5z-jk5eo7zo4m.gz" }, "Patterns": null }, "MudBlazor.min.js": { "Children": null, "Asset": { - "ContentRootIndex": 3, + "ContentRootIndex": 4, "SubPath": "MudBlazor.min.js" }, "Patterns": null @@ -101,7 +158,29 @@ "Children": null, "Asset": { "ContentRootIndex": 1, - "SubPath": "0wz98yz2xy-lftp6ydp6b.gz" + "SubPath": "0wz98yz2xy-tjzqk7tnel.gz" + }, + "Patterns": null + } + }, + "Asset": null, + "Patterns": null + }, + "OpenArchival.FileViewer": { + "Children": { + "OpenArchival.FileViewer.y5glfmno8n.bundle.scp.css": { + "Children": null, + "Asset": { + "ContentRootIndex": 5, + "SubPath": "OpenArchival.FileViewer.bundle.scp.css" + }, + "Patterns": null + }, + "OpenArchival.FileViewer.y5glfmno8n.bundle.scp.css.gz": { + "Children": null, + "Asset": { + "ContentRootIndex": 6, + "SubPath": "54ua9qx2gl-y5glfmno8n.gz" }, "Patterns": null } diff --git a/OpenArchival.Blazor/bin/Debug/net9.0/OpenArchival.Blazor.staticwebassets.runtime.json b/OpenArchival.Blazor/bin/Debug/net9.0/OpenArchival.Blazor.staticwebassets.runtime.json index 38513ed..59bb7ca 100644 --- a/OpenArchival.Blazor/bin/Debug/net9.0/OpenArchival.Blazor.staticwebassets.runtime.json +++ b/OpenArchival.Blazor/bin/Debug/net9.0/OpenArchival.Blazor.staticwebassets.runtime.json @@ -1 +1 @@ -{"ContentRoots":["D:\\Nextcloud\\Documents\\Open-Archival\\OpenArchival.Blazor\\wwwroot\\","D:\\Nextcloud\\Documents\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\","C:\\Users\\Vincent Allen\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\","C:\\Users\\Vincent Allen\\.nuget\\packages\\mudblazor\\8.12.0\\staticwebassets\\"],"Root":{"Children":{"favicon.ico":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"favicon.ico"},"Patterns":null},"favicon.ico.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"uorc1pfmvs-2jeq8efc6q.gz"},"Patterns":null},"_content":{"Children":{"CodeBeam.MudExtensions":{"Children":{"Mud_Secondary.png":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"Mud_Secondary.png"},"Patterns":null},"MudExtensions.min.css":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"MudExtensions.min.css"},"Patterns":null},"MudExtensions.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"24gzn4tg1a-qz4batx9cb.gz"},"Patterns":null},"MudExtensions.min.js":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"MudExtensions.min.js"},"Patterns":null},"MudExtensions.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"stwk5nfoxp-loe7cozwzj.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"MudBlazor":{"Children":{"MudBlazor.min.css":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"MudBlazor.min.css"},"Patterns":null},"MudBlazor.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"tzxjg6is5z-0n6lrtb02s.gz"},"Patterns":null},"MudBlazor.min.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"MudBlazor.min.js"},"Patterns":null},"MudBlazor.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"0wz98yz2xy-lftp6ydp6b.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}} \ No newline at end of file +{"ContentRoots":["C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\wwwroot\\","C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\","C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\scopedcss\\bundle\\","C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\","C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\","C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\scopedcss\\projectbundle\\","C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\compressed\\"],"Root":{"Children":{"favicon.ico":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"favicon.ico"},"Patterns":null},"favicon.ico.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"uorc1pfmvs-2jeq8efc6q.gz"},"Patterns":null},"OpenArchival.Blazor.styles.css":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"OpenArchival.Blazor.styles.css"},"Patterns":null},"OpenArchival.Blazor.styles.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"6sncp75uxm-of6ssq9pmk.gz"},"Patterns":null},"js":{"Children":{"downloadHelper.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/downloadHelper.js"},"Patterns":null},"downloadHelper.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"i11yscesdd-zy4ksw00d9.gz"},"Patterns":null},"imageSizeGetter.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/imageSizeGetter.js"},"Patterns":null},"imageSizeGetter.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"rou3pye8gp-6k2m17moin.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"_content":{"Children":{"CodeBeam.MudExtensions":{"Children":{"Mud_Secondary.png":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"Mud_Secondary.png"},"Patterns":null},"MudExtensions.min.css":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"MudExtensions.min.css"},"Patterns":null},"MudExtensions.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"24gzn4tg1a-qz4batx9cb.gz"},"Patterns":null},"MudExtensions.min.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"MudExtensions.min.js"},"Patterns":null},"MudExtensions.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"stwk5nfoxp-loe7cozwzj.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"MudBlazor":{"Children":{"MudBlazor.min.css":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"MudBlazor.min.css"},"Patterns":null},"MudBlazor.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"tzxjg6is5z-jk5eo7zo4m.gz"},"Patterns":null},"MudBlazor.min.js":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"MudBlazor.min.js"},"Patterns":null},"MudBlazor.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"0wz98yz2xy-tjzqk7tnel.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"OpenArchival.Blazor.FileViewer":{"Children":{"OpenArchival.Blazor.FileViewer.83wakjp31g.bundle.scp.css":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"OpenArchival.Blazor.FileViewer.bundle.scp.css"},"Patterns":null},"OpenArchival.Blazor.FileViewer.83wakjp31g.bundle.scp.css.gz":{"Children":null,"Asset":{"ContentRootIndex":6,"SubPath":"oacsgz2ky3-83wakjp31g.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}} \ No newline at end of file diff --git a/OpenArchival.Blazor/bin/Debug/net9.0/OpenArchival.DataAccess.dll b/OpenArchival.Blazor/bin/Debug/net9.0/OpenArchival.DataAccess.dll index 1857770..0a0293e 100644 Binary files a/OpenArchival.Blazor/bin/Debug/net9.0/OpenArchival.DataAccess.dll and b/OpenArchival.Blazor/bin/Debug/net9.0/OpenArchival.DataAccess.dll differ diff --git a/OpenArchival.Blazor/bin/Debug/net9.0/OpenArchival.DataAccess.exe b/OpenArchival.Blazor/bin/Debug/net9.0/OpenArchival.DataAccess.exe index a321073..0caa7a8 100644 Binary files a/OpenArchival.Blazor/bin/Debug/net9.0/OpenArchival.DataAccess.exe and b/OpenArchival.Blazor/bin/Debug/net9.0/OpenArchival.DataAccess.exe differ diff --git a/OpenArchival.Blazor/bin/Debug/net9.0/OpenArchival.DataAccess.pdb b/OpenArchival.Blazor/bin/Debug/net9.0/OpenArchival.DataAccess.pdb index f3a24b7..7e038b6 100644 Binary files a/OpenArchival.Blazor/bin/Debug/net9.0/OpenArchival.DataAccess.pdb and b/OpenArchival.Blazor/bin/Debug/net9.0/OpenArchival.DataAccess.pdb differ diff --git a/OpenArchival.Blazor/bin/Debug/net9.0/System.Formats.Asn1.dll b/OpenArchival.Blazor/bin/Debug/net9.0/System.Formats.Asn1.dll new file mode 100644 index 0000000..7315a50 Binary files /dev/null and b/OpenArchival.Blazor/bin/Debug/net9.0/System.Formats.Asn1.dll differ diff --git a/OpenArchival.Blazor/bin/Debug/net9.0/System.Text.Json.dll b/OpenArchival.Blazor/bin/Debug/net9.0/System.Text.Json.dll new file mode 100644 index 0000000..c61bda8 Binary files /dev/null and b/OpenArchival.Blazor/bin/Debug/net9.0/System.Text.Json.dll differ diff --git a/OpenArchival.Blazor/obj/Container/AbsoluteOutputAssemblyPath.cache b/OpenArchival.Blazor/obj/Container/AbsoluteOutputAssemblyPath.cache deleted file mode 100644 index c851b6b..0000000 --- a/OpenArchival.Blazor/obj/Container/AbsoluteOutputAssemblyPath.cache +++ /dev/null @@ -1 +0,0 @@ -OpenArchival.Blazor.dll \ No newline at end of file diff --git a/OpenArchival.Blazor/obj/Container/ContainerCreationResult.cache b/OpenArchival.Blazor/obj/Container/ContainerCreationResult.cache deleted file mode 100644 index 2adf810..0000000 --- a/OpenArchival.Blazor/obj/Container/ContainerCreationResult.cache +++ /dev/null @@ -1 +0,0 @@ -Skipped \ No newline at end of file diff --git a/OpenArchival.Blazor/obj/Container/ContainerDevelopmentMode.cache b/OpenArchival.Blazor/obj/Container/ContainerDevelopmentMode.cache deleted file mode 100644 index ea9503c..0000000 --- a/OpenArchival.Blazor/obj/Container/ContainerDevelopmentMode.cache +++ /dev/null @@ -1 +0,0 @@ -Regular \ No newline at end of file diff --git a/OpenArchival.Blazor/obj/Container/ContainerOperatingSystemFlavor.cache b/OpenArchival.Blazor/obj/Container/ContainerOperatingSystemFlavor.cache deleted file mode 100644 index c486999..0000000 --- a/OpenArchival.Blazor/obj/Container/ContainerOperatingSystemFlavor.cache +++ /dev/null @@ -1 +0,0 @@ -Unknown \ No newline at end of file diff --git a/OpenArchival.Blazor/obj/Container/ImageBuildContext.cache b/OpenArchival.Blazor/obj/Container/ImageBuildContext.cache deleted file mode 100644 index d8d329d..0000000 --- a/OpenArchival.Blazor/obj/Container/ImageBuildContext.cache +++ /dev/null @@ -1 +0,0 @@ -eqGVna2iIsdYIrK3CfUzNeKyz/tx+QknFKjGJTRm8eo= \ No newline at end of file diff --git a/OpenArchival.Blazor/obj/Container/ImageId.cache b/OpenArchival.Blazor/obj/Container/ImageId.cache deleted file mode 100644 index 35be6d0..0000000 --- a/OpenArchival.Blazor/obj/Container/ImageId.cache +++ /dev/null @@ -1 +0,0 @@ -sha256:930b0122514e9d9232b519e54aefa4419876c55acfef0485060504d5aaf73a12 \ No newline at end of file diff --git a/OpenArchival.Blazor/obj/Container/OperatingSystemName.cache b/OpenArchival.Blazor/obj/Container/OperatingSystemName.cache deleted file mode 100644 index 3ab1070..0000000 --- a/OpenArchival.Blazor/obj/Container/OperatingSystemName.cache +++ /dev/null @@ -1 +0,0 @@ -Linux \ No newline at end of file diff --git a/OpenArchival.Blazor/obj/Container/TargetFramework.cache b/OpenArchival.Blazor/obj/Container/TargetFramework.cache deleted file mode 100644 index 8d2863a..0000000 --- a/OpenArchival.Blazor/obj/Container/TargetFramework.cache +++ /dev/null @@ -1 +0,0 @@ -DotNetCore \ No newline at end of file diff --git a/OpenArchival.Blazor/obj/Debug/net9.0/OpenArchival.Blazor.AssemblyInfo.cs b/OpenArchival.Blazor/obj/Debug/net9.0/OpenArchival.Blazor.AssemblyInfo.cs index 45575d2..bbd9142 100644 --- a/OpenArchival.Blazor/obj/Debug/net9.0/OpenArchival.Blazor.AssemblyInfo.cs +++ b/OpenArchival.Blazor/obj/Debug/net9.0/OpenArchival.Blazor.AssemblyInfo.cs @@ -15,7 +15,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("OpenArchival.Blazor")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+77318e87d12fb2935cd521cd7ef445296c08f8af")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+781793a27f2e164808340b1adb5ce70e1800b187")] [assembly: System.Reflection.AssemblyProductAttribute("OpenArchival.Blazor")] [assembly: System.Reflection.AssemblyTitleAttribute("OpenArchival.Blazor")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/OpenArchival.Blazor/obj/Debug/net9.0/OpenArchival.Blazor.AssemblyInfoInputs.cache b/OpenArchival.Blazor/obj/Debug/net9.0/OpenArchival.Blazor.AssemblyInfoInputs.cache index f9b41fa..e4db939 100644 --- a/OpenArchival.Blazor/obj/Debug/net9.0/OpenArchival.Blazor.AssemblyInfoInputs.cache +++ b/OpenArchival.Blazor/obj/Debug/net9.0/OpenArchival.Blazor.AssemblyInfoInputs.cache @@ -1 +1 @@ -81608e7eca164e8f81ef94a6b7168b742836f607d543df6316c15c40499cc66e +0e68d81bfe49b124ea773b25552b325a3290f5e4f1084607b2b270ed868982d0 diff --git a/OpenArchival.Blazor/obj/Debug/net9.0/OpenArchival.Blazor.GeneratedMSBuildEditorConfig.editorconfig b/OpenArchival.Blazor/obj/Debug/net9.0/OpenArchival.Blazor.GeneratedMSBuildEditorConfig.editorconfig index 8fd7ffe..9ef36d1 100644 --- a/OpenArchival.Blazor/obj/Debug/net9.0/OpenArchival.Blazor.GeneratedMSBuildEditorConfig.editorconfig +++ b/OpenArchival.Blazor/obj/Debug/net9.0/OpenArchival.Blazor.GeneratedMSBuildEditorConfig.editorconfig @@ -20,281 +20,281 @@ build_property.MudAllowedAttributePattern = build_property.MudAllowedAttributeList = build_property.RootNamespace = OpenArchival.Blazor build_property.RootNamespace = OpenArchival.Blazor -build_property.ProjectDir = D:\Nextcloud\Documents\Open-Archival\OpenArchival.Blazor\ +build_property.ProjectDir = C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\ build_property.EnableComHosting = build_property.EnableGeneratedComInterfaceComImportInterop = build_property.RazorLangVersion = 9.0 build_property.SupportLocalizedComponentNames = build_property.GenerateRazorMetadataSourceChecksumAttributes = -build_property.MSBuildProjectDirectory = D:\Nextcloud\Documents\Open-Archival\OpenArchival.Blazor +build_property.MSBuildProjectDirectory = C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor build_property._RazorSourceGeneratorDebug = build_property.EffectiveAnalysisLevelStyle = 9.0 build_property.EnableCodeStyleSeverity = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/AccessDenied.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/AccessDenied.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFBhZ2VzXEFjY2Vzc0RlbmllZC5yYXpvcg== build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/ConfirmEmail.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/ConfirmEmail.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFBhZ2VzXENvbmZpcm1FbWFpbC5yYXpvcg== build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/ConfirmEmailChange.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/ConfirmEmailChange.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFBhZ2VzXENvbmZpcm1FbWFpbENoYW5nZS5yYXpvcg== build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/ExternalLogin.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/ExternalLogin.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFBhZ2VzXEV4dGVybmFsTG9naW4ucmF6b3I= build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/ForgotPassword.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/ForgotPassword.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFBhZ2VzXEZvcmdvdFBhc3N3b3JkLnJhem9y build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/ForgotPasswordConfirmation.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/ForgotPasswordConfirmation.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFBhZ2VzXEZvcmdvdFBhc3N3b3JkQ29uZmlybWF0aW9uLnJhem9y build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/InvalidPasswordReset.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/InvalidPasswordReset.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFBhZ2VzXEludmFsaWRQYXNzd29yZFJlc2V0LnJhem9y build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/InvalidUser.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/InvalidUser.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFBhZ2VzXEludmFsaWRVc2VyLnJhem9y build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/Lockout.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/Lockout.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFBhZ2VzXExvY2tvdXQucmF6b3I= build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/Login.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/Login.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFBhZ2VzXExvZ2luLnJhem9y build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/LoginWith2fa.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/LoginWith2fa.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFBhZ2VzXExvZ2luV2l0aDJmYS5yYXpvcg== build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/LoginWithRecoveryCode.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/LoginWithRecoveryCode.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFBhZ2VzXExvZ2luV2l0aFJlY292ZXJ5Q29kZS5yYXpvcg== build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/Manage/ChangePassword.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/Manage/ChangePassword.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFBhZ2VzXE1hbmFnZVxDaGFuZ2VQYXNzd29yZC5yYXpvcg== build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/Manage/Component.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/Manage/Component.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFBhZ2VzXE1hbmFnZVxDb21wb25lbnQucmF6b3I= build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/Manage/Component1.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/Manage/Component1.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFBhZ2VzXE1hbmFnZVxDb21wb25lbnQxLnJhem9y build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/Manage/DeletePersonalData.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/Manage/DeletePersonalData.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFBhZ2VzXE1hbmFnZVxEZWxldGVQZXJzb25hbERhdGEucmF6b3I= build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/Manage/Disable2fa.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/Manage/Disable2fa.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFBhZ2VzXE1hbmFnZVxEaXNhYmxlMmZhLnJhem9y build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/Manage/Email.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/Manage/Email.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFBhZ2VzXE1hbmFnZVxFbWFpbC5yYXpvcg== build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/Manage/EnableAuthenticator.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/Manage/EnableAuthenticator.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFBhZ2VzXE1hbmFnZVxFbmFibGVBdXRoZW50aWNhdG9yLnJhem9y build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/Manage/ExternalLogins.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/Manage/ExternalLogins.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFBhZ2VzXE1hbmFnZVxFeHRlcm5hbExvZ2lucy5yYXpvcg== build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/Manage/GenerateRecoveryCodes.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/Manage/GenerateRecoveryCodes.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFBhZ2VzXE1hbmFnZVxHZW5lcmF0ZVJlY292ZXJ5Q29kZXMucmF6b3I= build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/Manage/Index.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/Manage/Index.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFBhZ2VzXE1hbmFnZVxJbmRleC5yYXpvcg== build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/Manage/PersonalData.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/Manage/PersonalData.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFBhZ2VzXE1hbmFnZVxQZXJzb25hbERhdGEucmF6b3I= build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/Manage/ResetAuthenticator.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/Manage/ResetAuthenticator.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFBhZ2VzXE1hbmFnZVxSZXNldEF1dGhlbnRpY2F0b3IucmF6b3I= build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/Manage/SetPassword.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/Manage/SetPassword.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFBhZ2VzXE1hbmFnZVxTZXRQYXNzd29yZC5yYXpvcg== build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/Manage/TwoFactorAuthentication.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/Manage/TwoFactorAuthentication.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFBhZ2VzXE1hbmFnZVxUd29GYWN0b3JBdXRoZW50aWNhdGlvbi5yYXpvcg== build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/Manage/_Imports.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/Manage/_Imports.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFBhZ2VzXE1hbmFnZVxfSW1wb3J0cy5yYXpvcg== build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/Register.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/Register.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFBhZ2VzXFJlZ2lzdGVyLnJhem9y build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/RegisterConfirmation.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/RegisterConfirmation.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFBhZ2VzXFJlZ2lzdGVyQ29uZmlybWF0aW9uLnJhem9y build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/ResendEmailConfirmation.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/ResendEmailConfirmation.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFBhZ2VzXFJlc2VuZEVtYWlsQ29uZmlybWF0aW9uLnJhem9y build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/ResetPassword.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/ResetPassword.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFBhZ2VzXFJlc2V0UGFzc3dvcmQucmF6b3I= build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/ResetPasswordConfirmation.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/ResetPasswordConfirmation.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFBhZ2VzXFJlc2V0UGFzc3dvcmRDb25maXJtYXRpb24ucmF6b3I= build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/_Imports.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/_Imports.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFBhZ2VzXF9JbXBvcnRzLnJhem9y build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Shared/ExternalLoginPicker.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Shared/ExternalLoginPicker.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFNoYXJlZFxFeHRlcm5hbExvZ2luUGlja2VyLnJhem9y build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Shared/ManageLayout.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Shared/ManageLayout.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFNoYXJlZFxNYW5hZ2VMYXlvdXQucmF6b3I= build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Shared/ManageNavMenu.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Shared/ManageNavMenu.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFNoYXJlZFxNYW5hZ2VOYXZNZW51LnJhem9y build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Shared/RedirectToLogin.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Shared/RedirectToLogin.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFNoYXJlZFxSZWRpcmVjdFRvTG9naW4ucmF6b3I= build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Shared/ShowRecoveryCodes.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Shared/ShowRecoveryCodes.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFNoYXJlZFxTaG93UmVjb3ZlcnlDb2Rlcy5yYXpvcg== build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Shared/StatusMessage.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Shared/StatusMessage.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFNoYXJlZFxTdGF0dXNNZXNzYWdlLnJhem9y build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/App.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/App.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBcHAucmF6b3I= build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/CustomComponents/ChipContainer.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/CustomComponents/ChipContainer.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xDdXN0b21Db21wb25lbnRzXENoaXBDb250YWluZXIucmF6b3I= build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/CustomComponents/UploadDropBox.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/CustomComponents/UploadDropBox.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xDdXN0b21Db21wb25lbnRzXFVwbG9hZERyb3BCb3gucmF6b3I= build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Layout/MainLayout.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Layout/MainLayout.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xMYXlvdXRcTWFpbkxheW91dC5yYXpvcg== build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Layout/NavMenu.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Layout/NavMenu.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xMYXlvdXRcTmF2TWVudS5yYXpvcg== build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Pages/Administration/ArchiveConfiguration.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Pages/Administration/ArchiveConfiguration.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xBZG1pbmlzdHJhdGlvblxBcmNoaXZlQ29uZmlndXJhdGlvbi5yYXpvcg== build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Pages/Administration/ArchiveItems/AddArchiveGroupingComponent.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Pages/Administration/ArchiveItems/AddArchiveGroupingComponent.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xBZG1pbmlzdHJhdGlvblxBcmNoaXZlSXRlbXNcQWRkQXJjaGl2ZUdyb3VwaW5nQ29tcG9uZW50LnJhem9y build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Pages/Administration/ArchiveItems/AddGroupingDialog.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Pages/Administration/ArchiveItems/AddGroupingDialog.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xBZG1pbmlzdHJhdGlvblxBcmNoaXZlSXRlbXNcQWRkR3JvdXBpbmdEaWFsb2cucmF6b3I= build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Pages/Administration/ArchiveItems/ArchiveEntryCreatorCard.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Pages/Administration/ArchiveItems/ArchiveEntryCreatorCard.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xBZG1pbmlzdHJhdGlvblxBcmNoaXZlSXRlbXNcQXJjaGl2ZUVudHJ5Q3JlYXRvckNhcmQucmF6b3I= build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Pages/Administration/ArchiveItems/ArchiveGroupingsTable.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Pages/Administration/ArchiveItems/ArchiveGroupingsTable.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xBZG1pbmlzdHJhdGlvblxBcmNoaXZlSXRlbXNcQXJjaGl2ZUdyb3VwaW5nc1RhYmxlLnJhem9y build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Pages/Administration/ArchiveItems/Component.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Pages/Administration/ArchiveItems/Component.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xBZG1pbmlzdHJhdGlvblxBcmNoaXZlSXRlbXNcQ29tcG9uZW50LnJhem9y build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Pages/Administration/ArchiveItems/IdentifierTextBox.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Pages/Administration/ArchiveItems/IdentifierTextBox.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xBZG1pbmlzdHJhdGlvblxBcmNoaXZlSXRlbXNcSWRlbnRpZmllclRleHRCb3gucmF6b3I= build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Pages/Administration/Categories/CategoriesListComponent.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Pages/Administration/Categories/CategoriesListComponent.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xBZG1pbmlzdHJhdGlvblxDYXRlZ29yaWVzXENhdGVnb3JpZXNMaXN0Q29tcG9uZW50LnJhem9y build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Pages/Administration/Categories/CategoryCreatorDialog.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Pages/Administration/Categories/CategoryCreatorDialog.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xBZG1pbmlzdHJhdGlvblxDYXRlZ29yaWVzXENhdGVnb3J5Q3JlYXRvckRpYWxvZy5yYXpvcg== build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Pages/Administration/Categories/CategoryFieldCardComponent.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Pages/Administration/Categories/CategoryFieldCardComponent.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xBZG1pbmlzdHJhdGlvblxDYXRlZ29yaWVzXENhdGVnb3J5RmllbGRDYXJkQ29tcG9uZW50LnJhem9y build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Pages/Administration/Categories/ViewAddCategoriesComponent.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Pages/Administration/Categories/ViewAddCategoriesComponent.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xBZG1pbmlzdHJhdGlvblxDYXRlZ29yaWVzXFZpZXdBZGRDYXRlZ29yaWVzQ29tcG9uZW50LnJhem9y build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Pages/ArchiveDisplay/ArchiveEntryDisplay.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Pages/ArchiveDisplay/ArchiveEntryDisplay.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xBcmNoaXZlRGlzcGxheVxBcmNoaXZlRW50cnlEaXNwbGF5LnJhem9y build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Pages/ArchiveDisplay/ArchiveGroupingDisplay.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Pages/ArchiveDisplay/ArchiveGroupingDisplay.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xBcmNoaXZlRGlzcGxheVxBcmNoaXZlR3JvdXBpbmdEaXNwbGF5LnJhem9y build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Pages/ArchiveDisplay/ArtifactGroupingNotFound.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Pages/ArchiveDisplay/ArtifactGroupingNotFound.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xBcmNoaXZlRGlzcGxheVxBcnRpZmFjdEdyb3VwaW5nTm90Rm91bmQucmF6b3I= build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Pages/ArchiveDisplay/FileDisplayBase.razor] -build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xBcmNoaXZlRGlzcGxheVxGaWxlRGlzcGxheUJhc2UucmF6b3I= +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Pages/ArchiveDisplay/FileDisplayComponent.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xBcmNoaXZlRGlzcGxheVxGaWxlRGlzcGxheUNvbXBvbmVudC5yYXpvcg== build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Pages/ArchiveDisplay/FileDisplayImage.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Pages/ArchiveDisplay/FileDisplayImage.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xBcmNoaXZlRGlzcGxheVxGaWxlRGlzcGxheUltYWdlLnJhem9y build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Pages/Auth.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Pages/Auth.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xBdXRoLnJhem9y build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Pages/Counter.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Pages/Counter.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xDb3VudGVyLnJhem9y build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Pages/Error.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Pages/Error.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xFcnJvci5yYXpvcg== build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Pages/Home.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Pages/Home.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xIb21lLnJhem9y build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Pages/Weather.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Pages/Weather.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xXZWF0aGVyLnJhem9y build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Routes.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Routes.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xSb3V0ZXMucmF6b3I= build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/_Imports.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/_Imports.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xfSW1wb3J0cy5yYXpvcg== build_metadata.AdditionalFiles.CssScope = diff --git a/OpenArchival.Blazor/obj/Debug/net9.0/OpenArchival.Blazor.assets.cache b/OpenArchival.Blazor/obj/Debug/net9.0/OpenArchival.Blazor.assets.cache index 39f9daa..7c53296 100644 Binary files a/OpenArchival.Blazor/obj/Debug/net9.0/OpenArchival.Blazor.assets.cache and b/OpenArchival.Blazor/obj/Debug/net9.0/OpenArchival.Blazor.assets.cache differ diff --git a/OpenArchival.Blazor/obj/Debug/net9.0/OpenArchival.Blazor.csproj.AssemblyReference.cache b/OpenArchival.Blazor/obj/Debug/net9.0/OpenArchival.Blazor.csproj.AssemblyReference.cache index c48f02f..a98d555 100644 Binary files a/OpenArchival.Blazor/obj/Debug/net9.0/OpenArchival.Blazor.csproj.AssemblyReference.cache and b/OpenArchival.Blazor/obj/Debug/net9.0/OpenArchival.Blazor.csproj.AssemblyReference.cache differ diff --git a/OpenArchival.Blazor/obj/Debug/net9.0/OpenArchival.Blazor.csproj.CoreCompileInputs.cache b/OpenArchival.Blazor/obj/Debug/net9.0/OpenArchival.Blazor.csproj.CoreCompileInputs.cache index bab76d4..268d579 100644 --- a/OpenArchival.Blazor/obj/Debug/net9.0/OpenArchival.Blazor.csproj.CoreCompileInputs.cache +++ b/OpenArchival.Blazor/obj/Debug/net9.0/OpenArchival.Blazor.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -3c002a496efe6a49b054389c26a65eb608ce60b2cd639e44f0b71607edd27887 +1c732eaa21b8f477d7e5a2e440ac4ee4ec340e33725b306b4091a8fbe92407ac diff --git a/OpenArchival.Blazor/obj/Debug/net9.0/OpenArchival.Blazor.csproj.FileListAbsolute.txt b/OpenArchival.Blazor/obj/Debug/net9.0/OpenArchival.Blazor.csproj.FileListAbsolute.txt index d59821e..dac9201 100644 --- a/OpenArchival.Blazor/obj/Debug/net9.0/OpenArchival.Blazor.csproj.FileListAbsolute.txt +++ b/OpenArchival.Blazor/obj/Debug/net9.0/OpenArchival.Blazor.csproj.FileListAbsolute.txt @@ -1027,3 +1027,224 @@ D:\Nextcloud\Documents\Open-Archival\OpenArchival.Blazor\obj\Debug\net9.0\refint D:\Nextcloud\Documents\Open-Archival\OpenArchival.Blazor\obj\Debug\net9.0\OpenArchival.Blazor.pdb D:\Nextcloud\Documents\Open-Archival\OpenArchival.Blazor\obj\Debug\net9.0\OpenArchival.Blazor.genruntimeconfig.cache D:\Nextcloud\Documents\Open-Archival\OpenArchival.Blazor\obj\Debug\net9.0\ref\OpenArchival.Blazor.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\obj\Debug\net9.0\OpenArchival.Blazor.csproj.AssemblyReference.cache +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\obj\Debug\net9.0\rpswa.dswa.cache.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\obj\Debug\net9.0\OpenArchival.Blazor.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\obj\Debug\net9.0\OpenArchival.Blazor.AssemblyInfoInputs.cache +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\obj\Debug\net9.0\OpenArchival.Blazor.AssemblyInfo.cs +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\obj\Debug\net9.0\OpenArchival.Blazor.csproj.CoreCompileInputs.cache +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\obj\Debug\net9.0\OpenArchival.Blazor.MvcApplicationPartsAssemblyInfo.cache +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\obj\Debug\net9.0\OpenArchival.Blazor.sourcelink.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\OpenArchival.DataAccess.deps.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\OpenArchival.DataAccess.runtimeconfig.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\OpenArchival.DataAccess.staticwebassets.endpoints.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\OpenArchival.DataAccess.exe +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\OpenArchival.Blazor.CustomComponents.staticwebassets.runtime.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\OpenArchival.Blazor.CustomComponents.staticwebassets.endpoints.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\OpenArchival.Blazor.AdminPages.staticwebassets.runtime.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\OpenArchival.Blazor.AdminPages.staticwebassets.endpoints.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\OpenArchival.Blazor.FileViewer.staticwebassets.runtime.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\OpenArchival.Blazor.FileViewer.staticwebassets.endpoints.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\appsettings.Development.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\appsettings.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\appsettingstemplate.Development.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\appsettingstemplate.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\OpenArchival.Blazor.staticwebassets.runtime.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\OpenArchival.Blazor.staticwebassets.endpoints.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\OpenArchival.Blazor.exe +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\OpenArchival.Blazor.deps.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\OpenArchival.Blazor.runtimeconfig.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\OpenArchival.Blazor.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\OpenArchival.Blazor.pdb +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\Azure.Core.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\Azure.Identity.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\CodeBeam.MudExtensions.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\CsvHelper.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\Dapper.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\EntityFramework.SqlServer.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\EntityFramework.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\Humanizer.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\Microsoft.AspNetCore.Authorization.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\Microsoft.AspNetCore.Components.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\Microsoft.AspNetCore.Components.Forms.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\Microsoft.AspNetCore.Components.Web.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\Microsoft.AspNetCore.Cryptography.Internal.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\Microsoft.AspNetCore.Cryptography.KeyDerivation.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\Microsoft.AspNetCore.Metadata.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\Microsoft.Bcl.AsyncInterfaces.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\Microsoft.Build.Locator.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\Microsoft.CodeAnalysis.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\Microsoft.CodeAnalysis.CSharp.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\Microsoft.CodeAnalysis.CSharp.Workspaces.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\Microsoft.CodeAnalysis.Workspaces.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\Microsoft.CodeAnalysis.Workspaces.MSBuild.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\Microsoft.Data.SqlClient.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\Microsoft.EntityFrameworkCore.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\Microsoft.EntityFrameworkCore.Abstractions.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\Microsoft.EntityFrameworkCore.Design.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\Microsoft.EntityFrameworkCore.Relational.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\Microsoft.EntityFrameworkCore.SqlServer.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\Microsoft.Extensions.Caching.Abstractions.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\Microsoft.Extensions.Caching.Memory.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\Microsoft.Extensions.Configuration.Abstractions.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\Microsoft.Extensions.DependencyInjection.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\Microsoft.Extensions.DependencyModel.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\Microsoft.Extensions.Identity.Core.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\Microsoft.Extensions.Identity.Stores.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\Microsoft.Extensions.Localization.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\Microsoft.Extensions.Localization.Abstractions.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\Microsoft.Extensions.Logging.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\Microsoft.Extensions.Logging.Abstractions.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\Microsoft.Extensions.Options.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\Microsoft.Extensions.Primitives.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\Microsoft.Identity.Client.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\Microsoft.Identity.Client.Extensions.Msal.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\Microsoft.IdentityModel.Abstractions.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\Microsoft.IdentityModel.JsonWebTokens.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\Microsoft.IdentityModel.Logging.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\Microsoft.IdentityModel.Protocols.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\Microsoft.IdentityModel.Tokens.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\Microsoft.JSInterop.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\Microsoft.SqlServer.Server.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\Microsoft.Win32.SystemEvents.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\Mono.TextTemplating.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\MudBlazor.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\Npgsql.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\Npgsql.DependencyInjection.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\Npgsql.EntityFrameworkCore.PostgreSQL.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\System.ClientModel.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\System.CodeDom.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\System.Composition.AttributedModel.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\System.Composition.Convention.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\System.Composition.Hosting.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\System.Composition.Runtime.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\System.Composition.TypedParts.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\System.Configuration.ConfigurationManager.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\System.Data.SqlClient.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\System.Drawing.Common.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\System.Formats.Asn1.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\System.IdentityModel.Tokens.Jwt.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\System.Memory.Data.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\System.Runtime.Caching.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\System.Security.Cryptography.ProtectedData.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\System.Security.Permissions.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\System.Text.Json.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\System.Windows.Extensions.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\cs\Microsoft.CodeAnalysis.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\de\Microsoft.CodeAnalysis.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\es\Microsoft.CodeAnalysis.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\fr\Microsoft.CodeAnalysis.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\it\Microsoft.CodeAnalysis.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\ja\Microsoft.CodeAnalysis.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\ko\Microsoft.CodeAnalysis.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\pl\Microsoft.CodeAnalysis.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\pt-BR\Microsoft.CodeAnalysis.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\ru\Microsoft.CodeAnalysis.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\tr\Microsoft.CodeAnalysis.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\zh-Hans\Microsoft.CodeAnalysis.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\zh-Hant\Microsoft.CodeAnalysis.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\cs\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\de\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\es\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\fr\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\it\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\ja\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\ko\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\pl\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\pt-BR\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\ru\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\tr\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\cs\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\de\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\es\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\fr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\it\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\ja\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\ko\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\pl\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\pt-BR\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\ru\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\tr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\cs\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\de\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\es\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\fr\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\it\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\ja\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\ko\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\pl\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\pt-BR\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\ru\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\tr\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\zh-Hans\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\zh-Hant\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\cs\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\de\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\es\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\fr\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\it\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\ja\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\ko\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\pl\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\pt-BR\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\ru\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\tr\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\zh-Hans\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\zh-Hant\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\runtimes\unix\lib\net6.0\Microsoft.Data.SqlClient.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\runtimes\win\lib\net6.0\Microsoft.Data.SqlClient.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\runtimes\win-arm\native\Microsoft.Data.SqlClient.SNI.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\runtimes\win-arm64\native\Microsoft.Data.SqlClient.SNI.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\runtimes\win-x64\native\Microsoft.Data.SqlClient.SNI.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\runtimes\win-x86\native\Microsoft.Data.SqlClient.SNI.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\runtimes\win\lib\net6.0\Microsoft.Win32.SystemEvents.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\runtimes\win-arm64\native\sni.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\runtimes\win-x64\native\sni.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\runtimes\win-x86\native\sni.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\runtimes\unix\lib\netcoreapp2.1\System.Data.SqlClient.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\runtimes\win\lib\netcoreapp2.1\System.Data.SqlClient.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\runtimes\unix\lib\net6.0\System.Drawing.Common.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\runtimes\win\lib\net6.0\System.Drawing.Common.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\runtimes\win\lib\net6.0\System.Runtime.Caching.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\runtimes\win\lib\net6.0\System.Security.Cryptography.ProtectedData.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\runtimes\win\lib\net6.0\System.Windows.Extensions.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\OpenArchival.Blazor.AdminPages.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\OpenArchival.Blazor.CustomComponents.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\OpenArchival.Blazor.FileViewer.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\OpenArchival.DataAccess.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\OpenArchival.Blazor.AdminPages.pdb +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\OpenArchival.Blazor.CustomComponents.pdb +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\OpenArchival.Blazor.FileViewer.pdb +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\OpenArchival.DataAccess.pdb +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\obj\Debug\net9.0\rjimswa.dswa.cache.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\obj\Debug\net9.0\rjsmrazor.dswa.cache.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\obj\Debug\net9.0\rjsmcshtml.dswa.cache.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\obj\Debug\net9.0\scopedcss\bundle\OpenArchival.Blazor.styles.css +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\obj\Debug\net9.0\compressed\tzxjg6is5z-jk5eo7zo4m.gz +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\obj\Debug\net9.0\compressed\0wz98yz2xy-tjzqk7tnel.gz +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\obj\Debug\net9.0\compressed\24gzn4tg1a-qz4batx9cb.gz +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\obj\Debug\net9.0\compressed\stwk5nfoxp-loe7cozwzj.gz +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\obj\Debug\net9.0\compressed\uorc1pfmvs-2jeq8efc6q.gz +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\obj\Debug\net9.0\compressed\i11yscesdd-zy4ksw00d9.gz +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\obj\Debug\net9.0\compressed\rou3pye8gp-6k2m17moin.gz +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\obj\Debug\net9.0\compressed\6sncp75uxm-of6ssq9pmk.gz +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\obj\Debug\net9.0\staticwebassets.build.json.cache +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\obj\Debug\net9.0\staticwebassets.development.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\obj\Debug\net9.0\staticwebassets.build.endpoints.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\obj\Debug\net9.0\staticwebassets.upToDateCheck.txt +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\obj\Debug\net9.0\OpenArch.17AC99BC.Up2Date +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\obj\Debug\net9.0\OpenArchival.Blazor.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\obj\Debug\net9.0\refint\OpenArchival.Blazor.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\obj\Debug\net9.0\OpenArchival.Blazor.pdb +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\obj\Debug\net9.0\OpenArchival.Blazor.genruntimeconfig.cache +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\obj\Debug\net9.0\ref\OpenArchival.Blazor.dll diff --git a/OpenArchival.Blazor/obj/Debug/net9.0/OpenArchival.Blazor.dll b/OpenArchival.Blazor/obj/Debug/net9.0/OpenArchival.Blazor.dll index 425809b..36c604d 100644 Binary files a/OpenArchival.Blazor/obj/Debug/net9.0/OpenArchival.Blazor.dll and b/OpenArchival.Blazor/obj/Debug/net9.0/OpenArchival.Blazor.dll differ diff --git a/OpenArchival.Blazor/obj/Debug/net9.0/OpenArchival.Blazor.genruntimeconfig.cache b/OpenArchival.Blazor/obj/Debug/net9.0/OpenArchival.Blazor.genruntimeconfig.cache index dbffcc0..a2b845b 100644 --- a/OpenArchival.Blazor/obj/Debug/net9.0/OpenArchival.Blazor.genruntimeconfig.cache +++ b/OpenArchival.Blazor/obj/Debug/net9.0/OpenArchival.Blazor.genruntimeconfig.cache @@ -1 +1 @@ -b200e0f0470dd235c3a5cab1b38d5ba8f2e1a42e25a95a84f147aaac078e2328 +6135e4f6156b5bd8b83be3cafbeee61527b0e101e1c2f82e1ea17f15ded7e034 diff --git a/OpenArchival.Blazor/obj/Debug/net9.0/OpenArchival.Blazor.pdb b/OpenArchival.Blazor/obj/Debug/net9.0/OpenArchival.Blazor.pdb index eda9cb2..b7a8e68 100644 Binary files a/OpenArchival.Blazor/obj/Debug/net9.0/OpenArchival.Blazor.pdb and b/OpenArchival.Blazor/obj/Debug/net9.0/OpenArchival.Blazor.pdb differ diff --git a/OpenArchival.Blazor/obj/Debug/net9.0/OpenArchival.Blazor.sourcelink.json b/OpenArchival.Blazor/obj/Debug/net9.0/OpenArchival.Blazor.sourcelink.json index 7b68deb..bd84b90 100644 --- a/OpenArchival.Blazor/obj/Debug/net9.0/OpenArchival.Blazor.sourcelink.json +++ b/OpenArchival.Blazor/obj/Debug/net9.0/OpenArchival.Blazor.sourcelink.json @@ -1 +1 @@ -{"documents":{"D:\\Nextcloud\\Documents\\Open-Archival\\*":"https://raw.githubusercontent.com/vtallen/Open-Archival/77318e87d12fb2935cd521cd7ef445296c08f8af/*"}} \ No newline at end of file +{"documents":{"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\*":"https://raw.githubusercontent.com/vtallen/Open-Archival/781793a27f2e164808340b1adb5ce70e1800b187/*"}} \ No newline at end of file diff --git a/OpenArchival.Blazor/obj/Debug/net9.0/apphost.exe b/OpenArchival.Blazor/obj/Debug/net9.0/apphost.exe index 3562ff9..41b6ef2 100644 Binary files a/OpenArchival.Blazor/obj/Debug/net9.0/apphost.exe and b/OpenArchival.Blazor/obj/Debug/net9.0/apphost.exe differ diff --git a/OpenArchival.Blazor/obj/Debug/net9.0/compressed/0wz98yz2xy-tjzqk7tnel.gz b/OpenArchival.Blazor/obj/Debug/net9.0/compressed/0wz98yz2xy-tjzqk7tnel.gz new file mode 100644 index 0000000..1be9dc7 Binary files /dev/null and b/OpenArchival.Blazor/obj/Debug/net9.0/compressed/0wz98yz2xy-tjzqk7tnel.gz differ diff --git a/OpenArchival.Blazor/obj/Debug/net9.0/compressed/6sncp75uxm-of6ssq9pmk.gz b/OpenArchival.Blazor/obj/Debug/net9.0/compressed/6sncp75uxm-of6ssq9pmk.gz new file mode 100644 index 0000000..9e74cf8 Binary files /dev/null and b/OpenArchival.Blazor/obj/Debug/net9.0/compressed/6sncp75uxm-of6ssq9pmk.gz differ diff --git a/OpenArchival.Blazor/obj/Debug/net9.0/compressed/i11yscesdd-zy4ksw00d9.gz b/OpenArchival.Blazor/obj/Debug/net9.0/compressed/i11yscesdd-zy4ksw00d9.gz new file mode 100644 index 0000000..3929b1c Binary files /dev/null and b/OpenArchival.Blazor/obj/Debug/net9.0/compressed/i11yscesdd-zy4ksw00d9.gz differ diff --git a/OpenArchival.Blazor/obj/Debug/net9.0/compressed/rou3pye8gp-6k2m17moin.gz b/OpenArchival.Blazor/obj/Debug/net9.0/compressed/rou3pye8gp-6k2m17moin.gz new file mode 100644 index 0000000..e92f48a Binary files /dev/null and b/OpenArchival.Blazor/obj/Debug/net9.0/compressed/rou3pye8gp-6k2m17moin.gz differ diff --git a/OpenArchival.Blazor/obj/Debug/net9.0/compressed/tzxjg6is5z-jk5eo7zo4m.gz b/OpenArchival.Blazor/obj/Debug/net9.0/compressed/tzxjg6is5z-jk5eo7zo4m.gz new file mode 100644 index 0000000..0bd6298 Binary files /dev/null and b/OpenArchival.Blazor/obj/Debug/net9.0/compressed/tzxjg6is5z-jk5eo7zo4m.gz differ diff --git a/OpenArchival.Blazor/obj/Debug/net9.0/rbcswa.dswa.cache.json b/OpenArchival.Blazor/obj/Debug/net9.0/rbcswa.dswa.cache.json index 3253e36..ff9b616 100644 --- a/OpenArchival.Blazor/obj/Debug/net9.0/rbcswa.dswa.cache.json +++ b/OpenArchival.Blazor/obj/Debug/net9.0/rbcswa.dswa.cache.json @@ -1 +1 @@ -{"GlobalPropertiesHash":"2ilJ2M8+ZdH0swl4cXFj9Ji8kay0R08ISE/fEc+OL0o=","FingerprintPatternsHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["9oszAMgl2AuYnZX\u002BSMDKUyAxGgSDqmhOWubRaFHT7Kc=","1w5klOC/zAcm5qC1zZabY6xTQ/RWyqiv0r1Xy4TLZXs=","oqeIPzj8Nj5o0GzwcJY6LXSGl4JIQBSbOiyxsIT2iA4=","1IF0f\u002BCsLAlstV\u002BhXVFF\u002BD7tboiyTWwTjQzPMtIbeSQ=","5Mg4Ab3UnO/nbtKt1XTddw3c3KDFqR2R5nXsZpO13Y0="],"CachedAssets":{"1w5klOC/zAcm5qC1zZabY6xTQ/RWyqiv0r1Xy4TLZXs=":{"Identity":"D:\\Nextcloud\\Documents\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\0wz98yz2xy-lftp6ydp6b.gz","SourceId":"MudBlazor","SourceType":"Package","ContentRoot":"D:\\Nextcloud\\Documents\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\","BasePath":"_content/MudBlazor","RelativePath":"MudBlazor.min.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Users\\Vincent Allen\\.nuget\\packages\\mudblazor\\8.12.0\\staticwebassets\\MudBlazor.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"arwivyvlfd","Integrity":"qhJtBPrvSKzfmYIXttsCBAyz1XObWORxmjjeuquTVx8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\Vincent Allen\\.nuget\\packages\\mudblazor\\8.12.0\\staticwebassets\\MudBlazor.min.js","FileLength":15884,"LastWriteTime":"2025-09-05T16:32:47.2138894+00:00"},"9oszAMgl2AuYnZX\u002BSMDKUyAxGgSDqmhOWubRaFHT7Kc=":{"Identity":"D:\\Nextcloud\\Documents\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\tzxjg6is5z-0n6lrtb02s.gz","SourceId":"MudBlazor","SourceType":"Package","ContentRoot":"D:\\Nextcloud\\Documents\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\","BasePath":"_content/MudBlazor","RelativePath":"MudBlazor.min.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Users\\Vincent Allen\\.nuget\\packages\\mudblazor\\8.12.0\\staticwebassets\\MudBlazor.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"jmv4m3zpj4","Integrity":"G6ttMFl4pZQbeXfp7Od0SO3bC9h9rp9m7NW7DgD0a1Q=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\Vincent Allen\\.nuget\\packages\\mudblazor\\8.12.0\\staticwebassets\\MudBlazor.min.css","FileLength":65509,"LastWriteTime":"2025-09-05T16:32:47.2239299+00:00"},"5Mg4Ab3UnO/nbtKt1XTddw3c3KDFqR2R5nXsZpO13Y0=":{"Identity":"D:\\Nextcloud\\Documents\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\uorc1pfmvs-2jeq8efc6q.gz","SourceId":"OpenArchival.Blazor","SourceType":"Discovered","ContentRoot":"D:\\Nextcloud\\Documents\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\","BasePath":"_content/OpenArchival.Blazor","RelativePath":"favicon#[.{fingerprint=2jeq8efc6q}]?.ico.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\Nextcloud\\Documents\\Open-Archival\\OpenArchival.Blazor\\wwwroot\\favicon.ico","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"3ren6c1acn","Integrity":"b7CPHqpoIGsGVgOrEO\u002Br2XPyaLrLUBwkA6R2jOMbS7M=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\Nextcloud\\Documents\\Open-Archival\\OpenArchival.Blazor\\wwwroot\\favicon.ico","FileLength":2975,"LastWriteTime":"2025-09-05T16:32:47.2125557+00:00"},"oqeIPzj8Nj5o0GzwcJY6LXSGl4JIQBSbOiyxsIT2iA4=":{"Identity":"D:\\Nextcloud\\Documents\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\24gzn4tg1a-qz4batx9cb.gz","SourceId":"CodeBeam.MudExtensions","SourceType":"Package","ContentRoot":"D:\\Nextcloud\\Documents\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\","BasePath":"_content/CodeBeam.MudExtensions","RelativePath":"MudExtensions.min.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Users\\Vincent Allen\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\MudExtensions.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"cn6plcuhii","Integrity":"6PJ7t7WR38pQTSYe6IR0pbqo2cIZK5wuW/w26kprtBg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\Vincent Allen\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\MudExtensions.min.css","FileLength":3383,"LastWriteTime":"2025-09-05T16:32:47.2125557+00:00"},"1IF0f\u002BCsLAlstV\u002BhXVFF\u002BD7tboiyTWwTjQzPMtIbeSQ=":{"Identity":"D:\\Nextcloud\\Documents\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\stwk5nfoxp-loe7cozwzj.gz","SourceId":"CodeBeam.MudExtensions","SourceType":"Package","ContentRoot":"D:\\Nextcloud\\Documents\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\","BasePath":"_content/CodeBeam.MudExtensions","RelativePath":"MudExtensions.min.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Users\\Vincent Allen\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\MudExtensions.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"z9m1gj6ro7","Integrity":"B4PUgpr06\u002Bd3lAMWknp0EVkaGxPZJdpp5/UidGHzvnc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\Vincent Allen\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\MudExtensions.min.js","FileLength":196,"LastWriteTime":"2025-09-05T16:32:47.2114605+00:00"}},"CachedCopyCandidates":{}} \ No newline at end of file +{"GlobalPropertiesHash":"2ilJ2M8+ZdH0swl4cXFj9Ji8kay0R08ISE/fEc+OL0o=","FingerprintPatternsHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["1GGsBngqyXii55L5ePCeMEwR5cbRClXSIFBmmg3rpPA=","P0cj9zf8JKeCGpS3QJaIrgdI2PA3NkmcKqzI1l6NX1Y=","zPTprs68Yug690ahv6WI4tKeVbDgR6T7sWhl4LFRK3Q=","0aJlzEr\u002BDYMxhe6/6gUW2zIniOqlFlTtZ\u002BhPdOkrDZQ=","yVich9yYuH\u002Bod7aj/XUbrw\u002BiMiAVnjYUTGYOpn3l8wI=","uLvFSrTiN2PgJLuDKYjlPQSryu8If3n\u002BUCgTXPq3HsI=","X1jGbAJnxPdEVyre7jVxy6XSuAxUWF4IOim\u002BWLsOB0I=","uwdti\u002B0opLYlXfHYsCZq4x\u002BsqK40P8I9E3FX3QDQHG4="],"CachedAssets":{"0aJlzEr\u002BDYMxhe6/6gUW2zIniOqlFlTtZ\u002BhPdOkrDZQ=":{"Identity":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\stwk5nfoxp-loe7cozwzj.gz","SourceId":"CodeBeam.MudExtensions","SourceType":"Package","ContentRoot":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\","BasePath":"_content/CodeBeam.MudExtensions","RelativePath":"MudExtensions.min.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\MudExtensions.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"z9m1gj6ro7","Integrity":"B4PUgpr06\u002Bd3lAMWknp0EVkaGxPZJdpp5/UidGHzvnc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\MudExtensions.min.js","FileLength":196,"LastWriteTime":"2025-10-08T17:06:30.9230798+00:00"},"zPTprs68Yug690ahv6WI4tKeVbDgR6T7sWhl4LFRK3Q=":{"Identity":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\24gzn4tg1a-qz4batx9cb.gz","SourceId":"CodeBeam.MudExtensions","SourceType":"Package","ContentRoot":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\","BasePath":"_content/CodeBeam.MudExtensions","RelativePath":"MudExtensions.min.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\MudExtensions.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"cn6plcuhii","Integrity":"6PJ7t7WR38pQTSYe6IR0pbqo2cIZK5wuW/w26kprtBg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\MudExtensions.min.css","FileLength":3383,"LastWriteTime":"2025-10-08T17:06:30.922073+00:00"},"uLvFSrTiN2PgJLuDKYjlPQSryu8If3n\u002BUCgTXPq3HsI=":{"Identity":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\i11yscesdd-zy4ksw00d9.gz","SourceId":"OpenArchival.Blazor","SourceType":"Discovered","ContentRoot":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\","BasePath":"_content/OpenArchival.Blazor","RelativePath":"js/downloadHelper#[.{fingerprint=zy4ksw00d9}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\wwwroot\\js\\downloadHelper.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"8z2o7nkqic","Integrity":"FAg7kmeFsh8jkhGZs/GZGp9lb/FDf6lNCN/9/HzL7Dc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\wwwroot\\js\\downloadHelper.js","FileLength":235,"LastWriteTime":"2025-10-08T17:06:30.9240786+00:00"},"yVich9yYuH\u002Bod7aj/XUbrw\u002BiMiAVnjYUTGYOpn3l8wI=":{"Identity":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\uorc1pfmvs-2jeq8efc6q.gz","SourceId":"OpenArchival.Blazor","SourceType":"Discovered","ContentRoot":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\","BasePath":"_content/OpenArchival.Blazor","RelativePath":"favicon#[.{fingerprint=2jeq8efc6q}]?.ico.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\wwwroot\\favicon.ico","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"3ren6c1acn","Integrity":"b7CPHqpoIGsGVgOrEO\u002Br2XPyaLrLUBwkA6R2jOMbS7M=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\wwwroot\\favicon.ico","FileLength":2975,"LastWriteTime":"2025-10-08T17:06:30.9240786+00:00"},"X1jGbAJnxPdEVyre7jVxy6XSuAxUWF4IOim\u002BWLsOB0I=":{"Identity":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\rou3pye8gp-6k2m17moin.gz","SourceId":"OpenArchival.Blazor","SourceType":"Discovered","ContentRoot":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\","BasePath":"_content/OpenArchival.Blazor","RelativePath":"js/imageSizeGetter#[.{fingerprint=6k2m17moin}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\wwwroot\\js\\imageSizeGetter.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"j0008cknjh","Integrity":"E7gYH0HUXBVbrGIOQeZXi1EKyLtFMQvfEx1uCLzd\u002BH0=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\wwwroot\\js\\imageSizeGetter.js","FileLength":657,"LastWriteTime":"2025-10-08T17:06:30.9230798+00:00"},"P0cj9zf8JKeCGpS3QJaIrgdI2PA3NkmcKqzI1l6NX1Y=":{"Identity":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\0wz98yz2xy-tjzqk7tnel.gz","SourceId":"MudBlazor","SourceType":"Package","ContentRoot":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\","BasePath":"_content/MudBlazor","RelativePath":"MudBlazor.min.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\MudBlazor.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"c1g0o1u83p","Integrity":"0BJxfo\u002BEOJvNKoBv/2ahm4RKrPjv7PhB/R16C3XOHDo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\MudBlazor.min.js","FileLength":16352,"LastWriteTime":"2025-10-08T17:06:30.925079+00:00"},"uwdti\u002B0opLYlXfHYsCZq4x\u002BsqK40P8I9E3FX3QDQHG4=":{"Identity":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\6sncp75uxm-of6ssq9pmk.gz","SourceId":"OpenArchival.Blazor","SourceType":"Computed","ContentRoot":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\","BasePath":"_content/OpenArchival.Blazor","RelativePath":"OpenArchival.Blazor#[.{fingerprint=of6ssq9pmk}]?.styles.css.gz","AssetKind":"All","AssetMode":"CurrentProject","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\scopedcss\\bundle\\OpenArchival.Blazor.styles.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"1q2zld6v72","Integrity":"iaEgFyUTJAhMAW\u002BJFVh6LKM3gSG0Kn0oNWuuMVofbCw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\scopedcss\\bundle\\OpenArchival.Blazor.styles.css","FileLength":102,"LastWriteTime":"2025-10-08T17:06:30.9240786+00:00"},"1GGsBngqyXii55L5ePCeMEwR5cbRClXSIFBmmg3rpPA=":{"Identity":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\tzxjg6is5z-jk5eo7zo4m.gz","SourceId":"MudBlazor","SourceType":"Package","ContentRoot":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\","BasePath":"_content/MudBlazor","RelativePath":"MudBlazor.min.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\MudBlazor.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"93u47y2o0e","Integrity":"VcBMO3aXrzxl\u002BjfWY\u002BTaxPKsd3L0UWjeJZliEXOyzzI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\MudBlazor.min.css","FileLength":65509,"LastWriteTime":"2025-10-08T17:06:30.9378156+00:00"}},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/OpenArchival.Blazor/obj/Debug/net9.0/ref/OpenArchival.Blazor.dll b/OpenArchival.Blazor/obj/Debug/net9.0/ref/OpenArchival.Blazor.dll index 7e2cc36..ed0e621 100644 Binary files a/OpenArchival.Blazor/obj/Debug/net9.0/ref/OpenArchival.Blazor.dll and b/OpenArchival.Blazor/obj/Debug/net9.0/ref/OpenArchival.Blazor.dll differ diff --git a/OpenArchival.Blazor/obj/Debug/net9.0/refint/OpenArchival.Blazor.dll b/OpenArchival.Blazor/obj/Debug/net9.0/refint/OpenArchival.Blazor.dll index 7e2cc36..ed0e621 100644 Binary files a/OpenArchival.Blazor/obj/Debug/net9.0/refint/OpenArchival.Blazor.dll and b/OpenArchival.Blazor/obj/Debug/net9.0/refint/OpenArchival.Blazor.dll differ diff --git a/OpenArchival.Blazor/obj/Debug/net9.0/rjimswa.dswa.cache.json b/OpenArchival.Blazor/obj/Debug/net9.0/rjimswa.dswa.cache.json index 3f349e8..61c0013 100644 --- a/OpenArchival.Blazor/obj/Debug/net9.0/rjimswa.dswa.cache.json +++ b/OpenArchival.Blazor/obj/Debug/net9.0/rjimswa.dswa.cache.json @@ -1 +1 @@ -{"GlobalPropertiesHash":"1qg6JQFg463JgCFBqLRezrbbwdHDoJB+OfEwITXaNNk=","FingerprintPatternsHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","PropertyOverridesHash":"R7Rea/YQmcweqCbKffD9oUelggfpJQX85r65aYZsas0=","InputHashes":["49rrwWjJwaHTHSPL9a1cTI6wS9aWKEroxqNMdQj4hoU="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file +{"GlobalPropertiesHash":"1qg6JQFg463JgCFBqLRezrbbwdHDoJB+OfEwITXaNNk=","FingerprintPatternsHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","PropertyOverridesHash":"R7Rea/YQmcweqCbKffD9oUelggfpJQX85r65aYZsas0=","InputHashes":["rF3M61iF68QrrVaQB6tSRsGLosxcKExmPBOYc9cIt38=","P4H1PT/Z26OD3K1mTwRfA0e8\u002BHZ13SBllAm8oSkxoL4=","z4yk5GiShsjwBKD0aiOb\u002BoDd7o0aIgMFJZU/kJCF36E="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/OpenArchival.Blazor/obj/Debug/net9.0/rjsmcshtml.dswa.cache.json b/OpenArchival.Blazor/obj/Debug/net9.0/rjsmcshtml.dswa.cache.json index 6c77678..d1eb021 100644 --- a/OpenArchival.Blazor/obj/Debug/net9.0/rjsmcshtml.dswa.cache.json +++ b/OpenArchival.Blazor/obj/Debug/net9.0/rjsmcshtml.dswa.cache.json @@ -1 +1 @@ -{"GlobalPropertiesHash":"w2zJjDlrZF5/5p80zNaW9/DaLrmtiqb1ym05zjQa8AU=","FingerprintPatternsHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["Ql2PiheSms1jp3ze9191\u002BLNizQeYVsVG\u002B7N0KZ1uG20=","J7kZmrOHXGR7mhUJ1qRNPdV4NRND\u002BvY/dHsYc/Fs5FA=","hbuRrF72UQMMqn0g3RcZs/p\u002B5i7HIOUihxafPAD3EII=","bHBUbuODr8tWnbhuPs0aBZP4laY5o3BZ8foPGjnxvM0=","QeYkU9gxeRRO1jjvXgH7K/Nr2oa7opTYRiGTeFAt9hg=","m0ZalmIclG1CWERwq7TJzaS3UTwdWU7vJTH5wtXTRu0=","kYIUaswTSm/vuWdrFVk9i7vGl7gi4QutG\u002BtCBbnKC6I=","I92NrQVtDRIlAXcy/VupzptYIRXUmfdARzJEd\u002BMwPPI=","vwFknGJfBqZvyW3NEetGDZikd1HNT74cx2PojJjY\u002BPY=","3KENyb8mlCPncPOO5PbFfE0ubEK97voAevXn\u002BluJF7w=","NwDfbvguyiABZkN\u002B7yp6ClTOKkIFe/x4/v8tW4SUWHs=","Hourq1FvI\u002BJdRWbGSIe8r7GJGmkjFaIIQ8xB71hUBj4=","5n3ZEfHdKhL/ejFZA6mAyU6RVQAOd2wCgH3KjVv4d0U=","76\u002Bi/9Jz2zUyw2kfeC1dt0\u002B2uS7aFC2hMxE6ERdLn6s=","nvIt8ExR97wRoREETNPoXJ8D7Pb3KMAHZcwls7Q6c5E=","VfYWVT8Cth4Ztc4/xdY/qocO1V5snDiDHqbnmGMbvSw=","JxOQqF9Br69IsgvR\u002BTp8Vp93AFvsAKAiWtrgUjK7uKE=","5fR1TRHdDoMpaYhFN4ET8XHmhPG8hvpyxjiTF2qwx3M=","lxWH\u002B23ZAM/D8nGa5K0aryPD\u002BJPkC8vLJw2cEPhz8BA=","V8fXm0xeM7wossowKO5U7zhqV0P4uUGyIdkFdI9/LmY=","DGTAL07rwTwMmN0h4z8RtKm1\u002BbRR4K\u002B39bnl/wF43ZM=","rph0gnGKJ2XM54sr0iGk\u002BWTEktu647aepqf4FJUOLY8=","nklMuuwtwGoNNErDuvc4h4TaCmj4xyGZdjpGKgNvLGE=","Onb4gjU\u002B/9a/TKG0C3dG2hXdTEVs7OCECl6pWNTR6pQ=","WY7f0A5zLk9CD0lYECdLRR2b9b8GL2skPQO91AQ5wOM=","Ac8RYrUWtH4wwvUsQ9V6ndbtfhGuDzP1S9Hkh0JQLPg=","ixUpDxEYNKdhPZM9//dDIaFJGC9LvGDbh6rENZRYjWc=","SaPHXK2AwnFe3srooGZwMezdZmaxj0st4ZuBcZ0nfqE=","T5f5jCFFR0KCQwbQwHvZbWrVp7NucmIDfBynM8At\u002BFg=","DMXcRradogfvYUFJEJJT\u002B\u002B5RQjl\u002BI7kUSkHrHCl8oOk=","OLr6tSbzkGk2i5G0fVdSkw7v0IzsX6NL86pLF9m6eX0=","es5rRr8vQCVUTmRO5bFYu0yMvzBffvEDZTKp5IpEEvA=","//xOpsw6IkdGK7auzNWaN3ipl2miVcBMSjnir/YlMBM=","LxLYDw\u002BNEQs1/4eWj5xZUyDYpsFLgH0ApDhFJ57Tdxw=","MFYQHMUPDwTl5G2r85YGLzdn1v369NvEoKIV/yqP9D0=","suYCRRYSyx84XfGpJ642kjRBvpsYCZrXHIQdrDjHhM8=","FWll23MBvwnmTx45GuMEkpaohrEGlqtK5xFGH7EFhFQ=","xVQXdj83lrOmePZ2H/X8gQKeb0ZsdJwmwGlVhgn1iKk=","JBM4mmoRLcKW020j1M5/od\u002BktwV30JiF0IURK3neeVA=","LhQEEPfBv1x4zkjLkNo5UOqbP6vpsuxmDZfWrrYUOuQ=","6Ej25\u002BdEOADcqNkFwaGEjzHy7JwZjxZHE484x/wngas=","eFGzh1RmS7P9u2g03QpW6hWZdSUmi7k6aTjXbhIxvBw=","8EP2SMLjn\u002Ba9MBRxAWB0Chr/dyRQru36g4tGLaVvC5U=","1cSaY4ZOdlRQ4J8JEJcTCTaxFW6wCIkDNaHt4gOO6O0=","lOJzvq/mt94Oz7XdoNgAi5xhxeLtmYb8fQBwlPPQZZE=","OcnWLAVaHOsYs4bxnEnZqIWag3elwA7S4wtI2W/UU/w=","DeuLQvYjZ4UlibWp6SFmkw52aD71zWX0n497u3UXXXc=","9L2A6DEc9nUgGsAfznPoDJDiHK9N5yUnvVAZ55HFU5o=","jrhMriKpKb8MMoF/fFjCvVghgR1nPdlicua/iXMULrs=","ACBl7fhIc0CayChSvetz0aUZY3LURZTKTX4iJpPXelI=","OLO3HK2hyRh3i2tfvGpL4VQ2qLX4qRs9AEdW67j4XHw=","7oUeOonOvSKxmnwLm6BSBCZ52njjT3P\u002BWWUKM/csxVQ=","eW9wyhwEOMia1TW3GktXmZRDRLzVZ/M/UnXZzaOtri0=","lvUX8yPrVVFxgDMwib0qyO5QEl\u002BaU/rbwWmS/5aQ6fY=","Rg0Zc7\u002B6aN84D0yIgRswn0g5Z\u002BCedtn8RjWnxPXD6Bc=","7i19fmcUtxUfpJGLk9ori6H9NTqI2TYMBHblGvKBU5w=","haqWbxLhmiGrPyfId7Eidma9bDdT\u002BLmPiYFcTJeIvwM=","6Rdh8TmSgxQlWiZ1JiwrbUrqh6GigCZcyq3Y/p/GyEg=","3nVS5wBdgLMIZvvaoi8wriTzs3BDkKg37FtwHfDMhjQ=","PTCwsDOSptetl4jJHyelugE6oXbRSgUnDGBZeR5DJAw=","oM3fprbjJqXYyR71cunp\u002B9MTmrmwFw0qW001cFeiCcw=","bWSWVjQ4VaMtlzN507whxF8OFLvpR7sBN9PrKMWr0eE=","sx1Dwdc8zMihxQGPHynLVJvNgzJy2ZUg/fc8X3ObdRA=","Z3fFR6A3LjtHctsrXbpBgmiILUtKtvM\u002BhbtGbYaEyME=","rqDtoFM7PjgyVdED7tRkedaAHeGQzoCC\u002BV\u002B6TSXIrjI=","zzh3FW9R/C\u002BpOP8SPV2JXRRAhd1LLuYlGOyyOnZ9Gnk=","kEChOeuFq85XCariss4dIamJogzRzhHv3I\u002Bwz\u002BTM3qg=","ILgZb/GGIWdwm7iauiYzhswQLxIwoFQmo7WuMsDLZI8=","hPcbJaDUq2Gr6BBrUFWuGPpXtI2\u002Bzf\u002BB131nyeR/VhM=","6VyD1SdAUVe84G4oPqyBEYJ2vsYxzN6p\u002BE2JPzfsaHs=","g3sYtiwGKZqWqJmIFnpgMlXuzekOZOJp7bP\u002BeCGlEJg=","5kGuu3Hg/IoCEyBXsQ7ggsNkiuRTW4VUgJHrzZ6A32A=","86igtL5nen7Tgz0yLRa5OhZFSGs3vQtxfV1VVcFO4Oc=","CB\u002BapsEcLzAcL4GqvOkW/KuqJocnparn3afKeW08Gpo=","jo4nR9JwYj0jS2qhavza6khQ53GHEqiQvd40PhGVkzE=","BdDS40U381oO\u002B4twgZEtrylkZbr1vbIEVu0CWIzak48=","VwAVeG6M0BmQG6nUO9pK4tCdmVqufP1vgfSZBZ88gg4=","WZQuaNaE5aTxxNSSihV4LCYmsmnYAvQgH04Q0/cocaA=","iqa6RZt7hurWN5EdYPwRUxBMsNHNs09/NeCymkUk9wY=","WOacgMbwtqCWjj3xw/xK03JziBF/EzSqLTG2\u002B9jRxiE=","Eo7LOGbafF0m0zOPjsalINi\u002BSHBpwcal1xWz9uRd/K0=","YfKtsjtmrMmsSfQxklH1c2jhbhYZHJ45s0ZwLd2wfgY=","nDDegdQlUUl40zD1o7U0o8bOcsvaUSAJoLt8CQiKtsk=","3H\u002B5\u002B4xHJG4qrFeFLQ44XNEz87C4xSF0U8sbTaWooyA=","nFolpVOv6x/d7d129\u002BFjnEFIRPg97/gcsykT5uJUeaU=","EyzorjZtaqkZZFt2l7JXPuBZeoNbRLHMW1aCDU2HMlE=","OY\u002BHUs9RLIJBeZBLVpWyUDmLasM47lHdJNrjap2X3zw=","7ZS\u002Bc1EhkIDOkfsHtnPQMx6PfFYaIDh03Uk/7KmVCTc=","x61JOwZ6Rincvaxrd7L/sxlpqJIbZhN8ugbqRa58Bh0=","2aJE9mIzYveQB88MIjZDblZknjB6XucYyey1JlyCSHw=","a2eYERuBz/K93earv8BYouwMI3r6GQx/azPhwa0n5Jw=","hWElLGqRAvO5F2RJhMsV9KLrAwnB84Y7GF0qcTQ9v6Q="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file +{"GlobalPropertiesHash":"nqseSwXT/NeHzxgF/iVSgqUDW1rl1Cphl/adddwfudo=","FingerprintPatternsHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["gIdx8p67SpOPJYooMsWBi4wKJmT0ycmcs9woYF7odHw=","Btp3cFEQ76ByfeqlWDb1nCwpNprEIaXPUy1H2QwnGGg=","w404Cp8QMVSMRLQmhqeoQt4ITtFpNhm33YTevp4BrrY=","EaoUNe/tUDgB569VbXEkO\u002BdDXdjSDknkoNuPW6yOAcw=","wRfHtihBjE6nzzNk2EB4mIsHQmVCtWlBIU7b7bCQfuw=","dAnqFSOhixmyDMzFCt\u002BPggQ4gcGEW3ZUqrIQ3MlyH2s=","AE7soQDbSK4U6q\u002BPG3HxaaR3/15VCtT/3T0XUOKAJeY=","RBVy5noBBMPakCWbe1/PTFHn2TJ\u002B07iweoDHLuFhLBY=","igkRrnXuP6vZa0Ydb9Q\u002BtQHJ8jf1C0vTenwUHJ4JgxY=","ibqoRZRfQeS7WVaNL09U24YOgpO60WgbAhKHtOJPICs=","BVfrSSWe9T3nLqSffVa2uNRT2cuDe\u002BoXzyjxB74Mq6I=","qQjeK5b7KgA6mEwm0vnk1178MXhzXk\u002BLlgzzlKH20mQ=","uPc/UH/7fTCeOZp5c4t0uVUVDUN/WxduRWaBrpeWSrc=","pA/bXE5p5a0Tj2H1pHhNneJJ35FzBzh9r8v2aLczXjE=","rgJ\u002BqzvBs2mtdutKb3mLpLJb4xV/\u002BWU0oxz0Eo9Mt9I=","EIuLTJ8Lzsgf3KXJJsgVH/SL3MJpL3KPlPoz6RmpVfw=","l9fS2umrAbOUln\u002B\u002BOBRL0kjpgVljQ\u002BO6VbVr0WKjoTc=","BO1hE6PZlvZ0IZA38gdAYlrLwhWkKKbFkhbAwv2jMc0=","Z0q8q/0TwgGuAPEZtw4nPVEQC88xojLF0qeGb9UIsFs=","UuOhV\u002BLlHW5OFbPbW9uo2G0V52QW\u002BpKRf4TJsDkyNtk=","Pc8A9YocUGK8VUfVjHDR47HBDB3rsgWB3Y/oqrXKAJw=","uYYCZTR6TV4OCQlXSwOW09pF7zubWZYfoSTa41/bEqM=","jobLTu/VjZcfiuSyjT4f7GKRy56GUax3ZFK1muVuSRs=","bYuEUd\u002BxTrJkOgKHw2OSLRn2muLzh0mQJrpaqF/Nrjc=","RMFfX1q9QNu\u002BG/R9eH7W0qia3cclbJvtVoZH5qW2Mek=","1SEMHri05wA4KA1ZfrgEZqmAZn3JLdLKL13hV9Drv28=","hP4L9VOdf9fRYCZEwlyLNVGObDu3UiZ1\u002B41eSnInq9A=","t0y4QjjD8oEYmB295mduo3ykk0HpJd67dKwR2jyFlKI=","ngsDcvtPocFDvdzpYAVYmgWuH1LnJ98kKDItEPFGe\u002BE=","xv8BzP0pl8xti3q2YS\u002BqetkiOWEVwjNZjsW2Udon2As=","sAFoigHK1jzQb5I53EuxjvQNWmeLsY9zomztjwQR\u002BI4=","iLuOL83LQjq2gFSXZNRo8Dv7riuvxtiqYLDSof1ilvE=","y2pKV7g1hma95a3sQoypVO8Qv\u002B8iFsIJA7gHgPS4ffY=","VfpIN9/9YYpHJ/Z3JLuYlXOeDeux/WhHCIShaoHflJk=","a5QYTHSEE2Zy7M4NU12r1BiIurqgiS\u002BwpPU/dlytpAI=","BHxQuWENDxX5QWkMGdCBYg3xlGk4b7iYAjXe7BvkV8Y=","c1/70YS88MimV\u002B8k5DBeL5WpvpPWfPD\u002BEdaAra0vSi0=","VSaP78tR/2vezO\u002Bb6VSfp3LARPtFh9aO8zefPzSHFuc=","lk0jNWB61LE8wQDDLcezNVkqmm/aIwrzLxPhHO6bIlM=","\u002BXJFvDMCPEM5ntjLPC0rfU4tjj1bnp5qBtqZ/\u002BFQQfM=","jxpb0Cpy\u002BDxRXHmtRYMX4OqQE7b3OyFf6wYHjCJ8GAk=","Ti4EKaezXdkeAgx4vH0tQhPNksJZupM4qdQ/QnuxjTA=","4WTiaEnaeaI8BGxVLf2hHxafftSvVD8o7SL23\u002BS0Q4w=","u1tkIKRxvth0m85TRy1GasFBSQ\u002BfcQKvf9zH6A0Big4=","PLwTHqjWyTMaymS6366TijilfNlJsE137GAEEF5LlII=","0MSOV4rwhDJTkWX3c4QGCZGR2tUuL6PV2jIFF8HuAN8=","O0BVKlWWf4FxUqDgADmL1F/CNiBEPlEkk2UHuSe2/nw=","soD5XzgAGw6WRDTXaB0j9yJEE7\u002BaaOfg9ePoreN6OFM=","cO9k\u002Bav8gLb2p2zRWQA4zUhFshW06ptunkjKgU/1NQI=","xvsKpyQ\u002BRd5q0LfGh7Z6yx06TepRzrwGbbktg3kIMbc=","JgQKDfdUzD8QaWLxmaBr8frx8/Fy3MG/OttioqHiAcI=","Hx1nSTVPjejd6M8EI2WnB0CatZUKluHvlNI0kp16EkE=","bX2dATY5/k4HQfnknC/M0v\u002BJBSvHGjZ4t4wzzYoZCwI=","9vYc6wix\u002BJlZX1GUamiuu/hem1eXyNbwHXxn7AG\u002BIGU=","lN9jnVv4/YLLG6MvuTRijC77bORD7NFLOvATZDkr3yI=","0JxZbXwfyBfduKjLMAxnO9Ymb/s/CdqvYt016JHMd18=","I00NP7PprLjaUB3jA2GBaeXAE9Zohtkthc7PxypShMo=","PlePHWk7Bg6HxBHognW/xYa90ZZUeh/2r3mKWEyuMig=","KbkzCnopQtvHy6E5koOdFSbfXeVNFPijdDhkOaDb0IE=","uWPBekRoA/yphUeKHKd0YemDTpII\u002BHoR0DBc3t8YVcc=","kz50Hbw3a3veE5qqU2IsU0LqpBvMQFCVjj5DnWOpwNw=","O3Mm88W6pPQmVOr7do9jTm5YJNjVqO0QhRDzaRRF654=","nuoSJgru8YOP5JFFwqatjGcAoHWG6TP4SNNhh0dImcQ=","JVq9qzBPgJJilhfXannPkrJ2Cxc8KZWGRrSSF/6X02c=","hTAwVKkuDfBMC2snF2V5AgjWbQam5Lh78NNTlckz6sM=","roUoHKxCa4IZ6NH80YSWWWLqU8OpF1l2mn1a3cUxT/0=","qvsYjj55jHE2S4f9ph\u002BqrrKKGHuQBjFfspnz9s2CXqQ=","XTYj2PyWBimUAYhqWuAJEGkhpVYKiamFNcERkMNLueM=","/uyy8fMaruEvAQXW\u002BN6KW4DqJC4WccittBszqhYJ3sA=","WJsULtIvqgVsoxAvb9aPzgd7hcjrWVvto2W4gawrys8=","P13BeLRBqXNk1rty4Cd5qaO5o0r9U7sNAt79//O9Tls=","rJ/oB7o452lU3a25ya0SbdpgrfUQpc8\u002B2PVr58NbZiQ=","oUyLS2aLzk0Z32rvHzI2ry3yYm6mfhfSvR77QwziWoE=","DjqvCJJHK/ekca9SR4PR0CzR\u002BUY3Mi6wvnqaArbAsPY=","ldwTIbkFWB3HLaEjUEnYby27h3Jj3Iv0anBZIT2jUAU=","Umtlf90ZCF1JrX0RZo/4qhNk6F7GzZWMDlBnPJHWVVg=","LDXdBR8HtQS3LUFSs2peKIiC8SMlVn\u002BTb3PQXoxzDnA=","A6SkEkPuKpjof2ICJck6pGRqOlRusIsUbSfS21SWoL8=","z\u002B7dFdNvBMFFhj6J43A8GNAeRGZDRE9fJBXsMZn8Q6w=","TJw0sjBelr0Seoq01m46S7pyr54gMVTnAVNvkOtdQo8=","QhwJqXiCldH9Is0q448wlapxq0fOWfqizAeAp8o3R24=","b\u002BtyfM3gLrrjjBtV2Acyvy2n4ui9eyuett7hrkRfprk=","esTG/RzWFMweUJigCm/n8c2TC3nMnIX\u002B78UyxlnlMzY=","m3AvOjAH8/pjJf2CugvB77N9jSlHjzzrlscHdC1JnnI=","bYtLRoXjXZPYMwBsq22RSXUdcvuefQE0QDovZXja4X0=","KH\u002BqxZAWUIo40e8TotvmZoaCyw/W/07ZqzuarTDfWs8=","v4U5AvCc8ax3gI8mvqTlpfoD7MJXvo\u002BI30R4UZZjHV4=","Izy\u002BG9sQvuqJIS\u002Bkn7h6HY3Lj9\u002Bxe1e0QeNn5/u9ezE=","A2zEx9sKXwDnk33Y/17r0QOR/n4rogTNxPCJ33u6wEA=","qetNIbh\u002BOieTRNGeFMjt6GQhjnFiXwq7Mxmnfido6j0=","k7AkoOMWMzvZZApX0fnovyvfDV6lncjh0LlOf/7AvLQ=","CFrvy02GnMUOLEysk9iB8sZEayGavOEKfjylK1gDw4Y=","i6iZMr3lfZy0PeLlGgkrAi3HcYo/LdRA\u002BafRt2hUtYM=","di5YdU8/yMox3MrWjWDK0UTk5PGpM7LwsNN29ObdM9k=","A\u002Bvdb6eXyIp4wnEDKMDxgc5QPAWvMW9pAo8F9d6pfwQ=","5bt1i/a6Fpu2lPTMAHk9RTTyA97DnnnIWx/URZBk9Hg=","9tAxXAtRJejmaCn0odNrVUXZOkFWi36OnfYFxqtSEbM=","P7SFz7xPqHNQACSf7qmmr\u002Bc7zLMCnGdkLrkhO7lLqgQ=","5kG/3VZ/IOq\u002BCzKBRr9y0tFJYYDQ\u002BHthXyjzEu/c32E=","COAgw7qURQ/RGvm45qMYW5x5GfzGdi8Ljh4fZURPjU4=","t0Om665BJWb92dChSEFySE73yyyUAWmupoe8yGS0d6A=","\u002B64vcyhpGtvexvx/LfvvLp8IBopaqk/zVUEtX9wHCqE=","/KLGsaXuUqv7j8zF4l4adIHvO\u002BGqHoO\u002B4B7hCtFFsAY=","41s/C6fl3KZjAryq1\u002Bu6BpLGsDIQ1ffBM5oKRnv\u002BrEU=","GJWqBqiZYoiSXboEVct0l6CDR1Y4dNgSu/po8cjeuBw=","G4Lh9D7kbKsWDGW7vFW1ZhDzTfRzCdyaX/T6mGm5hKg=","ywvZOpn4PEPEPDxoxnM5GLbq97MMPESb0p6QiACrOa0=","BPJpJqIOiHCpyQKq0H1Imh2alcVo5a9KK39At/jhaXk=","z8DhCDsdgMNldBeAfoqzsMmoxwQEzEOD6s3bpRQlVjQ=","5hOEEZuMFk2HSXY6LQsBRS0IuLHZI2S4lGYMYU\u002BUdTY=","zjuZLZlmtgJa/elAeGjFphePsc7L/KO8NMmz83GtMg4=","nVJdZSblk0/F4q5zLlz0elkuJTn1gSkGTi9sRhXPhG0=","0QFkuuEZMc7R5wQj9zdT1OsciBDPgxIMwboK4z6wR0I=","pCtb0Vjq6I4U1pze/kV7cHJZnqsM\u002B\u002B4FGLbNP23sZg0=","\u002B5dz6iqwUayxeWUZMYAWM8hKKuxmNArn8bD1/6UoWHg=","zDYnG4oHpgaRbQ64Enq1CgWQHqgkKtOJKb5wQjWVBw0=","g/tZ33AYwMKzL5tXOnCCbPaCJ\u002B\u002Bm7r84jh5e2h0evcM=","epojYX4O2tzOVz6v07WCLa5c6LACB59TFiyjjFFTYSw=","KA7FBOC6Fk9HJpFCHzSP3KQ4BNH\u002BvEhkuO\u002BNpWpDwF4=","spgw6R5RKJ1RIN7IhXL3xypCAzNXJwfz/kAdXcM3hAQ=","ST53r2rheUWGlVJHA056K4CsdRDb2IWoS4uBcYuOlZQ=","vFzZgJmdt9\u002BSjlz1bJMp4JsNP3scFm/lxjeaknAb5yo=","X0f3oSxq6OeaVEv88WIxn5nkiwkqqwLUYPn7SNjbFnQ=","QrVvYQkxQwKtQMqIOglFnB4AWcs04bQoL4SPF6rikCY=","WT20nbJZldCiwi5GGqvXWMFiV/GrmnEiIGxVgX8rXaE=","ES2M8b0YvXgB9Wc0nCGnnqLg1OpizhNC2PA\u002BT\u002B3yXHY=","FQcH0A8HFnDzpTdL17mCJ\u002B3O\u002Bc/7pZt7mHb7lmTqpu0=","GLnr4bMI7GHFXlQpGW8niqJyS9EQFNJn5VDTwG4LtSE=","\u002BNahplKfYWq33ek11eQIZSmP66PeefZ\u002B0gqvoX7GEso=","hSZbzlVDIeMaP5HLuSgAAN9XmQ\u002B0uq9T6D9OqZ0jfPM=","lgQZgTolsggxYzhey6WjhnbTHwzF/PVLpktXwAfdICw=","2DxgqQ7SJ7rP9\u002BLyiVsT1buRhaWE/nbov6ffMM/mT74=","MWQWPIF3S5U7SEuZJZErai0sP/soDFFy0xkezqhXrLs=","JgczcANgH8EqIpqCA8MkRPNCFDY4loCar/9qlvsH0\u002B4=","jPUeHcd7Otene\u002BVNL87Iaz\u002BQQljeAjRpU9RoDjh94O4=","r7yx38kAcN/18kc2CT02x\u002BFB\u002BUAJL4GkMJU6JdFr/40=","OYkckjQrtLTc33hR1PbHUdb7eohRZJ2HCq3UXrWwuR4=","C\u002B4N5KV0Xh8JeR7cOpfx7hCzPFFAN902cN/I\u002BnoQ6/A=","ZVng8UY/SW\u002B/6lRgLlhuiUBHQRNeijGgFjOXf7o3DPU=","9pLVAe/nzCdt50fkR72M9ctYHIDudKxdDuR8ZyUpFyU=","mJccf71HQGUqBiurKdPHGa7\u002Bu1kRN16SefepGMbvBsA=","QzqJc\u002B9l8Da5W/JMYkIIikQpsU4NwYzkmZFrg62ym1E=","l6Di/ORGE4WxheBreTwi4sT8OPz4SZhM6T/8yG8GZME=","KmV\u002BtZQqP\u002BHoXtXYpJaeO8Lp5\u002BnuibiwEwIoEDvhh/Y=","kbMx8\u002B59xysF\u002BGiBSTi\u002B5IgoYq4f7UzpSxuDdUhdHg0=","V/WfgsuFPNXnLQbVCtFFwXXm43Q4q/vWd\u002BSsJ2V0v40=","zyH7u\u002BvbIPYVtFSPNtFnzLYj6Cc4gDVerjZluywbZ18=","5P4F7u5rQtlMR7d5OZDQloaKWeflBvBmx38wniOSa5M=","MmodEAaecf3sjJjr2VPgO2iegeqAxdZrl1RhfRBX9z4=","SrVzf\u002BQbnbUgcKXNTb2p7DSEOgecLsJjUEQLuPVFINw=","MYcm1GbSC4z6/ehE0/FMuVH/f6xIpZRXlRS7AoKI7fI="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/OpenArchival.Blazor/obj/Debug/net9.0/rjsmrazor.dswa.cache.json b/OpenArchival.Blazor/obj/Debug/net9.0/rjsmrazor.dswa.cache.json index f1bb6f1..1e350fb 100644 --- a/OpenArchival.Blazor/obj/Debug/net9.0/rjsmrazor.dswa.cache.json +++ b/OpenArchival.Blazor/obj/Debug/net9.0/rjsmrazor.dswa.cache.json @@ -1 +1 @@ -{"GlobalPropertiesHash":"uX1JeFdFTytYlQPawspOQefa+m0agbesQLMiaeAPgD0=","FingerprintPatternsHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["Ql2PiheSms1jp3ze9191\u002BLNizQeYVsVG\u002B7N0KZ1uG20=","J7kZmrOHXGR7mhUJ1qRNPdV4NRND\u002BvY/dHsYc/Fs5FA=","hbuRrF72UQMMqn0g3RcZs/p\u002B5i7HIOUihxafPAD3EII=","bHBUbuODr8tWnbhuPs0aBZP4laY5o3BZ8foPGjnxvM0=","QeYkU9gxeRRO1jjvXgH7K/Nr2oa7opTYRiGTeFAt9hg=","m0ZalmIclG1CWERwq7TJzaS3UTwdWU7vJTH5wtXTRu0=","kYIUaswTSm/vuWdrFVk9i7vGl7gi4QutG\u002BtCBbnKC6I=","I92NrQVtDRIlAXcy/VupzptYIRXUmfdARzJEd\u002BMwPPI=","vwFknGJfBqZvyW3NEetGDZikd1HNT74cx2PojJjY\u002BPY=","3KENyb8mlCPncPOO5PbFfE0ubEK97voAevXn\u002BluJF7w=","NwDfbvguyiABZkN\u002B7yp6ClTOKkIFe/x4/v8tW4SUWHs=","Hourq1FvI\u002BJdRWbGSIe8r7GJGmkjFaIIQ8xB71hUBj4=","5n3ZEfHdKhL/ejFZA6mAyU6RVQAOd2wCgH3KjVv4d0U=","76\u002Bi/9Jz2zUyw2kfeC1dt0\u002B2uS7aFC2hMxE6ERdLn6s=","nvIt8ExR97wRoREETNPoXJ8D7Pb3KMAHZcwls7Q6c5E=","VfYWVT8Cth4Ztc4/xdY/qocO1V5snDiDHqbnmGMbvSw=","JxOQqF9Br69IsgvR\u002BTp8Vp93AFvsAKAiWtrgUjK7uKE=","5fR1TRHdDoMpaYhFN4ET8XHmhPG8hvpyxjiTF2qwx3M=","lxWH\u002B23ZAM/D8nGa5K0aryPD\u002BJPkC8vLJw2cEPhz8BA=","V8fXm0xeM7wossowKO5U7zhqV0P4uUGyIdkFdI9/LmY=","DGTAL07rwTwMmN0h4z8RtKm1\u002BbRR4K\u002B39bnl/wF43ZM=","rph0gnGKJ2XM54sr0iGk\u002BWTEktu647aepqf4FJUOLY8=","nklMuuwtwGoNNErDuvc4h4TaCmj4xyGZdjpGKgNvLGE=","Onb4gjU\u002B/9a/TKG0C3dG2hXdTEVs7OCECl6pWNTR6pQ=","WY7f0A5zLk9CD0lYECdLRR2b9b8GL2skPQO91AQ5wOM=","Ac8RYrUWtH4wwvUsQ9V6ndbtfhGuDzP1S9Hkh0JQLPg=","ixUpDxEYNKdhPZM9//dDIaFJGC9LvGDbh6rENZRYjWc=","SaPHXK2AwnFe3srooGZwMezdZmaxj0st4ZuBcZ0nfqE=","T5f5jCFFR0KCQwbQwHvZbWrVp7NucmIDfBynM8At\u002BFg=","DMXcRradogfvYUFJEJJT\u002B\u002B5RQjl\u002BI7kUSkHrHCl8oOk=","OLr6tSbzkGk2i5G0fVdSkw7v0IzsX6NL86pLF9m6eX0=","es5rRr8vQCVUTmRO5bFYu0yMvzBffvEDZTKp5IpEEvA=","//xOpsw6IkdGK7auzNWaN3ipl2miVcBMSjnir/YlMBM=","LxLYDw\u002BNEQs1/4eWj5xZUyDYpsFLgH0ApDhFJ57Tdxw=","MFYQHMUPDwTl5G2r85YGLzdn1v369NvEoKIV/yqP9D0=","suYCRRYSyx84XfGpJ642kjRBvpsYCZrXHIQdrDjHhM8=","FWll23MBvwnmTx45GuMEkpaohrEGlqtK5xFGH7EFhFQ=","xVQXdj83lrOmePZ2H/X8gQKeb0ZsdJwmwGlVhgn1iKk=","JBM4mmoRLcKW020j1M5/od\u002BktwV30JiF0IURK3neeVA=","LhQEEPfBv1x4zkjLkNo5UOqbP6vpsuxmDZfWrrYUOuQ=","6Ej25\u002BdEOADcqNkFwaGEjzHy7JwZjxZHE484x/wngas=","eFGzh1RmS7P9u2g03QpW6hWZdSUmi7k6aTjXbhIxvBw=","8EP2SMLjn\u002Ba9MBRxAWB0Chr/dyRQru36g4tGLaVvC5U=","1cSaY4ZOdlRQ4J8JEJcTCTaxFW6wCIkDNaHt4gOO6O0=","lOJzvq/mt94Oz7XdoNgAi5xhxeLtmYb8fQBwlPPQZZE=","OcnWLAVaHOsYs4bxnEnZqIWag3elwA7S4wtI2W/UU/w=","DeuLQvYjZ4UlibWp6SFmkw52aD71zWX0n497u3UXXXc=","9L2A6DEc9nUgGsAfznPoDJDiHK9N5yUnvVAZ55HFU5o=","jrhMriKpKb8MMoF/fFjCvVghgR1nPdlicua/iXMULrs=","ACBl7fhIc0CayChSvetz0aUZY3LURZTKTX4iJpPXelI=","OLO3HK2hyRh3i2tfvGpL4VQ2qLX4qRs9AEdW67j4XHw=","7oUeOonOvSKxmnwLm6BSBCZ52njjT3P\u002BWWUKM/csxVQ=","eW9wyhwEOMia1TW3GktXmZRDRLzVZ/M/UnXZzaOtri0=","lvUX8yPrVVFxgDMwib0qyO5QEl\u002BaU/rbwWmS/5aQ6fY=","Rg0Zc7\u002B6aN84D0yIgRswn0g5Z\u002BCedtn8RjWnxPXD6Bc=","7i19fmcUtxUfpJGLk9ori6H9NTqI2TYMBHblGvKBU5w=","haqWbxLhmiGrPyfId7Eidma9bDdT\u002BLmPiYFcTJeIvwM=","6Rdh8TmSgxQlWiZ1JiwrbUrqh6GigCZcyq3Y/p/GyEg=","3nVS5wBdgLMIZvvaoi8wriTzs3BDkKg37FtwHfDMhjQ=","PTCwsDOSptetl4jJHyelugE6oXbRSgUnDGBZeR5DJAw=","oM3fprbjJqXYyR71cunp\u002B9MTmrmwFw0qW001cFeiCcw=","bWSWVjQ4VaMtlzN507whxF8OFLvpR7sBN9PrKMWr0eE=","sx1Dwdc8zMihxQGPHynLVJvNgzJy2ZUg/fc8X3ObdRA=","Z3fFR6A3LjtHctsrXbpBgmiILUtKtvM\u002BhbtGbYaEyME=","rqDtoFM7PjgyVdED7tRkedaAHeGQzoCC\u002BV\u002B6TSXIrjI=","zzh3FW9R/C\u002BpOP8SPV2JXRRAhd1LLuYlGOyyOnZ9Gnk=","kEChOeuFq85XCariss4dIamJogzRzhHv3I\u002Bwz\u002BTM3qg=","ILgZb/GGIWdwm7iauiYzhswQLxIwoFQmo7WuMsDLZI8=","hPcbJaDUq2Gr6BBrUFWuGPpXtI2\u002Bzf\u002BB131nyeR/VhM=","6VyD1SdAUVe84G4oPqyBEYJ2vsYxzN6p\u002BE2JPzfsaHs=","g3sYtiwGKZqWqJmIFnpgMlXuzekOZOJp7bP\u002BeCGlEJg=","5kGuu3Hg/IoCEyBXsQ7ggsNkiuRTW4VUgJHrzZ6A32A=","86igtL5nen7Tgz0yLRa5OhZFSGs3vQtxfV1VVcFO4Oc=","CB\u002BapsEcLzAcL4GqvOkW/KuqJocnparn3afKeW08Gpo=","jo4nR9JwYj0jS2qhavza6khQ53GHEqiQvd40PhGVkzE=","BdDS40U381oO\u002B4twgZEtrylkZbr1vbIEVu0CWIzak48=","VwAVeG6M0BmQG6nUO9pK4tCdmVqufP1vgfSZBZ88gg4=","WZQuaNaE5aTxxNSSihV4LCYmsmnYAvQgH04Q0/cocaA=","iqa6RZt7hurWN5EdYPwRUxBMsNHNs09/NeCymkUk9wY=","WOacgMbwtqCWjj3xw/xK03JziBF/EzSqLTG2\u002B9jRxiE=","Eo7LOGbafF0m0zOPjsalINi\u002BSHBpwcal1xWz9uRd/K0=","YfKtsjtmrMmsSfQxklH1c2jhbhYZHJ45s0ZwLd2wfgY=","nDDegdQlUUl40zD1o7U0o8bOcsvaUSAJoLt8CQiKtsk=","3H\u002B5\u002B4xHJG4qrFeFLQ44XNEz87C4xSF0U8sbTaWooyA=","nFolpVOv6x/d7d129\u002BFjnEFIRPg97/gcsykT5uJUeaU=","EyzorjZtaqkZZFt2l7JXPuBZeoNbRLHMW1aCDU2HMlE=","OY\u002BHUs9RLIJBeZBLVpWyUDmLasM47lHdJNrjap2X3zw=","7ZS\u002Bc1EhkIDOkfsHtnPQMx6PfFYaIDh03Uk/7KmVCTc=","x61JOwZ6Rincvaxrd7L/sxlpqJIbZhN8ugbqRa58Bh0=","2aJE9mIzYveQB88MIjZDblZknjB6XucYyey1JlyCSHw=","a2eYERuBz/K93earv8BYouwMI3r6GQx/azPhwa0n5Jw=","hWElLGqRAvO5F2RJhMsV9KLrAwnB84Y7GF0qcTQ9v6Q="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file +{"GlobalPropertiesHash":"OMBGoeGIaCooOF1kiwWpeGzYz3FxrBcE9XPasBo8YhQ=","FingerprintPatternsHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["gIdx8p67SpOPJYooMsWBi4wKJmT0ycmcs9woYF7odHw=","Btp3cFEQ76ByfeqlWDb1nCwpNprEIaXPUy1H2QwnGGg=","w404Cp8QMVSMRLQmhqeoQt4ITtFpNhm33YTevp4BrrY=","EaoUNe/tUDgB569VbXEkO\u002BdDXdjSDknkoNuPW6yOAcw=","wRfHtihBjE6nzzNk2EB4mIsHQmVCtWlBIU7b7bCQfuw=","dAnqFSOhixmyDMzFCt\u002BPggQ4gcGEW3ZUqrIQ3MlyH2s=","AE7soQDbSK4U6q\u002BPG3HxaaR3/15VCtT/3T0XUOKAJeY=","RBVy5noBBMPakCWbe1/PTFHn2TJ\u002B07iweoDHLuFhLBY=","igkRrnXuP6vZa0Ydb9Q\u002BtQHJ8jf1C0vTenwUHJ4JgxY=","ibqoRZRfQeS7WVaNL09U24YOgpO60WgbAhKHtOJPICs=","BVfrSSWe9T3nLqSffVa2uNRT2cuDe\u002BoXzyjxB74Mq6I=","qQjeK5b7KgA6mEwm0vnk1178MXhzXk\u002BLlgzzlKH20mQ=","uPc/UH/7fTCeOZp5c4t0uVUVDUN/WxduRWaBrpeWSrc=","pA/bXE5p5a0Tj2H1pHhNneJJ35FzBzh9r8v2aLczXjE=","rgJ\u002BqzvBs2mtdutKb3mLpLJb4xV/\u002BWU0oxz0Eo9Mt9I=","EIuLTJ8Lzsgf3KXJJsgVH/SL3MJpL3KPlPoz6RmpVfw=","l9fS2umrAbOUln\u002B\u002BOBRL0kjpgVljQ\u002BO6VbVr0WKjoTc=","BO1hE6PZlvZ0IZA38gdAYlrLwhWkKKbFkhbAwv2jMc0=","Z0q8q/0TwgGuAPEZtw4nPVEQC88xojLF0qeGb9UIsFs=","UuOhV\u002BLlHW5OFbPbW9uo2G0V52QW\u002BpKRf4TJsDkyNtk=","Pc8A9YocUGK8VUfVjHDR47HBDB3rsgWB3Y/oqrXKAJw=","uYYCZTR6TV4OCQlXSwOW09pF7zubWZYfoSTa41/bEqM=","jobLTu/VjZcfiuSyjT4f7GKRy56GUax3ZFK1muVuSRs=","bYuEUd\u002BxTrJkOgKHw2OSLRn2muLzh0mQJrpaqF/Nrjc=","RMFfX1q9QNu\u002BG/R9eH7W0qia3cclbJvtVoZH5qW2Mek=","1SEMHri05wA4KA1ZfrgEZqmAZn3JLdLKL13hV9Drv28=","hP4L9VOdf9fRYCZEwlyLNVGObDu3UiZ1\u002B41eSnInq9A=","t0y4QjjD8oEYmB295mduo3ykk0HpJd67dKwR2jyFlKI=","ngsDcvtPocFDvdzpYAVYmgWuH1LnJ98kKDItEPFGe\u002BE=","xv8BzP0pl8xti3q2YS\u002BqetkiOWEVwjNZjsW2Udon2As=","sAFoigHK1jzQb5I53EuxjvQNWmeLsY9zomztjwQR\u002BI4=","iLuOL83LQjq2gFSXZNRo8Dv7riuvxtiqYLDSof1ilvE=","y2pKV7g1hma95a3sQoypVO8Qv\u002B8iFsIJA7gHgPS4ffY=","VfpIN9/9YYpHJ/Z3JLuYlXOeDeux/WhHCIShaoHflJk=","a5QYTHSEE2Zy7M4NU12r1BiIurqgiS\u002BwpPU/dlytpAI=","BHxQuWENDxX5QWkMGdCBYg3xlGk4b7iYAjXe7BvkV8Y=","c1/70YS88MimV\u002B8k5DBeL5WpvpPWfPD\u002BEdaAra0vSi0=","VSaP78tR/2vezO\u002Bb6VSfp3LARPtFh9aO8zefPzSHFuc=","lk0jNWB61LE8wQDDLcezNVkqmm/aIwrzLxPhHO6bIlM=","\u002BXJFvDMCPEM5ntjLPC0rfU4tjj1bnp5qBtqZ/\u002BFQQfM=","jxpb0Cpy\u002BDxRXHmtRYMX4OqQE7b3OyFf6wYHjCJ8GAk=","Ti4EKaezXdkeAgx4vH0tQhPNksJZupM4qdQ/QnuxjTA=","4WTiaEnaeaI8BGxVLf2hHxafftSvVD8o7SL23\u002BS0Q4w=","u1tkIKRxvth0m85TRy1GasFBSQ\u002BfcQKvf9zH6A0Big4=","PLwTHqjWyTMaymS6366TijilfNlJsE137GAEEF5LlII=","0MSOV4rwhDJTkWX3c4QGCZGR2tUuL6PV2jIFF8HuAN8=","O0BVKlWWf4FxUqDgADmL1F/CNiBEPlEkk2UHuSe2/nw=","soD5XzgAGw6WRDTXaB0j9yJEE7\u002BaaOfg9ePoreN6OFM=","cO9k\u002Bav8gLb2p2zRWQA4zUhFshW06ptunkjKgU/1NQI=","xvsKpyQ\u002BRd5q0LfGh7Z6yx06TepRzrwGbbktg3kIMbc=","JgQKDfdUzD8QaWLxmaBr8frx8/Fy3MG/OttioqHiAcI=","Hx1nSTVPjejd6M8EI2WnB0CatZUKluHvlNI0kp16EkE=","bX2dATY5/k4HQfnknC/M0v\u002BJBSvHGjZ4t4wzzYoZCwI=","9vYc6wix\u002BJlZX1GUamiuu/hem1eXyNbwHXxn7AG\u002BIGU=","lN9jnVv4/YLLG6MvuTRijC77bORD7NFLOvATZDkr3yI=","0JxZbXwfyBfduKjLMAxnO9Ymb/s/CdqvYt016JHMd18=","I00NP7PprLjaUB3jA2GBaeXAE9Zohtkthc7PxypShMo=","PlePHWk7Bg6HxBHognW/xYa90ZZUeh/2r3mKWEyuMig=","KbkzCnopQtvHy6E5koOdFSbfXeVNFPijdDhkOaDb0IE=","uWPBekRoA/yphUeKHKd0YemDTpII\u002BHoR0DBc3t8YVcc=","kz50Hbw3a3veE5qqU2IsU0LqpBvMQFCVjj5DnWOpwNw=","O3Mm88W6pPQmVOr7do9jTm5YJNjVqO0QhRDzaRRF654=","nuoSJgru8YOP5JFFwqatjGcAoHWG6TP4SNNhh0dImcQ=","JVq9qzBPgJJilhfXannPkrJ2Cxc8KZWGRrSSF/6X02c=","hTAwVKkuDfBMC2snF2V5AgjWbQam5Lh78NNTlckz6sM=","roUoHKxCa4IZ6NH80YSWWWLqU8OpF1l2mn1a3cUxT/0=","qvsYjj55jHE2S4f9ph\u002BqrrKKGHuQBjFfspnz9s2CXqQ=","XTYj2PyWBimUAYhqWuAJEGkhpVYKiamFNcERkMNLueM=","/uyy8fMaruEvAQXW\u002BN6KW4DqJC4WccittBszqhYJ3sA=","WJsULtIvqgVsoxAvb9aPzgd7hcjrWVvto2W4gawrys8=","P13BeLRBqXNk1rty4Cd5qaO5o0r9U7sNAt79//O9Tls=","rJ/oB7o452lU3a25ya0SbdpgrfUQpc8\u002B2PVr58NbZiQ=","oUyLS2aLzk0Z32rvHzI2ry3yYm6mfhfSvR77QwziWoE=","DjqvCJJHK/ekca9SR4PR0CzR\u002BUY3Mi6wvnqaArbAsPY=","ldwTIbkFWB3HLaEjUEnYby27h3Jj3Iv0anBZIT2jUAU=","Umtlf90ZCF1JrX0RZo/4qhNk6F7GzZWMDlBnPJHWVVg=","LDXdBR8HtQS3LUFSs2peKIiC8SMlVn\u002BTb3PQXoxzDnA=","A6SkEkPuKpjof2ICJck6pGRqOlRusIsUbSfS21SWoL8=","z\u002B7dFdNvBMFFhj6J43A8GNAeRGZDRE9fJBXsMZn8Q6w=","TJw0sjBelr0Seoq01m46S7pyr54gMVTnAVNvkOtdQo8=","QhwJqXiCldH9Is0q448wlapxq0fOWfqizAeAp8o3R24=","b\u002BtyfM3gLrrjjBtV2Acyvy2n4ui9eyuett7hrkRfprk=","esTG/RzWFMweUJigCm/n8c2TC3nMnIX\u002B78UyxlnlMzY=","m3AvOjAH8/pjJf2CugvB77N9jSlHjzzrlscHdC1JnnI=","bYtLRoXjXZPYMwBsq22RSXUdcvuefQE0QDovZXja4X0=","KH\u002BqxZAWUIo40e8TotvmZoaCyw/W/07ZqzuarTDfWs8=","v4U5AvCc8ax3gI8mvqTlpfoD7MJXvo\u002BI30R4UZZjHV4=","Izy\u002BG9sQvuqJIS\u002Bkn7h6HY3Lj9\u002Bxe1e0QeNn5/u9ezE=","A2zEx9sKXwDnk33Y/17r0QOR/n4rogTNxPCJ33u6wEA=","qetNIbh\u002BOieTRNGeFMjt6GQhjnFiXwq7Mxmnfido6j0=","k7AkoOMWMzvZZApX0fnovyvfDV6lncjh0LlOf/7AvLQ=","CFrvy02GnMUOLEysk9iB8sZEayGavOEKfjylK1gDw4Y=","i6iZMr3lfZy0PeLlGgkrAi3HcYo/LdRA\u002BafRt2hUtYM=","di5YdU8/yMox3MrWjWDK0UTk5PGpM7LwsNN29ObdM9k=","A\u002Bvdb6eXyIp4wnEDKMDxgc5QPAWvMW9pAo8F9d6pfwQ=","5bt1i/a6Fpu2lPTMAHk9RTTyA97DnnnIWx/URZBk9Hg=","9tAxXAtRJejmaCn0odNrVUXZOkFWi36OnfYFxqtSEbM=","P7SFz7xPqHNQACSf7qmmr\u002Bc7zLMCnGdkLrkhO7lLqgQ=","5kG/3VZ/IOq\u002BCzKBRr9y0tFJYYDQ\u002BHthXyjzEu/c32E=","COAgw7qURQ/RGvm45qMYW5x5GfzGdi8Ljh4fZURPjU4=","t0Om665BJWb92dChSEFySE73yyyUAWmupoe8yGS0d6A=","\u002B64vcyhpGtvexvx/LfvvLp8IBopaqk/zVUEtX9wHCqE=","/KLGsaXuUqv7j8zF4l4adIHvO\u002BGqHoO\u002B4B7hCtFFsAY=","41s/C6fl3KZjAryq1\u002Bu6BpLGsDIQ1ffBM5oKRnv\u002BrEU=","GJWqBqiZYoiSXboEVct0l6CDR1Y4dNgSu/po8cjeuBw=","G4Lh9D7kbKsWDGW7vFW1ZhDzTfRzCdyaX/T6mGm5hKg=","ywvZOpn4PEPEPDxoxnM5GLbq97MMPESb0p6QiACrOa0=","BPJpJqIOiHCpyQKq0H1Imh2alcVo5a9KK39At/jhaXk=","z8DhCDsdgMNldBeAfoqzsMmoxwQEzEOD6s3bpRQlVjQ=","5hOEEZuMFk2HSXY6LQsBRS0IuLHZI2S4lGYMYU\u002BUdTY=","zjuZLZlmtgJa/elAeGjFphePsc7L/KO8NMmz83GtMg4=","nVJdZSblk0/F4q5zLlz0elkuJTn1gSkGTi9sRhXPhG0=","0QFkuuEZMc7R5wQj9zdT1OsciBDPgxIMwboK4z6wR0I=","pCtb0Vjq6I4U1pze/kV7cHJZnqsM\u002B\u002B4FGLbNP23sZg0=","\u002B5dz6iqwUayxeWUZMYAWM8hKKuxmNArn8bD1/6UoWHg=","zDYnG4oHpgaRbQ64Enq1CgWQHqgkKtOJKb5wQjWVBw0=","g/tZ33AYwMKzL5tXOnCCbPaCJ\u002B\u002Bm7r84jh5e2h0evcM=","epojYX4O2tzOVz6v07WCLa5c6LACB59TFiyjjFFTYSw=","KA7FBOC6Fk9HJpFCHzSP3KQ4BNH\u002BvEhkuO\u002BNpWpDwF4=","spgw6R5RKJ1RIN7IhXL3xypCAzNXJwfz/kAdXcM3hAQ=","ST53r2rheUWGlVJHA056K4CsdRDb2IWoS4uBcYuOlZQ=","vFzZgJmdt9\u002BSjlz1bJMp4JsNP3scFm/lxjeaknAb5yo=","X0f3oSxq6OeaVEv88WIxn5nkiwkqqwLUYPn7SNjbFnQ=","QrVvYQkxQwKtQMqIOglFnB4AWcs04bQoL4SPF6rikCY=","WT20nbJZldCiwi5GGqvXWMFiV/GrmnEiIGxVgX8rXaE=","ES2M8b0YvXgB9Wc0nCGnnqLg1OpizhNC2PA\u002BT\u002B3yXHY=","FQcH0A8HFnDzpTdL17mCJ\u002B3O\u002Bc/7pZt7mHb7lmTqpu0=","GLnr4bMI7GHFXlQpGW8niqJyS9EQFNJn5VDTwG4LtSE=","\u002BNahplKfYWq33ek11eQIZSmP66PeefZ\u002B0gqvoX7GEso=","hSZbzlVDIeMaP5HLuSgAAN9XmQ\u002B0uq9T6D9OqZ0jfPM=","lgQZgTolsggxYzhey6WjhnbTHwzF/PVLpktXwAfdICw=","2DxgqQ7SJ7rP9\u002BLyiVsT1buRhaWE/nbov6ffMM/mT74=","MWQWPIF3S5U7SEuZJZErai0sP/soDFFy0xkezqhXrLs=","JgczcANgH8EqIpqCA8MkRPNCFDY4loCar/9qlvsH0\u002B4=","jPUeHcd7Otene\u002BVNL87Iaz\u002BQQljeAjRpU9RoDjh94O4=","r7yx38kAcN/18kc2CT02x\u002BFB\u002BUAJL4GkMJU6JdFr/40=","OYkckjQrtLTc33hR1PbHUdb7eohRZJ2HCq3UXrWwuR4=","C\u002B4N5KV0Xh8JeR7cOpfx7hCzPFFAN902cN/I\u002BnoQ6/A=","ZVng8UY/SW\u002B/6lRgLlhuiUBHQRNeijGgFjOXf7o3DPU=","9pLVAe/nzCdt50fkR72M9ctYHIDudKxdDuR8ZyUpFyU=","mJccf71HQGUqBiurKdPHGa7\u002Bu1kRN16SefepGMbvBsA=","QzqJc\u002B9l8Da5W/JMYkIIikQpsU4NwYzkmZFrg62ym1E=","l6Di/ORGE4WxheBreTwi4sT8OPz4SZhM6T/8yG8GZME=","KmV\u002BtZQqP\u002BHoXtXYpJaeO8Lp5\u002BnuibiwEwIoEDvhh/Y=","kbMx8\u002B59xysF\u002BGiBSTi\u002B5IgoYq4f7UzpSxuDdUhdHg0=","V/WfgsuFPNXnLQbVCtFFwXXm43Q4q/vWd\u002BSsJ2V0v40=","zyH7u\u002BvbIPYVtFSPNtFnzLYj6Cc4gDVerjZluywbZ18=","5P4F7u5rQtlMR7d5OZDQloaKWeflBvBmx38wniOSa5M=","MmodEAaecf3sjJjr2VPgO2iegeqAxdZrl1RhfRBX9z4=","SrVzf\u002BQbnbUgcKXNTb2p7DSEOgecLsJjUEQLuPVFINw=","MYcm1GbSC4z6/ehE0/FMuVH/f6xIpZRXlRS7AoKI7fI="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/OpenArchival.Blazor/obj/Debug/net9.0/rpswa.dswa.cache.json b/OpenArchival.Blazor/obj/Debug/net9.0/rpswa.dswa.cache.json index caa83f9..027c039 100644 --- a/OpenArchival.Blazor/obj/Debug/net9.0/rpswa.dswa.cache.json +++ b/OpenArchival.Blazor/obj/Debug/net9.0/rpswa.dswa.cache.json @@ -1 +1 @@ -{"GlobalPropertiesHash":"XVWMafEhfrS/fg2Zj7asTNqgDrfpiwoMDXnjdP5dMDc=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["Ql2PiheSms1jp3ze9191\u002BLNizQeYVsVG\u002B7N0KZ1uG20=","J7kZmrOHXGR7mhUJ1qRNPdV4NRND\u002BvY/dHsYc/Fs5FA=","hbuRrF72UQMMqn0g3RcZs/p\u002B5i7HIOUihxafPAD3EII=","bHBUbuODr8tWnbhuPs0aBZP4laY5o3BZ8foPGjnxvM0=","QeYkU9gxeRRO1jjvXgH7K/Nr2oa7opTYRiGTeFAt9hg=","S9txWBMkH4Yj1eG2HUPOkUWz9AoQkGdbSfeW8NgN\u002BxE=","o0aea9nqp02517BUOs9/nGaM6H/UnpWWtWAeDomcgV4=","y2dTx6xFkyjAzITP/\u002BSs40MCBm/Tmm7ZOBpI/DqlBFE=","ZmxUJu7Va54dnyLTpPaeb3LXxiTxJP0LRIHL\u002BnuF44c=","cg4n0kRzzWgY2qlZdUwROVqv25x8/QQaCM/NXeXHAm0=","AcEyg5sF\u002BG7h8cTd4OPHIBGSDc58NkKWM9LXnPCts2s=","VFrRe4girF3FRpDOlYSBnVrkOnl76ekWOxNm7mF4t0A=","j9/Tw8fXyMbeynWjJYmY6kJ7FJ59tcwknts73gweoEI=","8d5OfgLy6a4RJsFXKLcxA1egZHtmIKAbps5lBmeNt38=","AaPPr3bR/sBWrgmYgZKKMSIKNbQeqLf310KQRpKnfsI=","5IT4oOrh1c8VH1VjwWuD7ai4PiPBq/13R4tEiY/TSPI=","Czn9tLfHWPwVf9uh/XrNgA6Ks6J9tVB4JwfLegj/ftM=","SphdH4dZI\u002BUI/NAY8yVibP3CY6lMLtHcvNauNjiMUG4=","NuRRqbDGasbzd5BYo0DL2OjUjjh57dbMlAUsJkIwkPM=","yLN/BA9iAut9Pd7HzcSogC02i9ddxjif2fdbbGIUB70=","CPWWJ2Bp2hzILnMJAY673sNfUfm3FZSJEAufT8hMY6E=","2QKOn\u002BHTSGGnvtnKhUgPyG3helsQD0OCrMBMj\u002B7T3lw=","wtIXZYfkJHNxuSRxgTwoC\u002BU59\u002Byk38nSrpBgrm/qiAo=","9b\u002BWZIOTiDlyAbFbG434M0hhY786ENq3Fu7wCA09jUo=","87spKP4vbfUzWbrg4lDHyoNr6kpsnJEK24nTFEP9rck=","/vMoyd2fA4sgtfeJQc7cppdLQDn8TcwztXnss03HUUw=","oNCxGtvhYEhZorlxe3gldEXtD1YdpsMnXGcFwqqeeQw=","Ld9r0/i9fUO7QsnlP7r1KKriqtVDmSx8cLG0in2YMSo=","53lPHr9hM1ATjEpC\u002B2/TXZeAlArG\u002BcTVBOU0rnOCSYY=","XPDTlgt2uSfOwx8b0oKHXnDrOjRanq/v7VC/aAqsKsg=","XA43zdGlmTrdY6wEAYknKYBFN9IztLZ2jSrofw0b6V4=","InYJRKMtWl6vOkkIYW9DWTiLIRhMbWwp/GcLrfgTYhs=","b/\u002BexuVW46WvMaRrT/V89clZeIFOODWEpaVshFcyvdA=","A0ZKYLLhNwY/0fzk/IVDeOqWtMmS3l3OqAUcDcBwc/A=","CVg6HDxR8p\u002BKSy1NlJ3zIKBQvgufzL\u002BppFGICUQ\u002Bt3w=","QIOQB6Fr0POEbCmn8nJHkvxhD/MBJBkLkRbYJLA/IYQ=","JJFYlRoX9pKL3BogzIBb9yD5WmSNP4CS7LqbhDK3ZV0=","m//7eW/q\u002B\u002BS7cLBAJncoxjjMdd4ob9yeVwXyO\u002BUT9eI=","bK\u002BMzz3RPOuZoQyDguWcV6QBHxrg2U2\u002B/bAVZ\u002BgpVmE=","Xo3U/owG8nW3wjViQjnwmTJExAAnQChLevgIL6SxVgs=","SfZ1OYxt3htPAa47uV4vmWa1Bdgc4ieW\u002B9xakLRDHO8=","vzc7efbyllU994SpWhcuSAj24nDhk3qWXXJzCFKhIec=","Hv9au18n6omxvLxP0EsBJ8HeLnUAyfa1Jg4xpVg87no=","adO3IRtQJ9N8t04wKkZwPZiqyI0LJOP6xF/Suhog1JE=","4pzRrv9HLcQeFngePzOiTXUmXw1iRIiKRoSCce0cugM=","ngTcMNcqz/xhWZBn5CPSCOvjsrREr0HuEN5UW941TxA=","4l1lXmdKgpzOHOEo1Y38wmNq3R\u002BnKlk5pGByeGQhV48=","orh0CcK78/TtV1LjA11aYsn/YxKYUBNSni\u002BannRaWeI=","UGiYv\u002B7Q0HlOyGACdO9FzYJXDNFgT/cKO8xYQLlx5eg=","Iajje3MzybP/xKY7tP/lxF1Wzxu3clDjoudDpWYiz4E=","\u002BWJiKrsmPI08poiY5YRbXcHr8gh5/K1NBnqxTPk687o=","4y/0P3Fka/a0d4h63T7zQdLNETSSMk1dLwPFZnZxhYY=","GkRWxCXY6fd3nM7srYHaxrlPwPedTK5vmZ12/\u002Bf1tbA=","wxWGkIahe3IiZDwwPBaPzysTgi8tx8AOz6emBy1ijLg=","zSEvxET0DOTN2cpCiXQExXCGOxdoXNvPpmHsUTUhTXM=","4n9PKTbTnHbwJbn0rzhgsQnIrFt83FYEMWA4GNooCzA=","BZMtXiMXFAikFlU3GpSO4qnu4ytUYCrr\u002BH44xQ0sqVg=","WhBc1hqkyc8177jVvo4eQuWlpHVI96iHm4VFZAOO7Fc=","mcMbV2\u002BNCfk5eAGwoYnsWOyN8b8NuAO7iH1ewAHyW6U=","DcLX4hxLgf7iG7fZIKLj7eUITuiIGEgGnDYTCSAmcII=","HIWiw5QSZAM31eMHCThbcI1QT5elqHjK7Jy4xDx\u002BzVo=","eneOBpNrlh1BZwZtQzWDI58SEDbGgUOI0Ip1LbxS7GI=","LKodfQR57sYNpMQfgjYqGTNyqBtnrBNqdoSueYaLTes=","EF9p03ca3HRBjNS7eBFTiy/KG34E2EVTY\u002BIWzX8NNpE=","WInpv\u002BAXyKQpJ2GusqbrSBvGahXZ5qHMEPCI97JY\u002BVg=","nzN2wI8kPPjBRWwSKLalEYmrDXyx2Y8f5S\u002BJCKVFj1o=","3QVdUFr8xuBbDhinUAe\u002BtHZRSDw8whCbedlQRGg3ByU=","Uml6Zk4Nd3yDJrKkoHqxmSCEYTiat3222CyFbAAoU28=","GstRCs2Ap1VD2t\u002BJ6nr0UpVFlKhrBm8Fi9PmSQbgj\u002B8=","sr4sunvZGYlxTk47R8QnORuMVrTEufupLlUwtph8jAE=","fm0hNxD23Xg4KufltLQTxCmPvcM3fZYY\u002B7jlnuLutTc=","DH6X9\u002BUzPeMZmgXVBMIcvPEMbk70kYRRprZcygSB9Q8="],"CachedAssets":{"Ql2PiheSms1jp3ze9191\u002BLNizQeYVsVG\u002B7N0KZ1uG20=":{"Identity":"D:\\Nextcloud\\Documents\\Open-Archival\\OpenArchival.Blazor\\wwwroot\\favicon.ico","SourceId":"OpenArchival.Blazor","SourceType":"Discovered","ContentRoot":"D:\\Nextcloud\\Documents\\Open-Archival\\OpenArchival.Blazor\\wwwroot\\","BasePath":"_content/OpenArchival.Blazor","RelativePath":"favicon#[.{fingerprint}]?.ico","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"2jeq8efc6q","Integrity":"8kNQh\u002BLErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\favicon.ico","FileLength":15086,"LastWriteTime":"2025-08-12T18:28:17.583355+00:00"}},"CachedCopyCandidates":{}} \ No newline at end of file +{"GlobalPropertiesHash":"FteAHsKsXLDKNnep9QWKnAL5HKFfWLvW6eXVBPtw8IE=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["gIdx8p67SpOPJYooMsWBi4wKJmT0ycmcs9woYF7odHw=","Btp3cFEQ76ByfeqlWDb1nCwpNprEIaXPUy1H2QwnGGg=","w404Cp8QMVSMRLQmhqeoQt4ITtFpNhm33YTevp4BrrY=","EaoUNe/tUDgB569VbXEkO\u002BdDXdjSDknkoNuPW6yOAcw=","wRfHtihBjE6nzzNk2EB4mIsHQmVCtWlBIU7b7bCQfuw=","dAnqFSOhixmyDMzFCt\u002BPggQ4gcGEW3ZUqrIQ3MlyH2s=","AE7soQDbSK4U6q\u002BPG3HxaaR3/15VCtT/3T0XUOKAJeY=","UbuNxb1uhIT7y7\u002BMeJaIXD1sG3A5ldk9Q7HsTt/\u002B\u002BjM=","qRIKsEJT3yQlNO13AkF\u002BFF04q/Geaz8d1foys7uRGGc=","kHJOmY8am5t4FC1Osqx4GuVyH7WOGyL1JifQxt/mE5A=","yXO20LCfr12y5Z144WvxGrJew/lYR0tSrOE7/IqOGxQ=","IA5h3h6EBHTqyxTy8PyEPRe6XAGL89YaAio3ZrRu19g=","d22M6Qk3u21tcaubb1YVn\u002BL58RgWR7zsCrg04jC3zA0=","Nifwip\u002B8IfY01UqJZqoQrgllM20BQOx52l7KGxS1qTo=","UmrjfpB64DmiCXtexaNqkDquv6P200uTQ4LglZMXaNs=","yvVFNZyfSjvAY7/bpKWVqdMN8t6ASfgwYm\u002B2HU4nZiQ=","UCrKrAbVJAvjddVsyjl8OJs4cfu/RTlyAc5HVtSKir8=","CQdZvSANCXaWQYZlE1fuiuks1uO2C2i9JgHMWdf0kSM=","HxD76\u002BDH/kz3knKnmzidQ1KtQuR0lTMUgIGpJqNkT3I=","N3NLekH0CWYxNmkwWivY3xI3htmTY6mwkTkDTW5yrCg=","jphUnCPPh5dycU2ITBMT915\u002B3bv9CaJ3XGClUER6C08=","haooH3teiQZsBjHmAlpXUokEdbpBX724yIwO1JT1rw8=","JXlQK\u002B/KweBt/7SF5VAgrpTeZnANga8oq7omo355K/s=","kla26VsXf/JQvCE3f81hEvkIDa3/nov7XcdRM3x5ElY=","He3xnH34B1odamRi8gAM\u002BfXyJXFmFtAfnWXuysphvL0=","KdW7MigGc4QuQw5E9t7NlktH\u002BfMdaqIushQNUzfswPw=","bM1ZPDB98Sz8leaVv4UqA\u002ByNS\u002BXZAbZjPLPsGgD3spU=","5CgFs/KHR/cJ4MMb\u002ByWJd0Cs/MGtWYz2UM59bxDb/Y0=","8VgNpqbC9ZDUBR1Bz9k\u002BzNxlcgnsCl5OdGi8cIm9GCw=","A60F\u002BfXlW7kIgsYCnagq3c/OVJktjxDvftUhAW1VuiQ=","o65sG6Ltor2WRPtegGkRYXqrJRo8SOrhqe6yjL9WVJY=","\u002Bj7ZJ0fpZZ8l5MmTWO94AswhBA3LX2YtiVmGJB3fFv4=","\u002B25Ja8EzWKYnNKPjAzJFdSx\u002BQFqCPLDbtkH77R/fVGs=","c1ssXFNuog0pUh2\u002BkzvAriFPO2e5cu6xqL4n0g9/3q8=","j8AEvLOILBmwQLG5unMAKNTIYr7AVON7cgiU8f/F6Y4=","vpPlf3ce6\u002B/cJ/Fbcuo8l7ZH8OVrTJV3kOeb9Ja6i88=","/JiwfHaI0TdoX2X8z/pEJQN1yV9MAcscOEnsueYPCvI=","MA6xCimjTkZiedWoXBn\u002B8u9FtaKOuq7pgL8LvJU1qo8=","TQle4U8CYgHi7UYduHPKMuToqNPd/KPwZx9IMDGOksw=","evM1Xy7wTDKyUV1v4F2LFZshZ181boQ7KJsTz4XpLbM=","lGW/EY4zHQaE\u002B6nV9GBthy9ibjHkOV5wZZXrTN7jfig=","wxlJNp4arBzWAFZD9h/v03poqGZPjr/Kyx4xY4810c4=","Uzm3XYP1kii1dohzcw\u002Bvhq33jd4cyG4X\u002BzUp3/6Ph9o=","sBVUgPcjLbGZarBS\u002BFZCnRpCpKdKGTmJ6le/PaSTE\u002BE=","x1DOyd3fsWRFbl68syRvFEYv/n\u002BnBfUGpR\u002BaIH\u002B/Tt8=","hNuRPg69LAfpkERDcuKx\u002BJ47TX/QHZI4UfxQ0oP0Njw=","cs8qSEx8AysfWFuMutKkml/ljnvoagKGR7nEvpy6thM=","9hk\u002BmdSeJXCBYzJHS83L5K5DwpZwVnTuB4Qa09lQMqE=","xdjTwKToGwpXKZ49UuG6UjawbkSLqOJdq8iVxq9OW3U=","I4RPFey1rDdzWC5kgkQdy7r\u002Bcd/Nm7qq36RJ8xYAAwc=","MJE/B55HJ7D55U\u002BfRAxWeCpUH1fAjPIc\u002BcFKSH2Z2T8=","Yumv7\u002BVz51uJFzhFNITsjLy8xPyhnyPXqdYC4YQfl9U=","VoGSHvp8N0y8dJeWTe1cYPGLLoCMyF3gdb74kJNZzuo=","HDkNkz9gzNhVgElNTdQS9WVfYlk01Sm6jTvEmzSzm98=","1AgT2qObS7W\u002BjT\u002BmXzM4E7h0VFc3eiAmFg1pwLGbffo=","4lkzYgYBW6jxRxhjA1arPtfDT0LO2IMTxVlTLT/fI\u002Bw=","5l8hE1R4qQjyxJIfS/kQEtB4R8wdeecd2i\u002BCitAIqv8=","lfsy1DPdCT\u002BvzXNEHC623FCrpwaozIad8kaxVxBmYDY=","\u002BLy41jKnblYiYf/6BS2kz4WJCwB8PAzCUi2htv\u002B1\u002B8o=","S8u5H3ayNo62hxSwxue48ZzZxwLUWXt55ofPMZxDWOA=","Sbyamvq4zB/PSLrI7P0HGbzqneNo\u002B0is3Dh3odB9cRI=","bfBuFUDYJRYhinNDzun14XYTnHVSdjfY71zUMFbONZE=","NgGYhgzCQorak7gRiUlsno3Jg81VGtnXReXZ7wR2axY=","zM9SE2GtPNkPqGu82O0uEoqK90MpS/A7HH3Cph/7m4M=","rs5ULdHjT0iHCgUcwxvpOJz56MpRyGWeAaKSbOdPeA4=","BQk18fInPjh00X0Wa60vuJEjLYL22TtagiUs6zqZi6E=","ZKTBG2F3ZF3szurHQUMPJMkYiNwvN9qZtHUUeobqYgI=","3YsKPiywLIEiSwiBSyqfZSPgtbYfWPQZ4R9Pi8tylMs=","hABbBf\u002B\u002BJEtFyE2QOep0OWK4qi\u002Bn8yysFbo9r3qDTHU=","T7Cv/d2UVzyvu/z9w27D0d8IyBIYLwdJO7rLJ5ASg04=","UCnS/2LHcRcIRbWo3KiO74ukTCAotodxHGxBXm2Akzg=","RzWq9xGm25rxRd6nATW66RAz0F1jX1hNS21Q6j6Qt98=","bnSA05O5uoKa9W7WKodlol6/A\u002BFM6SK\u002Br5ALWiXD0Gw=","6hRnN6aIVGqwXdOw/AuXkMRcooh4wPWDAvkxpQ9eD1o="],"CachedAssets":{"gIdx8p67SpOPJYooMsWBi4wKJmT0ycmcs9woYF7odHw=":{"Identity":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\wwwroot\\favicon.ico","SourceId":"OpenArchival.Blazor","SourceType":"Discovered","ContentRoot":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\wwwroot\\","BasePath":"_content/OpenArchival.Blazor","RelativePath":"favicon#[.{fingerprint}]?.ico","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"2jeq8efc6q","Integrity":"8kNQh\u002BLErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\favicon.ico","FileLength":15086,"LastWriteTime":"2025-09-09T18:04:11.6869399+00:00"},"Btp3cFEQ76ByfeqlWDb1nCwpNprEIaXPUy1H2QwnGGg=":{"Identity":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\wwwroot\\js\\downloadHelper.js","SourceId":"OpenArchival.Blazor","SourceType":"Discovered","ContentRoot":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\wwwroot\\","BasePath":"_content/OpenArchival.Blazor","RelativePath":"js/downloadHelper#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"zy4ksw00d9","Integrity":"1Y0\u002Bhi0re9m8XGNP8FnpYyxExUDrHq\u002BJH6HMHvv/ECc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\js\\downloadHelper.js","FileLength":346,"LastWriteTime":"2025-10-07T16:44:09.2209244+00:00"},"w404Cp8QMVSMRLQmhqeoQt4ITtFpNhm33YTevp4BrrY=":{"Identity":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\wwwroot\\js\\imageSizeGetter.js","SourceId":"OpenArchival.Blazor","SourceType":"Discovered","ContentRoot":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\wwwroot\\","BasePath":"_content/OpenArchival.Blazor","RelativePath":"js/imageSizeGetter#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"6k2m17moin","Integrity":"djPj7C64LX1RuirqUYjojHK/GAwYXsTwjRrnBSiYW9k=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\js\\imageSizeGetter.js","FileLength":1824,"LastWriteTime":"2025-10-07T20:16:31.0239209+00:00"}},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/OpenArchival.Blazor/obj/Debug/net9.0/scopedcss/bundle/OpenArchival.Blazor.styles.css b/OpenArchival.Blazor/obj/Debug/net9.0/scopedcss/bundle/OpenArchival.Blazor.styles.css new file mode 100644 index 0000000..8a7ebf4 --- /dev/null +++ b/OpenArchival.Blazor/obj/Debug/net9.0/scopedcss/bundle/OpenArchival.Blazor.styles.css @@ -0,0 +1,2 @@ +@import '_content/OpenArchival.Blazor.FileViewer/OpenArchival.Blazor.FileViewer.83wakjp31g.bundle.scp.css'; + diff --git a/OpenArchival.Blazor/obj/Debug/net9.0/staticwebassets.build.endpoints.json b/OpenArchival.Blazor/obj/Debug/net9.0/staticwebassets.build.endpoints.json index 4966c0b..645f299 100644 --- a/OpenArchival.Blazor/obj/Debug/net9.0/staticwebassets.build.endpoints.json +++ b/OpenArchival.Blazor/obj/Debug/net9.0/staticwebassets.build.endpoints.json @@ -1 +1 @@ -{"Version":1,"ManifestType":"Build","Endpoints":[{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.css","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"21465"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk=\""},{"Name":"Last-Modified","Value":"Sun, 26 Feb 2023 14:08:26 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.css","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000295508274"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3383"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"6PJ7t7WR38pQTSYe6IR0pbqo2cIZK5wuW/w26kprtBg=\""},{"Name":"ETag","Value":"W/\"Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk=\""},{"Name":"Last-Modified","Value":"Fri, 05 Sep 2025 16:32:47 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.css.gz","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3383"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"6PJ7t7WR38pQTSYe6IR0pbqo2cIZK5wuW/w26kprtBg=\""},{"Name":"Last-Modified","Value":"Fri, 05 Sep 2025 16:32:47 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6PJ7t7WR38pQTSYe6IR0pbqo2cIZK5wuW/w26kprtBg="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.js","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"328"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc=\""},{"Name":"Last-Modified","Value":"Sun, 26 Feb 2023 14:08:26 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.js","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005076142132"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"196"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"B4PUgpr06+d3lAMWknp0EVkaGxPZJdpp5/UidGHzvnc=\""},{"Name":"ETag","Value":"W/\"FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc=\""},{"Name":"Last-Modified","Value":"Fri, 05 Sep 2025 16:32:47 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.js.gz","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"196"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"B4PUgpr06+d3lAMWknp0EVkaGxPZJdpp5/UidGHzvnc=\""},{"Name":"Last-Modified","Value":"Fri, 05 Sep 2025 16:32:47 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-B4PUgpr06+d3lAMWknp0EVkaGxPZJdpp5/UidGHzvnc="}]},{"Route":"_content/CodeBeam.MudExtensions/Mud_Secondary.png","AssetFile":"_content/CodeBeam.MudExtensions/Mud_Secondary.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4558"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"G3hYUw4Ps9P/IQ3lw2zu96RSZaOf4zU+4QkXkH8Xi3Y=\""},{"Name":"Last-Modified","Value":"Sat, 08 Oct 2022 09:55:02 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G3hYUw4Ps9P/IQ3lw2zu96RSZaOf4zU+4QkXkH8Xi3Y="}]},{"Route":"_content/MudBlazor/MudBlazor.min.0n6lrtb02s.css","AssetFile":"_content/MudBlazor/MudBlazor.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"606258"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"3FM/mjas9rQiq2CY+FQPy1Pe1iCLSx/qZltQxK4dcuQ=\""},{"Name":"Last-Modified","Value":"Tue, 02 Sep 2025 18:25:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0n6lrtb02s"},{"Name":"integrity","Value":"sha256-3FM/mjas9rQiq2CY+FQPy1Pe1iCLSx/qZltQxK4dcuQ="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.css"}]},{"Route":"_content/MudBlazor/MudBlazor.min.css","AssetFile":"_content/MudBlazor/MudBlazor.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"606258"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"3FM/mjas9rQiq2CY+FQPy1Pe1iCLSx/qZltQxK4dcuQ=\""},{"Name":"Last-Modified","Value":"Tue, 02 Sep 2025 18:25:58 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3FM/mjas9rQiq2CY+FQPy1Pe1iCLSx/qZltQxK4dcuQ="}]},{"Route":"_content/MudBlazor/MudBlazor.min.css","AssetFile":"_content/MudBlazor/MudBlazor.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015264845"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"65509"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"G6ttMFl4pZQbeXfp7Od0SO3bC9h9rp9m7NW7DgD0a1Q=\""},{"Name":"ETag","Value":"W/\"3FM/mjas9rQiq2CY+FQPy1Pe1iCLSx/qZltQxK4dcuQ=\""},{"Name":"Last-Modified","Value":"Fri, 05 Sep 2025 16:32:47 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3FM/mjas9rQiq2CY+FQPy1Pe1iCLSx/qZltQxK4dcuQ="}]},{"Route":"_content/MudBlazor/MudBlazor.min.css.gz","AssetFile":"_content/MudBlazor/MudBlazor.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"65509"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"G6ttMFl4pZQbeXfp7Od0SO3bC9h9rp9m7NW7DgD0a1Q=\""},{"Name":"Last-Modified","Value":"Fri, 05 Sep 2025 16:32:47 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G6ttMFl4pZQbeXfp7Od0SO3bC9h9rp9m7NW7DgD0a1Q="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js","AssetFile":"_content/MudBlazor/MudBlazor.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"73682"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Qf9/gSPxTxchB08Wi5WXxjPqw2IQvnyVUW27s7cwoUo=\""},{"Name":"Last-Modified","Value":"Tue, 02 Sep 2025 18:25:58 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Qf9/gSPxTxchB08Wi5WXxjPqw2IQvnyVUW27s7cwoUo="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js","AssetFile":"_content/MudBlazor/MudBlazor.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000062952471"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15884"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"qhJtBPrvSKzfmYIXttsCBAyz1XObWORxmjjeuquTVx8=\""},{"Name":"ETag","Value":"W/\"Qf9/gSPxTxchB08Wi5WXxjPqw2IQvnyVUW27s7cwoUo=\""},{"Name":"Last-Modified","Value":"Fri, 05 Sep 2025 16:32:47 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Qf9/gSPxTxchB08Wi5WXxjPqw2IQvnyVUW27s7cwoUo="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js.gz","AssetFile":"_content/MudBlazor/MudBlazor.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15884"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"qhJtBPrvSKzfmYIXttsCBAyz1XObWORxmjjeuquTVx8=\""},{"Name":"Last-Modified","Value":"Fri, 05 Sep 2025 16:32:47 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qhJtBPrvSKzfmYIXttsCBAyz1XObWORxmjjeuquTVx8="}]},{"Route":"_content/MudBlazor/MudBlazor.min.lftp6ydp6b.js","AssetFile":"_content/MudBlazor/MudBlazor.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"73682"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Qf9/gSPxTxchB08Wi5WXxjPqw2IQvnyVUW27s7cwoUo=\""},{"Name":"Last-Modified","Value":"Tue, 02 Sep 2025 18:25:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lftp6ydp6b"},{"Name":"integrity","Value":"sha256-Qf9/gSPxTxchB08Wi5WXxjPqw2IQvnyVUW27s7cwoUo="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.js"}]},{"Route":"favicon.2jeq8efc6q.ico","AssetFile":"favicon.ico.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000336021505"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2975"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"b7CPHqpoIGsGVgOrEO+r2XPyaLrLUBwkA6R2jOMbS7M=\""},{"Name":"ETag","Value":"W/\"8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA=\""},{"Name":"Last-Modified","Value":"Fri, 05 Sep 2025 16:32:47 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2jeq8efc6q"},{"Name":"integrity","Value":"sha256-8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA="},{"Name":"label","Value":"favicon.ico"}]},{"Route":"favicon.2jeq8efc6q.ico","AssetFile":"favicon.ico","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"15086"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA=\""},{"Name":"Last-Modified","Value":"Tue, 12 Aug 2025 18:28:17 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2jeq8efc6q"},{"Name":"integrity","Value":"sha256-8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA="},{"Name":"label","Value":"favicon.ico"}]},{"Route":"favicon.2jeq8efc6q.ico.gz","AssetFile":"favicon.ico.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":"2975"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"b7CPHqpoIGsGVgOrEO+r2XPyaLrLUBwkA6R2jOMbS7M=\""},{"Name":"Last-Modified","Value":"Fri, 05 Sep 2025 16:32:47 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2jeq8efc6q"},{"Name":"integrity","Value":"sha256-b7CPHqpoIGsGVgOrEO+r2XPyaLrLUBwkA6R2jOMbS7M="},{"Name":"label","Value":"favicon.ico.gz"}]},{"Route":"favicon.ico","AssetFile":"favicon.ico.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000336021505"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2975"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"b7CPHqpoIGsGVgOrEO+r2XPyaLrLUBwkA6R2jOMbS7M=\""},{"Name":"ETag","Value":"W/\"8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA=\""},{"Name":"Last-Modified","Value":"Fri, 05 Sep 2025 16:32:47 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA="}]},{"Route":"favicon.ico","AssetFile":"favicon.ico","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"15086"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA=\""},{"Name":"Last-Modified","Value":"Tue, 12 Aug 2025 18:28:17 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA="}]},{"Route":"favicon.ico.gz","AssetFile":"favicon.ico.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2975"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"b7CPHqpoIGsGVgOrEO+r2XPyaLrLUBwkA6R2jOMbS7M=\""},{"Name":"Last-Modified","Value":"Fri, 05 Sep 2025 16:32:47 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-b7CPHqpoIGsGVgOrEO+r2XPyaLrLUBwkA6R2jOMbS7M="}]}]} \ No newline at end of file +{"Version":1,"ManifestType":"Build","Endpoints":[{"Route":"OpenArchival.Blazor.of6ssq9pmk.styles.css","AssetFile":"OpenArchival.Blazor.styles.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.009708737864"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"102"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"iaEgFyUTJAhMAW+JFVh6LKM3gSG0Kn0oNWuuMVofbCw=\""},{"Name":"ETag","Value":"W/\"lCMY9zSeY9QeKoomwsAHffyneUvstrerzcX/DLZLNWc=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Link","Value":"<_content/OpenArchival.Blazor.FileViewer/OpenArchival.Blazor.FileViewer.83wakjp31g.bundle.scp.css>; rel=\"preload\"; as=\"style\""},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"of6ssq9pmk"},{"Name":"integrity","Value":"sha256-lCMY9zSeY9QeKoomwsAHffyneUvstrerzcX/DLZLNWc="},{"Name":"label","Value":"OpenArchival.Blazor.styles.css"}]},{"Route":"OpenArchival.Blazor.of6ssq9pmk.styles.css","AssetFile":"OpenArchival.Blazor.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"111"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"lCMY9zSeY9QeKoomwsAHffyneUvstrerzcX/DLZLNWc=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Link","Value":"<_content/OpenArchival.Blazor.FileViewer/OpenArchival.Blazor.FileViewer.83wakjp31g.bundle.scp.css>; rel=\"preload\"; as=\"style\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"of6ssq9pmk"},{"Name":"integrity","Value":"sha256-lCMY9zSeY9QeKoomwsAHffyneUvstrerzcX/DLZLNWc="},{"Name":"label","Value":"OpenArchival.Blazor.styles.css"}]},{"Route":"OpenArchival.Blazor.of6ssq9pmk.styles.css.gz","AssetFile":"OpenArchival.Blazor.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":"102"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"iaEgFyUTJAhMAW+JFVh6LKM3gSG0Kn0oNWuuMVofbCw=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"of6ssq9pmk"},{"Name":"integrity","Value":"sha256-iaEgFyUTJAhMAW+JFVh6LKM3gSG0Kn0oNWuuMVofbCw="},{"Name":"label","Value":"OpenArchival.Blazor.styles.css.gz"}]},{"Route":"OpenArchival.Blazor.styles.css","AssetFile":"OpenArchival.Blazor.styles.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.009708737864"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"102"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"iaEgFyUTJAhMAW+JFVh6LKM3gSG0Kn0oNWuuMVofbCw=\""},{"Name":"ETag","Value":"W/\"lCMY9zSeY9QeKoomwsAHffyneUvstrerzcX/DLZLNWc=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Link","Value":"<_content/OpenArchival.Blazor.FileViewer/OpenArchival.Blazor.FileViewer.83wakjp31g.bundle.scp.css>; rel=\"preload\"; as=\"style\""},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lCMY9zSeY9QeKoomwsAHffyneUvstrerzcX/DLZLNWc="}]},{"Route":"OpenArchival.Blazor.styles.css","AssetFile":"OpenArchival.Blazor.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"111"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"lCMY9zSeY9QeKoomwsAHffyneUvstrerzcX/DLZLNWc=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Link","Value":"<_content/OpenArchival.Blazor.FileViewer/OpenArchival.Blazor.FileViewer.83wakjp31g.bundle.scp.css>; rel=\"preload\"; as=\"style\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lCMY9zSeY9QeKoomwsAHffyneUvstrerzcX/DLZLNWc="}]},{"Route":"OpenArchival.Blazor.styles.css.gz","AssetFile":"OpenArchival.Blazor.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":"102"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"iaEgFyUTJAhMAW+JFVh6LKM3gSG0Kn0oNWuuMVofbCw=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-iaEgFyUTJAhMAW+JFVh6LKM3gSG0Kn0oNWuuMVofbCw="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.css","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"21465"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk=\""},{"Name":"Last-Modified","Value":"Sun, 26 Feb 2023 14:08:26 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.css","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000295508274"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3383"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"6PJ7t7WR38pQTSYe6IR0pbqo2cIZK5wuW/w26kprtBg=\""},{"Name":"ETag","Value":"W/\"Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.css.gz","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3383"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"6PJ7t7WR38pQTSYe6IR0pbqo2cIZK5wuW/w26kprtBg=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6PJ7t7WR38pQTSYe6IR0pbqo2cIZK5wuW/w26kprtBg="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.js","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"328"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc=\""},{"Name":"Last-Modified","Value":"Sun, 26 Feb 2023 14:08:26 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.js","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005076142132"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"196"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"B4PUgpr06+d3lAMWknp0EVkaGxPZJdpp5/UidGHzvnc=\""},{"Name":"ETag","Value":"W/\"FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.js.gz","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"196"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"B4PUgpr06+d3lAMWknp0EVkaGxPZJdpp5/UidGHzvnc=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-B4PUgpr06+d3lAMWknp0EVkaGxPZJdpp5/UidGHzvnc="}]},{"Route":"_content/CodeBeam.MudExtensions/Mud_Secondary.png","AssetFile":"_content/CodeBeam.MudExtensions/Mud_Secondary.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4558"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"G3hYUw4Ps9P/IQ3lw2zu96RSZaOf4zU+4QkXkH8Xi3Y=\""},{"Name":"Last-Modified","Value":"Sat, 08 Oct 2022 09:55:02 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G3hYUw4Ps9P/IQ3lw2zu96RSZaOf4zU+4QkXkH8Xi3Y="}]},{"Route":"_content/MudBlazor/MudBlazor.min.css","AssetFile":"_content/MudBlazor/MudBlazor.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"606250"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0=\""},{"Name":"Last-Modified","Value":"Wed, 01 Oct 2025 21:51:05 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0="}]},{"Route":"_content/MudBlazor/MudBlazor.min.css","AssetFile":"_content/MudBlazor/MudBlazor.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015264845"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"65509"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"VcBMO3aXrzxl+jfWY+TaxPKsd3L0UWjeJZliEXOyzzI=\""},{"Name":"ETag","Value":"W/\"TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0="}]},{"Route":"_content/MudBlazor/MudBlazor.min.css.gz","AssetFile":"_content/MudBlazor/MudBlazor.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"65509"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"VcBMO3aXrzxl+jfWY+TaxPKsd3L0UWjeJZliEXOyzzI=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VcBMO3aXrzxl+jfWY+TaxPKsd3L0UWjeJZliEXOyzzI="}]},{"Route":"_content/MudBlazor/MudBlazor.min.jk5eo7zo4m.css","AssetFile":"_content/MudBlazor/MudBlazor.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"606250"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0=\""},{"Name":"Last-Modified","Value":"Wed, 01 Oct 2025 21:51:05 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jk5eo7zo4m"},{"Name":"integrity","Value":"sha256-TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.css"}]},{"Route":"_content/MudBlazor/MudBlazor.min.js","AssetFile":"_content/MudBlazor/MudBlazor.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"75165"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw=\""},{"Name":"Last-Modified","Value":"Wed, 01 Oct 2025 21:51:05 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js","AssetFile":"_content/MudBlazor/MudBlazor.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000061150859"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16352"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"0BJxfo+EOJvNKoBv/2ahm4RKrPjv7PhB/R16C3XOHDo=\""},{"Name":"ETag","Value":"W/\"hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js.gz","AssetFile":"_content/MudBlazor/MudBlazor.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16352"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"0BJxfo+EOJvNKoBv/2ahm4RKrPjv7PhB/R16C3XOHDo=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0BJxfo+EOJvNKoBv/2ahm4RKrPjv7PhB/R16C3XOHDo="}]},{"Route":"_content/MudBlazor/MudBlazor.min.tjzqk7tnel.js","AssetFile":"_content/MudBlazor/MudBlazor.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"75165"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw=\""},{"Name":"Last-Modified","Value":"Wed, 01 Oct 2025 21:51:05 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tjzqk7tnel"},{"Name":"integrity","Value":"sha256-hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.js"}]},{"Route":"_content/OpenArchival.Blazor.FileViewer/OpenArchival.Blazor.FileViewer.83wakjp31g.bundle.scp.css","AssetFile":"_content/OpenArchival.Blazor.FileViewer/OpenArchival.Blazor.FileViewer.83wakjp31g.bundle.scp.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.006134969325"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"162"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"w7pUrtgbGsKChPQ+JZf6wIJIlRo5ItP1AJKKjbLPBUM=\""},{"Name":"ETag","Value":"W/\"9NCmFFvSZYsIWCQoks2vSnN9EMEwePSQhoXfFOCn5mg=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"83wakjp31g"},{"Name":"integrity","Value":"sha256-9NCmFFvSZYsIWCQoks2vSnN9EMEwePSQhoXfFOCn5mg="},{"Name":"label","Value":"_content/OpenArchival.Blazor.FileViewer/OpenArchival.Blazor.FileViewer.bundle.scp.css"}]},{"Route":"_content/OpenArchival.Blazor.FileViewer/OpenArchival.Blazor.FileViewer.83wakjp31g.bundle.scp.css","AssetFile":"_content/OpenArchival.Blazor.FileViewer/OpenArchival.Blazor.FileViewer.83wakjp31g.bundle.scp.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"186"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"9NCmFFvSZYsIWCQoks2vSnN9EMEwePSQhoXfFOCn5mg=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"83wakjp31g"},{"Name":"integrity","Value":"sha256-9NCmFFvSZYsIWCQoks2vSnN9EMEwePSQhoXfFOCn5mg="},{"Name":"label","Value":"_content/OpenArchival.Blazor.FileViewer/OpenArchival.Blazor.FileViewer.bundle.scp.css"}]},{"Route":"_content/OpenArchival.Blazor.FileViewer/OpenArchival.Blazor.FileViewer.83wakjp31g.bundle.scp.css.gz","AssetFile":"_content/OpenArchival.Blazor.FileViewer/OpenArchival.Blazor.FileViewer.83wakjp31g.bundle.scp.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":"162"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"w7pUrtgbGsKChPQ+JZf6wIJIlRo5ItP1AJKKjbLPBUM=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"83wakjp31g"},{"Name":"integrity","Value":"sha256-w7pUrtgbGsKChPQ+JZf6wIJIlRo5ItP1AJKKjbLPBUM="},{"Name":"label","Value":"_content/OpenArchival.Blazor.FileViewer/OpenArchival.Blazor.FileViewer.bundle.scp.css.gz"}]},{"Route":"_content/OpenArchival.Blazor.FileViewer/OpenArchival.Blazor.FileViewer.bundle.scp.css","AssetFile":"_content/OpenArchival.Blazor.FileViewer/OpenArchival.Blazor.FileViewer.83wakjp31g.bundle.scp.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.006134969325"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"162"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"w7pUrtgbGsKChPQ+JZf6wIJIlRo5ItP1AJKKjbLPBUM=\""},{"Name":"ETag","Value":"W/\"9NCmFFvSZYsIWCQoks2vSnN9EMEwePSQhoXfFOCn5mg=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9NCmFFvSZYsIWCQoks2vSnN9EMEwePSQhoXfFOCn5mg="}]},{"Route":"_content/OpenArchival.Blazor.FileViewer/OpenArchival.Blazor.FileViewer.bundle.scp.css","AssetFile":"_content/OpenArchival.Blazor.FileViewer/OpenArchival.Blazor.FileViewer.83wakjp31g.bundle.scp.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"186"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"9NCmFFvSZYsIWCQoks2vSnN9EMEwePSQhoXfFOCn5mg=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9NCmFFvSZYsIWCQoks2vSnN9EMEwePSQhoXfFOCn5mg="}]},{"Route":"_content/OpenArchival.Blazor.FileViewer/OpenArchival.Blazor.FileViewer.bundle.scp.css.gz","AssetFile":"_content/OpenArchival.Blazor.FileViewer/OpenArchival.Blazor.FileViewer.83wakjp31g.bundle.scp.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"162"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"w7pUrtgbGsKChPQ+JZf6wIJIlRo5ItP1AJKKjbLPBUM=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-w7pUrtgbGsKChPQ+JZf6wIJIlRo5ItP1AJKKjbLPBUM="}]},{"Route":"favicon.2jeq8efc6q.ico","AssetFile":"favicon.ico.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000336021505"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2975"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"b7CPHqpoIGsGVgOrEO+r2XPyaLrLUBwkA6R2jOMbS7M=\""},{"Name":"ETag","Value":"W/\"8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2jeq8efc6q"},{"Name":"integrity","Value":"sha256-8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA="},{"Name":"label","Value":"favicon.ico"}]},{"Route":"favicon.2jeq8efc6q.ico","AssetFile":"favicon.ico","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"15086"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA=\""},{"Name":"Last-Modified","Value":"Tue, 09 Sep 2025 18:04:11 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2jeq8efc6q"},{"Name":"integrity","Value":"sha256-8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA="},{"Name":"label","Value":"favicon.ico"}]},{"Route":"favicon.2jeq8efc6q.ico.gz","AssetFile":"favicon.ico.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":"2975"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"b7CPHqpoIGsGVgOrEO+r2XPyaLrLUBwkA6R2jOMbS7M=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2jeq8efc6q"},{"Name":"integrity","Value":"sha256-b7CPHqpoIGsGVgOrEO+r2XPyaLrLUBwkA6R2jOMbS7M="},{"Name":"label","Value":"favicon.ico.gz"}]},{"Route":"favicon.ico","AssetFile":"favicon.ico.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000336021505"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2975"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"b7CPHqpoIGsGVgOrEO+r2XPyaLrLUBwkA6R2jOMbS7M=\""},{"Name":"ETag","Value":"W/\"8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA="}]},{"Route":"favicon.ico","AssetFile":"favicon.ico","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"15086"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA=\""},{"Name":"Last-Modified","Value":"Tue, 09 Sep 2025 18:04:11 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA="}]},{"Route":"favicon.ico.gz","AssetFile":"favicon.ico.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2975"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"b7CPHqpoIGsGVgOrEO+r2XPyaLrLUBwkA6R2jOMbS7M=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-b7CPHqpoIGsGVgOrEO+r2XPyaLrLUBwkA6R2jOMbS7M="}]},{"Route":"js/downloadHelper.js","AssetFile":"js/downloadHelper.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.004237288136"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"235"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"FAg7kmeFsh8jkhGZs/GZGp9lb/FDf6lNCN/9/HzL7Dc=\""},{"Name":"ETag","Value":"W/\"1Y0+hi0re9m8XGNP8FnpYyxExUDrHq+JH6HMHvv/ECc=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1Y0+hi0re9m8XGNP8FnpYyxExUDrHq+JH6HMHvv/ECc="}]},{"Route":"js/downloadHelper.js","AssetFile":"js/downloadHelper.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"346"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"1Y0+hi0re9m8XGNP8FnpYyxExUDrHq+JH6HMHvv/ECc=\""},{"Name":"Last-Modified","Value":"Tue, 07 Oct 2025 16:44:09 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1Y0+hi0re9m8XGNP8FnpYyxExUDrHq+JH6HMHvv/ECc="}]},{"Route":"js/downloadHelper.js.gz","AssetFile":"js/downloadHelper.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"235"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"FAg7kmeFsh8jkhGZs/GZGp9lb/FDf6lNCN/9/HzL7Dc=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FAg7kmeFsh8jkhGZs/GZGp9lb/FDf6lNCN/9/HzL7Dc="}]},{"Route":"js/downloadHelper.zy4ksw00d9.js","AssetFile":"js/downloadHelper.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.004237288136"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"235"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"FAg7kmeFsh8jkhGZs/GZGp9lb/FDf6lNCN/9/HzL7Dc=\""},{"Name":"ETag","Value":"W/\"1Y0+hi0re9m8XGNP8FnpYyxExUDrHq+JH6HMHvv/ECc=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zy4ksw00d9"},{"Name":"integrity","Value":"sha256-1Y0+hi0re9m8XGNP8FnpYyxExUDrHq+JH6HMHvv/ECc="},{"Name":"label","Value":"js/downloadHelper.js"}]},{"Route":"js/downloadHelper.zy4ksw00d9.js","AssetFile":"js/downloadHelper.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"346"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"1Y0+hi0re9m8XGNP8FnpYyxExUDrHq+JH6HMHvv/ECc=\""},{"Name":"Last-Modified","Value":"Tue, 07 Oct 2025 16:44:09 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zy4ksw00d9"},{"Name":"integrity","Value":"sha256-1Y0+hi0re9m8XGNP8FnpYyxExUDrHq+JH6HMHvv/ECc="},{"Name":"label","Value":"js/downloadHelper.js"}]},{"Route":"js/downloadHelper.zy4ksw00d9.js.gz","AssetFile":"js/downloadHelper.js.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":"235"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"FAg7kmeFsh8jkhGZs/GZGp9lb/FDf6lNCN/9/HzL7Dc=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zy4ksw00d9"},{"Name":"integrity","Value":"sha256-FAg7kmeFsh8jkhGZs/GZGp9lb/FDf6lNCN/9/HzL7Dc="},{"Name":"label","Value":"js/downloadHelper.js.gz"}]},{"Route":"js/imageSizeGetter.6k2m17moin.js","AssetFile":"js/imageSizeGetter.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001519756839"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"657"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"E7gYH0HUXBVbrGIOQeZXi1EKyLtFMQvfEx1uCLzd+H0=\""},{"Name":"ETag","Value":"W/\"djPj7C64LX1RuirqUYjojHK/GAwYXsTwjRrnBSiYW9k=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6k2m17moin"},{"Name":"integrity","Value":"sha256-djPj7C64LX1RuirqUYjojHK/GAwYXsTwjRrnBSiYW9k="},{"Name":"label","Value":"js/imageSizeGetter.js"}]},{"Route":"js/imageSizeGetter.6k2m17moin.js","AssetFile":"js/imageSizeGetter.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1824"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"djPj7C64LX1RuirqUYjojHK/GAwYXsTwjRrnBSiYW9k=\""},{"Name":"Last-Modified","Value":"Tue, 07 Oct 2025 20:16:31 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6k2m17moin"},{"Name":"integrity","Value":"sha256-djPj7C64LX1RuirqUYjojHK/GAwYXsTwjRrnBSiYW9k="},{"Name":"label","Value":"js/imageSizeGetter.js"}]},{"Route":"js/imageSizeGetter.6k2m17moin.js.gz","AssetFile":"js/imageSizeGetter.js.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":"657"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"E7gYH0HUXBVbrGIOQeZXi1EKyLtFMQvfEx1uCLzd+H0=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6k2m17moin"},{"Name":"integrity","Value":"sha256-E7gYH0HUXBVbrGIOQeZXi1EKyLtFMQvfEx1uCLzd+H0="},{"Name":"label","Value":"js/imageSizeGetter.js.gz"}]},{"Route":"js/imageSizeGetter.js","AssetFile":"js/imageSizeGetter.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001519756839"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"657"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"E7gYH0HUXBVbrGIOQeZXi1EKyLtFMQvfEx1uCLzd+H0=\""},{"Name":"ETag","Value":"W/\"djPj7C64LX1RuirqUYjojHK/GAwYXsTwjRrnBSiYW9k=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-djPj7C64LX1RuirqUYjojHK/GAwYXsTwjRrnBSiYW9k="}]},{"Route":"js/imageSizeGetter.js","AssetFile":"js/imageSizeGetter.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1824"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"djPj7C64LX1RuirqUYjojHK/GAwYXsTwjRrnBSiYW9k=\""},{"Name":"Last-Modified","Value":"Tue, 07 Oct 2025 20:16:31 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-djPj7C64LX1RuirqUYjojHK/GAwYXsTwjRrnBSiYW9k="}]},{"Route":"js/imageSizeGetter.js.gz","AssetFile":"js/imageSizeGetter.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"657"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"E7gYH0HUXBVbrGIOQeZXi1EKyLtFMQvfEx1uCLzd+H0=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-E7gYH0HUXBVbrGIOQeZXi1EKyLtFMQvfEx1uCLzd+H0="}]}]} \ No newline at end of file diff --git a/OpenArchival.Blazor/obj/Debug/net9.0/staticwebassets.build.json b/OpenArchival.Blazor/obj/Debug/net9.0/staticwebassets.build.json index ed52887..97785ba 100644 --- a/OpenArchival.Blazor/obj/Debug/net9.0/staticwebassets.build.json +++ b/OpenArchival.Blazor/obj/Debug/net9.0/staticwebassets.build.json @@ -1 +1 @@ -{"Version":1,"Hash":"Z+wfILUdcipltKG9E28neJvElvUrGb/3rt6SdKJ2vZw=","Source":"OpenArchival.Blazor","BasePath":"_content/OpenArchival.Blazor","Mode":"Default","ManifestType":"Build","ReferencedProjectsConfiguration":[{"Identity":"D:\\Nextcloud\\Documents\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj","Version":2,"Source":"OpenArchival.DataAccess","GetPublishAssetsTargets":"ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems","AdditionalPublishProperties":"Configuration=Debug;Platform=AnyCPU","AdditionalPublishPropertiesToRemove":"WebPublishProfileFile;TargetFramework","GetBuildAssetsTargets":"GetCurrentProjectBuildStaticWebAssetItems","AdditionalBuildProperties":"Configuration=Debug;Platform=AnyCPU","AdditionalBuildPropertiesToRemove":"WebPublishProfileFile;TargetFramework"}],"DiscoveryPatterns":[{"Name":"OpenArchival.Blazor\\wwwroot","Source":"OpenArchival.Blazor","ContentRoot":"D:\\Nextcloud\\Documents\\Open-Archival\\OpenArchival.Blazor\\wwwroot\\","BasePath":"_content/OpenArchival.Blazor","Pattern":"**"}],"Assets":[{"Identity":"C:\\Users\\Vincent Allen\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\Mud_Secondary.png","SourceId":"CodeBeam.MudExtensions","SourceType":"Package","ContentRoot":"C:\\Users\\Vincent Allen\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\","BasePath":"_content/CodeBeam.MudExtensions","RelativePath":"Mud_Secondary.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"tig1qhobl3","Integrity":"G3hYUw4Ps9P/IQ3lw2zu96RSZaOf4zU+4QkXkH8Xi3Y=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\Vincent Allen\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\Mud_Secondary.png","FileLength":4558,"LastWriteTime":"2022-10-08T09:55:02+00:00"},{"Identity":"C:\\Users\\Vincent Allen\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\MudExtensions.min.css","SourceId":"CodeBeam.MudExtensions","SourceType":"Package","ContentRoot":"C:\\Users\\Vincent Allen\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\","BasePath":"_content/CodeBeam.MudExtensions","RelativePath":"MudExtensions.min.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"qz4batx9cb","Integrity":"Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\Vincent Allen\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\MudExtensions.min.css","FileLength":21465,"LastWriteTime":"2023-02-26T14:08:26+00:00"},{"Identity":"C:\\Users\\Vincent Allen\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\MudExtensions.min.js","SourceId":"CodeBeam.MudExtensions","SourceType":"Package","ContentRoot":"C:\\Users\\Vincent Allen\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\","BasePath":"_content/CodeBeam.MudExtensions","RelativePath":"MudExtensions.min.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"loe7cozwzj","Integrity":"FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\Vincent Allen\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\MudExtensions.min.js","FileLength":328,"LastWriteTime":"2023-02-26T14:08:26+00:00"},{"Identity":"C:\\Users\\Vincent Allen\\.nuget\\packages\\mudblazor\\8.12.0\\staticwebassets\\MudBlazor.min.css","SourceId":"MudBlazor","SourceType":"Package","ContentRoot":"C:\\Users\\Vincent Allen\\.nuget\\packages\\mudblazor\\8.12.0\\staticwebassets\\","BasePath":"_content/MudBlazor","RelativePath":"MudBlazor.min.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"0n6lrtb02s","Integrity":"3FM/mjas9rQiq2CY+FQPy1Pe1iCLSx/qZltQxK4dcuQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\Vincent Allen\\.nuget\\packages\\mudblazor\\8.12.0\\staticwebassets\\MudBlazor.min.css","FileLength":606258,"LastWriteTime":"2025-09-02T18:25:58+00:00"},{"Identity":"C:\\Users\\Vincent Allen\\.nuget\\packages\\mudblazor\\8.12.0\\staticwebassets\\MudBlazor.min.js","SourceId":"MudBlazor","SourceType":"Package","ContentRoot":"C:\\Users\\Vincent Allen\\.nuget\\packages\\mudblazor\\8.12.0\\staticwebassets\\","BasePath":"_content/MudBlazor","RelativePath":"MudBlazor.min.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"lftp6ydp6b","Integrity":"Qf9/gSPxTxchB08Wi5WXxjPqw2IQvnyVUW27s7cwoUo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\Vincent Allen\\.nuget\\packages\\mudblazor\\8.12.0\\staticwebassets\\MudBlazor.min.js","FileLength":73682,"LastWriteTime":"2025-09-02T18:25:58+00:00"},{"Identity":"D:\\Nextcloud\\Documents\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\0wz98yz2xy-lftp6ydp6b.gz","SourceId":"MudBlazor","SourceType":"Package","ContentRoot":"D:\\Nextcloud\\Documents\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\","BasePath":"_content/MudBlazor","RelativePath":"MudBlazor.min.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Users\\Vincent Allen\\.nuget\\packages\\mudblazor\\8.12.0\\staticwebassets\\MudBlazor.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"arwivyvlfd","Integrity":"qhJtBPrvSKzfmYIXttsCBAyz1XObWORxmjjeuquTVx8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\Vincent Allen\\.nuget\\packages\\mudblazor\\8.12.0\\staticwebassets\\MudBlazor.min.js","FileLength":15884,"LastWriteTime":"2025-09-05T16:32:47+00:00"},{"Identity":"D:\\Nextcloud\\Documents\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\24gzn4tg1a-qz4batx9cb.gz","SourceId":"CodeBeam.MudExtensions","SourceType":"Package","ContentRoot":"D:\\Nextcloud\\Documents\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\","BasePath":"_content/CodeBeam.MudExtensions","RelativePath":"MudExtensions.min.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Users\\Vincent Allen\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\MudExtensions.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"cn6plcuhii","Integrity":"6PJ7t7WR38pQTSYe6IR0pbqo2cIZK5wuW/w26kprtBg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\Vincent Allen\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\MudExtensions.min.css","FileLength":3383,"LastWriteTime":"2025-09-05T16:32:47+00:00"},{"Identity":"D:\\Nextcloud\\Documents\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\stwk5nfoxp-loe7cozwzj.gz","SourceId":"CodeBeam.MudExtensions","SourceType":"Package","ContentRoot":"D:\\Nextcloud\\Documents\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\","BasePath":"_content/CodeBeam.MudExtensions","RelativePath":"MudExtensions.min.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Users\\Vincent Allen\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\MudExtensions.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"z9m1gj6ro7","Integrity":"B4PUgpr06+d3lAMWknp0EVkaGxPZJdpp5/UidGHzvnc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\Vincent Allen\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\MudExtensions.min.js","FileLength":196,"LastWriteTime":"2025-09-05T16:32:47+00:00"},{"Identity":"D:\\Nextcloud\\Documents\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\tzxjg6is5z-0n6lrtb02s.gz","SourceId":"MudBlazor","SourceType":"Package","ContentRoot":"D:\\Nextcloud\\Documents\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\","BasePath":"_content/MudBlazor","RelativePath":"MudBlazor.min.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Users\\Vincent Allen\\.nuget\\packages\\mudblazor\\8.12.0\\staticwebassets\\MudBlazor.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"jmv4m3zpj4","Integrity":"G6ttMFl4pZQbeXfp7Od0SO3bC9h9rp9m7NW7DgD0a1Q=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\Vincent Allen\\.nuget\\packages\\mudblazor\\8.12.0\\staticwebassets\\MudBlazor.min.css","FileLength":65509,"LastWriteTime":"2025-09-05T16:32:47+00:00"},{"Identity":"D:\\Nextcloud\\Documents\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\uorc1pfmvs-2jeq8efc6q.gz","SourceId":"OpenArchival.Blazor","SourceType":"Discovered","ContentRoot":"D:\\Nextcloud\\Documents\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\","BasePath":"_content/OpenArchival.Blazor","RelativePath":"favicon#[.{fingerprint=2jeq8efc6q}]?.ico.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\Nextcloud\\Documents\\Open-Archival\\OpenArchival.Blazor\\wwwroot\\favicon.ico","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"3ren6c1acn","Integrity":"b7CPHqpoIGsGVgOrEO+r2XPyaLrLUBwkA6R2jOMbS7M=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\Nextcloud\\Documents\\Open-Archival\\OpenArchival.Blazor\\wwwroot\\favicon.ico","FileLength":2975,"LastWriteTime":"2025-09-05T16:32:47+00:00"},{"Identity":"D:\\Nextcloud\\Documents\\Open-Archival\\OpenArchival.Blazor\\wwwroot\\favicon.ico","SourceId":"OpenArchival.Blazor","SourceType":"Discovered","ContentRoot":"D:\\Nextcloud\\Documents\\Open-Archival\\OpenArchival.Blazor\\wwwroot\\","BasePath":"_content/OpenArchival.Blazor","RelativePath":"favicon#[.{fingerprint}]?.ico","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"2jeq8efc6q","Integrity":"8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\favicon.ico","FileLength":15086,"LastWriteTime":"2025-08-12T18:28:17+00:00"}],"Endpoints":[{"Route":"_content/CodeBeam.MudExtensions/Mud_Secondary.png","AssetFile":"C:\\Users\\Vincent Allen\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\Mud_Secondary.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"4558"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"G3hYUw4Ps9P/IQ3lw2zu96RSZaOf4zU+4QkXkH8Xi3Y=\""},{"Name":"Last-Modified","Value":"Sat, 08 Oct 2022 09:55:02 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G3hYUw4Ps9P/IQ3lw2zu96RSZaOf4zU+4QkXkH8Xi3Y="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.css","AssetFile":"C:\\Users\\Vincent Allen\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\MudExtensions.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"21465"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk=\""},{"Name":"Last-Modified","Value":"Sun, 26 Feb 2023 14:08:26 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.css","AssetFile":"D:\\Nextcloud\\Documents\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\24gzn4tg1a-qz4batx9cb.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000295508274"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"3383"},{"Name":"ETag","Value":"\"6PJ7t7WR38pQTSYe6IR0pbqo2cIZK5wuW/w26kprtBg=\""},{"Name":"Last-Modified","Value":"Fri, 05 Sep 2025 16:32:47 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.css.gz","AssetFile":"D:\\Nextcloud\\Documents\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\24gzn4tg1a-qz4batx9cb.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"3383"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"6PJ7t7WR38pQTSYe6IR0pbqo2cIZK5wuW/w26kprtBg=\""},{"Name":"Last-Modified","Value":"Fri, 05 Sep 2025 16:32:47 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6PJ7t7WR38pQTSYe6IR0pbqo2cIZK5wuW/w26kprtBg="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.js","AssetFile":"C:\\Users\\Vincent Allen\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\MudExtensions.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"328"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc=\""},{"Name":"Last-Modified","Value":"Sun, 26 Feb 2023 14:08:26 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.js","AssetFile":"D:\\Nextcloud\\Documents\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\stwk5nfoxp-loe7cozwzj.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005076142132"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"196"},{"Name":"ETag","Value":"\"B4PUgpr06+d3lAMWknp0EVkaGxPZJdpp5/UidGHzvnc=\""},{"Name":"Last-Modified","Value":"Fri, 05 Sep 2025 16:32:47 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"W/\"FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.js.gz","AssetFile":"D:\\Nextcloud\\Documents\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\stwk5nfoxp-loe7cozwzj.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"196"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"B4PUgpr06+d3lAMWknp0EVkaGxPZJdpp5/UidGHzvnc=\""},{"Name":"Last-Modified","Value":"Fri, 05 Sep 2025 16:32:47 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-B4PUgpr06+d3lAMWknp0EVkaGxPZJdpp5/UidGHzvnc="}]},{"Route":"_content/MudBlazor/MudBlazor.min.0n6lrtb02s.css","AssetFile":"C:\\Users\\Vincent Allen\\.nuget\\packages\\mudblazor\\8.12.0\\staticwebassets\\MudBlazor.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"606258"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"3FM/mjas9rQiq2CY+FQPy1Pe1iCLSx/qZltQxK4dcuQ=\""},{"Name":"Last-Modified","Value":"Tue, 02 Sep 2025 18:25:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0n6lrtb02s"},{"Name":"integrity","Value":"sha256-3FM/mjas9rQiq2CY+FQPy1Pe1iCLSx/qZltQxK4dcuQ="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.css"}]},{"Route":"_content/MudBlazor/MudBlazor.min.css","AssetFile":"C:\\Users\\Vincent Allen\\.nuget\\packages\\mudblazor\\8.12.0\\staticwebassets\\MudBlazor.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"606258"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"3FM/mjas9rQiq2CY+FQPy1Pe1iCLSx/qZltQxK4dcuQ=\""},{"Name":"Last-Modified","Value":"Tue, 02 Sep 2025 18:25:58 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3FM/mjas9rQiq2CY+FQPy1Pe1iCLSx/qZltQxK4dcuQ="}]},{"Route":"_content/MudBlazor/MudBlazor.min.css","AssetFile":"D:\\Nextcloud\\Documents\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\tzxjg6is5z-0n6lrtb02s.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015264845"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"65509"},{"Name":"ETag","Value":"\"G6ttMFl4pZQbeXfp7Od0SO3bC9h9rp9m7NW7DgD0a1Q=\""},{"Name":"Last-Modified","Value":"Fri, 05 Sep 2025 16:32:47 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"3FM/mjas9rQiq2CY+FQPy1Pe1iCLSx/qZltQxK4dcuQ=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3FM/mjas9rQiq2CY+FQPy1Pe1iCLSx/qZltQxK4dcuQ="}]},{"Route":"_content/MudBlazor/MudBlazor.min.css.gz","AssetFile":"D:\\Nextcloud\\Documents\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\tzxjg6is5z-0n6lrtb02s.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"65509"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"G6ttMFl4pZQbeXfp7Od0SO3bC9h9rp9m7NW7DgD0a1Q=\""},{"Name":"Last-Modified","Value":"Fri, 05 Sep 2025 16:32:47 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G6ttMFl4pZQbeXfp7Od0SO3bC9h9rp9m7NW7DgD0a1Q="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js","AssetFile":"C:\\Users\\Vincent Allen\\.nuget\\packages\\mudblazor\\8.12.0\\staticwebassets\\MudBlazor.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"73682"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Qf9/gSPxTxchB08Wi5WXxjPqw2IQvnyVUW27s7cwoUo=\""},{"Name":"Last-Modified","Value":"Tue, 02 Sep 2025 18:25:58 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Qf9/gSPxTxchB08Wi5WXxjPqw2IQvnyVUW27s7cwoUo="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js","AssetFile":"D:\\Nextcloud\\Documents\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\0wz98yz2xy-lftp6ydp6b.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000062952471"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"15884"},{"Name":"ETag","Value":"\"qhJtBPrvSKzfmYIXttsCBAyz1XObWORxmjjeuquTVx8=\""},{"Name":"Last-Modified","Value":"Fri, 05 Sep 2025 16:32:47 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"W/\"Qf9/gSPxTxchB08Wi5WXxjPqw2IQvnyVUW27s7cwoUo=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Qf9/gSPxTxchB08Wi5WXxjPqw2IQvnyVUW27s7cwoUo="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js.gz","AssetFile":"D:\\Nextcloud\\Documents\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\0wz98yz2xy-lftp6ydp6b.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"15884"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"qhJtBPrvSKzfmYIXttsCBAyz1XObWORxmjjeuquTVx8=\""},{"Name":"Last-Modified","Value":"Fri, 05 Sep 2025 16:32:47 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qhJtBPrvSKzfmYIXttsCBAyz1XObWORxmjjeuquTVx8="}]},{"Route":"_content/MudBlazor/MudBlazor.min.lftp6ydp6b.js","AssetFile":"C:\\Users\\Vincent Allen\\.nuget\\packages\\mudblazor\\8.12.0\\staticwebassets\\MudBlazor.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"73682"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Qf9/gSPxTxchB08Wi5WXxjPqw2IQvnyVUW27s7cwoUo=\""},{"Name":"Last-Modified","Value":"Tue, 02 Sep 2025 18:25:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lftp6ydp6b"},{"Name":"integrity","Value":"sha256-Qf9/gSPxTxchB08Wi5WXxjPqw2IQvnyVUW27s7cwoUo="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.js"}]},{"Route":"favicon.2jeq8efc6q.ico","AssetFile":"D:\\Nextcloud\\Documents\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\uorc1pfmvs-2jeq8efc6q.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000336021505"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"2975"},{"Name":"ETag","Value":"\"b7CPHqpoIGsGVgOrEO+r2XPyaLrLUBwkA6R2jOMbS7M=\""},{"Name":"Last-Modified","Value":"Fri, 05 Sep 2025 16:32:47 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"W/\"8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"2jeq8efc6q"},{"Name":"label","Value":"favicon.ico"},{"Name":"integrity","Value":"sha256-8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA="}]},{"Route":"favicon.2jeq8efc6q.ico","AssetFile":"D:\\Nextcloud\\Documents\\Open-Archival\\OpenArchival.Blazor\\wwwroot\\favicon.ico","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"15086"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA=\""},{"Name":"Last-Modified","Value":"Tue, 12 Aug 2025 18:28:17 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2jeq8efc6q"},{"Name":"label","Value":"favicon.ico"},{"Name":"integrity","Value":"sha256-8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA="}]},{"Route":"favicon.2jeq8efc6q.ico.gz","AssetFile":"D:\\Nextcloud\\Documents\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\uorc1pfmvs-2jeq8efc6q.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"2975"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"b7CPHqpoIGsGVgOrEO+r2XPyaLrLUBwkA6R2jOMbS7M=\""},{"Name":"Last-Modified","Value":"Fri, 05 Sep 2025 16:32:47 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2jeq8efc6q"},{"Name":"label","Value":"favicon.ico.gz"},{"Name":"integrity","Value":"sha256-b7CPHqpoIGsGVgOrEO+r2XPyaLrLUBwkA6R2jOMbS7M="}]},{"Route":"favicon.ico","AssetFile":"D:\\Nextcloud\\Documents\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\uorc1pfmvs-2jeq8efc6q.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000336021505"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"2975"},{"Name":"ETag","Value":"\"b7CPHqpoIGsGVgOrEO+r2XPyaLrLUBwkA6R2jOMbS7M=\""},{"Name":"Last-Modified","Value":"Fri, 05 Sep 2025 16:32:47 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"W/\"8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA="}]},{"Route":"favicon.ico","AssetFile":"D:\\Nextcloud\\Documents\\Open-Archival\\OpenArchival.Blazor\\wwwroot\\favicon.ico","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"15086"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA=\""},{"Name":"Last-Modified","Value":"Tue, 12 Aug 2025 18:28:17 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA="}]},{"Route":"favicon.ico.gz","AssetFile":"D:\\Nextcloud\\Documents\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\uorc1pfmvs-2jeq8efc6q.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"2975"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"b7CPHqpoIGsGVgOrEO+r2XPyaLrLUBwkA6R2jOMbS7M=\""},{"Name":"Last-Modified","Value":"Fri, 05 Sep 2025 16:32:47 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-b7CPHqpoIGsGVgOrEO+r2XPyaLrLUBwkA6R2jOMbS7M="}]}]} \ No newline at end of file +{"Version":1,"Hash":"rTJO0DsiywCT4QyA3xodByPXBYXrGquEJIZ9PztZaBo=","Source":"OpenArchival.Blazor","BasePath":"_content/OpenArchival.Blazor","Mode":"Default","ManifestType":"Build","ReferencedProjectsConfiguration":[{"Identity":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.AdminPages\\OpenArchival.Blazor.AdminPages.csproj","Version":2,"Source":"OpenArchival.Blazor.AdminPages","GetPublishAssetsTargets":"ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems","AdditionalPublishProperties":"Configuration=Debug;Platform=AnyCPU","AdditionalPublishPropertiesToRemove":"WebPublishProfileFile;TargetFramework;RuntimeIdentifier;SelfContained","GetBuildAssetsTargets":"GetCurrentProjectBuildStaticWebAssetItems","AdditionalBuildProperties":"Configuration=Debug;Platform=AnyCPU","AdditionalBuildPropertiesToRemove":"WebPublishProfileFile;TargetFramework;RuntimeIdentifier;SelfContained"},{"Identity":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\OpenArchival.Blazor.CustomComponents.csproj","Version":2,"Source":"OpenArchival.Blazor.CustomComponents","GetPublishAssetsTargets":"ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems","AdditionalPublishProperties":"Configuration=Debug;Platform=AnyCPU","AdditionalPublishPropertiesToRemove":"WebPublishProfileFile;TargetFramework;RuntimeIdentifier;SelfContained","GetBuildAssetsTargets":"GetCurrentProjectBuildStaticWebAssetItems","AdditionalBuildProperties":"Configuration=Debug;Platform=AnyCPU","AdditionalBuildPropertiesToRemove":"WebPublishProfileFile;TargetFramework;RuntimeIdentifier;SelfContained"},{"Identity":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\OpenArchival.Blazor.FileViewer.csproj","Version":2,"Source":"OpenArchival.Blazor.FileViewer","GetPublishAssetsTargets":"ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems","AdditionalPublishProperties":"Configuration=Debug;Platform=AnyCPU","AdditionalPublishPropertiesToRemove":"WebPublishProfileFile;TargetFramework;RuntimeIdentifier;SelfContained","GetBuildAssetsTargets":"GetCurrentProjectBuildStaticWebAssetItems","AdditionalBuildProperties":"Configuration=Debug;Platform=AnyCPU","AdditionalBuildPropertiesToRemove":"WebPublishProfileFile;TargetFramework;RuntimeIdentifier;SelfContained"},{"Identity":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj","Version":2,"Source":"OpenArchival.DataAccess","GetPublishAssetsTargets":"ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems","AdditionalPublishProperties":"Configuration=Debug;Platform=AnyCPU","AdditionalPublishPropertiesToRemove":"WebPublishProfileFile;TargetFramework","GetBuildAssetsTargets":"GetCurrentProjectBuildStaticWebAssetItems","AdditionalBuildProperties":"Configuration=Debug;Platform=AnyCPU","AdditionalBuildPropertiesToRemove":"WebPublishProfileFile;TargetFramework"}],"DiscoveryPatterns":[{"Name":"OpenArchival.Blazor\\wwwroot","Source":"OpenArchival.Blazor","ContentRoot":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\wwwroot\\","BasePath":"_content/OpenArchival.Blazor","Pattern":"**"}],"Assets":[{"Identity":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\Mud_Secondary.png","SourceId":"CodeBeam.MudExtensions","SourceType":"Package","ContentRoot":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\","BasePath":"_content/CodeBeam.MudExtensions","RelativePath":"Mud_Secondary.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"tig1qhobl3","Integrity":"G3hYUw4Ps9P/IQ3lw2zu96RSZaOf4zU+4QkXkH8Xi3Y=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\Mud_Secondary.png","FileLength":4558,"LastWriteTime":"2022-10-08T09:55:02+00:00"},{"Identity":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\MudExtensions.min.css","SourceId":"CodeBeam.MudExtensions","SourceType":"Package","ContentRoot":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\","BasePath":"_content/CodeBeam.MudExtensions","RelativePath":"MudExtensions.min.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"qz4batx9cb","Integrity":"Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\MudExtensions.min.css","FileLength":21465,"LastWriteTime":"2023-02-26T14:08:26+00:00"},{"Identity":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\MudExtensions.min.js","SourceId":"CodeBeam.MudExtensions","SourceType":"Package","ContentRoot":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\","BasePath":"_content/CodeBeam.MudExtensions","RelativePath":"MudExtensions.min.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"loe7cozwzj","Integrity":"FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\MudExtensions.min.js","FileLength":328,"LastWriteTime":"2023-02-26T14:08:26+00:00"},{"Identity":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\MudBlazor.min.css","SourceId":"MudBlazor","SourceType":"Package","ContentRoot":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\","BasePath":"_content/MudBlazor","RelativePath":"MudBlazor.min.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"jk5eo7zo4m","Integrity":"TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\MudBlazor.min.css","FileLength":606250,"LastWriteTime":"2025-10-01T21:51:05+00:00"},{"Identity":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\MudBlazor.min.js","SourceId":"MudBlazor","SourceType":"Package","ContentRoot":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\","BasePath":"_content/MudBlazor","RelativePath":"MudBlazor.min.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"tjzqk7tnel","Integrity":"hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\MudBlazor.min.js","FileLength":75165,"LastWriteTime":"2025-10-01T21:51:05+00:00"},{"Identity":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\compressed\\oacsgz2ky3-83wakjp31g.gz","SourceId":"OpenArchival.Blazor.FileViewer","SourceType":"Project","ContentRoot":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\compressed\\","BasePath":"_content/OpenArchival.Blazor.FileViewer","RelativePath":"OpenArchival.Blazor.FileViewer#[.{fingerprint=83wakjp31g}]!.bundle.scp.css.gz","AssetKind":"All","AssetMode":"Reference","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\scopedcss\\projectbundle\\OpenArchival.Blazor.FileViewer.bundle.scp.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"hre2inkdpm","Integrity":"w7pUrtgbGsKChPQ+JZf6wIJIlRo5ItP1AJKKjbLPBUM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\scopedcss\\projectbundle\\OpenArchival.Blazor.FileViewer.bundle.scp.css","FileLength":162,"LastWriteTime":"2025-10-08T17:06:27+00:00"},{"Identity":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\scopedcss\\projectbundle\\OpenArchival.Blazor.FileViewer.bundle.scp.css","SourceId":"OpenArchival.Blazor.FileViewer","SourceType":"Project","ContentRoot":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\scopedcss\\projectbundle\\","BasePath":"_content/OpenArchival.Blazor.FileViewer","RelativePath":"OpenArchival.Blazor.FileViewer#[.{fingerprint}]!.bundle.scp.css","AssetKind":"All","AssetMode":"Reference","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"ScopedCss","AssetTraitValue":"ProjectBundle","Fingerprint":"83wakjp31g","Integrity":"9NCmFFvSZYsIWCQoks2vSnN9EMEwePSQhoXfFOCn5mg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\scopedcss\\projectbundle\\OpenArchival.Blazor.FileViewer.bundle.scp.css","FileLength":186,"LastWriteTime":"2025-10-08T17:06:27+00:00"},{"Identity":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\0wz98yz2xy-tjzqk7tnel.gz","SourceId":"MudBlazor","SourceType":"Package","ContentRoot":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\","BasePath":"_content/MudBlazor","RelativePath":"MudBlazor.min.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\MudBlazor.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"c1g0o1u83p","Integrity":"0BJxfo+EOJvNKoBv/2ahm4RKrPjv7PhB/R16C3XOHDo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\MudBlazor.min.js","FileLength":16352,"LastWriteTime":"2025-10-08T17:06:30+00:00"},{"Identity":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\24gzn4tg1a-qz4batx9cb.gz","SourceId":"CodeBeam.MudExtensions","SourceType":"Package","ContentRoot":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\","BasePath":"_content/CodeBeam.MudExtensions","RelativePath":"MudExtensions.min.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\MudExtensions.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"cn6plcuhii","Integrity":"6PJ7t7WR38pQTSYe6IR0pbqo2cIZK5wuW/w26kprtBg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\MudExtensions.min.css","FileLength":3383,"LastWriteTime":"2025-10-08T17:06:30+00:00"},{"Identity":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\6sncp75uxm-of6ssq9pmk.gz","SourceId":"OpenArchival.Blazor","SourceType":"Computed","ContentRoot":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\","BasePath":"_content/OpenArchival.Blazor","RelativePath":"OpenArchival.Blazor#[.{fingerprint=of6ssq9pmk}]?.styles.css.gz","AssetKind":"All","AssetMode":"CurrentProject","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\scopedcss\\bundle\\OpenArchival.Blazor.styles.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"1q2zld6v72","Integrity":"iaEgFyUTJAhMAW+JFVh6LKM3gSG0Kn0oNWuuMVofbCw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\scopedcss\\bundle\\OpenArchival.Blazor.styles.css","FileLength":102,"LastWriteTime":"2025-10-08T17:06:30+00:00"},{"Identity":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\i11yscesdd-zy4ksw00d9.gz","SourceId":"OpenArchival.Blazor","SourceType":"Discovered","ContentRoot":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\","BasePath":"_content/OpenArchival.Blazor","RelativePath":"js/downloadHelper#[.{fingerprint=zy4ksw00d9}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\wwwroot\\js\\downloadHelper.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"8z2o7nkqic","Integrity":"FAg7kmeFsh8jkhGZs/GZGp9lb/FDf6lNCN/9/HzL7Dc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\wwwroot\\js\\downloadHelper.js","FileLength":235,"LastWriteTime":"2025-10-08T17:06:30+00:00"},{"Identity":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\rou3pye8gp-6k2m17moin.gz","SourceId":"OpenArchival.Blazor","SourceType":"Discovered","ContentRoot":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\","BasePath":"_content/OpenArchival.Blazor","RelativePath":"js/imageSizeGetter#[.{fingerprint=6k2m17moin}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\wwwroot\\js\\imageSizeGetter.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"j0008cknjh","Integrity":"E7gYH0HUXBVbrGIOQeZXi1EKyLtFMQvfEx1uCLzd+H0=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\wwwroot\\js\\imageSizeGetter.js","FileLength":657,"LastWriteTime":"2025-10-08T17:06:30+00:00"},{"Identity":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\stwk5nfoxp-loe7cozwzj.gz","SourceId":"CodeBeam.MudExtensions","SourceType":"Package","ContentRoot":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\","BasePath":"_content/CodeBeam.MudExtensions","RelativePath":"MudExtensions.min.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\MudExtensions.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"z9m1gj6ro7","Integrity":"B4PUgpr06+d3lAMWknp0EVkaGxPZJdpp5/UidGHzvnc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\MudExtensions.min.js","FileLength":196,"LastWriteTime":"2025-10-08T17:06:30+00:00"},{"Identity":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\tzxjg6is5z-jk5eo7zo4m.gz","SourceId":"MudBlazor","SourceType":"Package","ContentRoot":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\","BasePath":"_content/MudBlazor","RelativePath":"MudBlazor.min.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\MudBlazor.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"93u47y2o0e","Integrity":"VcBMO3aXrzxl+jfWY+TaxPKsd3L0UWjeJZliEXOyzzI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\MudBlazor.min.css","FileLength":65509,"LastWriteTime":"2025-10-08T17:06:30+00:00"},{"Identity":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\uorc1pfmvs-2jeq8efc6q.gz","SourceId":"OpenArchival.Blazor","SourceType":"Discovered","ContentRoot":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\","BasePath":"_content/OpenArchival.Blazor","RelativePath":"favicon#[.{fingerprint=2jeq8efc6q}]?.ico.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\wwwroot\\favicon.ico","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"3ren6c1acn","Integrity":"b7CPHqpoIGsGVgOrEO+r2XPyaLrLUBwkA6R2jOMbS7M=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\wwwroot\\favicon.ico","FileLength":2975,"LastWriteTime":"2025-10-08T17:06:30+00:00"},{"Identity":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\scopedcss\\bundle\\OpenArchival.Blazor.styles.css","SourceId":"OpenArchival.Blazor","SourceType":"Computed","ContentRoot":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\scopedcss\\bundle\\","BasePath":"_content/OpenArchival.Blazor","RelativePath":"OpenArchival.Blazor#[.{fingerprint}]?.styles.css","AssetKind":"All","AssetMode":"CurrentProject","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"ScopedCss","AssetTraitValue":"ApplicationBundle","Fingerprint":"of6ssq9pmk","Integrity":"lCMY9zSeY9QeKoomwsAHffyneUvstrerzcX/DLZLNWc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\scopedcss\\bundle\\OpenArchival.Blazor.styles.css","FileLength":111,"LastWriteTime":"2025-10-08T17:06:30+00:00"},{"Identity":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\wwwroot\\favicon.ico","SourceId":"OpenArchival.Blazor","SourceType":"Discovered","ContentRoot":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\wwwroot\\","BasePath":"_content/OpenArchival.Blazor","RelativePath":"favicon#[.{fingerprint}]?.ico","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"2jeq8efc6q","Integrity":"8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\favicon.ico","FileLength":15086,"LastWriteTime":"2025-09-09T18:04:11+00:00"},{"Identity":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\wwwroot\\js\\downloadHelper.js","SourceId":"OpenArchival.Blazor","SourceType":"Discovered","ContentRoot":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\wwwroot\\","BasePath":"_content/OpenArchival.Blazor","RelativePath":"js/downloadHelper#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"zy4ksw00d9","Integrity":"1Y0+hi0re9m8XGNP8FnpYyxExUDrHq+JH6HMHvv/ECc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\js\\downloadHelper.js","FileLength":346,"LastWriteTime":"2025-10-07T16:44:09+00:00"},{"Identity":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\wwwroot\\js\\imageSizeGetter.js","SourceId":"OpenArchival.Blazor","SourceType":"Discovered","ContentRoot":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\wwwroot\\","BasePath":"_content/OpenArchival.Blazor","RelativePath":"js/imageSizeGetter#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"6k2m17moin","Integrity":"djPj7C64LX1RuirqUYjojHK/GAwYXsTwjRrnBSiYW9k=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\js\\imageSizeGetter.js","FileLength":1824,"LastWriteTime":"2025-10-07T20:16:31+00:00"}],"Endpoints":[{"Route":"_content/CodeBeam.MudExtensions/Mud_Secondary.png","AssetFile":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\Mud_Secondary.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"4558"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"G3hYUw4Ps9P/IQ3lw2zu96RSZaOf4zU+4QkXkH8Xi3Y=\""},{"Name":"Last-Modified","Value":"Sat, 08 Oct 2022 09:55:02 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G3hYUw4Ps9P/IQ3lw2zu96RSZaOf4zU+4QkXkH8Xi3Y="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.css","AssetFile":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\MudExtensions.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"21465"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk=\""},{"Name":"Last-Modified","Value":"Sun, 26 Feb 2023 14:08:26 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.css","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\24gzn4tg1a-qz4batx9cb.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000295508274"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"3383"},{"Name":"ETag","Value":"\"6PJ7t7WR38pQTSYe6IR0pbqo2cIZK5wuW/w26kprtBg=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.css.gz","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\24gzn4tg1a-qz4batx9cb.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"3383"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"6PJ7t7WR38pQTSYe6IR0pbqo2cIZK5wuW/w26kprtBg=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6PJ7t7WR38pQTSYe6IR0pbqo2cIZK5wuW/w26kprtBg="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.js","AssetFile":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\MudExtensions.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"328"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc=\""},{"Name":"Last-Modified","Value":"Sun, 26 Feb 2023 14:08:26 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.js","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\stwk5nfoxp-loe7cozwzj.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005076142132"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"196"},{"Name":"ETag","Value":"\"B4PUgpr06+d3lAMWknp0EVkaGxPZJdpp5/UidGHzvnc=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"W/\"FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.js.gz","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\stwk5nfoxp-loe7cozwzj.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"196"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"B4PUgpr06+d3lAMWknp0EVkaGxPZJdpp5/UidGHzvnc=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-B4PUgpr06+d3lAMWknp0EVkaGxPZJdpp5/UidGHzvnc="}]},{"Route":"_content/MudBlazor/MudBlazor.min.css","AssetFile":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\MudBlazor.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"606250"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0=\""},{"Name":"Last-Modified","Value":"Wed, 01 Oct 2025 21:51:05 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0="}]},{"Route":"_content/MudBlazor/MudBlazor.min.css","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\tzxjg6is5z-jk5eo7zo4m.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015264845"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"65509"},{"Name":"ETag","Value":"\"VcBMO3aXrzxl+jfWY+TaxPKsd3L0UWjeJZliEXOyzzI=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0="}]},{"Route":"_content/MudBlazor/MudBlazor.min.css.gz","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\tzxjg6is5z-jk5eo7zo4m.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"65509"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"VcBMO3aXrzxl+jfWY+TaxPKsd3L0UWjeJZliEXOyzzI=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VcBMO3aXrzxl+jfWY+TaxPKsd3L0UWjeJZliEXOyzzI="}]},{"Route":"_content/MudBlazor/MudBlazor.min.jk5eo7zo4m.css","AssetFile":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\MudBlazor.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"606250"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0=\""},{"Name":"Last-Modified","Value":"Wed, 01 Oct 2025 21:51:05 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jk5eo7zo4m"},{"Name":"integrity","Value":"sha256-TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.css"}]},{"Route":"_content/MudBlazor/MudBlazor.min.js","AssetFile":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\MudBlazor.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"75165"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw=\""},{"Name":"Last-Modified","Value":"Wed, 01 Oct 2025 21:51:05 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\0wz98yz2xy-tjzqk7tnel.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000061150859"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"16352"},{"Name":"ETag","Value":"\"0BJxfo+EOJvNKoBv/2ahm4RKrPjv7PhB/R16C3XOHDo=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"W/\"hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js.gz","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\0wz98yz2xy-tjzqk7tnel.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"16352"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"0BJxfo+EOJvNKoBv/2ahm4RKrPjv7PhB/R16C3XOHDo=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0BJxfo+EOJvNKoBv/2ahm4RKrPjv7PhB/R16C3XOHDo="}]},{"Route":"_content/MudBlazor/MudBlazor.min.tjzqk7tnel.js","AssetFile":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\MudBlazor.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"75165"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw=\""},{"Name":"Last-Modified","Value":"Wed, 01 Oct 2025 21:51:05 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tjzqk7tnel"},{"Name":"integrity","Value":"sha256-hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.js"}]},{"Route":"_content/OpenArchival.Blazor.FileViewer/OpenArchival.Blazor.FileViewer.83wakjp31g.bundle.scp.css","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\compressed\\oacsgz2ky3-83wakjp31g.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.006134969325"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"162"},{"Name":"ETag","Value":"\"w7pUrtgbGsKChPQ+JZf6wIJIlRo5ItP1AJKKjbLPBUM=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"9NCmFFvSZYsIWCQoks2vSnN9EMEwePSQhoXfFOCn5mg=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"83wakjp31g"},{"Name":"integrity","Value":"sha256-9NCmFFvSZYsIWCQoks2vSnN9EMEwePSQhoXfFOCn5mg="},{"Name":"label","Value":"_content/OpenArchival.Blazor.FileViewer/OpenArchival.Blazor.FileViewer.bundle.scp.css"}]},{"Route":"_content/OpenArchival.Blazor.FileViewer/OpenArchival.Blazor.FileViewer.83wakjp31g.bundle.scp.css","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\scopedcss\\projectbundle\\OpenArchival.Blazor.FileViewer.bundle.scp.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"186"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"9NCmFFvSZYsIWCQoks2vSnN9EMEwePSQhoXfFOCn5mg=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"83wakjp31g"},{"Name":"integrity","Value":"sha256-9NCmFFvSZYsIWCQoks2vSnN9EMEwePSQhoXfFOCn5mg="},{"Name":"label","Value":"_content/OpenArchival.Blazor.FileViewer/OpenArchival.Blazor.FileViewer.bundle.scp.css"}]},{"Route":"_content/OpenArchival.Blazor.FileViewer/OpenArchival.Blazor.FileViewer.83wakjp31g.bundle.scp.css.gz","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\compressed\\oacsgz2ky3-83wakjp31g.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":"162"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"w7pUrtgbGsKChPQ+JZf6wIJIlRo5ItP1AJKKjbLPBUM=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"83wakjp31g"},{"Name":"integrity","Value":"sha256-w7pUrtgbGsKChPQ+JZf6wIJIlRo5ItP1AJKKjbLPBUM="},{"Name":"label","Value":"_content/OpenArchival.Blazor.FileViewer/OpenArchival.Blazor.FileViewer.bundle.scp.css.gz"}]},{"Route":"_content/OpenArchival.Blazor.FileViewer/OpenArchival.Blazor.FileViewer.bundle.scp.css","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\compressed\\oacsgz2ky3-83wakjp31g.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.006134969325"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"162"},{"Name":"ETag","Value":"\"w7pUrtgbGsKChPQ+JZf6wIJIlRo5ItP1AJKKjbLPBUM=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"9NCmFFvSZYsIWCQoks2vSnN9EMEwePSQhoXfFOCn5mg=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9NCmFFvSZYsIWCQoks2vSnN9EMEwePSQhoXfFOCn5mg="}]},{"Route":"_content/OpenArchival.Blazor.FileViewer/OpenArchival.Blazor.FileViewer.bundle.scp.css","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\scopedcss\\projectbundle\\OpenArchival.Blazor.FileViewer.bundle.scp.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"186"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"9NCmFFvSZYsIWCQoks2vSnN9EMEwePSQhoXfFOCn5mg=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9NCmFFvSZYsIWCQoks2vSnN9EMEwePSQhoXfFOCn5mg="}]},{"Route":"_content/OpenArchival.Blazor.FileViewer/OpenArchival.Blazor.FileViewer.bundle.scp.css.gz","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\compressed\\oacsgz2ky3-83wakjp31g.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"162"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"w7pUrtgbGsKChPQ+JZf6wIJIlRo5ItP1AJKKjbLPBUM=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-w7pUrtgbGsKChPQ+JZf6wIJIlRo5ItP1AJKKjbLPBUM="}]},{"Route":"favicon.2jeq8efc6q.ico","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\uorc1pfmvs-2jeq8efc6q.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000336021505"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"2975"},{"Name":"ETag","Value":"\"b7CPHqpoIGsGVgOrEO+r2XPyaLrLUBwkA6R2jOMbS7M=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"W/\"8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"2jeq8efc6q"},{"Name":"label","Value":"favicon.ico"},{"Name":"integrity","Value":"sha256-8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA="}]},{"Route":"favicon.2jeq8efc6q.ico","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\wwwroot\\favicon.ico","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"15086"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA=\""},{"Name":"Last-Modified","Value":"Tue, 09 Sep 2025 18:04:11 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2jeq8efc6q"},{"Name":"label","Value":"favicon.ico"},{"Name":"integrity","Value":"sha256-8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA="}]},{"Route":"favicon.2jeq8efc6q.ico.gz","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\uorc1pfmvs-2jeq8efc6q.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"2975"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"b7CPHqpoIGsGVgOrEO+r2XPyaLrLUBwkA6R2jOMbS7M=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2jeq8efc6q"},{"Name":"label","Value":"favicon.ico.gz"},{"Name":"integrity","Value":"sha256-b7CPHqpoIGsGVgOrEO+r2XPyaLrLUBwkA6R2jOMbS7M="}]},{"Route":"favicon.ico","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\uorc1pfmvs-2jeq8efc6q.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000336021505"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"2975"},{"Name":"ETag","Value":"\"b7CPHqpoIGsGVgOrEO+r2XPyaLrLUBwkA6R2jOMbS7M=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"W/\"8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA="}]},{"Route":"favicon.ico","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\wwwroot\\favicon.ico","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"15086"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA=\""},{"Name":"Last-Modified","Value":"Tue, 09 Sep 2025 18:04:11 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA="}]},{"Route":"favicon.ico.gz","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\uorc1pfmvs-2jeq8efc6q.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"2975"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"b7CPHqpoIGsGVgOrEO+r2XPyaLrLUBwkA6R2jOMbS7M=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-b7CPHqpoIGsGVgOrEO+r2XPyaLrLUBwkA6R2jOMbS7M="}]},{"Route":"js/downloadHelper.js","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\i11yscesdd-zy4ksw00d9.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.004237288136"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"235"},{"Name":"ETag","Value":"\"FAg7kmeFsh8jkhGZs/GZGp9lb/FDf6lNCN/9/HzL7Dc=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"W/\"1Y0+hi0re9m8XGNP8FnpYyxExUDrHq+JH6HMHvv/ECc=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1Y0+hi0re9m8XGNP8FnpYyxExUDrHq+JH6HMHvv/ECc="}]},{"Route":"js/downloadHelper.js","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\wwwroot\\js\\downloadHelper.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"346"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"1Y0+hi0re9m8XGNP8FnpYyxExUDrHq+JH6HMHvv/ECc=\""},{"Name":"Last-Modified","Value":"Tue, 07 Oct 2025 16:44:09 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1Y0+hi0re9m8XGNP8FnpYyxExUDrHq+JH6HMHvv/ECc="}]},{"Route":"js/downloadHelper.js.gz","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\i11yscesdd-zy4ksw00d9.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"235"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"FAg7kmeFsh8jkhGZs/GZGp9lb/FDf6lNCN/9/HzL7Dc=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FAg7kmeFsh8jkhGZs/GZGp9lb/FDf6lNCN/9/HzL7Dc="}]},{"Route":"js/downloadHelper.zy4ksw00d9.js","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\i11yscesdd-zy4ksw00d9.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.004237288136"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"235"},{"Name":"ETag","Value":"\"FAg7kmeFsh8jkhGZs/GZGp9lb/FDf6lNCN/9/HzL7Dc=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"W/\"1Y0+hi0re9m8XGNP8FnpYyxExUDrHq+JH6HMHvv/ECc=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"zy4ksw00d9"},{"Name":"label","Value":"js/downloadHelper.js"},{"Name":"integrity","Value":"sha256-1Y0+hi0re9m8XGNP8FnpYyxExUDrHq+JH6HMHvv/ECc="}]},{"Route":"js/downloadHelper.zy4ksw00d9.js","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\wwwroot\\js\\downloadHelper.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"346"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"1Y0+hi0re9m8XGNP8FnpYyxExUDrHq+JH6HMHvv/ECc=\""},{"Name":"Last-Modified","Value":"Tue, 07 Oct 2025 16:44:09 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zy4ksw00d9"},{"Name":"label","Value":"js/downloadHelper.js"},{"Name":"integrity","Value":"sha256-1Y0+hi0re9m8XGNP8FnpYyxExUDrHq+JH6HMHvv/ECc="}]},{"Route":"js/downloadHelper.zy4ksw00d9.js.gz","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\i11yscesdd-zy4ksw00d9.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"235"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"FAg7kmeFsh8jkhGZs/GZGp9lb/FDf6lNCN/9/HzL7Dc=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zy4ksw00d9"},{"Name":"label","Value":"js/downloadHelper.js.gz"},{"Name":"integrity","Value":"sha256-FAg7kmeFsh8jkhGZs/GZGp9lb/FDf6lNCN/9/HzL7Dc="}]},{"Route":"js/imageSizeGetter.6k2m17moin.js","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\rou3pye8gp-6k2m17moin.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001519756839"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"657"},{"Name":"ETag","Value":"\"E7gYH0HUXBVbrGIOQeZXi1EKyLtFMQvfEx1uCLzd+H0=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"W/\"djPj7C64LX1RuirqUYjojHK/GAwYXsTwjRrnBSiYW9k=\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"6k2m17moin"},{"Name":"label","Value":"js/imageSizeGetter.js"},{"Name":"integrity","Value":"sha256-djPj7C64LX1RuirqUYjojHK/GAwYXsTwjRrnBSiYW9k="}]},{"Route":"js/imageSizeGetter.6k2m17moin.js","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\wwwroot\\js\\imageSizeGetter.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"1824"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"djPj7C64LX1RuirqUYjojHK/GAwYXsTwjRrnBSiYW9k=\""},{"Name":"Last-Modified","Value":"Tue, 07 Oct 2025 20:16:31 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6k2m17moin"},{"Name":"label","Value":"js/imageSizeGetter.js"},{"Name":"integrity","Value":"sha256-djPj7C64LX1RuirqUYjojHK/GAwYXsTwjRrnBSiYW9k="}]},{"Route":"js/imageSizeGetter.6k2m17moin.js.gz","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\rou3pye8gp-6k2m17moin.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"657"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"E7gYH0HUXBVbrGIOQeZXi1EKyLtFMQvfEx1uCLzd+H0=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6k2m17moin"},{"Name":"label","Value":"js/imageSizeGetter.js.gz"},{"Name":"integrity","Value":"sha256-E7gYH0HUXBVbrGIOQeZXi1EKyLtFMQvfEx1uCLzd+H0="}]},{"Route":"js/imageSizeGetter.js","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\rou3pye8gp-6k2m17moin.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001519756839"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"657"},{"Name":"ETag","Value":"\"E7gYH0HUXBVbrGIOQeZXi1EKyLtFMQvfEx1uCLzd+H0=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"W/\"djPj7C64LX1RuirqUYjojHK/GAwYXsTwjRrnBSiYW9k=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-djPj7C64LX1RuirqUYjojHK/GAwYXsTwjRrnBSiYW9k="}]},{"Route":"js/imageSizeGetter.js","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\wwwroot\\js\\imageSizeGetter.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"1824"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"djPj7C64LX1RuirqUYjojHK/GAwYXsTwjRrnBSiYW9k=\""},{"Name":"Last-Modified","Value":"Tue, 07 Oct 2025 20:16:31 GMT"},{"Name":"Cache-Control","Value":"no-cache"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-djPj7C64LX1RuirqUYjojHK/GAwYXsTwjRrnBSiYW9k="}]},{"Route":"js/imageSizeGetter.js.gz","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\rou3pye8gp-6k2m17moin.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"657"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"E7gYH0HUXBVbrGIOQeZXi1EKyLtFMQvfEx1uCLzd+H0=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-E7gYH0HUXBVbrGIOQeZXi1EKyLtFMQvfEx1uCLzd+H0="}]},{"Route":"OpenArchival.Blazor.of6ssq9pmk.styles.css","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\6sncp75uxm-of6ssq9pmk.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.009708737864"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"102"},{"Name":"ETag","Value":"\"iaEgFyUTJAhMAW+JFVh6LKM3gSG0Kn0oNWuuMVofbCw=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"lCMY9zSeY9QeKoomwsAHffyneUvstrerzcX/DLZLNWc=\""},{"Name":"Link","Value":"<_content/OpenArchival.Blazor.FileViewer/OpenArchival.Blazor.FileViewer.83wakjp31g.bundle.scp.css>; rel=\"preload\"; as=\"style\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"of6ssq9pmk"},{"Name":"integrity","Value":"sha256-lCMY9zSeY9QeKoomwsAHffyneUvstrerzcX/DLZLNWc="},{"Name":"label","Value":"OpenArchival.Blazor.styles.css"}]},{"Route":"OpenArchival.Blazor.of6ssq9pmk.styles.css","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\scopedcss\\bundle\\OpenArchival.Blazor.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"111"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"lCMY9zSeY9QeKoomwsAHffyneUvstrerzcX/DLZLNWc=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Link","Value":"<_content/OpenArchival.Blazor.FileViewer/OpenArchival.Blazor.FileViewer.83wakjp31g.bundle.scp.css>; rel=\"preload\"; as=\"style\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"of6ssq9pmk"},{"Name":"integrity","Value":"sha256-lCMY9zSeY9QeKoomwsAHffyneUvstrerzcX/DLZLNWc="},{"Name":"label","Value":"OpenArchival.Blazor.styles.css"}]},{"Route":"OpenArchival.Blazor.of6ssq9pmk.styles.css.gz","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\6sncp75uxm-of6ssq9pmk.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"102"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"iaEgFyUTJAhMAW+JFVh6LKM3gSG0Kn0oNWuuMVofbCw=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"of6ssq9pmk"},{"Name":"label","Value":"OpenArchival.Blazor.styles.css.gz"},{"Name":"integrity","Value":"sha256-iaEgFyUTJAhMAW+JFVh6LKM3gSG0Kn0oNWuuMVofbCw="}]},{"Route":"OpenArchival.Blazor.styles.css","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\6sncp75uxm-of6ssq9pmk.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.009708737864"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"102"},{"Name":"ETag","Value":"\"iaEgFyUTJAhMAW+JFVh6LKM3gSG0Kn0oNWuuMVofbCw=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"lCMY9zSeY9QeKoomwsAHffyneUvstrerzcX/DLZLNWc=\""},{"Name":"Link","Value":"<_content/OpenArchival.Blazor.FileViewer/OpenArchival.Blazor.FileViewer.83wakjp31g.bundle.scp.css>; rel=\"preload\"; as=\"style\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lCMY9zSeY9QeKoomwsAHffyneUvstrerzcX/DLZLNWc="}]},{"Route":"OpenArchival.Blazor.styles.css","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\scopedcss\\bundle\\OpenArchival.Blazor.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"111"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"lCMY9zSeY9QeKoomwsAHffyneUvstrerzcX/DLZLNWc=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Link","Value":"<_content/OpenArchival.Blazor.FileViewer/OpenArchival.Blazor.FileViewer.83wakjp31g.bundle.scp.css>; rel=\"preload\"; as=\"style\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lCMY9zSeY9QeKoomwsAHffyneUvstrerzcX/DLZLNWc="}]},{"Route":"OpenArchival.Blazor.styles.css.gz","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\6sncp75uxm-of6ssq9pmk.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"102"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"iaEgFyUTJAhMAW+JFVh6LKM3gSG0Kn0oNWuuMVofbCw=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-iaEgFyUTJAhMAW+JFVh6LKM3gSG0Kn0oNWuuMVofbCw="}]}]} \ No newline at end of file diff --git a/OpenArchival.Blazor/obj/Debug/net9.0/staticwebassets.build.json.cache b/OpenArchival.Blazor/obj/Debug/net9.0/staticwebassets.build.json.cache index 14e9fba..0e1816e 100644 --- a/OpenArchival.Blazor/obj/Debug/net9.0/staticwebassets.build.json.cache +++ b/OpenArchival.Blazor/obj/Debug/net9.0/staticwebassets.build.json.cache @@ -1 +1 @@ -Z+wfILUdcipltKG9E28neJvElvUrGb/3rt6SdKJ2vZw= \ No newline at end of file +rTJO0DsiywCT4QyA3xodByPXBYXrGquEJIZ9PztZaBo= \ No newline at end of file diff --git a/OpenArchival.Blazor/obj/Debug/net9.0/staticwebassets.development.json b/OpenArchival.Blazor/obj/Debug/net9.0/staticwebassets.development.json index 38513ed..59bb7ca 100644 --- a/OpenArchival.Blazor/obj/Debug/net9.0/staticwebassets.development.json +++ b/OpenArchival.Blazor/obj/Debug/net9.0/staticwebassets.development.json @@ -1 +1 @@ -{"ContentRoots":["D:\\Nextcloud\\Documents\\Open-Archival\\OpenArchival.Blazor\\wwwroot\\","D:\\Nextcloud\\Documents\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\","C:\\Users\\Vincent Allen\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\","C:\\Users\\Vincent Allen\\.nuget\\packages\\mudblazor\\8.12.0\\staticwebassets\\"],"Root":{"Children":{"favicon.ico":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"favicon.ico"},"Patterns":null},"favicon.ico.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"uorc1pfmvs-2jeq8efc6q.gz"},"Patterns":null},"_content":{"Children":{"CodeBeam.MudExtensions":{"Children":{"Mud_Secondary.png":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"Mud_Secondary.png"},"Patterns":null},"MudExtensions.min.css":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"MudExtensions.min.css"},"Patterns":null},"MudExtensions.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"24gzn4tg1a-qz4batx9cb.gz"},"Patterns":null},"MudExtensions.min.js":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"MudExtensions.min.js"},"Patterns":null},"MudExtensions.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"stwk5nfoxp-loe7cozwzj.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"MudBlazor":{"Children":{"MudBlazor.min.css":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"MudBlazor.min.css"},"Patterns":null},"MudBlazor.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"tzxjg6is5z-0n6lrtb02s.gz"},"Patterns":null},"MudBlazor.min.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"MudBlazor.min.js"},"Patterns":null},"MudBlazor.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"0wz98yz2xy-lftp6ydp6b.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}} \ No newline at end of file +{"ContentRoots":["C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\wwwroot\\","C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\","C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\scopedcss\\bundle\\","C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\","C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\","C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\scopedcss\\projectbundle\\","C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\compressed\\"],"Root":{"Children":{"favicon.ico":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"favicon.ico"},"Patterns":null},"favicon.ico.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"uorc1pfmvs-2jeq8efc6q.gz"},"Patterns":null},"OpenArchival.Blazor.styles.css":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"OpenArchival.Blazor.styles.css"},"Patterns":null},"OpenArchival.Blazor.styles.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"6sncp75uxm-of6ssq9pmk.gz"},"Patterns":null},"js":{"Children":{"downloadHelper.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/downloadHelper.js"},"Patterns":null},"downloadHelper.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"i11yscesdd-zy4ksw00d9.gz"},"Patterns":null},"imageSizeGetter.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/imageSizeGetter.js"},"Patterns":null},"imageSizeGetter.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"rou3pye8gp-6k2m17moin.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"_content":{"Children":{"CodeBeam.MudExtensions":{"Children":{"Mud_Secondary.png":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"Mud_Secondary.png"},"Patterns":null},"MudExtensions.min.css":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"MudExtensions.min.css"},"Patterns":null},"MudExtensions.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"24gzn4tg1a-qz4batx9cb.gz"},"Patterns":null},"MudExtensions.min.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"MudExtensions.min.js"},"Patterns":null},"MudExtensions.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"stwk5nfoxp-loe7cozwzj.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"MudBlazor":{"Children":{"MudBlazor.min.css":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"MudBlazor.min.css"},"Patterns":null},"MudBlazor.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"tzxjg6is5z-jk5eo7zo4m.gz"},"Patterns":null},"MudBlazor.min.js":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"MudBlazor.min.js"},"Patterns":null},"MudBlazor.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"0wz98yz2xy-tjzqk7tnel.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"OpenArchival.Blazor.FileViewer":{"Children":{"OpenArchival.Blazor.FileViewer.83wakjp31g.bundle.scp.css":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"OpenArchival.Blazor.FileViewer.bundle.scp.css"},"Patterns":null},"OpenArchival.Blazor.FileViewer.83wakjp31g.bundle.scp.css.gz":{"Children":null,"Asset":{"ContentRootIndex":6,"SubPath":"oacsgz2ky3-83wakjp31g.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}} \ No newline at end of file diff --git a/OpenArchival.Blazor/obj/Debug/net9.0/staticwebassets.references.upToDateCheck.txt b/OpenArchival.Blazor/obj/Debug/net9.0/staticwebassets.references.upToDateCheck.txt index 01e5c23..b6580f8 100644 --- a/OpenArchival.Blazor/obj/Debug/net9.0/staticwebassets.references.upToDateCheck.txt +++ b/OpenArchival.Blazor/obj/Debug/net9.0/staticwebassets.references.upToDateCheck.txt @@ -305,3 +305,118 @@ D:\Nextcloud\Documents\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\st D:\Nextcloud\Documents\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json D:\Nextcloud\Documents\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json D:\Nextcloud\Documents\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\OpenArchival.FileViewer\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\OpenArchival.FileViewer\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\OpenArchival.FileViewer\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\OpenArchival.FileViewer\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\OpenArchival.FileViewer\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\OpenArchival.FileViewer\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\OpenArchival.FileViewer\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\OpenArchival.FileViewer\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\OpenArchival.FileViewer\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\OpenArchival.FileViewer\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\OpenArchival.FileViewer\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\OpenArchival.FileViewer\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.FileViewer\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.FileViewer\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.FileViewer\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.FileViewer\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.FileViewer\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.FileViewer\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.FileViewer\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.FileViewer\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.FileViewer\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.FileViewer\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.FileViewer\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.FileViewer\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.FileViewer\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.FileViewer\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.FileViewer\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.FileViewer\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.AdminPages\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.FileViewer\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json diff --git a/OpenArchival.Blazor/obj/Debug/net9.0/staticwebassets.upToDateCheck.txt b/OpenArchival.Blazor/obj/Debug/net9.0/staticwebassets.upToDateCheck.txt index b7e2d37..358aee4 100644 --- a/OpenArchival.Blazor/obj/Debug/net9.0/staticwebassets.upToDateCheck.txt +++ b/OpenArchival.Blazor/obj/Debug/net9.0/staticwebassets.upToDateCheck.txt @@ -1,2 +1,6 @@ wwwroot\favicon.ico -D:\Nextcloud\Documents\Open-Archival\OpenArchival.Blazor\wwwroot\favicon.ico +wwwroot\js\downloadHelper.js +wwwroot\js\imageSizeGetter.js +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\wwwroot\favicon.ico +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\wwwroot\js\downloadHelper.js +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\wwwroot\js\imageSizeGetter.js diff --git a/OpenArchival.Blazor/obj/OpenArchival.Blazor.csproj.nuget.dgspec.json b/OpenArchival.Blazor/obj/OpenArchival.Blazor.csproj.nuget.dgspec.json index 2b9db03..42ddb59 100644 --- a/OpenArchival.Blazor/obj/OpenArchival.Blazor.csproj.nuget.dgspec.json +++ b/OpenArchival.Blazor/obj/OpenArchival.Blazor.csproj.nuget.dgspec.json @@ -1,24 +1,24 @@ { "format": 1, "restore": { - "D:\\Nextcloud\\Documents\\Open-Archival\\OpenArchival.Blazor\\OpenArchival.Blazor.csproj": {} + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\OpenArchival.Blazor.csproj": {} }, "projects": { - "D:\\Nextcloud\\Documents\\Open-Archival\\OpenArchival.Blazor\\OpenArchival.Blazor.csproj": { + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.AdminPages\\OpenArchival.Blazor.AdminPages.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "D:\\Nextcloud\\Documents\\Open-Archival\\OpenArchival.Blazor\\OpenArchival.Blazor.csproj", - "projectName": "OpenArchival.Blazor", - "projectPath": "D:\\Nextcloud\\Documents\\Open-Archival\\OpenArchival.Blazor\\OpenArchival.Blazor.csproj", - "packagesPath": "C:\\Users\\Vincent Allen\\.nuget\\packages\\", - "outputPath": "D:\\Nextcloud\\Documents\\Open-Archival\\OpenArchival.Blazor\\obj\\", + "projectUniqueName": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.AdminPages\\OpenArchival.Blazor.AdminPages.csproj", + "projectName": "OpenArchival.Blazor.AdminPages", + "projectPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.AdminPages\\OpenArchival.Blazor.AdminPages.csproj", + "packagesPath": "C:\\Users\\vtall\\.nuget\\packages\\", + "outputPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.AdminPages\\obj\\", "projectStyle": "PackageReference", "fallbackFolders": [ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" ], "configFilePaths": [ - "D:\\Nextcloud\\Documents\\Open-Archival\\NuGet.Config", - "C:\\Users\\Vincent Allen\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\NuGet.Config", + "C:\\Users\\vtall\\AppData\\Roaming\\NuGet\\NuGet.Config", "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], @@ -33,8 +33,277 @@ "net9.0": { "targetAlias": "net9.0", "projectReferences": { - "D:\\Nextcloud\\Documents\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj": { - "projectPath": "D:\\Nextcloud\\Documents\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj" + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\OpenArchival.Blazor.CustomComponents.csproj": { + "projectPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\OpenArchival.Blazor.CustomComponents.csproj" + }, + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj": { + "projectPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "9.0.300" + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "dependencies": { + "CodeBeam.MudExtensions": { + "target": "Package", + "version": "[6.3.0, )" + }, + "Microsoft.IdentityModel.Abstractions": { + "target": "Package", + "version": "[8.14.0, )" + }, + "Microsoft.IdentityModel.Tokens": { + "target": "Package", + "version": "[8.14.0, )" + }, + "MudBlazor": { + "target": "Package", + "version": "[8.13.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.304/PortableRuntimeIdentifierGraph.json" + } + } + }, + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\OpenArchival.Blazor.CustomComponents.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\OpenArchival.Blazor.CustomComponents.csproj", + "projectName": "OpenArchival.Blazor.CustomComponents", + "projectPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\OpenArchival.Blazor.CustomComponents.csproj", + "packagesPath": "C:\\Users\\vtall\\.nuget\\packages\\", + "outputPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\NuGet.Config", + "C:\\Users\\vtall\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net9.0" + ], + "sources": { + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "projectReferences": { + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj": { + "projectPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "9.0.300" + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "dependencies": { + "CodeBeam.MudExtensions": { + "target": "Package", + "version": "[6.3.0, )" + }, + "MudBlazor": { + "target": "Package", + "version": "[8.13.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.304/PortableRuntimeIdentifierGraph.json" + } + } + }, + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\OpenArchival.Blazor.FileViewer.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\OpenArchival.Blazor.FileViewer.csproj", + "projectName": "OpenArchival.Blazor.FileViewer", + "projectPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\OpenArchival.Blazor.FileViewer.csproj", + "packagesPath": "C:\\Users\\vtall\\.nuget\\packages\\", + "outputPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\NuGet.Config", + "C:\\Users\\vtall\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net9.0" + ], + "sources": { + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "projectReferences": { + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj": { + "projectPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "9.0.300" + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "dependencies": { + "CodeBeam.MudExtensions": { + "target": "Package", + "version": "[6.3.0, )" + }, + "MudBlazor": { + "target": "Package", + "version": "[8.13.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.304/PortableRuntimeIdentifierGraph.json" + } + } + }, + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\OpenArchival.Blazor.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\OpenArchival.Blazor.csproj", + "projectName": "OpenArchival.Blazor", + "projectPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\OpenArchival.Blazor.csproj", + "packagesPath": "C:\\Users\\vtall\\.nuget\\packages\\", + "outputPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\NuGet.Config", + "C:\\Users\\vtall\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net9.0" + ], + "sources": { + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "projectReferences": { + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.AdminPages\\OpenArchival.Blazor.AdminPages.csproj": { + "projectPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.AdminPages\\OpenArchival.Blazor.AdminPages.csproj" + }, + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\OpenArchival.Blazor.CustomComponents.csproj": { + "projectPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\OpenArchival.Blazor.CustomComponents.csproj" + }, + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\OpenArchival.Blazor.FileViewer.csproj": { + "projectPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\OpenArchival.Blazor.FileViewer.csproj" + }, + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj": { + "projectPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj" } } } @@ -69,7 +338,7 @@ }, "Microsoft.EntityFrameworkCore": { "target": "Package", - "version": "[9.0.8, )" + "version": "[9.0.9, )" }, "Microsoft.EntityFrameworkCore.SqlServer": { "target": "Package", @@ -98,6 +367,10 @@ "Npgsql.EntityFrameworkCore.PostgreSQL": { "target": "Package", "version": "[9.0.4, )" + }, + "System.Collections": { + "target": "Package", + "version": "[4.3.0, )" } }, "imports": [ @@ -123,21 +396,21 @@ } } }, - "D:\\Nextcloud\\Documents\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj": { + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "D:\\Nextcloud\\Documents\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj", + "projectUniqueName": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj", "projectName": "OpenArchival.DataAccess", - "projectPath": "D:\\Nextcloud\\Documents\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj", - "packagesPath": "C:\\Users\\Vincent Allen\\.nuget\\packages\\", - "outputPath": "D:\\Nextcloud\\Documents\\Open-Archival\\OpenArchival.DataAccess\\obj\\", + "projectPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj", + "packagesPath": "C:\\Users\\vtall\\.nuget\\packages\\", + "outputPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\obj\\", "projectStyle": "PackageReference", "fallbackFolders": [ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" ], "configFilePaths": [ - "D:\\Nextcloud\\Documents\\Open-Archival\\NuGet.Config", - "C:\\Users\\Vincent Allen\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\NuGet.Config", + "C:\\Users\\vtall\\AppData\\Roaming\\NuGet\\NuGet.Config", "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], diff --git a/OpenArchival.Blazor/obj/OpenArchival.Blazor.csproj.nuget.g.props b/OpenArchival.Blazor/obj/OpenArchival.Blazor.csproj.nuget.g.props index ab32d3d..f6bf5eb 100644 --- a/OpenArchival.Blazor/obj/OpenArchival.Blazor.csproj.nuget.g.props +++ b/OpenArchival.Blazor/obj/OpenArchival.Blazor.csproj.nuget.g.props @@ -5,28 +5,28 @@ NuGet $(MSBuildThisFileDirectory)project.assets.json $(UserProfile)\.nuget\packages\ - C:\Users\Vincent Allen\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + C:\Users\vtall\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages PackageReference 6.14.1 - + - + - + - - + + - C:\Users\Vincent Allen\.nuget\packages\microsoft.codeanalysis.analyzers\3.3.4 - C:\Users\Vincent Allen\.nuget\packages\entityframework\6.5.1 - C:\Users\Vincent Allen\.nuget\packages\microsoft.visualstudio.azure.containers.tools.targets\1.22.1 - C:\Users\Vincent Allen\.nuget\packages\microsoft.entityframeworkcore.tools\9.0.8 - C:\Users\Vincent Allen\.nuget\packages\buildbundlerminifier\3.2.449 + C:\Users\vtall\.nuget\packages\microsoft.codeanalysis.analyzers\3.3.4 + C:\Users\vtall\.nuget\packages\entityframework\6.5.1 + C:\Users\vtall\.nuget\packages\buildbundlerminifier\3.2.449 + C:\Users\vtall\.nuget\packages\microsoft.visualstudio.azure.containers.tools.targets\1.22.1 + C:\Users\vtall\.nuget\packages\microsoft.entityframeworkcore.tools\9.0.9 \ No newline at end of file diff --git a/OpenArchival.Blazor/obj/OpenArchival.Blazor.csproj.nuget.g.targets b/OpenArchival.Blazor/obj/OpenArchival.Blazor.csproj.nuget.g.targets index 9758a3a..44874e7 100644 --- a/OpenArchival.Blazor/obj/OpenArchival.Blazor.csproj.nuget.g.targets +++ b/OpenArchival.Blazor/obj/OpenArchival.Blazor.csproj.nuget.g.targets @@ -1,14 +1,14 @@  - - - + + + - + \ No newline at end of file diff --git a/OpenArchival.Blazor/obj/Release/net9.0/OpenArchival.Blazor.AssemblyInfo.cs b/OpenArchival.Blazor/obj/Release/net9.0/OpenArchival.Blazor.AssemblyInfo.cs index 142fbba..2afd4be 100644 --- a/OpenArchival.Blazor/obj/Release/net9.0/OpenArchival.Blazor.AssemblyInfo.cs +++ b/OpenArchival.Blazor/obj/Release/net9.0/OpenArchival.Blazor.AssemblyInfo.cs @@ -15,7 +15,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("OpenArchival.Blazor")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+77318e87d12fb2935cd521cd7ef445296c08f8af")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+781793a27f2e164808340b1adb5ce70e1800b187")] [assembly: System.Reflection.AssemblyProductAttribute("OpenArchival.Blazor")] [assembly: System.Reflection.AssemblyTitleAttribute("OpenArchival.Blazor")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/OpenArchival.Blazor/obj/Release/net9.0/OpenArchival.Blazor.AssemblyInfoInputs.cache b/OpenArchival.Blazor/obj/Release/net9.0/OpenArchival.Blazor.AssemblyInfoInputs.cache index 06c3cf9..6864af1 100644 --- a/OpenArchival.Blazor/obj/Release/net9.0/OpenArchival.Blazor.AssemblyInfoInputs.cache +++ b/OpenArchival.Blazor/obj/Release/net9.0/OpenArchival.Blazor.AssemblyInfoInputs.cache @@ -1 +1 @@ -2c86c14ff959c1c7ff5ffc9a98f1c364d70f5be6b9bf606d40f132989de7b6b1 +477b3a3df4457ae3076cb802da7fd386e3d0c95864c1c9734e4f2b377e7e1bec diff --git a/OpenArchival.Blazor/obj/Release/net9.0/OpenArchival.Blazor.GeneratedMSBuildEditorConfig.editorconfig b/OpenArchival.Blazor/obj/Release/net9.0/OpenArchival.Blazor.GeneratedMSBuildEditorConfig.editorconfig index 8fd7ffe..9ef36d1 100644 --- a/OpenArchival.Blazor/obj/Release/net9.0/OpenArchival.Blazor.GeneratedMSBuildEditorConfig.editorconfig +++ b/OpenArchival.Blazor/obj/Release/net9.0/OpenArchival.Blazor.GeneratedMSBuildEditorConfig.editorconfig @@ -20,281 +20,281 @@ build_property.MudAllowedAttributePattern = build_property.MudAllowedAttributeList = build_property.RootNamespace = OpenArchival.Blazor build_property.RootNamespace = OpenArchival.Blazor -build_property.ProjectDir = D:\Nextcloud\Documents\Open-Archival\OpenArchival.Blazor\ +build_property.ProjectDir = C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor\ build_property.EnableComHosting = build_property.EnableGeneratedComInterfaceComImportInterop = build_property.RazorLangVersion = 9.0 build_property.SupportLocalizedComponentNames = build_property.GenerateRazorMetadataSourceChecksumAttributes = -build_property.MSBuildProjectDirectory = D:\Nextcloud\Documents\Open-Archival\OpenArchival.Blazor +build_property.MSBuildProjectDirectory = C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor build_property._RazorSourceGeneratorDebug = build_property.EffectiveAnalysisLevelStyle = 9.0 build_property.EnableCodeStyleSeverity = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/AccessDenied.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/AccessDenied.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFBhZ2VzXEFjY2Vzc0RlbmllZC5yYXpvcg== build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/ConfirmEmail.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/ConfirmEmail.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFBhZ2VzXENvbmZpcm1FbWFpbC5yYXpvcg== build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/ConfirmEmailChange.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/ConfirmEmailChange.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFBhZ2VzXENvbmZpcm1FbWFpbENoYW5nZS5yYXpvcg== build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/ExternalLogin.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/ExternalLogin.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFBhZ2VzXEV4dGVybmFsTG9naW4ucmF6b3I= build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/ForgotPassword.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/ForgotPassword.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFBhZ2VzXEZvcmdvdFBhc3N3b3JkLnJhem9y build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/ForgotPasswordConfirmation.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/ForgotPasswordConfirmation.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFBhZ2VzXEZvcmdvdFBhc3N3b3JkQ29uZmlybWF0aW9uLnJhem9y build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/InvalidPasswordReset.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/InvalidPasswordReset.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFBhZ2VzXEludmFsaWRQYXNzd29yZFJlc2V0LnJhem9y build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/InvalidUser.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/InvalidUser.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFBhZ2VzXEludmFsaWRVc2VyLnJhem9y build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/Lockout.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/Lockout.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFBhZ2VzXExvY2tvdXQucmF6b3I= build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/Login.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/Login.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFBhZ2VzXExvZ2luLnJhem9y build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/LoginWith2fa.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/LoginWith2fa.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFBhZ2VzXExvZ2luV2l0aDJmYS5yYXpvcg== build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/LoginWithRecoveryCode.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/LoginWithRecoveryCode.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFBhZ2VzXExvZ2luV2l0aFJlY292ZXJ5Q29kZS5yYXpvcg== build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/Manage/ChangePassword.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/Manage/ChangePassword.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFBhZ2VzXE1hbmFnZVxDaGFuZ2VQYXNzd29yZC5yYXpvcg== build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/Manage/Component.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/Manage/Component.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFBhZ2VzXE1hbmFnZVxDb21wb25lbnQucmF6b3I= build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/Manage/Component1.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/Manage/Component1.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFBhZ2VzXE1hbmFnZVxDb21wb25lbnQxLnJhem9y build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/Manage/DeletePersonalData.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/Manage/DeletePersonalData.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFBhZ2VzXE1hbmFnZVxEZWxldGVQZXJzb25hbERhdGEucmF6b3I= build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/Manage/Disable2fa.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/Manage/Disable2fa.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFBhZ2VzXE1hbmFnZVxEaXNhYmxlMmZhLnJhem9y build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/Manage/Email.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/Manage/Email.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFBhZ2VzXE1hbmFnZVxFbWFpbC5yYXpvcg== build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/Manage/EnableAuthenticator.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/Manage/EnableAuthenticator.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFBhZ2VzXE1hbmFnZVxFbmFibGVBdXRoZW50aWNhdG9yLnJhem9y build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/Manage/ExternalLogins.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/Manage/ExternalLogins.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFBhZ2VzXE1hbmFnZVxFeHRlcm5hbExvZ2lucy5yYXpvcg== build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/Manage/GenerateRecoveryCodes.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/Manage/GenerateRecoveryCodes.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFBhZ2VzXE1hbmFnZVxHZW5lcmF0ZVJlY292ZXJ5Q29kZXMucmF6b3I= build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/Manage/Index.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/Manage/Index.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFBhZ2VzXE1hbmFnZVxJbmRleC5yYXpvcg== build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/Manage/PersonalData.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/Manage/PersonalData.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFBhZ2VzXE1hbmFnZVxQZXJzb25hbERhdGEucmF6b3I= build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/Manage/ResetAuthenticator.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/Manage/ResetAuthenticator.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFBhZ2VzXE1hbmFnZVxSZXNldEF1dGhlbnRpY2F0b3IucmF6b3I= build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/Manage/SetPassword.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/Manage/SetPassword.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFBhZ2VzXE1hbmFnZVxTZXRQYXNzd29yZC5yYXpvcg== build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/Manage/TwoFactorAuthentication.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/Manage/TwoFactorAuthentication.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFBhZ2VzXE1hbmFnZVxUd29GYWN0b3JBdXRoZW50aWNhdGlvbi5yYXpvcg== build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/Manage/_Imports.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/Manage/_Imports.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFBhZ2VzXE1hbmFnZVxfSW1wb3J0cy5yYXpvcg== build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/Register.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/Register.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFBhZ2VzXFJlZ2lzdGVyLnJhem9y build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/RegisterConfirmation.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/RegisterConfirmation.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFBhZ2VzXFJlZ2lzdGVyQ29uZmlybWF0aW9uLnJhem9y build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/ResendEmailConfirmation.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/ResendEmailConfirmation.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFBhZ2VzXFJlc2VuZEVtYWlsQ29uZmlybWF0aW9uLnJhem9y build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/ResetPassword.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/ResetPassword.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFBhZ2VzXFJlc2V0UGFzc3dvcmQucmF6b3I= build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/ResetPasswordConfirmation.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/ResetPasswordConfirmation.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFBhZ2VzXFJlc2V0UGFzc3dvcmRDb25maXJtYXRpb24ucmF6b3I= build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/_Imports.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Pages/_Imports.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFBhZ2VzXF9JbXBvcnRzLnJhem9y build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Shared/ExternalLoginPicker.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Shared/ExternalLoginPicker.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFNoYXJlZFxFeHRlcm5hbExvZ2luUGlja2VyLnJhem9y build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Shared/ManageLayout.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Shared/ManageLayout.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFNoYXJlZFxNYW5hZ2VMYXlvdXQucmF6b3I= build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Shared/ManageNavMenu.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Shared/ManageNavMenu.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFNoYXJlZFxNYW5hZ2VOYXZNZW51LnJhem9y build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Shared/RedirectToLogin.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Shared/RedirectToLogin.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFNoYXJlZFxSZWRpcmVjdFRvTG9naW4ucmF6b3I= build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Shared/ShowRecoveryCodes.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Shared/ShowRecoveryCodes.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFNoYXJlZFxTaG93UmVjb3ZlcnlDb2Rlcy5yYXpvcg== build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Account/Shared/StatusMessage.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Account/Shared/StatusMessage.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBY2NvdW50XFNoYXJlZFxTdGF0dXNNZXNzYWdlLnJhem9y build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/App.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/App.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBcHAucmF6b3I= build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/CustomComponents/ChipContainer.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/CustomComponents/ChipContainer.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xDdXN0b21Db21wb25lbnRzXENoaXBDb250YWluZXIucmF6b3I= build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/CustomComponents/UploadDropBox.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/CustomComponents/UploadDropBox.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xDdXN0b21Db21wb25lbnRzXFVwbG9hZERyb3BCb3gucmF6b3I= build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Layout/MainLayout.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Layout/MainLayout.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xMYXlvdXRcTWFpbkxheW91dC5yYXpvcg== build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Layout/NavMenu.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Layout/NavMenu.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xMYXlvdXRcTmF2TWVudS5yYXpvcg== build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Pages/Administration/ArchiveConfiguration.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Pages/Administration/ArchiveConfiguration.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xBZG1pbmlzdHJhdGlvblxBcmNoaXZlQ29uZmlndXJhdGlvbi5yYXpvcg== build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Pages/Administration/ArchiveItems/AddArchiveGroupingComponent.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Pages/Administration/ArchiveItems/AddArchiveGroupingComponent.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xBZG1pbmlzdHJhdGlvblxBcmNoaXZlSXRlbXNcQWRkQXJjaGl2ZUdyb3VwaW5nQ29tcG9uZW50LnJhem9y build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Pages/Administration/ArchiveItems/AddGroupingDialog.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Pages/Administration/ArchiveItems/AddGroupingDialog.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xBZG1pbmlzdHJhdGlvblxBcmNoaXZlSXRlbXNcQWRkR3JvdXBpbmdEaWFsb2cucmF6b3I= build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Pages/Administration/ArchiveItems/ArchiveEntryCreatorCard.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Pages/Administration/ArchiveItems/ArchiveEntryCreatorCard.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xBZG1pbmlzdHJhdGlvblxBcmNoaXZlSXRlbXNcQXJjaGl2ZUVudHJ5Q3JlYXRvckNhcmQucmF6b3I= build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Pages/Administration/ArchiveItems/ArchiveGroupingsTable.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Pages/Administration/ArchiveItems/ArchiveGroupingsTable.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xBZG1pbmlzdHJhdGlvblxBcmNoaXZlSXRlbXNcQXJjaGl2ZUdyb3VwaW5nc1RhYmxlLnJhem9y build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Pages/Administration/ArchiveItems/Component.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Pages/Administration/ArchiveItems/Component.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xBZG1pbmlzdHJhdGlvblxBcmNoaXZlSXRlbXNcQ29tcG9uZW50LnJhem9y build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Pages/Administration/ArchiveItems/IdentifierTextBox.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Pages/Administration/ArchiveItems/IdentifierTextBox.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xBZG1pbmlzdHJhdGlvblxBcmNoaXZlSXRlbXNcSWRlbnRpZmllclRleHRCb3gucmF6b3I= build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Pages/Administration/Categories/CategoriesListComponent.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Pages/Administration/Categories/CategoriesListComponent.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xBZG1pbmlzdHJhdGlvblxDYXRlZ29yaWVzXENhdGVnb3JpZXNMaXN0Q29tcG9uZW50LnJhem9y build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Pages/Administration/Categories/CategoryCreatorDialog.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Pages/Administration/Categories/CategoryCreatorDialog.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xBZG1pbmlzdHJhdGlvblxDYXRlZ29yaWVzXENhdGVnb3J5Q3JlYXRvckRpYWxvZy5yYXpvcg== build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Pages/Administration/Categories/CategoryFieldCardComponent.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Pages/Administration/Categories/CategoryFieldCardComponent.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xBZG1pbmlzdHJhdGlvblxDYXRlZ29yaWVzXENhdGVnb3J5RmllbGRDYXJkQ29tcG9uZW50LnJhem9y build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Pages/Administration/Categories/ViewAddCategoriesComponent.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Pages/Administration/Categories/ViewAddCategoriesComponent.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xBZG1pbmlzdHJhdGlvblxDYXRlZ29yaWVzXFZpZXdBZGRDYXRlZ29yaWVzQ29tcG9uZW50LnJhem9y build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Pages/ArchiveDisplay/ArchiveEntryDisplay.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Pages/ArchiveDisplay/ArchiveEntryDisplay.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xBcmNoaXZlRGlzcGxheVxBcmNoaXZlRW50cnlEaXNwbGF5LnJhem9y build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Pages/ArchiveDisplay/ArchiveGroupingDisplay.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Pages/ArchiveDisplay/ArchiveGroupingDisplay.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xBcmNoaXZlRGlzcGxheVxBcmNoaXZlR3JvdXBpbmdEaXNwbGF5LnJhem9y build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Pages/ArchiveDisplay/ArtifactGroupingNotFound.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Pages/ArchiveDisplay/ArtifactGroupingNotFound.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xBcmNoaXZlRGlzcGxheVxBcnRpZmFjdEdyb3VwaW5nTm90Rm91bmQucmF6b3I= build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Pages/ArchiveDisplay/FileDisplayBase.razor] -build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xBcmNoaXZlRGlzcGxheVxGaWxlRGlzcGxheUJhc2UucmF6b3I= +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Pages/ArchiveDisplay/FileDisplayComponent.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xBcmNoaXZlRGlzcGxheVxGaWxlRGlzcGxheUNvbXBvbmVudC5yYXpvcg== build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Pages/ArchiveDisplay/FileDisplayImage.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Pages/ArchiveDisplay/FileDisplayImage.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xBcmNoaXZlRGlzcGxheVxGaWxlRGlzcGxheUltYWdlLnJhem9y build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Pages/Auth.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Pages/Auth.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xBdXRoLnJhem9y build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Pages/Counter.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Pages/Counter.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xDb3VudGVyLnJhem9y build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Pages/Error.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Pages/Error.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xFcnJvci5yYXpvcg== build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Pages/Home.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Pages/Home.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xIb21lLnJhem9y build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Pages/Weather.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Pages/Weather.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xXZWF0aGVyLnJhem9y build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/Routes.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/Routes.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xSb3V0ZXMucmF6b3I= build_metadata.AdditionalFiles.CssScope = -[D:/Nextcloud/Documents/Open-Archival/OpenArchival.Blazor/Components/_Imports.razor] +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor/Components/_Imports.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xfSW1wb3J0cy5yYXpvcg== build_metadata.AdditionalFiles.CssScope = diff --git a/OpenArchival.Blazor/obj/Release/net9.0/OpenArchival.Blazor.assets.cache b/OpenArchival.Blazor/obj/Release/net9.0/OpenArchival.Blazor.assets.cache index a071f5b..34757fc 100644 Binary files a/OpenArchival.Blazor/obj/Release/net9.0/OpenArchival.Blazor.assets.cache and b/OpenArchival.Blazor/obj/Release/net9.0/OpenArchival.Blazor.assets.cache differ diff --git a/OpenArchival.Blazor/obj/Release/net9.0/OpenArchival.Blazor.csproj.AssemblyReference.cache b/OpenArchival.Blazor/obj/Release/net9.0/OpenArchival.Blazor.csproj.AssemblyReference.cache index 62e3468..4d381ee 100644 Binary files a/OpenArchival.Blazor/obj/Release/net9.0/OpenArchival.Blazor.csproj.AssemblyReference.cache and b/OpenArchival.Blazor/obj/Release/net9.0/OpenArchival.Blazor.csproj.AssemblyReference.cache differ diff --git a/OpenArchival.Blazor/obj/project.assets.json b/OpenArchival.Blazor/obj/project.assets.json index 2b9ba1e..885c9e2 100644 --- a/OpenArchival.Blazor/obj/project.assets.json +++ b/OpenArchival.Blazor/obj/project.assets.json @@ -250,10 +250,10 @@ } } }, - "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore/9.0.8": { + "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore/9.0.9": { "type": "package", "dependencies": { - "Microsoft.EntityFrameworkCore.Relational": "9.0.8" + "Microsoft.EntityFrameworkCore.Relational": "9.0.9" }, "compile": { "lib/net9.0/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.dll": { @@ -717,13 +717,13 @@ } } }, - "Microsoft.EntityFrameworkCore/9.0.8": { + "Microsoft.EntityFrameworkCore/9.0.9": { "type": "package", "dependencies": { - "Microsoft.EntityFrameworkCore.Abstractions": "9.0.8", - "Microsoft.EntityFrameworkCore.Analyzers": "9.0.8", - "Microsoft.Extensions.Caching.Memory": "9.0.8", - "Microsoft.Extensions.Logging": "9.0.8" + "Microsoft.EntityFrameworkCore.Abstractions": "9.0.9", + "Microsoft.EntityFrameworkCore.Analyzers": "9.0.9", + "Microsoft.Extensions.Caching.Memory": "9.0.9", + "Microsoft.Extensions.Logging": "9.0.9" }, "compile": { "lib/net8.0/Microsoft.EntityFrameworkCore.dll": { @@ -739,7 +739,7 @@ "buildTransitive/net8.0/Microsoft.EntityFrameworkCore.props": {} } }, - "Microsoft.EntityFrameworkCore.Abstractions/9.0.8": { + "Microsoft.EntityFrameworkCore.Abstractions/9.0.9": { "type": "package", "compile": { "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { @@ -752,10 +752,10 @@ } } }, - "Microsoft.EntityFrameworkCore.Analyzers/9.0.8": { + "Microsoft.EntityFrameworkCore.Analyzers/9.0.9": { "type": "package" }, - "Microsoft.EntityFrameworkCore.Design/9.0.8": { + "Microsoft.EntityFrameworkCore.Design/9.0.9": { "type": "package", "dependencies": { "Humanizer.Core": "2.14.1", @@ -764,13 +764,13 @@ "Microsoft.CodeAnalysis.CSharp": "4.8.0", "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.8.0", "Microsoft.CodeAnalysis.Workspaces.MSBuild": "4.8.0", - "Microsoft.EntityFrameworkCore.Relational": "9.0.8", - "Microsoft.Extensions.Caching.Memory": "9.0.8", - "Microsoft.Extensions.Configuration.Abstractions": "9.0.8", - "Microsoft.Extensions.DependencyModel": "9.0.8", - "Microsoft.Extensions.Logging": "9.0.8", + "Microsoft.EntityFrameworkCore.Relational": "9.0.9", + "Microsoft.Extensions.Caching.Memory": "9.0.9", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.9", + "Microsoft.Extensions.DependencyModel": "9.0.9", + "Microsoft.Extensions.Logging": "9.0.9", "Mono.TextTemplating": "3.0.0", - "System.Text.Json": "9.0.8" + "System.Text.Json": "9.0.9" }, "compile": { "lib/net8.0/Microsoft.EntityFrameworkCore.Design.dll": { @@ -786,13 +786,13 @@ "build/net8.0/Microsoft.EntityFrameworkCore.Design.props": {} } }, - "Microsoft.EntityFrameworkCore.Relational/9.0.8": { + "Microsoft.EntityFrameworkCore.Relational/9.0.9": { "type": "package", "dependencies": { - "Microsoft.EntityFrameworkCore": "9.0.8", - "Microsoft.Extensions.Caching.Memory": "9.0.8", - "Microsoft.Extensions.Configuration.Abstractions": "9.0.8", - "Microsoft.Extensions.Logging": "9.0.8" + "Microsoft.EntityFrameworkCore": "9.0.9", + "Microsoft.Extensions.Caching.Memory": "9.0.9", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.9", + "Microsoft.Extensions.Logging": "9.0.9" }, "compile": { "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": { @@ -805,16 +805,16 @@ } } }, - "Microsoft.EntityFrameworkCore.SqlServer/9.0.8": { + "Microsoft.EntityFrameworkCore.SqlServer/9.0.9": { "type": "package", "dependencies": { "Microsoft.Data.SqlClient": "5.1.6", - "Microsoft.EntityFrameworkCore.Relational": "9.0.8", - "Microsoft.Extensions.Caching.Memory": "9.0.8", - "Microsoft.Extensions.Configuration.Abstractions": "9.0.8", - "Microsoft.Extensions.Logging": "9.0.8", - "System.Formats.Asn1": "9.0.8", - "System.Text.Json": "9.0.8" + "Microsoft.EntityFrameworkCore.Relational": "9.0.9", + "Microsoft.Extensions.Caching.Memory": "9.0.9", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.9", + "Microsoft.Extensions.Logging": "9.0.9", + "System.Formats.Asn1": "9.0.9", + "System.Text.Json": "9.0.9" }, "compile": { "lib/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll": { @@ -827,16 +827,16 @@ } } }, - "Microsoft.EntityFrameworkCore.Tools/9.0.8": { + "Microsoft.EntityFrameworkCore.Tools/9.0.9": { "type": "package", "dependencies": { - "Microsoft.EntityFrameworkCore.Design": "9.0.8" + "Microsoft.EntityFrameworkCore.Design": "9.0.9" } }, - "Microsoft.Extensions.Caching.Abstractions/9.0.8": { + "Microsoft.Extensions.Caching.Abstractions/9.0.9": { "type": "package", "dependencies": { - "Microsoft.Extensions.Primitives": "9.0.8" + "Microsoft.Extensions.Primitives": "9.0.9" }, "compile": { "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.dll": { @@ -852,14 +852,14 @@ "buildTransitive/net8.0/_._": {} } }, - "Microsoft.Extensions.Caching.Memory/9.0.8": { + "Microsoft.Extensions.Caching.Memory/9.0.9": { "type": "package", "dependencies": { - "Microsoft.Extensions.Caching.Abstractions": "9.0.8", - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8", - "Microsoft.Extensions.Logging.Abstractions": "9.0.8", - "Microsoft.Extensions.Options": "9.0.8", - "Microsoft.Extensions.Primitives": "9.0.8" + "Microsoft.Extensions.Caching.Abstractions": "9.0.9", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.9", + "Microsoft.Extensions.Logging.Abstractions": "9.0.9", + "Microsoft.Extensions.Options": "9.0.9", + "Microsoft.Extensions.Primitives": "9.0.9" }, "compile": { "lib/net9.0/Microsoft.Extensions.Caching.Memory.dll": { @@ -875,10 +875,10 @@ "buildTransitive/net8.0/_._": {} } }, - "Microsoft.Extensions.Configuration.Abstractions/9.0.8": { + "Microsoft.Extensions.Configuration.Abstractions/9.0.9": { "type": "package", "dependencies": { - "Microsoft.Extensions.Primitives": "9.0.8" + "Microsoft.Extensions.Primitives": "9.0.9" }, "compile": { "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": { @@ -894,10 +894,10 @@ "buildTransitive/net8.0/_._": {} } }, - "Microsoft.Extensions.DependencyInjection/9.0.8": { + "Microsoft.Extensions.DependencyInjection/9.0.9": { "type": "package", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8" + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.9" }, "compile": { "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": { @@ -913,7 +913,7 @@ "buildTransitive/net8.0/_._": {} } }, - "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.8": { + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.9": { "type": "package", "compile": { "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { @@ -929,7 +929,7 @@ "buildTransitive/net8.0/_._": {} } }, - "Microsoft.Extensions.DependencyModel/9.0.8": { + "Microsoft.Extensions.DependencyModel/9.0.9": { "type": "package", "compile": { "lib/net9.0/Microsoft.Extensions.DependencyModel.dll": { @@ -1013,12 +1013,12 @@ } } }, - "Microsoft.Extensions.Logging/9.0.8": { + "Microsoft.Extensions.Logging/9.0.9": { "type": "package", "dependencies": { - "Microsoft.Extensions.DependencyInjection": "9.0.8", - "Microsoft.Extensions.Logging.Abstractions": "9.0.8", - "Microsoft.Extensions.Options": "9.0.8" + "Microsoft.Extensions.DependencyInjection": "9.0.9", + "Microsoft.Extensions.Logging.Abstractions": "9.0.9", + "Microsoft.Extensions.Options": "9.0.9" }, "compile": { "lib/net9.0/Microsoft.Extensions.Logging.dll": { @@ -1034,10 +1034,10 @@ "buildTransitive/net8.0/_._": {} } }, - "Microsoft.Extensions.Logging.Abstractions/9.0.8": { + "Microsoft.Extensions.Logging.Abstractions/9.0.9": { "type": "package", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8" + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.9" }, "compile": { "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": { @@ -1053,11 +1053,11 @@ "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets": {} } }, - "Microsoft.Extensions.Options/9.0.8": { + "Microsoft.Extensions.Options/9.0.9": { "type": "package", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8", - "Microsoft.Extensions.Primitives": "9.0.8" + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.9", + "Microsoft.Extensions.Primitives": "9.0.9" }, "compile": { "lib/net9.0/Microsoft.Extensions.Options.dll": { @@ -1073,7 +1073,7 @@ "buildTransitive/net8.0/Microsoft.Extensions.Options.targets": {} } }, - "Microsoft.Extensions.Primitives/9.0.8": { + "Microsoft.Extensions.Primitives/9.0.9": { "type": "package", "compile": { "lib/net9.0/Microsoft.Extensions.Primitives.dll": { @@ -1123,15 +1123,15 @@ } } }, - "Microsoft.IdentityModel.Abstractions/6.35.0": { + "Microsoft.IdentityModel.Abstractions/8.14.0": { "type": "package", "compile": { - "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll": { + "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll": { "related": ".xml" } }, "runtime": { - "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll": { + "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll": { "related": ".xml" } } @@ -1155,18 +1155,18 @@ } } }, - "Microsoft.IdentityModel.Logging/6.35.0": { + "Microsoft.IdentityModel.Logging/8.14.0": { "type": "package", "dependencies": { - "Microsoft.IdentityModel.Abstractions": "6.35.0" + "Microsoft.IdentityModel.Abstractions": "8.14.0" }, "compile": { - "lib/net6.0/Microsoft.IdentityModel.Logging.dll": { + "lib/net9.0/Microsoft.IdentityModel.Logging.dll": { "related": ".xml" } }, "runtime": { - "lib/net6.0/Microsoft.IdentityModel.Logging.dll": { + "lib/net9.0/Microsoft.IdentityModel.Logging.dll": { "related": ".xml" } } @@ -1205,20 +1205,19 @@ } } }, - "Microsoft.IdentityModel.Tokens/6.35.0": { + "Microsoft.IdentityModel.Tokens/8.14.0": { "type": "package", "dependencies": { - "Microsoft.CSharp": "4.5.0", - "Microsoft.IdentityModel.Logging": "6.35.0", - "System.Security.Cryptography.Cng": "4.5.0" + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.IdentityModel.Logging": "8.14.0" }, "compile": { - "lib/net6.0/Microsoft.IdentityModel.Tokens.dll": { + "lib/net9.0/Microsoft.IdentityModel.Tokens.dll": { "related": ".xml" } }, "runtime": { - "lib/net6.0/Microsoft.IdentityModel.Tokens.dll": { + "lib/net9.0/Microsoft.IdentityModel.Tokens.dll": { "related": ".xml" } } @@ -1338,7 +1337,7 @@ "buildTransitive/Mono.TextTemplating.targets": {} } }, - "MudBlazor/8.12.0": { + "MudBlazor/8.13.0": { "type": "package", "dependencies": { "Microsoft.AspNetCore.Components": "9.0.1", @@ -1482,6 +1481,19 @@ "buildTransitive/netcoreapp3.1/_._": {} } }, + "System.Collections/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.dll": { + "related": ".xml" + } + } + }, "System.Collections.Immutable/7.0.0": { "type": "package", "compile": { @@ -1717,7 +1729,7 @@ } } }, - "System.Formats.Asn1/9.0.8": { + "System.Formats.Asn1/9.0.9": { "type": "package", "compile": { "lib/net9.0/_._": { @@ -2045,7 +2057,7 @@ } } }, - "System.Text.Json/9.0.8": { + "System.Text.Json/9.0.9": { "type": "package", "compile": { "lib/net9.0/System.Text.Json.dll": { @@ -2108,6 +2120,63 @@ } } }, + "OpenArchival.Blazor.AdminPages/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v9.0", + "dependencies": { + "CodeBeam.MudExtensions": "6.3.0", + "Microsoft.IdentityModel.Abstractions": "8.14.0", + "Microsoft.IdentityModel.Tokens": "8.14.0", + "MudBlazor": "8.13.0", + "OpenArchival.Blazor.CustomComponents": "1.0.0", + "OpenArchival.DataAccess": "1.0.0" + }, + "compile": { + "bin/placeholder/OpenArchival.Blazor.AdminPages.dll": {} + }, + "runtime": { + "bin/placeholder/OpenArchival.Blazor.AdminPages.dll": {} + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "OpenArchival.Blazor.CustomComponents/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v9.0", + "dependencies": { + "CodeBeam.MudExtensions": "6.3.0", + "MudBlazor": "8.13.0", + "OpenArchival.DataAccess": "1.0.0" + }, + "compile": { + "bin/placeholder/OpenArchival.Blazor.CustomComponents.dll": {} + }, + "runtime": { + "bin/placeholder/OpenArchival.Blazor.CustomComponents.dll": {} + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "OpenArchival.Blazor.FileViewer/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v9.0", + "dependencies": { + "CodeBeam.MudExtensions": "6.3.0", + "MudBlazor": "8.13.0", + "OpenArchival.DataAccess": "1.0.0" + }, + "compile": { + "bin/placeholder/OpenArchival.Blazor.FileViewer.dll": {} + }, + "runtime": { + "bin/placeholder/OpenArchival.Blazor.FileViewer.dll": {} + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, "OpenArchival.DataAccess/1.0.0": { "type": "project", "framework": ".NETCoreApp,Version=v9.0", @@ -2460,10 +2529,10 @@ "microsoft.aspnetcore.cryptography.keyderivation.nuspec" ] }, - "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore/9.0.8": { - "sha512": "/fr42V7LN7jmlIc7akFQQPPXcEy92+iPr2O7Eum0X3EZv/gcOHKNeaB1MnhViEQs0ylAMVDRTPi3OyoVKRxlDg==", + "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore/9.0.9": { + "sha512": "ClnQ7NYH6glI4B8b91qiu0vN+5cuMrltpJJoJQmD9LPNMMTinkqmzEyFBce8r7Y68dEWiq14CBGYdr91++z+NQ==", "type": "package", - "path": "microsoft.aspnetcore.diagnostics.entityframeworkcore/9.0.8", + "path": "microsoft.aspnetcore.diagnostics.entityframeworkcore/9.0.9", "files": [ ".nupkg.metadata", ".signature.p7s", @@ -2471,7 +2540,7 @@ "THIRD-PARTY-NOTICES.TXT", "lib/net9.0/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.dll", "lib/net9.0/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.xml", - "microsoft.aspnetcore.diagnostics.entityframeworkcore.9.0.8.nupkg.sha512", + "microsoft.aspnetcore.diagnostics.entityframeworkcore.9.0.9.nupkg.sha512", "microsoft.aspnetcore.diagnostics.entityframeworkcore.nuspec" ] }, @@ -3637,10 +3706,10 @@ "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll" ] }, - "Microsoft.EntityFrameworkCore/9.0.8": { - "sha512": "bNGdPhN762+BIIO5MFYLjafRqkSS1MqLOc/erd55InvLnFxt9H3N5JNsuag1ZHyBor1VtD42U0CHpgqkWeAYgQ==", + "Microsoft.EntityFrameworkCore/9.0.9": { + "sha512": "zkt5yQgnpWKX3rOxn+ZcV23Aj0296XCTqg4lx1hKY+wMXBgkn377UhBrY/A4H6kLpNT7wqZN98xCV0YHXu9VRA==", "type": "package", - "path": "microsoft.entityframeworkcore/9.0.8", + "path": "microsoft.entityframeworkcore/9.0.9", "files": [ ".nupkg.metadata", ".signature.p7s", @@ -3649,14 +3718,14 @@ "buildTransitive/net8.0/Microsoft.EntityFrameworkCore.props", "lib/net8.0/Microsoft.EntityFrameworkCore.dll", "lib/net8.0/Microsoft.EntityFrameworkCore.xml", - "microsoft.entityframeworkcore.9.0.8.nupkg.sha512", + "microsoft.entityframeworkcore.9.0.9.nupkg.sha512", "microsoft.entityframeworkcore.nuspec" ] }, - "Microsoft.EntityFrameworkCore.Abstractions/9.0.8": { - "sha512": "B2yfAIQRRAQ4zvvWqh+HudD+juV3YoLlpXnrog3tU0PM9AFpuq6xo0+mEglN1P43WgdcUiF+65CWBcZe35s15Q==", + "Microsoft.EntityFrameworkCore.Abstractions/9.0.9": { + "sha512": "QdM2k3Mnip2QsaxJbCI95dc2SajRMENdmaMhVKj4jPC5dmkoRcu3eEdvZAgDbd4bFVV1jtPGdHtXewtoBMlZqA==", "type": "package", - "path": "microsoft.entityframeworkcore.abstractions/9.0.8", + "path": "microsoft.entityframeworkcore.abstractions/9.0.9", "files": [ ".nupkg.metadata", ".signature.p7s", @@ -3664,28 +3733,28 @@ "PACKAGE.md", "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll", "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.xml", - "microsoft.entityframeworkcore.abstractions.9.0.8.nupkg.sha512", + "microsoft.entityframeworkcore.abstractions.9.0.9.nupkg.sha512", "microsoft.entityframeworkcore.abstractions.nuspec" ] }, - "Microsoft.EntityFrameworkCore.Analyzers/9.0.8": { - "sha512": "2EYStCXt4Hi9p3J3EYMQbItJDtASJd064Kcs8C8hj8Jt5srILrR9qlaL0Ryvk8NrWQoCQvIELsmiuqLEZMLvGA==", + "Microsoft.EntityFrameworkCore.Analyzers/9.0.9": { + "sha512": "uiKeU/qR0YpaDUa4+g0rAjKCuwfq8YWZGcpPptnFWIr1K7dXQTm/15D2HDwwU4ln3Uf66krYybymuY58ua4hhw==", "type": "package", - "path": "microsoft.entityframeworkcore.analyzers/9.0.8", + "path": "microsoft.entityframeworkcore.analyzers/9.0.9", "files": [ ".nupkg.metadata", ".signature.p7s", "Icon.png", "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll", "docs/PACKAGE.md", - "microsoft.entityframeworkcore.analyzers.9.0.8.nupkg.sha512", + "microsoft.entityframeworkcore.analyzers.9.0.9.nupkg.sha512", "microsoft.entityframeworkcore.analyzers.nuspec" ] }, - "Microsoft.EntityFrameworkCore.Design/9.0.8": { - "sha512": "02e8OcoumSUAES3VkXrMT9EnNCUKWJoifn5+8fFEbAtRhKL3xg2a/Mj6rsAUGF7tkYFox6oKzJCn0jbm6b8Lbw==", + "Microsoft.EntityFrameworkCore.Design/9.0.9": { + "sha512": "cFxH70tohWe3ugCjLhZB01mR7WHpg5dEK6zHsbkDFfpLxWT+HoZQKgchTJgF4bPWBPTyrlYlqfPY212fFtmJjg==", "type": "package", - "path": "microsoft.entityframeworkcore.design/9.0.8", + "path": "microsoft.entityframeworkcore.design/9.0.9", "files": [ ".nupkg.metadata", ".signature.p7s", @@ -3694,14 +3763,14 @@ "build/net8.0/Microsoft.EntityFrameworkCore.Design.props", "lib/net8.0/Microsoft.EntityFrameworkCore.Design.dll", "lib/net8.0/Microsoft.EntityFrameworkCore.Design.xml", - "microsoft.entityframeworkcore.design.9.0.8.nupkg.sha512", + "microsoft.entityframeworkcore.design.9.0.9.nupkg.sha512", "microsoft.entityframeworkcore.design.nuspec" ] }, - "Microsoft.EntityFrameworkCore.Relational/9.0.8": { - "sha512": "OVhfyxiHxMvYpwQ8Jy3YZi4koy6TK5/Q7C1oq3z6db+HEGuu6x9L1BX5zDIdJxxlRePMyO4D8ORiXj/D7+MUqw==", + "Microsoft.EntityFrameworkCore.Relational/9.0.9": { + "sha512": "SonFU9a8x4jZIhIBtCw1hIE3QKjd4c7Y3mjptoh682dfQe7K9pUPGcEV/sk4n8AJdq4fkyJPCaOdYaObhae/Iw==", "type": "package", - "path": "microsoft.entityframeworkcore.relational/9.0.8", + "path": "microsoft.entityframeworkcore.relational/9.0.9", "files": [ ".nupkg.metadata", ".signature.p7s", @@ -3709,14 +3778,14 @@ "PACKAGE.md", "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll", "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.xml", - "microsoft.entityframeworkcore.relational.9.0.8.nupkg.sha512", + "microsoft.entityframeworkcore.relational.9.0.9.nupkg.sha512", "microsoft.entityframeworkcore.relational.nuspec" ] }, - "Microsoft.EntityFrameworkCore.SqlServer/9.0.8": { - "sha512": "yNZJIdLQTTHj6FTv9+IUQwmQvOwvUanTBOG1ibeTaaB1zfTtOqrSFQnjMOkcKOgxu+ofsBEDcuctb/f5xj/Oog==", + "Microsoft.EntityFrameworkCore.SqlServer/9.0.9": { + "sha512": "t+6Zo92F5CgKyFncPSWRB3DFNwBrGug9F6rlrUFlJEr4Bf0t4ZFhZLg0qfuA3ouT7AQKuLTrvXLxuov8DWcuPQ==", "type": "package", - "path": "microsoft.entityframeworkcore.sqlserver/9.0.8", + "path": "microsoft.entityframeworkcore.sqlserver/9.0.9", "files": [ ".nupkg.metadata", ".signature.p7s", @@ -3724,21 +3793,21 @@ "PACKAGE.md", "lib/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll", "lib/net8.0/Microsoft.EntityFrameworkCore.SqlServer.xml", - "microsoft.entityframeworkcore.sqlserver.9.0.8.nupkg.sha512", + "microsoft.entityframeworkcore.sqlserver.9.0.9.nupkg.sha512", "microsoft.entityframeworkcore.sqlserver.nuspec" ] }, - "Microsoft.EntityFrameworkCore.Tools/9.0.8": { - "sha512": "gtjwfJsEB5Mz5qOhdYjm+9KWJEVmVu5xxOgrxHxW6dNmhGfwdNXnNx5Nvdk6IHt0hmn0OK6MREMZEOsjrnSCfA==", + "Microsoft.EntityFrameworkCore.Tools/9.0.9": { + "sha512": "Q8n1PXXJApa1qX8HI3r/YuHoJ1HuLwjI2hLqaCV9K9pqQhGpi6Z38laOYwL2ElUOTWCxTKMDEMMYWfPlw6rwgg==", "type": "package", - "path": "microsoft.entityframeworkcore.tools/9.0.8", + "path": "microsoft.entityframeworkcore.tools/9.0.9", "hasTools": true, "files": [ ".nupkg.metadata", ".signature.p7s", "Icon.png", "docs/PACKAGE.md", - "microsoft.entityframeworkcore.tools.9.0.8.nupkg.sha512", + "microsoft.entityframeworkcore.tools.9.0.9.nupkg.sha512", "microsoft.entityframeworkcore.tools.nuspec", "tools/EntityFrameworkCore.PS2.psd1", "tools/EntityFrameworkCore.PS2.psm1", @@ -3753,10 +3822,10 @@ "tools/netcoreapp2.0/any/ef.runtimeconfig.json" ] }, - "Microsoft.Extensions.Caching.Abstractions/9.0.8": { - "sha512": "4h7bsVoKoiK+SlPM+euX/ayGnKZhl47pPCidLTiio9xyG+vgVVfcYxcYQgjm0SCrdSxjG0EGIAKF8EFr3G8Ifw==", + "Microsoft.Extensions.Caching.Abstractions/9.0.9": { + "sha512": "NgtRHOdPrAEacfjXLSrH/SRrSqGf6Vaa6d16mW2yoyJdg7AJr0BnBvxkv7PkCm/CHVyzojTK7Y+oUDEulqY1Qw==", "type": "package", - "path": "microsoft.extensions.caching.abstractions/9.0.8", + "path": "microsoft.extensions.caching.abstractions/9.0.9", "files": [ ".nupkg.metadata", ".signature.p7s", @@ -3776,15 +3845,15 @@ "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.xml", "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll", "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml", - "microsoft.extensions.caching.abstractions.9.0.8.nupkg.sha512", + "microsoft.extensions.caching.abstractions.9.0.9.nupkg.sha512", "microsoft.extensions.caching.abstractions.nuspec", "useSharedDesignerContext.txt" ] }, - "Microsoft.Extensions.Caching.Memory/9.0.8": { - "sha512": "grR+oPyj8HVn4DT8CFUUdSw2pZZKS13KjytFe4txpHQliGM1GEDotohmjgvyl3hm7RFB3FRqvbouEX3/1ewp5A==", + "Microsoft.Extensions.Caching.Memory/9.0.9": { + "sha512": "ln31BtsDsBQxykJgxuCtiUXWRET9FmqeEq0BpPIghkYtGpDDVs8ZcLHAjCCzbw6aGoLek4Z7JaDjSO/CjOD0iw==", "type": "package", - "path": "microsoft.extensions.caching.memory/9.0.8", + "path": "microsoft.extensions.caching.memory/9.0.9", "files": [ ".nupkg.metadata", ".signature.p7s", @@ -3804,15 +3873,15 @@ "lib/net9.0/Microsoft.Extensions.Caching.Memory.xml", "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll", "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml", - "microsoft.extensions.caching.memory.9.0.8.nupkg.sha512", + "microsoft.extensions.caching.memory.9.0.9.nupkg.sha512", "microsoft.extensions.caching.memory.nuspec", "useSharedDesignerContext.txt" ] }, - "Microsoft.Extensions.Configuration.Abstractions/9.0.8": { - "sha512": "yNou2KM35RvzOh4vUFtl2l33rWPvOCoba+nzEDJ+BgD8aOL/jew4WPCibQvntRfOJ2pJU8ARygSMD+pdjvDHuA==", + "Microsoft.Extensions.Configuration.Abstractions/9.0.9": { + "sha512": "p5RKAY9POvs3axwA/AQRuJeM8AHuE8h4qbP1NxQeGm0ep46aXz1oCLAp/oOYxX1GsjStgdhHrN3XXLLXr0+b3w==", "type": "package", - "path": "microsoft.extensions.configuration.abstractions/9.0.8", + "path": "microsoft.extensions.configuration.abstractions/9.0.9", "files": [ ".nupkg.metadata", ".signature.p7s", @@ -3832,15 +3901,15 @@ "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.9.0.8.nupkg.sha512", + "microsoft.extensions.configuration.abstractions.9.0.9.nupkg.sha512", "microsoft.extensions.configuration.abstractions.nuspec", "useSharedDesignerContext.txt" ] }, - "Microsoft.Extensions.DependencyInjection/9.0.8": { - "sha512": "JJjI2Fa+QtZcUyuNjbKn04OjIUX5IgFGFu/Xc+qvzh1rXdZHLcnqqVXhR4093bGirTwacRlHiVg1XYI9xum6QQ==", + "Microsoft.Extensions.DependencyInjection/9.0.9": { + "sha512": "zQV2WOSP+3z1EuK91ULxfGgo2Y75bTRnmJHp08+w/YXAyekZutX/qCd88/HOMNh35MDW9mJJJxPpMPS+1Rww8A==", "type": "package", - "path": "microsoft.extensions.dependencyinjection/9.0.8", + "path": "microsoft.extensions.dependencyinjection/9.0.9", "files": [ ".nupkg.metadata", ".signature.p7s", @@ -3862,15 +3931,15 @@ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll", "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml", - "microsoft.extensions.dependencyinjection.9.0.8.nupkg.sha512", + "microsoft.extensions.dependencyinjection.9.0.9.nupkg.sha512", "microsoft.extensions.dependencyinjection.nuspec", "useSharedDesignerContext.txt" ] }, - "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.8": { - "sha512": "xY3lTjj4+ZYmiKIkyWitddrp1uL5uYiweQjqo4BKBw01ZC4HhcfgLghDpPZcUlppgWAFqFy9SgkiYWOMx365pw==", + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.9": { + "sha512": "/hymojfWbE9AlDOa0mczR44m00Jj+T3+HZO0ZnVTI032fVycI0ZbNOVFP6kqZMcXiLSYXzR2ilcwaRi6dzeGyA==", "type": "package", - "path": "microsoft.extensions.dependencyinjection.abstractions/9.0.8", + "path": "microsoft.extensions.dependencyinjection.abstractions/9.0.9", "files": [ ".nupkg.metadata", ".signature.p7s", @@ -3892,15 +3961,15 @@ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll", "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "microsoft.extensions.dependencyinjection.abstractions.9.0.8.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.9.0.9.nupkg.sha512", "microsoft.extensions.dependencyinjection.abstractions.nuspec", "useSharedDesignerContext.txt" ] }, - "Microsoft.Extensions.DependencyModel/9.0.8": { - "sha512": "3CW02zNjyqJ2eORo8Zkznpw6+QvK+tYUKZgKuKuAIYdy73TRFvpaqCwYws1k6/lMSJ7ZqABfWn0/wa5bRsIJ4w==", + "Microsoft.Extensions.DependencyModel/9.0.9": { + "sha512": "fNGvKct2De8ghm0Bpfq0iWthtzIWabgOTi+gJhNOPhNJIowXNEUE2eZNW/zNCzrHVA3PXg2yZ+3cWZndC2IqYA==", "type": "package", - "path": "microsoft.extensions.dependencymodel/9.0.8", + "path": "microsoft.extensions.dependencymodel/9.0.9", "files": [ ".nupkg.metadata", ".signature.p7s", @@ -3920,7 +3989,7 @@ "lib/net9.0/Microsoft.Extensions.DependencyModel.xml", "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll", "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.xml", - "microsoft.extensions.dependencymodel.9.0.8.nupkg.sha512", + "microsoft.extensions.dependencymodel.9.0.9.nupkg.sha512", "microsoft.extensions.dependencymodel.nuspec", "useSharedDesignerContext.txt" ] @@ -4001,10 +4070,10 @@ "microsoft.extensions.localization.abstractions.nuspec" ] }, - "Microsoft.Extensions.Logging/9.0.8": { - "sha512": "Z/7ze+0iheT7FJeZPqJKARYvyC2bmwu3whbm/48BJjdlGVvgDguoCqJIkI/67NkroTYobd5geai1WheNQvWrgA==", + "Microsoft.Extensions.Logging/9.0.9": { + "sha512": "MaCB0Y9hNDs4YLu3HCJbo199WnJT8xSgajG1JYGANz9FkseQ5f3v/llu3HxLI6mjDlu7pa7ps9BLPWjKzsAAzQ==", "type": "package", - "path": "microsoft.extensions.logging/9.0.8", + "path": "microsoft.extensions.logging/9.0.9", "files": [ ".nupkg.metadata", ".signature.p7s", @@ -4026,15 +4095,15 @@ "lib/netstandard2.0/Microsoft.Extensions.Logging.xml", "lib/netstandard2.1/Microsoft.Extensions.Logging.dll", "lib/netstandard2.1/Microsoft.Extensions.Logging.xml", - "microsoft.extensions.logging.9.0.8.nupkg.sha512", + "microsoft.extensions.logging.9.0.9.nupkg.sha512", "microsoft.extensions.logging.nuspec", "useSharedDesignerContext.txt" ] }, - "Microsoft.Extensions.Logging.Abstractions/9.0.8": { - "sha512": "pYnAffJL7ARD/HCnnPvnFKSIHnTSmWz84WIlT9tPeQ4lHNiu0Az7N/8itihWvcF8sT+VVD5lq8V+ckMzu4SbOw==", + "Microsoft.Extensions.Logging.Abstractions/9.0.9": { + "sha512": "FEgpSF+Z9StMvrsSViaybOBwR0f0ZZxDm8xV5cSOFiXN/t+ys+rwAlTd/6yG7Ld1gfppgvLcMasZry3GsI9lGA==", "type": "package", - "path": "microsoft.extensions.logging.abstractions/9.0.8", + "path": "microsoft.extensions.logging.abstractions/9.0.9", "files": [ ".nupkg.metadata", ".signature.p7s", @@ -4097,15 +4166,15 @@ "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.xml", "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", - "microsoft.extensions.logging.abstractions.9.0.8.nupkg.sha512", + "microsoft.extensions.logging.abstractions.9.0.9.nupkg.sha512", "microsoft.extensions.logging.abstractions.nuspec", "useSharedDesignerContext.txt" ] }, - "Microsoft.Extensions.Options/9.0.8": { - "sha512": "OmTaQ0v4gxGQkehpwWIqPoEiwsPuG/u4HUsbOFoWGx4DKET2AXzopnFe/fE608FIhzc/kcg2p8JdyMRCCUzitQ==", + "Microsoft.Extensions.Options/9.0.9": { + "sha512": "loxGGHE1FC2AefwPHzrjPq7X92LQm64qnU/whKfo6oWaceewPUVYQJBJs3S3E2qlWwnCpeZ+dGCPTX+5dgVAuQ==", "type": "package", - "path": "microsoft.extensions.options/9.0.8", + "path": "microsoft.extensions.options/9.0.9", "files": [ ".nupkg.metadata", ".signature.p7s", @@ -4142,15 +4211,15 @@ "lib/netstandard2.0/Microsoft.Extensions.Options.xml", "lib/netstandard2.1/Microsoft.Extensions.Options.dll", "lib/netstandard2.1/Microsoft.Extensions.Options.xml", - "microsoft.extensions.options.9.0.8.nupkg.sha512", + "microsoft.extensions.options.9.0.9.nupkg.sha512", "microsoft.extensions.options.nuspec", "useSharedDesignerContext.txt" ] }, - "Microsoft.Extensions.Primitives/9.0.8": { - "sha512": "tizSIOEsIgSNSSh+hKeUVPK7xmTIjR8s+mJWOu1KXV3htvNQiPMFRMO17OdI1y/4ZApdBVk49u/08QGC9yvLug==", + "Microsoft.Extensions.Primitives/9.0.9": { + "sha512": "z4pyMePOrl733ltTowbN565PxBw1oAr8IHmIXNDiDqd22nFpYltX9KhrNC/qBWAG1/Zx5MHX+cOYhWJQYCO/iw==", "type": "package", - "path": "microsoft.extensions.primitives/9.0.8", + "path": "microsoft.extensions.primitives/9.0.9", "files": [ ".nupkg.metadata", ".signature.p7s", @@ -4170,7 +4239,7 @@ "lib/net9.0/Microsoft.Extensions.Primitives.xml", "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", - "microsoft.extensions.primitives.9.0.8.nupkg.sha512", + "microsoft.extensions.primitives.9.0.9.nupkg.sha512", "microsoft.extensions.primitives.nuspec", "useSharedDesignerContext.txt" ] @@ -4212,26 +4281,27 @@ "microsoft.identity.client.extensions.msal.nuspec" ] }, - "Microsoft.IdentityModel.Abstractions/6.35.0": { - "sha512": "xuR8E4Rd96M41CnUSCiOJ2DBh+z+zQSmyrYHdYhD6K4fXBcQGVnRCFQ0efROUYpP+p0zC1BLKr0JRpVuujTZSg==", + "Microsoft.IdentityModel.Abstractions/8.14.0": { + "sha512": "iwbCpSjD3ehfTwBhtSNEtKPK0ICun6ov7Ibx6ISNA9bfwIyzI2Siwyi9eJFCJBwxowK9xcA1mj+jBWiigeqgcQ==", "type": "package", - "path": "microsoft.identitymodel.abstractions/6.35.0", + "path": "microsoft.identitymodel.abstractions/8.14.0", "files": [ ".nupkg.metadata", ".signature.p7s", - "lib/net45/Microsoft.IdentityModel.Abstractions.dll", - "lib/net45/Microsoft.IdentityModel.Abstractions.xml", - "lib/net461/Microsoft.IdentityModel.Abstractions.dll", - "lib/net461/Microsoft.IdentityModel.Abstractions.xml", + "README.md", "lib/net462/Microsoft.IdentityModel.Abstractions.dll", "lib/net462/Microsoft.IdentityModel.Abstractions.xml", "lib/net472/Microsoft.IdentityModel.Abstractions.dll", "lib/net472/Microsoft.IdentityModel.Abstractions.xml", "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll", "lib/net6.0/Microsoft.IdentityModel.Abstractions.xml", + "lib/net8.0/Microsoft.IdentityModel.Abstractions.dll", + "lib/net8.0/Microsoft.IdentityModel.Abstractions.xml", + "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll", + "lib/net9.0/Microsoft.IdentityModel.Abstractions.xml", "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll", "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.xml", - "microsoft.identitymodel.abstractions.6.35.0.nupkg.sha512", + "microsoft.identitymodel.abstractions.8.14.0.nupkg.sha512", "microsoft.identitymodel.abstractions.nuspec" ] }, @@ -4258,26 +4328,27 @@ "microsoft.identitymodel.jsonwebtokens.nuspec" ] }, - "Microsoft.IdentityModel.Logging/6.35.0": { - "sha512": "jePrSfGAmqT81JDCNSY+fxVWoGuJKt9e6eJ+vT7+quVS55nWl//jGjUQn4eFtVKt4rt5dXaleZdHRB9J9AJZ7Q==", + "Microsoft.IdentityModel.Logging/8.14.0": { + "sha512": "eqqnemdW38CKZEHS6diA50BV94QICozDZEvSrsvN3SJXUFwVB9gy+/oz76gldP7nZliA16IglXjXTCTdmU/Ejg==", "type": "package", - "path": "microsoft.identitymodel.logging/6.35.0", + "path": "microsoft.identitymodel.logging/8.14.0", "files": [ ".nupkg.metadata", ".signature.p7s", - "lib/net45/Microsoft.IdentityModel.Logging.dll", - "lib/net45/Microsoft.IdentityModel.Logging.xml", - "lib/net461/Microsoft.IdentityModel.Logging.dll", - "lib/net461/Microsoft.IdentityModel.Logging.xml", + "README.md", "lib/net462/Microsoft.IdentityModel.Logging.dll", "lib/net462/Microsoft.IdentityModel.Logging.xml", "lib/net472/Microsoft.IdentityModel.Logging.dll", "lib/net472/Microsoft.IdentityModel.Logging.xml", "lib/net6.0/Microsoft.IdentityModel.Logging.dll", "lib/net6.0/Microsoft.IdentityModel.Logging.xml", + "lib/net8.0/Microsoft.IdentityModel.Logging.dll", + "lib/net8.0/Microsoft.IdentityModel.Logging.xml", + "lib/net9.0/Microsoft.IdentityModel.Logging.dll", + "lib/net9.0/Microsoft.IdentityModel.Logging.xml", "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll", "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml", - "microsoft.identitymodel.logging.6.35.0.nupkg.sha512", + "microsoft.identitymodel.logging.8.14.0.nupkg.sha512", "microsoft.identitymodel.logging.nuspec" ] }, @@ -4327,26 +4398,27 @@ "microsoft.identitymodel.protocols.openidconnect.nuspec" ] }, - "Microsoft.IdentityModel.Tokens/6.35.0": { - "sha512": "RN7lvp7s3Boucg1NaNAbqDbxtlLj5Qeb+4uSS1TeK5FSBVM40P4DKaTKChT43sHyKfh7V0zkrMph6DdHvyA4bg==", + "Microsoft.IdentityModel.Tokens/8.14.0": { + "sha512": "lKIZiBiGd36k02TCdMHp1KlNWisyIvQxcYJvIkz7P4gSQ9zi8dgh6S5Grj8NNG7HWYIPfQymGyoZ6JB5d1Lo1g==", "type": "package", - "path": "microsoft.identitymodel.tokens/6.35.0", + "path": "microsoft.identitymodel.tokens/8.14.0", "files": [ ".nupkg.metadata", ".signature.p7s", - "lib/net45/Microsoft.IdentityModel.Tokens.dll", - "lib/net45/Microsoft.IdentityModel.Tokens.xml", - "lib/net461/Microsoft.IdentityModel.Tokens.dll", - "lib/net461/Microsoft.IdentityModel.Tokens.xml", + "README.md", "lib/net462/Microsoft.IdentityModel.Tokens.dll", "lib/net462/Microsoft.IdentityModel.Tokens.xml", "lib/net472/Microsoft.IdentityModel.Tokens.dll", "lib/net472/Microsoft.IdentityModel.Tokens.xml", "lib/net6.0/Microsoft.IdentityModel.Tokens.dll", "lib/net6.0/Microsoft.IdentityModel.Tokens.xml", + "lib/net8.0/Microsoft.IdentityModel.Tokens.dll", + "lib/net8.0/Microsoft.IdentityModel.Tokens.xml", + "lib/net9.0/Microsoft.IdentityModel.Tokens.dll", + "lib/net9.0/Microsoft.IdentityModel.Tokens.xml", "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll", "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml", - "microsoft.identitymodel.tokens.6.35.0.nupkg.sha512", + "microsoft.identitymodel.tokens.8.14.0.nupkg.sha512", "microsoft.identitymodel.tokens.nuspec" ] }, @@ -4586,10 +4658,10 @@ "readme.md" ] }, - "MudBlazor/8.12.0": { - "sha512": "ZwgHPt2DwiQoFeP8jxPzNEsUmJF17ljtospVH+uMUKUKpklz6jEkdE5vNs7PnHaPH9HEbpFEQgJw8QPlnFZjsQ==", + "MudBlazor/8.13.0": { + "sha512": "Y6JW93zf8tiVhMSkkL0mZ3ruqjOTNftvVoX3sik6NEnIye+Gs0FXI8rhXfrH2LU79Mw/fOtT5ms3L/Q4TKx2kA==", "type": "package", - "path": "mudblazor/8.12.0", + "path": "mudblazor/8.13.0", "files": [ ".nupkg.metadata", ".signature.p7s", @@ -4607,7 +4679,7 @@ "lib/net8.0/MudBlazor.xml", "lib/net9.0/MudBlazor.dll", "lib/net9.0/MudBlazor.xml", - "mudblazor.8.12.0.nupkg.sha512", + "mudblazor.8.13.0.nupkg.sha512", "mudblazor.nuspec", "staticwebassets/MudBlazor.min.css", "staticwebassets/MudBlazor.min.js" @@ -4766,6 +4838,74 @@ "useSharedDesignerContext.txt" ] }, + "System.Collections/4.3.0": { + "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "type": "package", + "path": "system.collections/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/netstandard1.0/System.Collections.dll", + "ref/netstandard1.0/System.Collections.xml", + "ref/netstandard1.0/de/System.Collections.xml", + "ref/netstandard1.0/es/System.Collections.xml", + "ref/netstandard1.0/fr/System.Collections.xml", + "ref/netstandard1.0/it/System.Collections.xml", + "ref/netstandard1.0/ja/System.Collections.xml", + "ref/netstandard1.0/ko/System.Collections.xml", + "ref/netstandard1.0/ru/System.Collections.xml", + "ref/netstandard1.0/zh-hans/System.Collections.xml", + "ref/netstandard1.0/zh-hant/System.Collections.xml", + "ref/netstandard1.3/System.Collections.dll", + "ref/netstandard1.3/System.Collections.xml", + "ref/netstandard1.3/de/System.Collections.xml", + "ref/netstandard1.3/es/System.Collections.xml", + "ref/netstandard1.3/fr/System.Collections.xml", + "ref/netstandard1.3/it/System.Collections.xml", + "ref/netstandard1.3/ja/System.Collections.xml", + "ref/netstandard1.3/ko/System.Collections.xml", + "ref/netstandard1.3/ru/System.Collections.xml", + "ref/netstandard1.3/zh-hans/System.Collections.xml", + "ref/netstandard1.3/zh-hant/System.Collections.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.4.3.0.nupkg.sha512", + "system.collections.nuspec" + ] + }, "System.Collections.Immutable/7.0.0": { "sha512": "dQPcs0U1IKnBdRDBkrCTi1FoajSTBzLcVTpjO4MBCMC7f4pDOIPzgBoX8JjG7X6uZRJ8EBxsi8+DR1JuwjnzOQ==", "type": "package", @@ -5216,10 +5356,10 @@ "useSharedDesignerContext.txt" ] }, - "System.Formats.Asn1/9.0.8": { - "sha512": "gGL0gt2nAArsF2oOMFzClll6QN2FhtooTxEQ+K26uer4lrhahnYIo/qOn5HUSfjHlM91646L5/7dYIMJ86fHkQ==", + "System.Formats.Asn1/9.0.9": { + "sha512": "hnQCFWPAvZM45fFEExgbHTgq6GyfyQdHxyI+PvuzqI1G7KvBYcnNEPHbLJ+1jP+Ip69yBvvUOxaibmDInmOw2Q==", "type": "package", - "path": "system.formats.asn1/9.0.8", + "path": "system.formats.asn1/9.0.9", "files": [ ".nupkg.metadata", ".signature.p7s", @@ -5239,7 +5379,7 @@ "lib/net9.0/System.Formats.Asn1.xml", "lib/netstandard2.0/System.Formats.Asn1.dll", "lib/netstandard2.0/System.Formats.Asn1.xml", - "system.formats.asn1.9.0.8.nupkg.sha512", + "system.formats.asn1.9.0.9.nupkg.sha512", "system.formats.asn1.nuspec", "useSharedDesignerContext.txt" ] @@ -5927,10 +6067,10 @@ "useSharedDesignerContext.txt" ] }, - "System.Text.Json/9.0.8": { - "sha512": "mIQir9jBqk0V7X0Nw5hzPJZC8DuGdf+2DS3jAVsr6rq5+/VyH5rza0XGcONJUWBrZ+G6BCwNyjWYd9lncBu48A==", + "System.Text.Json/9.0.9": { + "sha512": "NEnpppwq67fRz/OvQRxsEMgetDJsxlxpEsAFO/4PZYbAyAMd4Ol6KS7phc8uDoKPsnbdzRLKobpX303uQwCqdg==", "type": "package", - "path": "system.text.json/9.0.8", + "path": "system.text.json/9.0.9", "files": [ ".nupkg.metadata", ".signature.p7s", @@ -5993,7 +6133,7 @@ "lib/net9.0/System.Text.Json.xml", "lib/netstandard2.0/System.Text.Json.dll", "lib/netstandard2.0/System.Text.Json.xml", - "system.text.json.9.0.8.nupkg.sha512", + "system.text.json.9.0.9.nupkg.sha512", "system.text.json.nuspec", "useSharedDesignerContext.txt" ] @@ -6087,6 +6227,21 @@ "useSharedDesignerContext.txt" ] }, + "OpenArchival.Blazor.AdminPages/1.0.0": { + "type": "project", + "path": "../OpenArchival.Blazor.AdminPages/OpenArchival.Blazor.AdminPages.csproj", + "msbuildProject": "../OpenArchival.Blazor.AdminPages/OpenArchival.Blazor.AdminPages.csproj" + }, + "OpenArchival.Blazor.CustomComponents/1.0.0": { + "type": "project", + "path": "../OpenArchival.Blazor.CustomComponents/OpenArchival.Blazor.CustomComponents.csproj", + "msbuildProject": "../OpenArchival.Blazor.CustomComponents/OpenArchival.Blazor.CustomComponents.csproj" + }, + "OpenArchival.Blazor.FileViewer/1.0.0": { + "type": "project", + "path": "../OpenArchival.Blazor.FileViewer/OpenArchival.Blazor.FileViewer.csproj", + "msbuildProject": "../OpenArchival.Blazor.FileViewer/OpenArchival.Blazor.FileViewer.csproj" + }, "OpenArchival.DataAccess/1.0.0": { "type": "project", "path": "../OpenArchival.DataAccess/OpenArchival.DataAccess.csproj", @@ -6098,7 +6253,7 @@ "CodeBeam.MudExtensions >= 6.3.0", "Dapper >= 2.1.66", "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore >= 9.*", - "Microsoft.EntityFrameworkCore >= 9.0.8", + "Microsoft.EntityFrameworkCore >= 9.0.9", "Microsoft.EntityFrameworkCore.SqlServer >= 9.*", "Microsoft.EntityFrameworkCore.Tools >= 9.*", "Microsoft.VisualStudio.Azure.Containers.Tools.Targets >= 1.22.1", @@ -6106,28 +6261,32 @@ "Npgsql >= 9.0.3", "Npgsql.DependencyInjection >= 9.0.3", "Npgsql.EntityFrameworkCore.PostgreSQL >= 9.0.4", - "OpenArchival.DataAccess >= 1.0.0" + "OpenArchival.Blazor.AdminPages >= 1.0.0", + "OpenArchival.Blazor.CustomComponents >= 1.0.0", + "OpenArchival.Blazor.FileViewer >= 1.0.0", + "OpenArchival.DataAccess >= 1.0.0", + "System.Collections >= 4.3.0" ] }, "packageFolders": { - "C:\\Users\\Vincent Allen\\.nuget\\packages\\": {}, + "C:\\Users\\vtall\\.nuget\\packages\\": {}, "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} }, "project": { "version": "1.0.0", "restore": { - "projectUniqueName": "D:\\Nextcloud\\Documents\\Open-Archival\\OpenArchival.Blazor\\OpenArchival.Blazor.csproj", + "projectUniqueName": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\OpenArchival.Blazor.csproj", "projectName": "OpenArchival.Blazor", - "projectPath": "D:\\Nextcloud\\Documents\\Open-Archival\\OpenArchival.Blazor\\OpenArchival.Blazor.csproj", - "packagesPath": "C:\\Users\\Vincent Allen\\.nuget\\packages\\", - "outputPath": "D:\\Nextcloud\\Documents\\Open-Archival\\OpenArchival.Blazor\\obj\\", + "projectPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\OpenArchival.Blazor.csproj", + "packagesPath": "C:\\Users\\vtall\\.nuget\\packages\\", + "outputPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\obj\\", "projectStyle": "PackageReference", "fallbackFolders": [ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" ], "configFilePaths": [ - "D:\\Nextcloud\\Documents\\Open-Archival\\NuGet.Config", - "C:\\Users\\Vincent Allen\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\NuGet.Config", + "C:\\Users\\vtall\\AppData\\Roaming\\NuGet\\NuGet.Config", "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], @@ -6142,8 +6301,17 @@ "net9.0": { "targetAlias": "net9.0", "projectReferences": { - "D:\\Nextcloud\\Documents\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj": { - "projectPath": "D:\\Nextcloud\\Documents\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj" + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.AdminPages\\OpenArchival.Blazor.AdminPages.csproj": { + "projectPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.AdminPages\\OpenArchival.Blazor.AdminPages.csproj" + }, + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\OpenArchival.Blazor.CustomComponents.csproj": { + "projectPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\OpenArchival.Blazor.CustomComponents.csproj" + }, + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\OpenArchival.Blazor.FileViewer.csproj": { + "projectPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\OpenArchival.Blazor.FileViewer.csproj" + }, + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj": { + "projectPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj" } } } @@ -6178,7 +6346,7 @@ }, "Microsoft.EntityFrameworkCore": { "target": "Package", - "version": "[9.0.8, )" + "version": "[9.0.9, )" }, "Microsoft.EntityFrameworkCore.SqlServer": { "target": "Package", @@ -6207,6 +6375,10 @@ "Npgsql.EntityFrameworkCore.PostgreSQL": { "target": "Package", "version": "[9.0.4, )" + }, + "System.Collections": { + "target": "Package", + "version": "[4.3.0, )" } }, "imports": [ diff --git a/OpenArchival.Blazor/obj/project.nuget.cache b/OpenArchival.Blazor/obj/project.nuget.cache index bbfa870..fb557d4 100644 --- a/OpenArchival.Blazor/obj/project.nuget.cache +++ b/OpenArchival.Blazor/obj/project.nuget.cache @@ -1,120 +1,121 @@ { "version": 2, - "dgSpecHash": "oFxrF1LLhBI=", + "dgSpecHash": "zSLopbemWX0=", "success": true, - "projectFilePath": "D:\\Nextcloud\\Documents\\Open-Archival\\OpenArchival.Blazor\\OpenArchival.Blazor.csproj", + "projectFilePath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\OpenArchival.Blazor.csproj", "expectedPackageFiles": [ - "C:\\Users\\Vincent Allen\\.nuget\\packages\\azure.core\\1.38.0\\azure.core.1.38.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\azure.identity\\1.11.4\\azure.identity.1.11.4.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\buildbundlerminifier\\3.2.449\\buildbundlerminifier.3.2.449.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\codebeam.mudextensions.6.3.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\csvhelper\\30.0.1\\csvhelper.30.0.1.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\dapper\\2.1.66\\dapper.2.1.66.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\entityframework\\6.5.1\\entityframework.6.5.1.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\humanizer.core\\2.14.1\\humanizer.core.2.14.1.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.aspnetcore.authorization\\9.0.1\\microsoft.aspnetcore.authorization.9.0.1.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.aspnetcore.components\\9.0.1\\microsoft.aspnetcore.components.9.0.1.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.aspnetcore.components.analyzers\\9.0.1\\microsoft.aspnetcore.components.analyzers.9.0.1.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.aspnetcore.components.forms\\9.0.1\\microsoft.aspnetcore.components.forms.9.0.1.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.aspnetcore.components.web\\9.0.1\\microsoft.aspnetcore.components.web.9.0.1.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.aspnetcore.cryptography.internal\\9.0.8\\microsoft.aspnetcore.cryptography.internal.9.0.8.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.aspnetcore.cryptography.keyderivation\\9.0.8\\microsoft.aspnetcore.cryptography.keyderivation.9.0.8.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.aspnetcore.diagnostics.entityframeworkcore\\9.0.8\\microsoft.aspnetcore.diagnostics.entityframeworkcore.9.0.8.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.aspnetcore.identity.entityframeworkcore\\9.0.8\\microsoft.aspnetcore.identity.entityframeworkcore.9.0.8.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.aspnetcore.metadata\\9.0.1\\microsoft.aspnetcore.metadata.9.0.1.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\7.0.0\\microsoft.bcl.asyncinterfaces.7.0.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.build.framework\\17.8.3\\microsoft.build.framework.17.8.3.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.build.locator\\1.7.8\\microsoft.build.locator.1.7.8.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.codeanalysis.analyzers\\3.3.4\\microsoft.codeanalysis.analyzers.3.3.4.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.codeanalysis.common\\4.8.0\\microsoft.codeanalysis.common.4.8.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.codeanalysis.csharp\\4.8.0\\microsoft.codeanalysis.csharp.4.8.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.codeanalysis.csharp.workspaces\\4.8.0\\microsoft.codeanalysis.csharp.workspaces.4.8.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.codeanalysis.workspaces.common\\4.8.0\\microsoft.codeanalysis.workspaces.common.4.8.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.codeanalysis.workspaces.msbuild\\4.8.0\\microsoft.codeanalysis.workspaces.msbuild.4.8.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.csharp\\4.7.0\\microsoft.csharp.4.7.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.data.sqlclient\\5.1.6\\microsoft.data.sqlclient.5.1.6.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.data.sqlclient.sni.runtime\\5.1.1\\microsoft.data.sqlclient.sni.runtime.5.1.1.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.entityframeworkcore\\9.0.8\\microsoft.entityframeworkcore.9.0.8.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\9.0.8\\microsoft.entityframeworkcore.abstractions.9.0.8.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\9.0.8\\microsoft.entityframeworkcore.analyzers.9.0.8.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.entityframeworkcore.design\\9.0.8\\microsoft.entityframeworkcore.design.9.0.8.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\9.0.8\\microsoft.entityframeworkcore.relational.9.0.8.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.entityframeworkcore.sqlserver\\9.0.8\\microsoft.entityframeworkcore.sqlserver.9.0.8.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.entityframeworkcore.tools\\9.0.8\\microsoft.entityframeworkcore.tools.9.0.8.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\9.0.8\\microsoft.extensions.caching.abstractions.9.0.8.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.extensions.caching.memory\\9.0.8\\microsoft.extensions.caching.memory.9.0.8.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\9.0.8\\microsoft.extensions.configuration.abstractions.9.0.8.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\9.0.8\\microsoft.extensions.dependencyinjection.9.0.8.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\9.0.8\\microsoft.extensions.dependencyinjection.abstractions.9.0.8.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.extensions.dependencymodel\\9.0.8\\microsoft.extensions.dependencymodel.9.0.8.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.extensions.identity.core\\9.0.8\\microsoft.extensions.identity.core.9.0.8.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.extensions.identity.stores\\9.0.8\\microsoft.extensions.identity.stores.9.0.8.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.extensions.localization\\9.0.1\\microsoft.extensions.localization.9.0.1.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.extensions.localization.abstractions\\9.0.1\\microsoft.extensions.localization.abstractions.9.0.1.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.extensions.logging\\9.0.8\\microsoft.extensions.logging.9.0.8.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\9.0.8\\microsoft.extensions.logging.abstractions.9.0.8.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.extensions.options\\9.0.8\\microsoft.extensions.options.9.0.8.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.extensions.primitives\\9.0.8\\microsoft.extensions.primitives.9.0.8.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.identity.client\\4.61.3\\microsoft.identity.client.4.61.3.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.identity.client.extensions.msal\\4.61.3\\microsoft.identity.client.extensions.msal.4.61.3.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.identitymodel.abstractions\\6.35.0\\microsoft.identitymodel.abstractions.6.35.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\6.35.0\\microsoft.identitymodel.jsonwebtokens.6.35.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.identitymodel.logging\\6.35.0\\microsoft.identitymodel.logging.6.35.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.identitymodel.protocols\\6.35.0\\microsoft.identitymodel.protocols.6.35.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.identitymodel.protocols.openidconnect\\6.35.0\\microsoft.identitymodel.protocols.openidconnect.6.35.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.identitymodel.tokens\\6.35.0\\microsoft.identitymodel.tokens.6.35.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.jsinterop\\9.0.1\\microsoft.jsinterop.9.0.1.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.netcore.platforms\\1.1.0\\microsoft.netcore.platforms.1.1.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.sqlserver.server\\1.0.0\\microsoft.sqlserver.server.1.0.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.visualstudio.azure.containers.tools.targets\\1.22.1\\microsoft.visualstudio.azure.containers.tools.targets.1.22.1.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.win32.registry\\4.7.0\\microsoft.win32.registry.4.7.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.win32.systemevents\\6.0.0\\microsoft.win32.systemevents.6.0.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\mono.texttemplating\\3.0.0\\mono.texttemplating.3.0.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\mudblazor\\8.12.0\\mudblazor.8.12.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\npgsql\\9.0.3\\npgsql.9.0.3.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\npgsql.dependencyinjection\\9.0.3\\npgsql.dependencyinjection.9.0.3.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\npgsql.entityframeworkcore.postgresql\\9.0.4\\npgsql.entityframeworkcore.postgresql.9.0.4.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\runtime.native.system.data.sqlclient.sni\\4.7.0\\runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\runtime.win-arm64.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\runtime.win-x64.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\runtime.win-x86.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\system.clientmodel\\1.0.0\\system.clientmodel.1.0.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\system.codedom\\6.0.0\\system.codedom.6.0.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\system.collections.immutable\\7.0.0\\system.collections.immutable.7.0.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\system.componentmodel.annotations\\5.0.0\\system.componentmodel.annotations.5.0.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\system.composition\\7.0.0\\system.composition.7.0.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\system.composition.attributedmodel\\7.0.0\\system.composition.attributedmodel.7.0.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\system.composition.convention\\7.0.0\\system.composition.convention.7.0.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\system.composition.hosting\\7.0.0\\system.composition.hosting.7.0.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\system.composition.runtime\\7.0.0\\system.composition.runtime.7.0.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\system.composition.typedparts\\7.0.0\\system.composition.typedparts.7.0.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\system.configuration.configurationmanager\\6.0.1\\system.configuration.configurationmanager.6.0.1.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\system.data.sqlclient\\4.8.6\\system.data.sqlclient.4.8.6.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\system.diagnostics.diagnosticsource\\6.0.1\\system.diagnostics.diagnosticsource.6.0.1.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\system.drawing.common\\6.0.0\\system.drawing.common.6.0.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\system.formats.asn1\\9.0.8\\system.formats.asn1.9.0.8.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\system.identitymodel.tokens.jwt\\6.35.0\\system.identitymodel.tokens.jwt.6.35.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\system.io.pipelines\\7.0.0\\system.io.pipelines.7.0.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\system.memory\\4.5.4\\system.memory.4.5.4.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\system.memory.data\\1.0.2\\system.memory.data.1.0.2.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\system.numerics.vectors\\4.5.0\\system.numerics.vectors.4.5.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\system.reflection.metadata\\7.0.0\\system.reflection.metadata.7.0.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\system.runtime.caching\\6.0.0\\system.runtime.caching.6.0.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\system.security.accesscontrol\\6.0.0\\system.security.accesscontrol.6.0.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\system.security.cryptography.cng\\5.0.0\\system.security.cryptography.cng.5.0.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\system.security.cryptography.protecteddata\\6.0.0\\system.security.cryptography.protecteddata.6.0.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\system.security.permissions\\6.0.0\\system.security.permissions.6.0.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\system.security.principal.windows\\5.0.0\\system.security.principal.windows.5.0.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\system.text.encoding.codepages\\6.0.0\\system.text.encoding.codepages.6.0.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\system.text.encodings.web\\6.0.0\\system.text.encodings.web.6.0.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\system.text.json\\9.0.8\\system.text.json.9.0.8.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\system.threading.channels\\7.0.0\\system.threading.channels.7.0.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.4\\system.threading.tasks.extensions.4.5.4.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\system.windows.extensions\\6.0.0\\system.windows.extensions.6.0.0.nupkg.sha512" + "C:\\Users\\vtall\\.nuget\\packages\\azure.core\\1.38.0\\azure.core.1.38.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\azure.identity\\1.11.4\\azure.identity.1.11.4.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\buildbundlerminifier\\3.2.449\\buildbundlerminifier.3.2.449.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\codebeam.mudextensions.6.3.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\csvhelper\\30.0.1\\csvhelper.30.0.1.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\dapper\\2.1.66\\dapper.2.1.66.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\entityframework\\6.5.1\\entityframework.6.5.1.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\humanizer.core\\2.14.1\\humanizer.core.2.14.1.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.aspnetcore.authorization\\9.0.1\\microsoft.aspnetcore.authorization.9.0.1.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.aspnetcore.components\\9.0.1\\microsoft.aspnetcore.components.9.0.1.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.aspnetcore.components.analyzers\\9.0.1\\microsoft.aspnetcore.components.analyzers.9.0.1.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.aspnetcore.components.forms\\9.0.1\\microsoft.aspnetcore.components.forms.9.0.1.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.aspnetcore.components.web\\9.0.1\\microsoft.aspnetcore.components.web.9.0.1.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.aspnetcore.cryptography.internal\\9.0.8\\microsoft.aspnetcore.cryptography.internal.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.aspnetcore.cryptography.keyderivation\\9.0.8\\microsoft.aspnetcore.cryptography.keyderivation.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.aspnetcore.diagnostics.entityframeworkcore\\9.0.9\\microsoft.aspnetcore.diagnostics.entityframeworkcore.9.0.9.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.aspnetcore.identity.entityframeworkcore\\9.0.8\\microsoft.aspnetcore.identity.entityframeworkcore.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.aspnetcore.metadata\\9.0.1\\microsoft.aspnetcore.metadata.9.0.1.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\7.0.0\\microsoft.bcl.asyncinterfaces.7.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.build.framework\\17.8.3\\microsoft.build.framework.17.8.3.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.build.locator\\1.7.8\\microsoft.build.locator.1.7.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.codeanalysis.analyzers\\3.3.4\\microsoft.codeanalysis.analyzers.3.3.4.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.codeanalysis.common\\4.8.0\\microsoft.codeanalysis.common.4.8.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.codeanalysis.csharp\\4.8.0\\microsoft.codeanalysis.csharp.4.8.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.codeanalysis.csharp.workspaces\\4.8.0\\microsoft.codeanalysis.csharp.workspaces.4.8.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.codeanalysis.workspaces.common\\4.8.0\\microsoft.codeanalysis.workspaces.common.4.8.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.codeanalysis.workspaces.msbuild\\4.8.0\\microsoft.codeanalysis.workspaces.msbuild.4.8.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.csharp\\4.7.0\\microsoft.csharp.4.7.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.data.sqlclient\\5.1.6\\microsoft.data.sqlclient.5.1.6.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.data.sqlclient.sni.runtime\\5.1.1\\microsoft.data.sqlclient.sni.runtime.5.1.1.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.entityframeworkcore\\9.0.9\\microsoft.entityframeworkcore.9.0.9.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\9.0.9\\microsoft.entityframeworkcore.abstractions.9.0.9.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\9.0.9\\microsoft.entityframeworkcore.analyzers.9.0.9.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.entityframeworkcore.design\\9.0.9\\microsoft.entityframeworkcore.design.9.0.9.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\9.0.9\\microsoft.entityframeworkcore.relational.9.0.9.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.entityframeworkcore.sqlserver\\9.0.9\\microsoft.entityframeworkcore.sqlserver.9.0.9.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.entityframeworkcore.tools\\9.0.9\\microsoft.entityframeworkcore.tools.9.0.9.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\9.0.9\\microsoft.extensions.caching.abstractions.9.0.9.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.caching.memory\\9.0.9\\microsoft.extensions.caching.memory.9.0.9.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\9.0.9\\microsoft.extensions.configuration.abstractions.9.0.9.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\9.0.9\\microsoft.extensions.dependencyinjection.9.0.9.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\9.0.9\\microsoft.extensions.dependencyinjection.abstractions.9.0.9.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.dependencymodel\\9.0.9\\microsoft.extensions.dependencymodel.9.0.9.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.identity.core\\9.0.8\\microsoft.extensions.identity.core.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.identity.stores\\9.0.8\\microsoft.extensions.identity.stores.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.localization\\9.0.1\\microsoft.extensions.localization.9.0.1.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.localization.abstractions\\9.0.1\\microsoft.extensions.localization.abstractions.9.0.1.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.logging\\9.0.9\\microsoft.extensions.logging.9.0.9.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\9.0.9\\microsoft.extensions.logging.abstractions.9.0.9.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.options\\9.0.9\\microsoft.extensions.options.9.0.9.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.primitives\\9.0.9\\microsoft.extensions.primitives.9.0.9.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.identity.client\\4.61.3\\microsoft.identity.client.4.61.3.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.identity.client.extensions.msal\\4.61.3\\microsoft.identity.client.extensions.msal.4.61.3.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.identitymodel.abstractions\\8.14.0\\microsoft.identitymodel.abstractions.8.14.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\6.35.0\\microsoft.identitymodel.jsonwebtokens.6.35.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.identitymodel.logging\\8.14.0\\microsoft.identitymodel.logging.8.14.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.identitymodel.protocols\\6.35.0\\microsoft.identitymodel.protocols.6.35.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.identitymodel.protocols.openidconnect\\6.35.0\\microsoft.identitymodel.protocols.openidconnect.6.35.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.identitymodel.tokens\\8.14.0\\microsoft.identitymodel.tokens.8.14.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.jsinterop\\9.0.1\\microsoft.jsinterop.9.0.1.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.netcore.platforms\\1.1.0\\microsoft.netcore.platforms.1.1.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.sqlserver.server\\1.0.0\\microsoft.sqlserver.server.1.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.visualstudio.azure.containers.tools.targets\\1.22.1\\microsoft.visualstudio.azure.containers.tools.targets.1.22.1.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.win32.registry\\4.7.0\\microsoft.win32.registry.4.7.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.win32.systemevents\\6.0.0\\microsoft.win32.systemevents.6.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\mono.texttemplating\\3.0.0\\mono.texttemplating.3.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\mudblazor.8.13.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\npgsql\\9.0.3\\npgsql.9.0.3.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\npgsql.dependencyinjection\\9.0.3\\npgsql.dependencyinjection.9.0.3.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\npgsql.entityframeworkcore.postgresql\\9.0.4\\npgsql.entityframeworkcore.postgresql.9.0.4.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\runtime.native.system.data.sqlclient.sni\\4.7.0\\runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\runtime.win-arm64.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\runtime.win-x64.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\runtime.win-x86.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.clientmodel\\1.0.0\\system.clientmodel.1.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.codedom\\6.0.0\\system.codedom.6.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.collections.immutable\\7.0.0\\system.collections.immutable.7.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.componentmodel.annotations\\5.0.0\\system.componentmodel.annotations.5.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.composition\\7.0.0\\system.composition.7.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.composition.attributedmodel\\7.0.0\\system.composition.attributedmodel.7.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.composition.convention\\7.0.0\\system.composition.convention.7.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.composition.hosting\\7.0.0\\system.composition.hosting.7.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.composition.runtime\\7.0.0\\system.composition.runtime.7.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.composition.typedparts\\7.0.0\\system.composition.typedparts.7.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.configuration.configurationmanager\\6.0.1\\system.configuration.configurationmanager.6.0.1.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.data.sqlclient\\4.8.6\\system.data.sqlclient.4.8.6.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.diagnostics.diagnosticsource\\6.0.1\\system.diagnostics.diagnosticsource.6.0.1.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.drawing.common\\6.0.0\\system.drawing.common.6.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.formats.asn1\\9.0.9\\system.formats.asn1.9.0.9.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.identitymodel.tokens.jwt\\6.35.0\\system.identitymodel.tokens.jwt.6.35.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.io.pipelines\\7.0.0\\system.io.pipelines.7.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.memory\\4.5.4\\system.memory.4.5.4.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.memory.data\\1.0.2\\system.memory.data.1.0.2.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.numerics.vectors\\4.5.0\\system.numerics.vectors.4.5.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.reflection.metadata\\7.0.0\\system.reflection.metadata.7.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.runtime.caching\\6.0.0\\system.runtime.caching.6.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.security.accesscontrol\\6.0.0\\system.security.accesscontrol.6.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.security.cryptography.cng\\5.0.0\\system.security.cryptography.cng.5.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.security.cryptography.protecteddata\\6.0.0\\system.security.cryptography.protecteddata.6.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.security.permissions\\6.0.0\\system.security.permissions.6.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.security.principal.windows\\5.0.0\\system.security.principal.windows.5.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.text.encoding.codepages\\6.0.0\\system.text.encoding.codepages.6.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.text.encodings.web\\6.0.0\\system.text.encodings.web.6.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.text.json\\9.0.9\\system.text.json.9.0.9.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.threading.channels\\7.0.0\\system.threading.channels.7.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.4\\system.threading.tasks.extensions.4.5.4.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.windows.extensions\\6.0.0\\system.windows.extensions.6.0.0.nupkg.sha512" ], "logs": [] } \ No newline at end of file diff --git a/OpenArchival.Blazor/wwwroot/js/downloadHelper.js b/OpenArchival.Blazor/wwwroot/js/downloadHelper.js new file mode 100644 index 0000000..33d417c --- /dev/null +++ b/OpenArchival.Blazor/wwwroot/js/downloadHelper.js @@ -0,0 +1,12 @@ +function downloadFileFromBytes(fileName, mimeType, bytesBase64) { + const link = document.createElement('a'); + link.href = `data:${mimeType};base64,${bytesBase64}`; + link.download = fileName; + + // This is required for Firefox + document.body.appendChild(link); + + link.click(); + + document.body.removeChild(link); +} \ No newline at end of file diff --git a/OpenArchival.Blazor/wwwroot/js/imageSizeGetter.js b/OpenArchival.Blazor/wwwroot/js/imageSizeGetter.js new file mode 100644 index 0000000..11e9616 --- /dev/null +++ b/OpenArchival.Blazor/wwwroot/js/imageSizeGetter.js @@ -0,0 +1,48 @@ +function centerImageAndGetHeight(containerElement) { + const imageElement = containerElement.querySelector('img'); + + return new Promise((resolve, reject) => { + if (!imageElement) { + return reject("Image element not found."); + } + + const successHandler = () => { + // Find the carousel's main element + const carouselViewport = imageElement.closest('.mud-carousel'); + if (!carouselViewport) { + // Failsafe if not in a carousel, just return height + resolve(imageElement.clientHeight); + return; + } + + // Get the displayed widths + const parentWidth = carouselViewport.clientWidth; + const imageWidth = imageElement.clientWidth; + + // Calculate the padding needed to center the image + const paddingLeft = Math.max(0, (parentWidth - imageWidth) / 2); + + // Apply the padding directly to the image + imageElement.style.paddingLeft = `${paddingLeft}px`; + + // Resolve with the measured height for the parent component + resolve(imageElement.clientHeight); + + removeListeners(); + }; + + const errorHandler = () => reject("Could not load image."); + const removeListeners = () => { + imageElement.removeEventListener("load", successHandler); + imageElement.removeEventListener("error", errorHandler); + }; + + // If the image is already loaded (from cache), trigger the handler manually + if (imageElement.complete && imageElement.naturalHeight > 0) { + successHandler(); + } else { + imageElement.addEventListener("load", successHandler); + imageElement.addEventListener("error", errorHandler); + } + }); +} \ No newline at end of file diff --git a/OpenArchival.DataAccess/ApplicationDbContext.cs b/OpenArchival.DataAccess/ApplicationDbContext.cs index 784fc52..eada474 100644 --- a/OpenArchival.DataAccess/ApplicationDbContext.cs +++ b/OpenArchival.DataAccess/ApplicationDbContext.cs @@ -57,6 +57,11 @@ public class ApplicationDbContext(DbContextOptions options .HasForeignKey(entry => entry.ArtifactGroupingId) .OnDelete(DeleteBehavior.Cascade); + modelBuilder.Entity() + .HasMany(entry => entry.Files) + .WithOne(file => file.ParentArtifactEntry) + .OnDelete(DeleteBehavior.Cascade); + modelBuilder.Entity() .Navigation(g => g.IdentifierFields) .UsePropertyAccessMode(PropertyAccessMode.Field); diff --git a/OpenArchival.DataAccess/Migrations/20250909181057_updated.Designer.cs b/OpenArchival.DataAccess/Migrations/20250909181057_updated.Designer.cs new file mode 100644 index 0000000..0a6af1b --- /dev/null +++ b/OpenArchival.DataAccess/Migrations/20250909181057_updated.Designer.cs @@ -0,0 +1,725 @@ +// +using System; +using System.Collections.Generic; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; +using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata; +using OpenArchival.DataAccess; + +#nullable disable + +namespace OpenArchival.DataAccess.Migrations +{ + [DbContext(typeof(ApplicationDbContext))] + [Migration("20250909181057_updated")] + partial class updated + { + /// + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasAnnotation("ProductVersion", "9.0.8") + .HasAnnotation("Relational:MaxIdentifierLength", 63); + + NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder); + + modelBuilder.Entity("ArtifactDefectArtifactEntry", b => + { + b.Property("ArtifactEntriesId") + .HasColumnType("integer"); + + b.Property("DefectsId") + .HasColumnType("integer"); + + b.HasKey("ArtifactEntriesId", "DefectsId"); + + b.HasIndex("DefectsId"); + + b.ToTable("ArtifactDefectArtifactEntry"); + }); + + modelBuilder.Entity("ArtifactEntryArtifactEntry", b => + { + b.Property("RelatedById") + .HasColumnType("integer"); + + b.Property("RelatedToId") + .HasColumnType("integer"); + + b.HasKey("RelatedById", "RelatedToId"); + + b.HasIndex("RelatedToId"); + + b.ToTable("ArtifactRelationships", (string)null); + }); + + modelBuilder.Entity("ArtifactEntryArtifactEntryTag", b => + { + b.Property("ArtifactEntriesId") + .HasColumnType("integer"); + + b.Property("TagsId") + .HasColumnType("integer"); + + b.HasKey("ArtifactEntriesId", "TagsId"); + + b.HasIndex("TagsId"); + + b.ToTable("ArtifactEntryArtifactEntryTag"); + }); + + modelBuilder.Entity("ArtifactEntryListedName", b => + { + b.Property("ArtifactEntriesId") + .HasColumnType("integer"); + + b.Property("ListedNamesId") + .HasColumnType("integer"); + + b.HasKey("ArtifactEntriesId", "ListedNamesId"); + + b.HasIndex("ListedNamesId"); + + b.ToTable("ArtifactEntryListedName"); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRole", b => + { + b.Property("Id") + .HasColumnType("text"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasColumnType("text"); + + b.Property("Name") + .HasMaxLength(256) + .HasColumnType("character varying(256)"); + + b.Property("NormalizedName") + .HasMaxLength(256) + .HasColumnType("character varying(256)"); + + b.HasKey("Id"); + + b.HasIndex("NormalizedName") + .IsUnique() + .HasDatabaseName("RoleNameIndex"); + + b.ToTable("AspNetRoles", (string)null); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRoleClaim", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("ClaimType") + .HasColumnType("text"); + + b.Property("ClaimValue") + .HasColumnType("text"); + + b.Property("RoleId") + .IsRequired() + .HasColumnType("text"); + + b.HasKey("Id"); + + b.HasIndex("RoleId"); + + b.ToTable("AspNetRoleClaims", (string)null); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserClaim", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("ClaimType") + .HasColumnType("text"); + + b.Property("ClaimValue") + .HasColumnType("text"); + + b.Property("UserId") + .IsRequired() + .HasColumnType("text"); + + b.HasKey("Id"); + + b.HasIndex("UserId"); + + b.ToTable("AspNetUserClaims", (string)null); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserLogin", b => + { + b.Property("LoginProvider") + .HasColumnType("text"); + + b.Property("ProviderKey") + .HasColumnType("text"); + + b.Property("ProviderDisplayName") + .HasColumnType("text"); + + b.Property("UserId") + .IsRequired() + .HasColumnType("text"); + + b.HasKey("LoginProvider", "ProviderKey"); + + b.HasIndex("UserId"); + + b.ToTable("AspNetUserLogins", (string)null); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserRole", b => + { + b.Property("UserId") + .HasColumnType("text"); + + b.Property("RoleId") + .HasColumnType("text"); + + b.HasKey("UserId", "RoleId"); + + b.HasIndex("RoleId"); + + b.ToTable("AspNetUserRoles", (string)null); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserToken", b => + { + b.Property("UserId") + .HasColumnType("text"); + + b.Property("LoginProvider") + .HasColumnType("text"); + + b.Property("Name") + .HasColumnType("text"); + + b.Property("Value") + .HasColumnType("text"); + + b.HasKey("UserId", "LoginProvider", "Name"); + + b.ToTable("AspNetUserTokens", (string)null); + }); + + modelBuilder.Entity("OpenArchival.DataAccess.ApplicationUser", b => + { + b.Property("Id") + .HasColumnType("text"); + + b.Property("AccessFailedCount") + .HasColumnType("integer"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasColumnType("text"); + + b.Property("Email") + .HasMaxLength(256) + .HasColumnType("character varying(256)"); + + b.Property("EmailConfirmed") + .HasColumnType("boolean"); + + b.Property("LockoutEnabled") + .HasColumnType("boolean"); + + b.Property("LockoutEnd") + .HasColumnType("timestamp with time zone"); + + b.Property("NormalizedEmail") + .HasMaxLength(256) + .HasColumnType("character varying(256)"); + + b.Property("NormalizedUserName") + .HasMaxLength(256) + .HasColumnType("character varying(256)"); + + b.Property("PasswordHash") + .HasColumnType("text"); + + b.Property("PermissionLevel") + .IsRequired() + .HasColumnType("text"); + + b.Property("PhoneNumber") + .HasColumnType("text"); + + b.Property("PhoneNumberConfirmed") + .HasColumnType("boolean"); + + b.Property("SecurityStamp") + .HasColumnType("text"); + + b.Property("TwoFactorEnabled") + .HasColumnType("boolean"); + + b.Property("UserName") + .HasMaxLength(256) + .HasColumnType("character varying(256)"); + + b.HasKey("Id"); + + b.HasIndex("NormalizedEmail") + .HasDatabaseName("EmailIndex"); + + b.HasIndex("NormalizedUserName") + .IsUnique() + .HasDatabaseName("UserNameIndex"); + + b.ToTable("AspNetUsers", (string)null); + }); + + modelBuilder.Entity("OpenArchival.DataAccess.ArchiveCategory", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Description") + .HasColumnType("text"); + + b.PrimitiveCollection>("FieldDescriptions") + .IsRequired() + .HasColumnType("text[]"); + + b.PrimitiveCollection>("FieldNames") + .IsRequired() + .HasColumnType("text[]"); + + b.Property("FieldSeparator") + .IsRequired() + .HasColumnType("text"); + + b.Property("Name") + .IsRequired() + .HasColumnType("text"); + + b.HasKey("Id"); + + b.ToTable("ArchiveCategories"); + }); + + modelBuilder.Entity("OpenArchival.DataAccess.ArtifactDefect", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Description") + .IsRequired() + .HasColumnType("text"); + + b.HasKey("Id"); + + b.ToTable("ArtifactDefects"); + }); + + modelBuilder.Entity("OpenArchival.DataAccess.ArtifactEntry", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("ArtifactGroupingId") + .HasColumnType("integer"); + + b.Property("ArtifactNumber") + .HasColumnType("text"); + + b.PrimitiveCollection>("AssociatedDates") + .HasColumnType("timestamp with time zone[]"); + + b.Property("Description") + .HasColumnType("text"); + + b.Property("FileTextContent") + .HasColumnType("text"); + + b.Property("IsPubliclyVisible") + .HasColumnType("boolean"); + + b.PrimitiveCollection>("Links") + .HasColumnType("text[]"); + + b.Property("StorageLocationId") + .HasColumnType("integer"); + + b.Property("Title") + .IsRequired() + .HasColumnType("text"); + + b.Property("TypeId") + .HasColumnType("integer"); + + b.HasKey("Id"); + + b.HasIndex("ArtifactGroupingId"); + + b.HasIndex("StorageLocationId"); + + b.HasIndex("TypeId"); + + b.ToTable("ArtifactEntries"); + }); + + modelBuilder.Entity("OpenArchival.DataAccess.ArtifactEntryTag", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Name") + .IsRequired() + .HasColumnType("text"); + + b.HasKey("Id"); + + b.ToTable("ArtifactEntryTags"); + }); + + modelBuilder.Entity("OpenArchival.DataAccess.ArtifactGrouping", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("CategoryId") + .HasColumnType("integer"); + + b.Property("Description") + .HasColumnType("text"); + + b.Property("IsPublicallyVisible") + .HasColumnType("boolean"); + + b.Property("Title") + .IsRequired() + .HasColumnType("text"); + + b.Property("TypeId") + .HasColumnType("integer"); + + b.HasKey("Id"); + + b.HasIndex("CategoryId"); + + b.HasIndex("TypeId"); + + b.ToTable("ArtifactGroupings"); + }); + + modelBuilder.Entity("OpenArchival.DataAccess.ArtifactStorageLocation", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Location") + .IsRequired() + .HasColumnType("text"); + + b.HasKey("Id"); + + b.ToTable("ArtifactStorageLocations"); + }); + + modelBuilder.Entity("OpenArchival.DataAccess.ArtifactType", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Name") + .IsRequired() + .HasColumnType("text"); + + b.HasKey("Id"); + + b.ToTable("ArtifactTypes"); + }); + + modelBuilder.Entity("OpenArchival.DataAccess.FilePathListing", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("OriginalName") + .IsRequired() + .HasColumnType("text"); + + b.Property("ParentArtifactEntryId") + .HasColumnType("integer"); + + b.Property("Path") + .IsRequired() + .HasColumnType("text"); + + b.HasKey("Id"); + + b.HasIndex("ParentArtifactEntryId"); + + b.ToTable("ArtifactFilePaths"); + }); + + modelBuilder.Entity("OpenArchival.DataAccess.ListedName", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Value") + .IsRequired() + .HasColumnType("text"); + + b.HasKey("Id"); + + b.ToTable("ArtifactAssociatedNames"); + }); + + modelBuilder.Entity("ArtifactDefectArtifactEntry", b => + { + b.HasOne("OpenArchival.DataAccess.ArtifactEntry", null) + .WithMany() + .HasForeignKey("ArtifactEntriesId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("OpenArchival.DataAccess.ArtifactDefect", null) + .WithMany() + .HasForeignKey("DefectsId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("ArtifactEntryArtifactEntry", b => + { + b.HasOne("OpenArchival.DataAccess.ArtifactEntry", null) + .WithMany() + .HasForeignKey("RelatedById") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("OpenArchival.DataAccess.ArtifactEntry", null) + .WithMany() + .HasForeignKey("RelatedToId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("ArtifactEntryArtifactEntryTag", b => + { + b.HasOne("OpenArchival.DataAccess.ArtifactEntry", null) + .WithMany() + .HasForeignKey("ArtifactEntriesId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("OpenArchival.DataAccess.ArtifactEntryTag", null) + .WithMany() + .HasForeignKey("TagsId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("ArtifactEntryListedName", b => + { + b.HasOne("OpenArchival.DataAccess.ArtifactEntry", null) + .WithMany() + .HasForeignKey("ArtifactEntriesId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("OpenArchival.DataAccess.ListedName", null) + .WithMany() + .HasForeignKey("ListedNamesId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRoleClaim", b => + { + b.HasOne("Microsoft.AspNetCore.Identity.IdentityRole", null) + .WithMany() + .HasForeignKey("RoleId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserClaim", b => + { + b.HasOne("OpenArchival.DataAccess.ApplicationUser", null) + .WithMany() + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserLogin", b => + { + b.HasOne("OpenArchival.DataAccess.ApplicationUser", null) + .WithMany() + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserRole", b => + { + b.HasOne("Microsoft.AspNetCore.Identity.IdentityRole", null) + .WithMany() + .HasForeignKey("RoleId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("OpenArchival.DataAccess.ApplicationUser", null) + .WithMany() + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserToken", b => + { + b.HasOne("OpenArchival.DataAccess.ApplicationUser", null) + .WithMany() + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("OpenArchival.DataAccess.ArtifactEntry", b => + { + b.HasOne("OpenArchival.DataAccess.ArtifactGrouping", "ArtifactGrouping") + .WithMany("ChildArtifactEntries") + .HasForeignKey("ArtifactGroupingId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("OpenArchival.DataAccess.ArtifactStorageLocation", "StorageLocation") + .WithMany("ArtifactEntries") + .HasForeignKey("StorageLocationId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("OpenArchival.DataAccess.ArtifactType", "Type") + .WithMany("ArtifactEntries") + .HasForeignKey("TypeId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("ArtifactGrouping"); + + b.Navigation("StorageLocation"); + + b.Navigation("Type"); + }); + + modelBuilder.Entity("OpenArchival.DataAccess.ArtifactGrouping", b => + { + b.HasOne("OpenArchival.DataAccess.ArchiveCategory", "Category") + .WithMany() + .HasForeignKey("CategoryId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("OpenArchival.DataAccess.ArtifactType", "Type") + .WithMany() + .HasForeignKey("TypeId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.OwnsOne("OpenArchival.DataAccess.IdentifierFields", "IdentifierFields", b1 => + { + b1.Property("ArtifactGroupingId") + .HasColumnType("integer"); + + b1.PrimitiveCollection>("Values") + .IsRequired() + .HasColumnType("text[]"); + + b1.HasKey("ArtifactGroupingId"); + + b1.ToTable("ArtifactGroupings"); + + b1.ToJson("IdentifierFields"); + + b1.WithOwner() + .HasForeignKey("ArtifactGroupingId"); + }); + + b.Navigation("Category"); + + b.Navigation("IdentifierFields") + .IsRequired(); + + b.Navigation("Type"); + }); + + modelBuilder.Entity("OpenArchival.DataAccess.FilePathListing", b => + { + b.HasOne("OpenArchival.DataAccess.ArtifactEntry", "ParentArtifactEntry") + .WithMany("Files") + .HasForeignKey("ParentArtifactEntryId"); + + b.Navigation("ParentArtifactEntry"); + }); + + modelBuilder.Entity("OpenArchival.DataAccess.ArtifactEntry", b => + { + b.Navigation("Files"); + }); + + modelBuilder.Entity("OpenArchival.DataAccess.ArtifactGrouping", b => + { + b.Navigation("ChildArtifactEntries"); + }); + + modelBuilder.Entity("OpenArchival.DataAccess.ArtifactStorageLocation", b => + { + b.Navigation("ArtifactEntries"); + }); + + modelBuilder.Entity("OpenArchival.DataAccess.ArtifactType", b => + { + b.Navigation("ArtifactEntries"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/OpenArchival.DataAccess/Migrations/20250909181057_updated.cs b/OpenArchival.DataAccess/Migrations/20250909181057_updated.cs new file mode 100644 index 0000000..cd3bbe3 --- /dev/null +++ b/OpenArchival.DataAccess/Migrations/20250909181057_updated.cs @@ -0,0 +1,22 @@ +using Microsoft.EntityFrameworkCore.Migrations; + +#nullable disable + +namespace OpenArchival.DataAccess.Migrations +{ + /// + public partial class updated : Migration + { + /// + protected override void Up(MigrationBuilder migrationBuilder) + { + + } + + /// + protected override void Down(MigrationBuilder migrationBuilder) + { + + } + } +} diff --git a/OpenArchival.DataAccess/Migrations/20250909183426_AddedCascadeToFilePaths.Designer.cs b/OpenArchival.DataAccess/Migrations/20250909183426_AddedCascadeToFilePaths.Designer.cs new file mode 100644 index 0000000..41fe035 --- /dev/null +++ b/OpenArchival.DataAccess/Migrations/20250909183426_AddedCascadeToFilePaths.Designer.cs @@ -0,0 +1,726 @@ +// +using System; +using System.Collections.Generic; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; +using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata; +using OpenArchival.DataAccess; + +#nullable disable + +namespace OpenArchival.DataAccess.Migrations +{ + [DbContext(typeof(ApplicationDbContext))] + [Migration("20250909183426_AddedCascadeToFilePaths")] + partial class AddedCascadeToFilePaths + { + /// + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasAnnotation("ProductVersion", "9.0.8") + .HasAnnotation("Relational:MaxIdentifierLength", 63); + + NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder); + + modelBuilder.Entity("ArtifactDefectArtifactEntry", b => + { + b.Property("ArtifactEntriesId") + .HasColumnType("integer"); + + b.Property("DefectsId") + .HasColumnType("integer"); + + b.HasKey("ArtifactEntriesId", "DefectsId"); + + b.HasIndex("DefectsId"); + + b.ToTable("ArtifactDefectArtifactEntry"); + }); + + modelBuilder.Entity("ArtifactEntryArtifactEntry", b => + { + b.Property("RelatedById") + .HasColumnType("integer"); + + b.Property("RelatedToId") + .HasColumnType("integer"); + + b.HasKey("RelatedById", "RelatedToId"); + + b.HasIndex("RelatedToId"); + + b.ToTable("ArtifactRelationships", (string)null); + }); + + modelBuilder.Entity("ArtifactEntryArtifactEntryTag", b => + { + b.Property("ArtifactEntriesId") + .HasColumnType("integer"); + + b.Property("TagsId") + .HasColumnType("integer"); + + b.HasKey("ArtifactEntriesId", "TagsId"); + + b.HasIndex("TagsId"); + + b.ToTable("ArtifactEntryArtifactEntryTag"); + }); + + modelBuilder.Entity("ArtifactEntryListedName", b => + { + b.Property("ArtifactEntriesId") + .HasColumnType("integer"); + + b.Property("ListedNamesId") + .HasColumnType("integer"); + + b.HasKey("ArtifactEntriesId", "ListedNamesId"); + + b.HasIndex("ListedNamesId"); + + b.ToTable("ArtifactEntryListedName"); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRole", b => + { + b.Property("Id") + .HasColumnType("text"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasColumnType("text"); + + b.Property("Name") + .HasMaxLength(256) + .HasColumnType("character varying(256)"); + + b.Property("NormalizedName") + .HasMaxLength(256) + .HasColumnType("character varying(256)"); + + b.HasKey("Id"); + + b.HasIndex("NormalizedName") + .IsUnique() + .HasDatabaseName("RoleNameIndex"); + + b.ToTable("AspNetRoles", (string)null); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRoleClaim", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("ClaimType") + .HasColumnType("text"); + + b.Property("ClaimValue") + .HasColumnType("text"); + + b.Property("RoleId") + .IsRequired() + .HasColumnType("text"); + + b.HasKey("Id"); + + b.HasIndex("RoleId"); + + b.ToTable("AspNetRoleClaims", (string)null); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserClaim", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("ClaimType") + .HasColumnType("text"); + + b.Property("ClaimValue") + .HasColumnType("text"); + + b.Property("UserId") + .IsRequired() + .HasColumnType("text"); + + b.HasKey("Id"); + + b.HasIndex("UserId"); + + b.ToTable("AspNetUserClaims", (string)null); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserLogin", b => + { + b.Property("LoginProvider") + .HasColumnType("text"); + + b.Property("ProviderKey") + .HasColumnType("text"); + + b.Property("ProviderDisplayName") + .HasColumnType("text"); + + b.Property("UserId") + .IsRequired() + .HasColumnType("text"); + + b.HasKey("LoginProvider", "ProviderKey"); + + b.HasIndex("UserId"); + + b.ToTable("AspNetUserLogins", (string)null); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserRole", b => + { + b.Property("UserId") + .HasColumnType("text"); + + b.Property("RoleId") + .HasColumnType("text"); + + b.HasKey("UserId", "RoleId"); + + b.HasIndex("RoleId"); + + b.ToTable("AspNetUserRoles", (string)null); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserToken", b => + { + b.Property("UserId") + .HasColumnType("text"); + + b.Property("LoginProvider") + .HasColumnType("text"); + + b.Property("Name") + .HasColumnType("text"); + + b.Property("Value") + .HasColumnType("text"); + + b.HasKey("UserId", "LoginProvider", "Name"); + + b.ToTable("AspNetUserTokens", (string)null); + }); + + modelBuilder.Entity("OpenArchival.DataAccess.ApplicationUser", b => + { + b.Property("Id") + .HasColumnType("text"); + + b.Property("AccessFailedCount") + .HasColumnType("integer"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasColumnType("text"); + + b.Property("Email") + .HasMaxLength(256) + .HasColumnType("character varying(256)"); + + b.Property("EmailConfirmed") + .HasColumnType("boolean"); + + b.Property("LockoutEnabled") + .HasColumnType("boolean"); + + b.Property("LockoutEnd") + .HasColumnType("timestamp with time zone"); + + b.Property("NormalizedEmail") + .HasMaxLength(256) + .HasColumnType("character varying(256)"); + + b.Property("NormalizedUserName") + .HasMaxLength(256) + .HasColumnType("character varying(256)"); + + b.Property("PasswordHash") + .HasColumnType("text"); + + b.Property("PermissionLevel") + .IsRequired() + .HasColumnType("text"); + + b.Property("PhoneNumber") + .HasColumnType("text"); + + b.Property("PhoneNumberConfirmed") + .HasColumnType("boolean"); + + b.Property("SecurityStamp") + .HasColumnType("text"); + + b.Property("TwoFactorEnabled") + .HasColumnType("boolean"); + + b.Property("UserName") + .HasMaxLength(256) + .HasColumnType("character varying(256)"); + + b.HasKey("Id"); + + b.HasIndex("NormalizedEmail") + .HasDatabaseName("EmailIndex"); + + b.HasIndex("NormalizedUserName") + .IsUnique() + .HasDatabaseName("UserNameIndex"); + + b.ToTable("AspNetUsers", (string)null); + }); + + modelBuilder.Entity("OpenArchival.DataAccess.ArchiveCategory", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Description") + .HasColumnType("text"); + + b.PrimitiveCollection>("FieldDescriptions") + .IsRequired() + .HasColumnType("text[]"); + + b.PrimitiveCollection>("FieldNames") + .IsRequired() + .HasColumnType("text[]"); + + b.Property("FieldSeparator") + .IsRequired() + .HasColumnType("text"); + + b.Property("Name") + .IsRequired() + .HasColumnType("text"); + + b.HasKey("Id"); + + b.ToTable("ArchiveCategories"); + }); + + modelBuilder.Entity("OpenArchival.DataAccess.ArtifactDefect", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Description") + .IsRequired() + .HasColumnType("text"); + + b.HasKey("Id"); + + b.ToTable("ArtifactDefects"); + }); + + modelBuilder.Entity("OpenArchival.DataAccess.ArtifactEntry", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("ArtifactGroupingId") + .HasColumnType("integer"); + + b.Property("ArtifactNumber") + .HasColumnType("text"); + + b.PrimitiveCollection>("AssociatedDates") + .HasColumnType("timestamp with time zone[]"); + + b.Property("Description") + .HasColumnType("text"); + + b.Property("FileTextContent") + .HasColumnType("text"); + + b.Property("IsPubliclyVisible") + .HasColumnType("boolean"); + + b.PrimitiveCollection>("Links") + .HasColumnType("text[]"); + + b.Property("StorageLocationId") + .HasColumnType("integer"); + + b.Property("Title") + .IsRequired() + .HasColumnType("text"); + + b.Property("TypeId") + .HasColumnType("integer"); + + b.HasKey("Id"); + + b.HasIndex("ArtifactGroupingId"); + + b.HasIndex("StorageLocationId"); + + b.HasIndex("TypeId"); + + b.ToTable("ArtifactEntries"); + }); + + modelBuilder.Entity("OpenArchival.DataAccess.ArtifactEntryTag", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Name") + .IsRequired() + .HasColumnType("text"); + + b.HasKey("Id"); + + b.ToTable("ArtifactEntryTags"); + }); + + modelBuilder.Entity("OpenArchival.DataAccess.ArtifactGrouping", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("CategoryId") + .HasColumnType("integer"); + + b.Property("Description") + .HasColumnType("text"); + + b.Property("IsPublicallyVisible") + .HasColumnType("boolean"); + + b.Property("Title") + .IsRequired() + .HasColumnType("text"); + + b.Property("TypeId") + .HasColumnType("integer"); + + b.HasKey("Id"); + + b.HasIndex("CategoryId"); + + b.HasIndex("TypeId"); + + b.ToTable("ArtifactGroupings"); + }); + + modelBuilder.Entity("OpenArchival.DataAccess.ArtifactStorageLocation", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Location") + .IsRequired() + .HasColumnType("text"); + + b.HasKey("Id"); + + b.ToTable("ArtifactStorageLocations"); + }); + + modelBuilder.Entity("OpenArchival.DataAccess.ArtifactType", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Name") + .IsRequired() + .HasColumnType("text"); + + b.HasKey("Id"); + + b.ToTable("ArtifactTypes"); + }); + + modelBuilder.Entity("OpenArchival.DataAccess.FilePathListing", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("OriginalName") + .IsRequired() + .HasColumnType("text"); + + b.Property("ParentArtifactEntryId") + .HasColumnType("integer"); + + b.Property("Path") + .IsRequired() + .HasColumnType("text"); + + b.HasKey("Id"); + + b.HasIndex("ParentArtifactEntryId"); + + b.ToTable("ArtifactFilePaths"); + }); + + modelBuilder.Entity("OpenArchival.DataAccess.ListedName", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Value") + .IsRequired() + .HasColumnType("text"); + + b.HasKey("Id"); + + b.ToTable("ArtifactAssociatedNames"); + }); + + modelBuilder.Entity("ArtifactDefectArtifactEntry", b => + { + b.HasOne("OpenArchival.DataAccess.ArtifactEntry", null) + .WithMany() + .HasForeignKey("ArtifactEntriesId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("OpenArchival.DataAccess.ArtifactDefect", null) + .WithMany() + .HasForeignKey("DefectsId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("ArtifactEntryArtifactEntry", b => + { + b.HasOne("OpenArchival.DataAccess.ArtifactEntry", null) + .WithMany() + .HasForeignKey("RelatedById") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("OpenArchival.DataAccess.ArtifactEntry", null) + .WithMany() + .HasForeignKey("RelatedToId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("ArtifactEntryArtifactEntryTag", b => + { + b.HasOne("OpenArchival.DataAccess.ArtifactEntry", null) + .WithMany() + .HasForeignKey("ArtifactEntriesId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("OpenArchival.DataAccess.ArtifactEntryTag", null) + .WithMany() + .HasForeignKey("TagsId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("ArtifactEntryListedName", b => + { + b.HasOne("OpenArchival.DataAccess.ArtifactEntry", null) + .WithMany() + .HasForeignKey("ArtifactEntriesId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("OpenArchival.DataAccess.ListedName", null) + .WithMany() + .HasForeignKey("ListedNamesId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRoleClaim", b => + { + b.HasOne("Microsoft.AspNetCore.Identity.IdentityRole", null) + .WithMany() + .HasForeignKey("RoleId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserClaim", b => + { + b.HasOne("OpenArchival.DataAccess.ApplicationUser", null) + .WithMany() + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserLogin", b => + { + b.HasOne("OpenArchival.DataAccess.ApplicationUser", null) + .WithMany() + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserRole", b => + { + b.HasOne("Microsoft.AspNetCore.Identity.IdentityRole", null) + .WithMany() + .HasForeignKey("RoleId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("OpenArchival.DataAccess.ApplicationUser", null) + .WithMany() + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserToken", b => + { + b.HasOne("OpenArchival.DataAccess.ApplicationUser", null) + .WithMany() + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("OpenArchival.DataAccess.ArtifactEntry", b => + { + b.HasOne("OpenArchival.DataAccess.ArtifactGrouping", "ArtifactGrouping") + .WithMany("ChildArtifactEntries") + .HasForeignKey("ArtifactGroupingId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("OpenArchival.DataAccess.ArtifactStorageLocation", "StorageLocation") + .WithMany("ArtifactEntries") + .HasForeignKey("StorageLocationId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("OpenArchival.DataAccess.ArtifactType", "Type") + .WithMany("ArtifactEntries") + .HasForeignKey("TypeId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("ArtifactGrouping"); + + b.Navigation("StorageLocation"); + + b.Navigation("Type"); + }); + + modelBuilder.Entity("OpenArchival.DataAccess.ArtifactGrouping", b => + { + b.HasOne("OpenArchival.DataAccess.ArchiveCategory", "Category") + .WithMany() + .HasForeignKey("CategoryId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("OpenArchival.DataAccess.ArtifactType", "Type") + .WithMany() + .HasForeignKey("TypeId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.OwnsOne("OpenArchival.DataAccess.IdentifierFields", "IdentifierFields", b1 => + { + b1.Property("ArtifactGroupingId") + .HasColumnType("integer"); + + b1.PrimitiveCollection>("Values") + .IsRequired() + .HasColumnType("text[]"); + + b1.HasKey("ArtifactGroupingId"); + + b1.ToTable("ArtifactGroupings"); + + b1.ToJson("IdentifierFields"); + + b1.WithOwner() + .HasForeignKey("ArtifactGroupingId"); + }); + + b.Navigation("Category"); + + b.Navigation("IdentifierFields") + .IsRequired(); + + b.Navigation("Type"); + }); + + modelBuilder.Entity("OpenArchival.DataAccess.FilePathListing", b => + { + b.HasOne("OpenArchival.DataAccess.ArtifactEntry", "ParentArtifactEntry") + .WithMany("Files") + .HasForeignKey("ParentArtifactEntryId") + .OnDelete(DeleteBehavior.Cascade); + + b.Navigation("ParentArtifactEntry"); + }); + + modelBuilder.Entity("OpenArchival.DataAccess.ArtifactEntry", b => + { + b.Navigation("Files"); + }); + + modelBuilder.Entity("OpenArchival.DataAccess.ArtifactGrouping", b => + { + b.Navigation("ChildArtifactEntries"); + }); + + modelBuilder.Entity("OpenArchival.DataAccess.ArtifactStorageLocation", b => + { + b.Navigation("ArtifactEntries"); + }); + + modelBuilder.Entity("OpenArchival.DataAccess.ArtifactType", b => + { + b.Navigation("ArtifactEntries"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/OpenArchival.DataAccess/Migrations/20250909183426_AddedCascadeToFilePaths.cs b/OpenArchival.DataAccess/Migrations/20250909183426_AddedCascadeToFilePaths.cs new file mode 100644 index 0000000..33bd8ae --- /dev/null +++ b/OpenArchival.DataAccess/Migrations/20250909183426_AddedCascadeToFilePaths.cs @@ -0,0 +1,41 @@ +using Microsoft.EntityFrameworkCore.Migrations; + +#nullable disable + +namespace OpenArchival.DataAccess.Migrations +{ + /// + public partial class AddedCascadeToFilePaths : Migration + { + /// + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropForeignKey( + name: "FK_ArtifactFilePaths_ArtifactEntries_ParentArtifactEntryId", + table: "ArtifactFilePaths"); + + migrationBuilder.AddForeignKey( + name: "FK_ArtifactFilePaths_ArtifactEntries_ParentArtifactEntryId", + table: "ArtifactFilePaths", + column: "ParentArtifactEntryId", + principalTable: "ArtifactEntries", + principalColumn: "Id", + onDelete: ReferentialAction.Cascade); + } + + /// + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropForeignKey( + name: "FK_ArtifactFilePaths_ArtifactEntries_ParentArtifactEntryId", + table: "ArtifactFilePaths"); + + migrationBuilder.AddForeignKey( + name: "FK_ArtifactFilePaths_ArtifactEntries_ParentArtifactEntryId", + table: "ArtifactFilePaths", + column: "ParentArtifactEntryId", + principalTable: "ArtifactEntries", + principalColumn: "Id"); + } + } +} diff --git a/OpenArchival.DataAccess/Migrations/20251007175100_AddedCSharpCalculatedProperty.Designer.cs b/OpenArchival.DataAccess/Migrations/20251007175100_AddedCSharpCalculatedProperty.Designer.cs new file mode 100644 index 0000000..ffdddcd --- /dev/null +++ b/OpenArchival.DataAccess/Migrations/20251007175100_AddedCSharpCalculatedProperty.Designer.cs @@ -0,0 +1,737 @@ +// +using System; +using System.Collections.Generic; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; +using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata; +using OpenArchival.DataAccess; + +#nullable disable + +namespace OpenArchival.DataAccess.Migrations +{ + [DbContext(typeof(ApplicationDbContext))] + [Migration("20251007175100_AddedCSharpCalculatedProperty")] + partial class AddedCSharpCalculatedProperty + { + /// + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasAnnotation("ProductVersion", "9.0.8") + .HasAnnotation("Relational:MaxIdentifierLength", 63); + + NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder); + + modelBuilder.Entity("ArtifactDefectArtifactEntry", b => + { + b.Property("ArtifactEntriesId") + .HasColumnType("integer"); + + b.Property("DefectsId") + .HasColumnType("integer"); + + b.HasKey("ArtifactEntriesId", "DefectsId"); + + b.HasIndex("DefectsId"); + + b.ToTable("ArtifactDefectArtifactEntry"); + }); + + modelBuilder.Entity("ArtifactEntryArtifactEntry", b => + { + b.Property("RelatedById") + .HasColumnType("integer"); + + b.Property("RelatedToId") + .HasColumnType("integer"); + + b.HasKey("RelatedById", "RelatedToId"); + + b.HasIndex("RelatedToId"); + + b.ToTable("ArtifactRelationships", (string)null); + }); + + modelBuilder.Entity("ArtifactEntryArtifactEntryTag", b => + { + b.Property("ArtifactEntriesId") + .HasColumnType("integer"); + + b.Property("TagsId") + .HasColumnType("integer"); + + b.HasKey("ArtifactEntriesId", "TagsId"); + + b.HasIndex("TagsId"); + + b.ToTable("ArtifactEntryArtifactEntryTag"); + }); + + modelBuilder.Entity("ArtifactEntryListedName", b => + { + b.Property("ArtifactEntriesId") + .HasColumnType("integer"); + + b.Property("ListedNamesId") + .HasColumnType("integer"); + + b.HasKey("ArtifactEntriesId", "ListedNamesId"); + + b.HasIndex("ListedNamesId"); + + b.ToTable("ArtifactEntryListedName"); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRole", b => + { + b.Property("Id") + .HasColumnType("text"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasColumnType("text"); + + b.Property("Name") + .HasMaxLength(256) + .HasColumnType("character varying(256)"); + + b.Property("NormalizedName") + .HasMaxLength(256) + .HasColumnType("character varying(256)"); + + b.HasKey("Id"); + + b.HasIndex("NormalizedName") + .IsUnique() + .HasDatabaseName("RoleNameIndex"); + + b.ToTable("AspNetRoles", (string)null); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRoleClaim", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("ClaimType") + .HasColumnType("text"); + + b.Property("ClaimValue") + .HasColumnType("text"); + + b.Property("RoleId") + .IsRequired() + .HasColumnType("text"); + + b.HasKey("Id"); + + b.HasIndex("RoleId"); + + b.ToTable("AspNetRoleClaims", (string)null); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserClaim", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("ClaimType") + .HasColumnType("text"); + + b.Property("ClaimValue") + .HasColumnType("text"); + + b.Property("UserId") + .IsRequired() + .HasColumnType("text"); + + b.HasKey("Id"); + + b.HasIndex("UserId"); + + b.ToTable("AspNetUserClaims", (string)null); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserLogin", b => + { + b.Property("LoginProvider") + .HasColumnType("text"); + + b.Property("ProviderKey") + .HasColumnType("text"); + + b.Property("ProviderDisplayName") + .HasColumnType("text"); + + b.Property("UserId") + .IsRequired() + .HasColumnType("text"); + + b.HasKey("LoginProvider", "ProviderKey"); + + b.HasIndex("UserId"); + + b.ToTable("AspNetUserLogins", (string)null); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserRole", b => + { + b.Property("UserId") + .HasColumnType("text"); + + b.Property("RoleId") + .HasColumnType("text"); + + b.HasKey("UserId", "RoleId"); + + b.HasIndex("RoleId"); + + b.ToTable("AspNetUserRoles", (string)null); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserToken", b => + { + b.Property("UserId") + .HasColumnType("text"); + + b.Property("LoginProvider") + .HasColumnType("text"); + + b.Property("Name") + .HasColumnType("text"); + + b.Property("Value") + .HasColumnType("text"); + + b.HasKey("UserId", "LoginProvider", "Name"); + + b.ToTable("AspNetUserTokens", (string)null); + }); + + modelBuilder.Entity("OpenArchival.DataAccess.ApplicationUser", b => + { + b.Property("Id") + .HasColumnType("text"); + + b.Property("AccessFailedCount") + .HasColumnType("integer"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasColumnType("text"); + + b.Property("Email") + .HasMaxLength(256) + .HasColumnType("character varying(256)"); + + b.Property("EmailConfirmed") + .HasColumnType("boolean"); + + b.Property("LockoutEnabled") + .HasColumnType("boolean"); + + b.Property("LockoutEnd") + .HasColumnType("timestamp with time zone"); + + b.Property("NormalizedEmail") + .HasMaxLength(256) + .HasColumnType("character varying(256)"); + + b.Property("NormalizedUserName") + .HasMaxLength(256) + .HasColumnType("character varying(256)"); + + b.Property("PasswordHash") + .HasColumnType("text"); + + b.Property("PermissionLevel") + .IsRequired() + .HasColumnType("text"); + + b.Property("PhoneNumber") + .HasColumnType("text"); + + b.Property("PhoneNumberConfirmed") + .HasColumnType("boolean"); + + b.Property("SecurityStamp") + .HasColumnType("text"); + + b.Property("TwoFactorEnabled") + .HasColumnType("boolean"); + + b.Property("UserName") + .HasMaxLength(256) + .HasColumnType("character varying(256)"); + + b.HasKey("Id"); + + b.HasIndex("NormalizedEmail") + .HasDatabaseName("EmailIndex"); + + b.HasIndex("NormalizedUserName") + .IsUnique() + .HasDatabaseName("UserNameIndex"); + + b.ToTable("AspNetUsers", (string)null); + }); + + modelBuilder.Entity("OpenArchival.DataAccess.ArchiveCategory", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Description") + .HasColumnType("text"); + + b.PrimitiveCollection>("FieldDescriptions") + .IsRequired() + .HasColumnType("text[]"); + + b.PrimitiveCollection>("FieldNames") + .IsRequired() + .HasColumnType("text[]"); + + b.Property("FieldSeparator") + .IsRequired() + .HasColumnType("text"); + + b.Property("Name") + .IsRequired() + .HasColumnType("text"); + + b.HasKey("Id"); + + b.ToTable("ArchiveCategories"); + }); + + modelBuilder.Entity("OpenArchival.DataAccess.ArtifactDefect", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Description") + .IsRequired() + .HasColumnType("text"); + + b.HasKey("Id"); + + b.ToTable("ArtifactDefects"); + }); + + modelBuilder.Entity("OpenArchival.DataAccess.ArtifactEntry", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("ArtifactGroupingId") + .HasColumnType("integer"); + + b.Property("ArtifactNumber") + .HasColumnType("text"); + + b.PrimitiveCollection>("AssociatedDates") + .HasColumnType("timestamp with time zone[]"); + + b.Property("Description") + .HasColumnType("text"); + + b.Property("FileTextContent") + .HasColumnType("text"); + + b.Property("IsPubliclyVisible") + .HasColumnType("boolean"); + + b.PrimitiveCollection>("Links") + .HasColumnType("text[]"); + + b.Property("StorageLocationId") + .HasColumnType("integer"); + + b.Property("Title") + .IsRequired() + .HasColumnType("text"); + + b.Property("TypeId") + .HasColumnType("integer"); + + b.HasKey("Id"); + + b.HasIndex("ArtifactGroupingId"); + + b.HasIndex("StorageLocationId"); + + b.HasIndex("TypeId"); + + b.ToTable("ArtifactEntries"); + }); + + modelBuilder.Entity("OpenArchival.DataAccess.ArtifactEntryTag", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Name") + .IsRequired() + .HasColumnType("text"); + + b.HasKey("Id"); + + b.ToTable("ArtifactEntryTags"); + }); + + modelBuilder.Entity("OpenArchival.DataAccess.ArtifactGrouping", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("CategoryId") + .HasColumnType("integer"); + + b.Property("Description") + .HasColumnType("text"); + + b.Property("IsPublicallyVisible") + .HasColumnType("boolean"); + + b.Property("Title") + .IsRequired() + .HasColumnType("text"); + + b.Property("TypeId") + .HasColumnType("integer"); + + b.HasKey("Id"); + + b.HasIndex("CategoryId"); + + b.HasIndex("TypeId"); + + b.ToTable("ArtifactGroupings"); + }); + + modelBuilder.Entity("OpenArchival.DataAccess.ArtifactStorageLocation", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Location") + .IsRequired() + .HasColumnType("text"); + + b.HasKey("Id"); + + b.ToTable("ArtifactStorageLocations"); + }); + + modelBuilder.Entity("OpenArchival.DataAccess.ArtifactType", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Name") + .IsRequired() + .HasColumnType("text"); + + b.HasKey("Id"); + + b.ToTable("ArtifactTypes"); + }); + + modelBuilder.Entity("OpenArchival.DataAccess.FilePathListing", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("ArtifactGroupingId") + .HasColumnType("integer"); + + b.Property("OriginalName") + .IsRequired() + .HasColumnType("text"); + + b.Property("ParentArtifactEntryId") + .HasColumnType("integer"); + + b.Property("Path") + .IsRequired() + .HasColumnType("text"); + + b.HasKey("Id"); + + b.HasIndex("ArtifactGroupingId"); + + b.HasIndex("ParentArtifactEntryId"); + + b.ToTable("ArtifactFilePaths"); + }); + + modelBuilder.Entity("OpenArchival.DataAccess.ListedName", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Value") + .IsRequired() + .HasColumnType("text"); + + b.HasKey("Id"); + + b.ToTable("ArtifactAssociatedNames"); + }); + + modelBuilder.Entity("ArtifactDefectArtifactEntry", b => + { + b.HasOne("OpenArchival.DataAccess.ArtifactEntry", null) + .WithMany() + .HasForeignKey("ArtifactEntriesId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("OpenArchival.DataAccess.ArtifactDefect", null) + .WithMany() + .HasForeignKey("DefectsId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("ArtifactEntryArtifactEntry", b => + { + b.HasOne("OpenArchival.DataAccess.ArtifactEntry", null) + .WithMany() + .HasForeignKey("RelatedById") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("OpenArchival.DataAccess.ArtifactEntry", null) + .WithMany() + .HasForeignKey("RelatedToId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("ArtifactEntryArtifactEntryTag", b => + { + b.HasOne("OpenArchival.DataAccess.ArtifactEntry", null) + .WithMany() + .HasForeignKey("ArtifactEntriesId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("OpenArchival.DataAccess.ArtifactEntryTag", null) + .WithMany() + .HasForeignKey("TagsId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("ArtifactEntryListedName", b => + { + b.HasOne("OpenArchival.DataAccess.ArtifactEntry", null) + .WithMany() + .HasForeignKey("ArtifactEntriesId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("OpenArchival.DataAccess.ListedName", null) + .WithMany() + .HasForeignKey("ListedNamesId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRoleClaim", b => + { + b.HasOne("Microsoft.AspNetCore.Identity.IdentityRole", null) + .WithMany() + .HasForeignKey("RoleId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserClaim", b => + { + b.HasOne("OpenArchival.DataAccess.ApplicationUser", null) + .WithMany() + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserLogin", b => + { + b.HasOne("OpenArchival.DataAccess.ApplicationUser", null) + .WithMany() + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserRole", b => + { + b.HasOne("Microsoft.AspNetCore.Identity.IdentityRole", null) + .WithMany() + .HasForeignKey("RoleId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("OpenArchival.DataAccess.ApplicationUser", null) + .WithMany() + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserToken", b => + { + b.HasOne("OpenArchival.DataAccess.ApplicationUser", null) + .WithMany() + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("OpenArchival.DataAccess.ArtifactEntry", b => + { + b.HasOne("OpenArchival.DataAccess.ArtifactGrouping", "ArtifactGrouping") + .WithMany("ChildArtifactEntries") + .HasForeignKey("ArtifactGroupingId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("OpenArchival.DataAccess.ArtifactStorageLocation", "StorageLocation") + .WithMany("ArtifactEntries") + .HasForeignKey("StorageLocationId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("OpenArchival.DataAccess.ArtifactType", "Type") + .WithMany("ArtifactEntries") + .HasForeignKey("TypeId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("ArtifactGrouping"); + + b.Navigation("StorageLocation"); + + b.Navigation("Type"); + }); + + modelBuilder.Entity("OpenArchival.DataAccess.ArtifactGrouping", b => + { + b.HasOne("OpenArchival.DataAccess.ArchiveCategory", "Category") + .WithMany() + .HasForeignKey("CategoryId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("OpenArchival.DataAccess.ArtifactType", "Type") + .WithMany() + .HasForeignKey("TypeId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.OwnsOne("OpenArchival.DataAccess.IdentifierFields", "IdentifierFields", b1 => + { + b1.Property("ArtifactGroupingId") + .HasColumnType("integer"); + + b1.PrimitiveCollection>("Values") + .IsRequired() + .HasColumnType("text[]"); + + b1.HasKey("ArtifactGroupingId"); + + b1.ToTable("ArtifactGroupings"); + + b1.ToJson("IdentifierFields"); + + b1.WithOwner() + .HasForeignKey("ArtifactGroupingId"); + }); + + b.Navigation("Category"); + + b.Navigation("IdentifierFields") + .IsRequired(); + + b.Navigation("Type"); + }); + + modelBuilder.Entity("OpenArchival.DataAccess.FilePathListing", b => + { + b.HasOne("OpenArchival.DataAccess.ArtifactGrouping", null) + .WithMany("ChildFilePathListings") + .HasForeignKey("ArtifactGroupingId"); + + b.HasOne("OpenArchival.DataAccess.ArtifactEntry", "ParentArtifactEntry") + .WithMany("Files") + .HasForeignKey("ParentArtifactEntryId") + .OnDelete(DeleteBehavior.Cascade); + + b.Navigation("ParentArtifactEntry"); + }); + + modelBuilder.Entity("OpenArchival.DataAccess.ArtifactEntry", b => + { + b.Navigation("Files"); + }); + + modelBuilder.Entity("OpenArchival.DataAccess.ArtifactGrouping", b => + { + b.Navigation("ChildArtifactEntries"); + + b.Navigation("ChildFilePathListings"); + }); + + modelBuilder.Entity("OpenArchival.DataAccess.ArtifactStorageLocation", b => + { + b.Navigation("ArtifactEntries"); + }); + + modelBuilder.Entity("OpenArchival.DataAccess.ArtifactType", b => + { + b.Navigation("ArtifactEntries"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/OpenArchival.DataAccess/Migrations/20251007175100_AddedCSharpCalculatedProperty.cs b/OpenArchival.DataAccess/Migrations/20251007175100_AddedCSharpCalculatedProperty.cs new file mode 100644 index 0000000..8d36dd1 --- /dev/null +++ b/OpenArchival.DataAccess/Migrations/20251007175100_AddedCSharpCalculatedProperty.cs @@ -0,0 +1,48 @@ +using Microsoft.EntityFrameworkCore.Migrations; + +#nullable disable + +namespace OpenArchival.DataAccess.Migrations +{ + /// + public partial class AddedCSharpCalculatedProperty : Migration + { + /// + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.AddColumn( + name: "ArtifactGroupingId", + table: "ArtifactFilePaths", + type: "integer", + nullable: true); + + migrationBuilder.CreateIndex( + name: "IX_ArtifactFilePaths_ArtifactGroupingId", + table: "ArtifactFilePaths", + column: "ArtifactGroupingId"); + + migrationBuilder.AddForeignKey( + name: "FK_ArtifactFilePaths_ArtifactGroupings_ArtifactGroupingId", + table: "ArtifactFilePaths", + column: "ArtifactGroupingId", + principalTable: "ArtifactGroupings", + principalColumn: "Id"); + } + + /// + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropForeignKey( + name: "FK_ArtifactFilePaths_ArtifactGroupings_ArtifactGroupingId", + table: "ArtifactFilePaths"); + + migrationBuilder.DropIndex( + name: "IX_ArtifactFilePaths_ArtifactGroupingId", + table: "ArtifactFilePaths"); + + migrationBuilder.DropColumn( + name: "ArtifactGroupingId", + table: "ArtifactFilePaths"); + } + } +} diff --git a/OpenArchival.DataAccess/Migrations/ArchiveDbContextModelSnapshot.cs b/OpenArchival.DataAccess/Migrations/ArchiveDbContextModelSnapshot.cs index 0ceb45e..e181b51 100644 --- a/OpenArchival.DataAccess/Migrations/ArchiveDbContextModelSnapshot.cs +++ b/OpenArchival.DataAccess/Migrations/ArchiveDbContextModelSnapshot.cs @@ -474,6 +474,9 @@ namespace OpenArchival.DataAccess.Migrations NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + b.Property("ArtifactGroupingId") + .HasColumnType("integer"); + b.Property("OriginalName") .IsRequired() .HasColumnType("text"); @@ -487,6 +490,8 @@ namespace OpenArchival.DataAccess.Migrations b.HasKey("Id"); + b.HasIndex("ArtifactGroupingId"); + b.HasIndex("ParentArtifactEntryId"); b.ToTable("ArtifactFilePaths"); @@ -690,9 +695,14 @@ namespace OpenArchival.DataAccess.Migrations modelBuilder.Entity("OpenArchival.DataAccess.FilePathListing", b => { + b.HasOne("OpenArchival.DataAccess.ArtifactGrouping", null) + .WithMany("ChildFilePathListings") + .HasForeignKey("ArtifactGroupingId"); + b.HasOne("OpenArchival.DataAccess.ArtifactEntry", "ParentArtifactEntry") .WithMany("Files") - .HasForeignKey("ParentArtifactEntryId"); + .HasForeignKey("ParentArtifactEntryId") + .OnDelete(DeleteBehavior.Cascade); b.Navigation("ParentArtifactEntry"); }); @@ -705,6 +715,8 @@ namespace OpenArchival.DataAccess.Migrations modelBuilder.Entity("OpenArchival.DataAccess.ArtifactGrouping", b => { b.Navigation("ChildArtifactEntries"); + + b.Navigation("ChildFilePathListings"); }); modelBuilder.Entity("OpenArchival.DataAccess.ArtifactStorageLocation", b => diff --git a/OpenArchival.DataAccess/Models/ArtifactEntry.cs b/OpenArchival.DataAccess/Models/ArtifactEntry.cs index 2308fcc..06e43f2 100644 --- a/OpenArchival.DataAccess/Models/ArtifactEntry.cs +++ b/OpenArchival.DataAccess/Models/ArtifactEntry.cs @@ -59,7 +59,6 @@ public class ArtifactEntry // Relationships other artifacts have TO this artifact public List RelatedBy { get; set; } = []; - public int ArtifactGroupingId { get; set; } public required ArtifactGrouping ArtifactGrouping { get; set; } diff --git a/OpenArchival.DataAccess/Models/ArtifactEntryTag.cs b/OpenArchival.DataAccess/Models/ArtifactEntryTag.cs index f3250e2..1b7e68f 100644 --- a/OpenArchival.DataAccess/Models/ArtifactEntryTag.cs +++ b/OpenArchival.DataAccess/Models/ArtifactEntryTag.cs @@ -18,4 +18,9 @@ public class ArtifactEntryTag public required string Name { get; set; } public List ArtifactEntries { get; set; } = []; + + public override string ToString() + { + return Name; + } } diff --git a/OpenArchival.DataAccess/Models/ArtifactGrouping.cs b/OpenArchival.DataAccess/Models/ArtifactGrouping.cs index 8694033..b043f70 100644 --- a/OpenArchival.DataAccess/Models/ArtifactGrouping.cs +++ b/OpenArchival.DataAccess/Models/ArtifactGrouping.cs @@ -19,6 +19,20 @@ public class ArtifactGrouping } } + public List ChildFilePathListings + { + get + { + var list = new List(); + foreach (ArtifactEntry entry in ChildArtifactEntries) + { + list.AddRange(entry.Files); + } + + return list; + } + } + public required ArchiveCategory Category { get; set; } private IdentifierFields _identifierFields; @@ -35,7 +49,6 @@ public class ArtifactGrouping } } - public required string Title { get; set; } public string? Description { get; set; } diff --git a/OpenArchival.DataAccess/Models/ListedName.cs b/OpenArchival.DataAccess/Models/ListedName.cs index 712aba6..18ffea0 100644 --- a/OpenArchival.DataAccess/Models/ListedName.cs +++ b/OpenArchival.DataAccess/Models/ListedName.cs @@ -12,4 +12,9 @@ public class ListedName public required string Value { get; set; } public List ArtifactEntries { get; set; } = []; + + public override string ToString() + { + return Value; + } } diff --git a/OpenArchival.DataAccess/Providers/ArtifactGroupingProvider.cs b/OpenArchival.DataAccess/Providers/ArtifactGroupingProvider.cs index 0b96b53..e9b0727 100644 --- a/OpenArchival.DataAccess/Providers/ArtifactGroupingProvider.cs +++ b/OpenArchival.DataAccess/Providers/ArtifactGroupingProvider.cs @@ -29,13 +29,12 @@ public class ArtifactGroupingProvider : IArtifactGroupingProvider .ThenInclude(e => e.Type) .Include(g => g.ChildArtifactEntries) .ThenInclude(e => e.Files) - .Include(g=> g.ChildArtifactEntries) + .Include(g => g.ChildArtifactEntries) .ThenInclude(e => e.Tags) .Include(g => g.ChildArtifactEntries) .ThenInclude(e => e.ListedNames) .Include(g => g.ChildArtifactEntries) .ThenInclude(e => e.Defects) - .Where(g => g.Id == id) .FirstOrDefaultAsync(); } @@ -66,50 +65,178 @@ public class ArtifactGroupingProvider : IArtifactGroupingProvider { await using var context = await _context.CreateDbContextAsync(); - // Iterate through all child entries and their file paths. + // Attach the Category to the context. If it has a key, it will be tracked. + context.Attach(grouping.Category); + + var processedTypes = new Dictionary(); + + // Helper function to get a de-duplicated type + async Task GetUniqueTypeAsync(ArtifactType typeToProcess) + { + // If the type is null or has no name, do nothing. + if (string.IsNullOrEmpty(typeToProcess?.Name)) + { + return typeToProcess; + } + + // A. First, check our local cache for the type. + if (processedTypes.TryGetValue(typeToProcess.Name, out var uniqueType)) + { + // Found it in the cache! Return the single instance we're tracking. + return uniqueType; + } + + // B. If not in the cache, check the database. + var dbType = await context.ArtifactTypes.FirstOrDefaultAsync(t => t.Name == typeToProcess.Name); + if (dbType != null) + { + // Found it in the database. Add it to our cache for next time. + processedTypes[dbType.Name] = dbType; + return dbType; + } + + // C. It's a brand new type. Add the new instance to our cache. + processedTypes[typeToProcess.Name] = typeToProcess; + return typeToProcess; + } + + // 2. De-duplicate the main grouping's type + grouping.Type = await GetUniqueTypeAsync(grouping.Type); + + // Iterate through all child entries to handle their related entities. foreach (var entry in grouping.ChildArtifactEntries) { - // Create a temporary list to hold the managed file path entities. - var managedFilePaths = new List(); + // Handle Artifact Types + // Check if the type exists in the database. + var existingType = await GetUniqueTypeAsync(entry.Type); + entry.Type = existingType; + + // Handle Storage Location + // Check if the storage location exists in the database. + var existingLocation = await context.ArtifactStorageLocations.FirstOrDefaultAsync(l => l.Location == entry.StorageLocation.Location); + if (existingLocation != null) + { + // If it exists, replace the disconnected object with the tracked one. + entry.StorageLocation = existingLocation; + } - // Handle each file path in the entry. + // Handle Tags + // Create a temporary list to hold the managed tag entities. + var managedTags = new List(); + foreach (var tag in entry.Tags) + { + // Attempt to find the tag in the database. + var existingTag = await context.ArtifactEntryTags.FirstOrDefaultAsync(t => t.Name == tag.Name); + if (existingTag != null) + { + // The tag already exists. Use the tracked instance. + managedTags.Add(existingTag); + } + else + { + // The tag is new. Add it to the managed list. + managedTags.Add(tag); + } + } + // Replace the disconnected tag objects on the entry with the managed ones. + entry.Tags = managedTags; + + // Handle Listed Names + // Create a temporary list to hold the managed name entities. + var managedNames = new List(); + foreach (var name in entry.ListedNames) + { + // Attempt to find the listed name in the database. + var existingName = await context.ArtifactAssociatedNames.FirstOrDefaultAsync(n => n.Value == name.Value); + if (existingName != null) + { + // The name already exists. Use the tracked instance. + managedNames.Add(existingName); + } + else + { + // The name is new. Add it to the managed list. + managedNames.Add(name); + } + } + // Replace the disconnected name objects on the entry with the managed ones. + entry.ListedNames = managedNames; + + // Handle Defects + // Create a temporary list to hold the managed defect entities. + var managedDefects = new List(); + foreach (var defect in entry.Defects) + { + // Attempt to find the defect in the database. + var existingDefect = await context.ArtifactDefects.FirstOrDefaultAsync(d => d.Description == defect.Description); + if (existingDefect != null) + { + // The defect already exists. Use the tracked instance. + managedDefects.Add(existingDefect); + } + else + { + // The defect is new. Add it to the managed list. + managedDefects.Add(defect); + } + } + // Replace the disconnected defect objects on the entry with the managed ones. + entry.Defects = managedDefects; + + // Handle file paths. This is the original logic you provided. + var managedFilePaths = new List(); foreach (var filepath in entry.Files) { - // Attempt to find the file path in the database. var existingFilePath = await context.ArtifactFilePaths.FirstOrDefaultAsync(f => f.Path == filepath.Path); - if (existingFilePath != null) { - // The file path already exists. Use the tracked instance. managedFilePaths.Add(existingFilePath); } else { - // The file path is new. Add it to the managed list. managedFilePaths.Add(filepath); } } - - // Replace the disconnected file path objects on the entry with the managed ones. entry.Files = managedFilePaths; } - context.ArtifactGroupings.Add(grouping); + // Add the new grouping and save changes. + //context.ArtifactGroupings.Add(grouping); + context.ChangeTracker.TrackGraph(grouping, node => + { + // If the entity's key is set, EF should treat it as an existing, unchanged entity. + if (node.Entry.IsKeySet) + { + node.Entry.State = EntityState.Unchanged; + } + // Otherwise, it's a new entity that needs to be inserted. + else + { + node.Entry.State = EntityState.Added; + } + }); + await context.SaveChangesAsync(); } - public async Task UpdateGroupingAsync(ArtifactGrouping grouping) + /* + + public async Task UpdateGroupingAsync(ArtifactGrouping updatedGrouping) { + // The DbContext is provided externally, so we will use it as is. + // Assuming you have an instance available, e.g., via a constructor or method parameter. await using var context = await _context.CreateDbContextAsync(); - // **NEW LOGIC** - // Fetch the existing, tracked entity and its entire graph. + // 1. Retrieve the existing grouping object from the database, eagerly loading all related data. + // This is crucial for correctly handling all relationships. var existingGrouping = await context.ArtifactGroupings .Include(g => g.Category) - .Include(g => g.Type) .Include(g => g.IdentifierFields) + .Include(g => g.Type) .Include(g => g.ChildArtifactEntries) .ThenInclude(e => e.StorageLocation) + .Include(g => g.ChildArtifactEntries) + .ThenInclude(e => e.Type) .Include(g => g.ChildArtifactEntries) .ThenInclude(e => e.Files) .Include(g => g.ChildArtifactEntries) @@ -118,68 +245,367 @@ public class ArtifactGroupingProvider : IArtifactGroupingProvider .ThenInclude(e => e.ListedNames) .Include(g => g.ChildArtifactEntries) .ThenInclude(e => e.Defects) - .FirstOrDefaultAsync(g => g.Id == grouping.Id); + .Where(g => g.Id == updatedGrouping.Id) + .FirstOrDefaultAsync(); if (existingGrouping == null) { - throw new InvalidOperationException($"Grouping with ID {grouping.Id} not found for update."); + // The grouping does not exist. You may want to throw an exception or handle this case. + return; } - // Update top-level properties. - existingGrouping.Title = grouping.Title; - existingGrouping.IsPublicallyVisible = grouping.IsPublicallyVisible; - existingGrouping.Description = grouping.Description; + // 2. Manually copy over primitive properties. + existingGrouping.Title = updatedGrouping.Title; + existingGrouping.Description = updatedGrouping.Description; + existingGrouping.IsPublicallyVisible = updatedGrouping.IsPublicallyVisible; + existingGrouping.IdentifierFields = updatedGrouping.IdentifierFields; - // Manually manage collections to sync the in-memory graph. - var entriesInModel = grouping.ChildArtifactEntries.ToDictionary(e => e.Id); - - // Remove entries from the database that are no longer in the model. - existingGrouping.ChildArtifactEntries.RemoveAll(e => !entriesInModel.ContainsKey(e.Id)); - - // Add or update existing entries. - foreach (var entryInModel in grouping.ChildArtifactEntries) + // Handle one-to-many relationships (Type, Category). + // Find the existing related entity and attach it to the tracked graph. + var existingGroupingType = await context.ArtifactTypes.FirstOrDefaultAsync(t => t.Name == updatedGrouping.Type.Name); + if (existingGroupingType != null) { - var existingEntry = existingGrouping.ChildArtifactEntries.FirstOrDefault(e => e.Id == entryInModel.Id); + existingGrouping.Type = existingGroupingType; + } + else + { + existingGrouping.Type = updatedGrouping.Type; + } + + // Attach the category as specified + if (existingGrouping.Category.Name != updatedGrouping.Category.Name) + { + existingGrouping.Category = updatedGrouping.Category; + context.Add(existingGrouping.Category); + } + + + // 3. Synchronize the ChildArtifactEntries collection. + // First, remove any entries that were deleted in the DTO. + var updatedEntryIds = updatedGrouping.ChildArtifactEntries.Select(e => e.Id).ToList(); + var entriesToRemove = existingGrouping.ChildArtifactEntries + .Where(e => !updatedEntryIds.Contains(e.Id)) + .ToList(); + + foreach (var entryToRemove in entriesToRemove) + { + existingGrouping.ChildArtifactEntries.Remove(entryToRemove); + } + + // Now, loop through the updated entries to handle updates and additions. + foreach (var updatedEntry in updatedGrouping.ChildArtifactEntries) + { + var existingEntry = existingGrouping.ChildArtifactEntries + .FirstOrDefault(e => e.Id == updatedEntry.Id); if (existingEntry != null) { - // Update an EXISTING entry. - existingEntry.Title = entryInModel.Title; - // Sync the files collection. - var filesInModel = entryInModel.Files.Select(f => f.Path).ToHashSet(); - existingEntry.Files.RemoveAll(f => !filesInModel.Contains(f.Path)); + // The entry exists, so manually update its properties. + existingEntry.Title = updatedEntry.Title; + existingEntry.Description = updatedEntry.Description; + existingEntry.ArtifactNumber = updatedEntry.ArtifactNumber; + existingEntry.IsPubliclyVisible = updatedEntry.IsPubliclyVisible; + existingEntry.AssociatedDates = updatedEntry.AssociatedDates; + existingEntry.FileTextContent = updatedEntry.FileTextContent; - var newFilesToRelate = filesInModel.Except(existingEntry.Files.Select(f => f.Path)); - foreach (var filePath in newFilesToRelate) + // Handle one-to-many relationships (StorageLocation, Type) + var existingLocation = await context.ArtifactStorageLocations.FirstOrDefaultAsync(l => l.Location == updatedEntry.StorageLocation.Location); + if (existingLocation != null) { - var fileToAdd = await context.ArtifactFilePaths.FirstOrDefaultAsync(f => f.Path == filePath); - if (fileToAdd != null) - { - existingEntry.Files.Add(fileToAdd); - } + existingEntry.StorageLocation = existingLocation; } + else + { + existingEntry.StorageLocation = updatedEntry.StorageLocation; + context.Add(existingEntry.StorageLocation); + } + + var existingType = await context.ArtifactTypes.FirstOrDefaultAsync(t => t.Name == updatedEntry.Type.Name); + if (existingType != null) + { + existingEntry.Type = existingType; + } + else + { + existingEntry.Type = updatedEntry.Type; + context.Add(existingEntry.Type); + } + + // Synchronize many-to-many collections. + // This is the most complex part. We need to handle adds and removals. + + // Helper function to handle a generic collection sync. + await SyncCollectionAsync(context, existingEntry.Tags, updatedEntry.Tags, t => t.Name); + await SyncCollectionAsync(context, existingEntry.ListedNames, updatedEntry.ListedNames, n => n.Value); + await SyncCollectionAsync(context, existingEntry.Defects, updatedEntry.Defects, d => d.Description); } else { - // Add a NEW entry to the existing grouping. - var newEntry = entryInModel; - - // For this new entry, handle the file path relationships. - var existingFiles = await context.ArtifactFilePaths - .Where(fp => newEntry.Files.Select(f => f.Path).Contains(fp.Path)) - .ToListAsync(); - newEntry.Files.Clear(); - foreach (var existingFile in existingFiles) - { - newEntry.Files.Add(existingFile); - } - - existingGrouping.ChildArtifactEntries.Add(newEntry); + // The entry is new, so add it to the tracked collection. + existingGrouping.ChildArtifactEntries.Add(updatedEntry); } } + // 4. Save all changes. await context.SaveChangesAsync(); } + */ + + public async Task UpdateGroupingAsync(ArtifactGrouping updatedGrouping) + { + // The DbContext is provided externally, so we will use it as is. + // Assuming you have an instance available, e.g., via a constructor or method parameter. + await using var context = await _context.CreateDbContextAsync(); + + // 1. Retrieve the existing grouping object from the database, eagerly loading all related data. + // This is crucial for correctly handling all relationships. + var existingGrouping = await context.ArtifactGroupings + .Include(g => g.Category) + .Include(g => g.IdentifierFields) + .Include(g => g.Type) + .Include(g => g.ChildArtifactEntries) + .ThenInclude(e => e.StorageLocation) + .Include(g => g.ChildArtifactEntries) + .ThenInclude(e => e.Type) + .Include(g => g.ChildArtifactEntries) + .ThenInclude(e => e.Files) + .Include(g => g.ChildArtifactEntries) + .ThenInclude(e => e.Tags) + .Include(g => g.ChildArtifactEntries) + .ThenInclude(e => e.ListedNames) + .Include(g => g.ChildArtifactEntries) + .ThenInclude(e => e.Defects) + .Where(g => g.Id == updatedGrouping.Id) + .FirstOrDefaultAsync(); + + if (existingGrouping == null) + { + // The grouping does not exist. You may want to throw an exception or handle this case. + return; + } + + // 2. Manually copy over primitive properties. + existingGrouping.Title = updatedGrouping.Title; + existingGrouping.Description = updatedGrouping.Description; + existingGrouping.IsPublicallyVisible = updatedGrouping.IsPublicallyVisible; + existingGrouping.IdentifierFields = updatedGrouping.IdentifierFields; + + // Handle one-to-many relationships (Type, Category). + // Find the existing related entity and attach it to the tracked graph. + var existingGroupingType = await context.ArtifactTypes.FirstOrDefaultAsync(t => t.Name == updatedGrouping.Type.Name); + if (existingGroupingType != null) + { + existingGrouping.Type = existingGroupingType; + } + else + { + existingGrouping.Type = updatedGrouping.Type; + } + + // Attach the category as specified + if (existingGrouping.Category.Name != updatedGrouping.Category.Name) + { + existingGrouping.Category = updatedGrouping.Category; + context.Add(existingGrouping.Category); + } + + + // 3. Synchronize the ChildArtifactEntries collection. + // First, remove any entries that were deleted in the DTO. + var updatedEntryIds = updatedGrouping.ChildArtifactEntries.Select(e => e.Id).ToList(); + var entriesToRemove = existingGrouping.ChildArtifactEntries + .Where(e => !updatedEntryIds.Contains(e.Id)) + .ToList(); + + foreach (var entryToRemove in entriesToRemove) + { + existingGrouping.ChildArtifactEntries.Remove(entryToRemove); + } + + // Now, loop through the updated entries to handle updates and additions. + foreach (var updatedEntry in updatedGrouping.ChildArtifactEntries) + { + // FIRST, de-duplicate all related entities on the incoming entry. + + var existingEntry = existingGrouping.ChildArtifactEntries + .FirstOrDefault(e => e.Id == updatedEntry.Id); + + await DeDuplicateEntryRelationsAsync(context, updatedEntry); + + if (existingEntry != null) + { + // The entry exists, so manually update its properties. + existingEntry.Title = updatedEntry.Title; + existingEntry.Description = updatedEntry.Description; + existingEntry.ArtifactNumber = updatedEntry.ArtifactNumber; + existingEntry.IsPubliclyVisible = updatedEntry.IsPubliclyVisible; + existingEntry.AssociatedDates = updatedEntry.AssociatedDates; + existingEntry.FileTextContent = updatedEntry.FileTextContent; + existingEntry.Files = updatedEntry.Files; + + // The relations on updatedEntry are already de-duplicated, so just assign them. + existingEntry.StorageLocation = updatedEntry.StorageLocation; + existingEntry.Type = updatedEntry.Type; + + // For collections, clear the old ones and add the new de-duplicated ones. + existingEntry.Tags.Clear(); + updatedEntry.Tags.ForEach(tag => existingEntry.Tags.Add(tag)); + + existingEntry.ListedNames.Clear(); + updatedEntry.ListedNames.ForEach(name => existingEntry.ListedNames.Add(name)); + + existingEntry.Defects.Clear(); + updatedEntry.Defects.ForEach(defect => existingEntry.Defects.Add(defect)); + } + else + { + // The entry is new and its children are already de-duplicated, so just add it. + existingGrouping.ChildArtifactEntries.Add(updatedEntry); + + } + } + + // 4. Save all changes. + await context.SaveChangesAsync(); + } + + private async Task DeDuplicateEntryRelationsAsync(ApplicationDbContext context, ArtifactEntry entry) + { + // --- Handle One-to-Many Relationships --- + var existingLocation = await context.ArtifactStorageLocations.FirstOrDefaultAsync(l => l.Location == entry.StorageLocation.Location); + if (existingLocation != null) + { + entry.StorageLocation = existingLocation; + } + + var existingType = await context.ArtifactTypes.FirstOrDefaultAsync(t => t.Name == entry.Type.Name); + if (existingType != null) + { + entry.Type = existingType; + } + + // --- Handle Many-to-Many Relationships --- + + // De-duplicate Tags + var processedTags = new List(); + foreach (var tag in entry.Tags) + { + var existingTag = await context.ArtifactEntryTags.FirstOrDefaultAsync(t => t.Name == tag.Name) ?? tag; + processedTags.Add(existingTag); + } + entry.Tags = processedTags; + + // De-duplicate ListedNames + var processedNames = new List(); + if (entry.ListedNames != null) + { + foreach (var name in entry.ListedNames) + { + var existingName = await context.ArtifactAssociatedNames.FirstOrDefaultAsync(n => n.Value == name.Value) ?? name; + processedNames.Add(existingName); + } + entry.ListedNames = processedNames; + } + + // De-duplicate Defects + var processedDefects = new List(); + if (entry.Defects != null) + { + foreach (var defect in entry.Defects) + { + var existingDefect = await context.ArtifactDefects.FirstOrDefaultAsync(d => d.Description == defect.Description) ?? defect; + processedDefects.Add(existingDefect); + } + entry.Defects = processedDefects; + } + + if (entry.Files.Any()) + { + // 1. Get the IDs from the incoming, untracked file objects. + var inputFileIds = entry.Files.Select(f => f.Id).ToList(); + + // 2. Fetch the actual, tracked entities from the database. + var trackedFiles = await context.ArtifactFilePaths + .Where(dbFile => inputFileIds.Contains(dbFile.Id)) + .ToListAsync(); + + // 3. Replace the untracked collection with the tracked one. + entry.Files = trackedFiles; + } + } + + /// + /// A helper method to synchronize many-to-many collections. + /// + private async Task SyncCollectionAsync( + DbContext context, + ICollection existingItems, + ICollection updatedItems, + Func keySelector) where TEntity : class + { + var existingKeys = existingItems.Select(keySelector).ToHashSet(); + var updatedKeys = updatedItems.Select(keySelector).ToHashSet(); + + // 1. Remove items that are no longer in the updated collection + var keysToRemove = existingKeys.Except(updatedKeys); + var itemsToRemove = existingItems.Where(item => keysToRemove.Contains(keySelector(item))).ToList(); + foreach (var item in itemsToRemove) + { + existingItems.Remove(item); + } + + // 2. Identify keys for brand new items + var keysToAdd = updatedKeys.Except(existingKeys).ToList(); + if (!keysToAdd.Any()) + { + return; // Nothing to add + } + + // 3. Batch-fetch all entities from the DB that match the new keys. + // This is the key change to make the query translatable to SQL. + Dictionary existingDbItemsMap = []; + if (typeof(TEntity) == typeof(ArtifactEntryTag)) + { + var tagKeys = keysToAdd.Cast().ToList(); + var tags = await context.Set() + .Where(t => tagKeys.Contains(t.Name)) + .ToListAsync(); + existingDbItemsMap = tags.ToDictionary(t => (TKey)(object)t.Name) as Dictionary; + } + else if (typeof(TEntity) == typeof(ListedName)) + { + var nameKeys = keysToAdd.Cast().ToList(); + var names = await context.Set() + .Where(n => nameKeys.Contains(n.Value)) + .ToListAsync(); + existingDbItemsMap = names.ToDictionary(n => (TKey)(object)n.Value) as Dictionary; + } + else if (typeof(TEntity) == typeof(ArtifactDefect)) + { + var defectKeys = keysToAdd.Cast().ToList(); + var defects = await context.Set() + .Where(d => defectKeys.Contains(d.Description)) + .ToListAsync(); + existingDbItemsMap = defects.ToDictionary(d => (TKey)(object)d.Description) as Dictionary; + } + + + // 4. Add the items, using the tracked entity from the DB if it exists. + foreach (var updatedItem in updatedItems.Where(i => keysToAdd.Contains(keySelector(i)))) + { + var key = keySelector(updatedItem); + if (existingDbItemsMap.TryGetValue(key, out var dbItem)) + { + // The item already exists in the DB, so add the tracked version. + existingItems.Add(dbItem); + } + else + { + // This is a brand new item, so add the untracked one from the input. + existingItems.Add(updatedItem); + } + } + } public async Task DeleteGroupingAsync(int id) { diff --git a/OpenArchival.DataAccess/bin/Debug/net9.0/OpenArchival.DataAccess.dll b/OpenArchival.DataAccess/bin/Debug/net9.0/OpenArchival.DataAccess.dll index 1857770..0a0293e 100644 Binary files a/OpenArchival.DataAccess/bin/Debug/net9.0/OpenArchival.DataAccess.dll and b/OpenArchival.DataAccess/bin/Debug/net9.0/OpenArchival.DataAccess.dll differ diff --git a/OpenArchival.DataAccess/bin/Debug/net9.0/OpenArchival.DataAccess.exe b/OpenArchival.DataAccess/bin/Debug/net9.0/OpenArchival.DataAccess.exe index a321073..0caa7a8 100644 Binary files a/OpenArchival.DataAccess/bin/Debug/net9.0/OpenArchival.DataAccess.exe and b/OpenArchival.DataAccess/bin/Debug/net9.0/OpenArchival.DataAccess.exe differ diff --git a/OpenArchival.DataAccess/bin/Debug/net9.0/OpenArchival.DataAccess.pdb b/OpenArchival.DataAccess/bin/Debug/net9.0/OpenArchival.DataAccess.pdb index f3a24b7..7e038b6 100644 Binary files a/OpenArchival.DataAccess/bin/Debug/net9.0/OpenArchival.DataAccess.pdb and b/OpenArchival.DataAccess/bin/Debug/net9.0/OpenArchival.DataAccess.pdb differ diff --git a/OpenArchival.DataAccess/obj/Debug/net9.0/OpenArchival.DataAccess.AssemblyInfo.cs b/OpenArchival.DataAccess/obj/Debug/net9.0/OpenArchival.DataAccess.AssemblyInfo.cs index 0b24f2a..3ae1ff6 100644 --- a/OpenArchival.DataAccess/obj/Debug/net9.0/OpenArchival.DataAccess.AssemblyInfo.cs +++ b/OpenArchival.DataAccess/obj/Debug/net9.0/OpenArchival.DataAccess.AssemblyInfo.cs @@ -15,7 +15,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("OpenArchival.DataAccess")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+77318e87d12fb2935cd521cd7ef445296c08f8af")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+781793a27f2e164808340b1adb5ce70e1800b187")] [assembly: System.Reflection.AssemblyProductAttribute("OpenArchival.DataAccess")] [assembly: System.Reflection.AssemblyTitleAttribute("OpenArchival.DataAccess")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/OpenArchival.DataAccess/obj/Debug/net9.0/OpenArchival.DataAccess.AssemblyInfoInputs.cache b/OpenArchival.DataAccess/obj/Debug/net9.0/OpenArchival.DataAccess.AssemblyInfoInputs.cache index 0a3c1bd..8eb7528 100644 --- a/OpenArchival.DataAccess/obj/Debug/net9.0/OpenArchival.DataAccess.AssemblyInfoInputs.cache +++ b/OpenArchival.DataAccess/obj/Debug/net9.0/OpenArchival.DataAccess.AssemblyInfoInputs.cache @@ -1 +1 @@ -e331b97ff893169d9154fb7894ef5ce9b6c2a2cd9aabaaf72be6a68f4d5d8c95 +92606188c317e23ff44b4fabe3b8bf357fc271c61d0643bc6e067683aa19c223 diff --git a/OpenArchival.DataAccess/obj/Debug/net9.0/OpenArchival.DataAccess.GeneratedMSBuildEditorConfig.editorconfig b/OpenArchival.DataAccess/obj/Debug/net9.0/OpenArchival.DataAccess.GeneratedMSBuildEditorConfig.editorconfig index 87f9029..a309b2b 100644 --- a/OpenArchival.DataAccess/obj/Debug/net9.0/OpenArchival.DataAccess.GeneratedMSBuildEditorConfig.editorconfig +++ b/OpenArchival.DataAccess/obj/Debug/net9.0/OpenArchival.DataAccess.GeneratedMSBuildEditorConfig.editorconfig @@ -17,13 +17,13 @@ build_property._SupportedPlatformList = Linux,macOS,Windows build_property._SupportedPlatformList = Linux,macOS,Windows build_property.RootNamespace = OpenArchival.DataAccess build_property.RootNamespace = OpenArchival.DataAccess -build_property.ProjectDir = D:\Nextcloud\Documents\Open-Archival\OpenArchival.DataAccess\ +build_property.ProjectDir = C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\ build_property.EnableComHosting = build_property.EnableGeneratedComInterfaceComImportInterop = build_property.RazorLangVersion = 9.0 build_property.SupportLocalizedComponentNames = build_property.GenerateRazorMetadataSourceChecksumAttributes = -build_property.MSBuildProjectDirectory = D:\Nextcloud\Documents\Open-Archival\OpenArchival.DataAccess +build_property.MSBuildProjectDirectory = C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess build_property._RazorSourceGeneratorDebug = build_property.EffectiveAnalysisLevelStyle = 9.0 build_property.EnableCodeStyleSeverity = diff --git a/OpenArchival.DataAccess/obj/Debug/net9.0/OpenArchival.DataAccess.assets.cache b/OpenArchival.DataAccess/obj/Debug/net9.0/OpenArchival.DataAccess.assets.cache index a1d8336..e5f3342 100644 Binary files a/OpenArchival.DataAccess/obj/Debug/net9.0/OpenArchival.DataAccess.assets.cache and b/OpenArchival.DataAccess/obj/Debug/net9.0/OpenArchival.DataAccess.assets.cache differ diff --git a/OpenArchival.DataAccess/obj/Debug/net9.0/OpenArchival.DataAccess.csproj.AssemblyReference.cache b/OpenArchival.DataAccess/obj/Debug/net9.0/OpenArchival.DataAccess.csproj.AssemblyReference.cache index 6cef5f0..41b49d4 100644 Binary files a/OpenArchival.DataAccess/obj/Debug/net9.0/OpenArchival.DataAccess.csproj.AssemblyReference.cache and b/OpenArchival.DataAccess/obj/Debug/net9.0/OpenArchival.DataAccess.csproj.AssemblyReference.cache differ diff --git a/OpenArchival.DataAccess/obj/Debug/net9.0/OpenArchival.DataAccess.csproj.CoreCompileInputs.cache b/OpenArchival.DataAccess/obj/Debug/net9.0/OpenArchival.DataAccess.csproj.CoreCompileInputs.cache index fd6e1b9..7a968b3 100644 --- a/OpenArchival.DataAccess/obj/Debug/net9.0/OpenArchival.DataAccess.csproj.CoreCompileInputs.cache +++ b/OpenArchival.DataAccess/obj/Debug/net9.0/OpenArchival.DataAccess.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -99b0f9982e395da4abb36a71ea11038d61049127fc999806dea0b117d58b8c73 +6aa685bc447c267fa362516984567e383354e1f99d47dc97b7702778cc0c6de8 diff --git a/OpenArchival.DataAccess/obj/Debug/net9.0/OpenArchival.DataAccess.csproj.FileListAbsolute.txt b/OpenArchival.DataAccess/obj/Debug/net9.0/OpenArchival.DataAccess.csproj.FileListAbsolute.txt index 11f8470..2d3ed87 100644 --- a/OpenArchival.DataAccess/obj/Debug/net9.0/OpenArchival.DataAccess.csproj.FileListAbsolute.txt +++ b/OpenArchival.DataAccess/obj/Debug/net9.0/OpenArchival.DataAccess.csproj.FileListAbsolute.txt @@ -590,3 +590,153 @@ D:\Nextcloud\Documents\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\re D:\Nextcloud\Documents\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\OpenArchival.DataAccess.pdb D:\Nextcloud\Documents\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\OpenArchival.DataAccess.genruntimeconfig.cache D:\Nextcloud\Documents\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\ref\OpenArchival.DataAccess.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\OpenArchival.DataAccess.staticwebassets.endpoints.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\OpenArchival.DataAccess.exe +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\OpenArchival.DataAccess.deps.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\OpenArchival.DataAccess.runtimeconfig.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\OpenArchival.DataAccess.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\OpenArchival.DataAccess.pdb +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\EntityFramework.SqlServer.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\EntityFramework.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\Humanizer.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\Microsoft.AspNetCore.Cryptography.Internal.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\Microsoft.AspNetCore.Cryptography.KeyDerivation.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\Microsoft.Bcl.AsyncInterfaces.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\Microsoft.Build.Locator.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\Microsoft.CodeAnalysis.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\Microsoft.CodeAnalysis.CSharp.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\Microsoft.CodeAnalysis.CSharp.Workspaces.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\Microsoft.CodeAnalysis.Workspaces.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\Microsoft.CodeAnalysis.Workspaces.MSBuild.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\Microsoft.EntityFrameworkCore.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\Microsoft.EntityFrameworkCore.Abstractions.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\Microsoft.EntityFrameworkCore.Design.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\Microsoft.EntityFrameworkCore.Relational.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\Microsoft.Extensions.Caching.Abstractions.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\Microsoft.Extensions.Caching.Memory.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\Microsoft.Extensions.Configuration.Abstractions.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\Microsoft.Extensions.DependencyInjection.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\Microsoft.Extensions.DependencyModel.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\Microsoft.Extensions.Identity.Core.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\Microsoft.Extensions.Identity.Stores.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\Microsoft.Extensions.Logging.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\Microsoft.Extensions.Logging.Abstractions.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\Microsoft.Extensions.Options.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\Microsoft.Extensions.Primitives.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\Microsoft.Win32.SystemEvents.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\Mono.TextTemplating.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\Npgsql.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\Npgsql.EntityFrameworkCore.PostgreSQL.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\System.CodeDom.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\System.Composition.AttributedModel.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\System.Composition.Convention.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\System.Composition.Hosting.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\System.Composition.Runtime.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\System.Composition.TypedParts.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\System.Configuration.ConfigurationManager.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\System.Data.SqlClient.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\System.Drawing.Common.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\System.Security.Cryptography.ProtectedData.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\System.Security.Permissions.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\System.Windows.Extensions.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\cs\Microsoft.CodeAnalysis.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\de\Microsoft.CodeAnalysis.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\es\Microsoft.CodeAnalysis.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\fr\Microsoft.CodeAnalysis.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\it\Microsoft.CodeAnalysis.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\ja\Microsoft.CodeAnalysis.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\ko\Microsoft.CodeAnalysis.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\pl\Microsoft.CodeAnalysis.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\pt-BR\Microsoft.CodeAnalysis.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\ru\Microsoft.CodeAnalysis.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\tr\Microsoft.CodeAnalysis.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\zh-Hans\Microsoft.CodeAnalysis.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\zh-Hant\Microsoft.CodeAnalysis.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\cs\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\de\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\es\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\fr\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\it\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\ja\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\ko\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\pl\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\pt-BR\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\ru\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\tr\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\cs\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\de\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\es\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\fr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\it\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\ja\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\ko\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\pl\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\pt-BR\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\ru\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\tr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\cs\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\de\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\es\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\fr\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\it\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\ja\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\ko\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\pl\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\pt-BR\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\ru\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\tr\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\zh-Hans\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\zh-Hant\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\cs\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\de\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\es\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\fr\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\it\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\ja\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\ko\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\pl\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\pt-BR\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\ru\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\tr\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\zh-Hans\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\zh-Hant\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\runtimes\win\lib\net6.0\Microsoft.Win32.SystemEvents.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\runtimes\win-arm64\native\sni.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\runtimes\win-x64\native\sni.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\runtimes\win-x86\native\sni.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\runtimes\unix\lib\netcoreapp2.1\System.Data.SqlClient.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\runtimes\win\lib\netcoreapp2.1\System.Data.SqlClient.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\runtimes\unix\lib\net6.0\System.Drawing.Common.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\runtimes\win\lib\net6.0\System.Drawing.Common.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\runtimes\win\lib\net6.0\System.Security.Cryptography.ProtectedData.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\runtimes\win\lib\net6.0\System.Windows.Extensions.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\OpenArchival.DataAccess.csproj.AssemblyReference.cache +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\rpswa.dswa.cache.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\OpenArchival.DataAccess.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\OpenArchival.DataAccess.AssemblyInfoInputs.cache +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\OpenArchival.DataAccess.AssemblyInfo.cs +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\OpenArchival.DataAccess.csproj.CoreCompileInputs.cache +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\OpenArchival.DataAccess.MvcApplicationPartsAssemblyInfo.cache +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\OpenArchival.DataAccess.sourcelink.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\rjimswa.dswa.cache.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\rjsmrazor.dswa.cache.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\rjsmcshtml.dswa.cache.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\scopedcss\bundle\OpenArchival.DataAccess.styles.css +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json.cache +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.development.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.endpoints.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.upToDateCheck.txt +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\OpenArch.D40B5A94.Up2Date +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\OpenArchival.DataAccess.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\refint\OpenArchival.DataAccess.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\OpenArchival.DataAccess.pdb +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\OpenArchival.DataAccess.genruntimeconfig.cache +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\ref\OpenArchival.DataAccess.dll diff --git a/OpenArchival.DataAccess/obj/Debug/net9.0/OpenArchival.DataAccess.dll b/OpenArchival.DataAccess/obj/Debug/net9.0/OpenArchival.DataAccess.dll index 1857770..0a0293e 100644 Binary files a/OpenArchival.DataAccess/obj/Debug/net9.0/OpenArchival.DataAccess.dll and b/OpenArchival.DataAccess/obj/Debug/net9.0/OpenArchival.DataAccess.dll differ diff --git a/OpenArchival.DataAccess/obj/Debug/net9.0/OpenArchival.DataAccess.genruntimeconfig.cache b/OpenArchival.DataAccess/obj/Debug/net9.0/OpenArchival.DataAccess.genruntimeconfig.cache index 87f1662..5f78534 100644 --- a/OpenArchival.DataAccess/obj/Debug/net9.0/OpenArchival.DataAccess.genruntimeconfig.cache +++ b/OpenArchival.DataAccess/obj/Debug/net9.0/OpenArchival.DataAccess.genruntimeconfig.cache @@ -1 +1 @@ -da0a04e4e54dc974e94d8c1063ec630c247cb827f3d41b1ae6eb278ec5187927 +0eb107fd36a1748624ff9544feb151aebf888938f8de2a42ea29dd1f8c079d78 diff --git a/OpenArchival.DataAccess/obj/Debug/net9.0/OpenArchival.DataAccess.pdb b/OpenArchival.DataAccess/obj/Debug/net9.0/OpenArchival.DataAccess.pdb index f3a24b7..7e038b6 100644 Binary files a/OpenArchival.DataAccess/obj/Debug/net9.0/OpenArchival.DataAccess.pdb and b/OpenArchival.DataAccess/obj/Debug/net9.0/OpenArchival.DataAccess.pdb differ diff --git a/OpenArchival.DataAccess/obj/Debug/net9.0/OpenArchival.DataAccess.sourcelink.json b/OpenArchival.DataAccess/obj/Debug/net9.0/OpenArchival.DataAccess.sourcelink.json index 7b68deb..bd84b90 100644 --- a/OpenArchival.DataAccess/obj/Debug/net9.0/OpenArchival.DataAccess.sourcelink.json +++ b/OpenArchival.DataAccess/obj/Debug/net9.0/OpenArchival.DataAccess.sourcelink.json @@ -1 +1 @@ -{"documents":{"D:\\Nextcloud\\Documents\\Open-Archival\\*":"https://raw.githubusercontent.com/vtallen/Open-Archival/77318e87d12fb2935cd521cd7ef445296c08f8af/*"}} \ No newline at end of file +{"documents":{"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\*":"https://raw.githubusercontent.com/vtallen/Open-Archival/781793a27f2e164808340b1adb5ce70e1800b187/*"}} \ No newline at end of file diff --git a/OpenArchival.DataAccess/obj/Debug/net9.0/apphost.exe b/OpenArchival.DataAccess/obj/Debug/net9.0/apphost.exe index a321073..0caa7a8 100644 Binary files a/OpenArchival.DataAccess/obj/Debug/net9.0/apphost.exe and b/OpenArchival.DataAccess/obj/Debug/net9.0/apphost.exe differ diff --git a/OpenArchival.DataAccess/obj/Debug/net9.0/ref/OpenArchival.DataAccess.dll b/OpenArchival.DataAccess/obj/Debug/net9.0/ref/OpenArchival.DataAccess.dll index bc1fd04..1c26d1b 100644 Binary files a/OpenArchival.DataAccess/obj/Debug/net9.0/ref/OpenArchival.DataAccess.dll and b/OpenArchival.DataAccess/obj/Debug/net9.0/ref/OpenArchival.DataAccess.dll differ diff --git a/OpenArchival.DataAccess/obj/Debug/net9.0/refint/OpenArchival.DataAccess.dll b/OpenArchival.DataAccess/obj/Debug/net9.0/refint/OpenArchival.DataAccess.dll index bc1fd04..1c26d1b 100644 Binary files a/OpenArchival.DataAccess/obj/Debug/net9.0/refint/OpenArchival.DataAccess.dll and b/OpenArchival.DataAccess/obj/Debug/net9.0/refint/OpenArchival.DataAccess.dll differ diff --git a/OpenArchival.DataAccess/obj/Debug/net9.0/rjsmcshtml.dswa.cache.json b/OpenArchival.DataAccess/obj/Debug/net9.0/rjsmcshtml.dswa.cache.json index 85031f8..3ab407c 100644 --- a/OpenArchival.DataAccess/obj/Debug/net9.0/rjsmcshtml.dswa.cache.json +++ b/OpenArchival.DataAccess/obj/Debug/net9.0/rjsmcshtml.dswa.cache.json @@ -1 +1 @@ -{"GlobalPropertiesHash":"J3r5h7pKF0kY0DRJx0Xqba86ngtHs3jduVq7GPX+nwI=","FingerprintPatternsHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["aDrxgmPzfmAYNrzynmphKXORQNARBvx3ZJm3IcIlVIA=","dFQa1Ee6LWN6QaEoa8lulEtbH6imVMCsVrPTv7uB7rA=","KAWcEu8sopHLr7dsoLsr\u002Bz7vrHN0YxMtmdfBYeH1kwI=","\u002Bjyo4JejKGZVNH7yAY1POV7dsMBGmszgVLUsVwm0S6Y=","EuerEavGnRoNMMU450G02s4QgrYiGKZsiuKOVP7kEc0="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file +{"GlobalPropertiesHash":"vveeLoVRblwaOOqBmVqvQ4HG2rSqMixgk7cSXmvYrIw=","FingerprintPatternsHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["qgBHL5R0mKXCiq65NnDep\u002B28SIMEandMOx72nKFCKds=","CFcBWGOCg2CGlH8Oj1fZ3/w1ogRq/hhCDREdOMIEOHQ=","Hr\u002BB4WdW5mUpJzexRlKmP0C1QEmXneDFbO2G0grhu4w=","VbxE6SYbM1pJW04yq\u002Bfq4M8OBlK1C2/Axp7HGmyEC6E=","NDZNIRTBPbDa13RLQn5qeTYTKESU3SMcjVC\u002BA9F7qlg="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/OpenArchival.DataAccess/obj/Debug/net9.0/rjsmrazor.dswa.cache.json b/OpenArchival.DataAccess/obj/Debug/net9.0/rjsmrazor.dswa.cache.json index ea3e47c..4df3083 100644 --- a/OpenArchival.DataAccess/obj/Debug/net9.0/rjsmrazor.dswa.cache.json +++ b/OpenArchival.DataAccess/obj/Debug/net9.0/rjsmrazor.dswa.cache.json @@ -1 +1 @@ -{"GlobalPropertiesHash":"EHbx5ejyqDv8gH5NpOoZxRAV9glFiYxTGFnRTcGg8no=","FingerprintPatternsHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["aDrxgmPzfmAYNrzynmphKXORQNARBvx3ZJm3IcIlVIA=","dFQa1Ee6LWN6QaEoa8lulEtbH6imVMCsVrPTv7uB7rA=","KAWcEu8sopHLr7dsoLsr\u002Bz7vrHN0YxMtmdfBYeH1kwI=","\u002Bjyo4JejKGZVNH7yAY1POV7dsMBGmszgVLUsVwm0S6Y=","EuerEavGnRoNMMU450G02s4QgrYiGKZsiuKOVP7kEc0="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file +{"GlobalPropertiesHash":"BfdHfTJ1ZLXND4Gm4lkRtokO7tG9qdxvlfpLGsYryFY=","FingerprintPatternsHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["qgBHL5R0mKXCiq65NnDep\u002B28SIMEandMOx72nKFCKds=","CFcBWGOCg2CGlH8Oj1fZ3/w1ogRq/hhCDREdOMIEOHQ=","Hr\u002BB4WdW5mUpJzexRlKmP0C1QEmXneDFbO2G0grhu4w=","VbxE6SYbM1pJW04yq\u002Bfq4M8OBlK1C2/Axp7HGmyEC6E=","NDZNIRTBPbDa13RLQn5qeTYTKESU3SMcjVC\u002BA9F7qlg="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/OpenArchival.DataAccess/obj/OpenArchival.DataAccess.csproj.nuget.dgspec.json b/OpenArchival.DataAccess/obj/OpenArchival.DataAccess.csproj.nuget.dgspec.json index d62bb1a..f5319dc 100644 --- a/OpenArchival.DataAccess/obj/OpenArchival.DataAccess.csproj.nuget.dgspec.json +++ b/OpenArchival.DataAccess/obj/OpenArchival.DataAccess.csproj.nuget.dgspec.json @@ -1,24 +1,24 @@ { "format": 1, "restore": { - "D:\\Nextcloud\\Documents\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj": {} + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj": {} }, "projects": { - "D:\\Nextcloud\\Documents\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj": { + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "D:\\Nextcloud\\Documents\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj", + "projectUniqueName": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj", "projectName": "OpenArchival.DataAccess", - "projectPath": "D:\\Nextcloud\\Documents\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj", - "packagesPath": "C:\\Users\\Vincent Allen\\.nuget\\packages\\", - "outputPath": "D:\\Nextcloud\\Documents\\Open-Archival\\OpenArchival.DataAccess\\obj\\", + "projectPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj", + "packagesPath": "C:\\Users\\vtall\\.nuget\\packages\\", + "outputPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\obj\\", "projectStyle": "PackageReference", "fallbackFolders": [ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" ], "configFilePaths": [ - "D:\\Nextcloud\\Documents\\Open-Archival\\NuGet.Config", - "C:\\Users\\Vincent Allen\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\NuGet.Config", + "C:\\Users\\vtall\\AppData\\Roaming\\NuGet\\NuGet.Config", "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], diff --git a/OpenArchival.DataAccess/obj/OpenArchival.DataAccess.csproj.nuget.g.props b/OpenArchival.DataAccess/obj/OpenArchival.DataAccess.csproj.nuget.g.props index 6333cde..188b6fb 100644 --- a/OpenArchival.DataAccess/obj/OpenArchival.DataAccess.csproj.nuget.g.props +++ b/OpenArchival.DataAccess/obj/OpenArchival.DataAccess.csproj.nuget.g.props @@ -5,12 +5,12 @@ NuGet $(MSBuildThisFileDirectory)project.assets.json $(UserProfile)\.nuget\packages\ - C:\Users\Vincent Allen\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + C:\Users\vtall\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages PackageReference 6.14.1 - + @@ -20,7 +20,7 @@ - C:\Users\Vincent Allen\.nuget\packages\microsoft.codeanalysis.analyzers\3.3.4 - C:\Users\Vincent Allen\.nuget\packages\entityframework\6.5.1 + C:\Users\vtall\.nuget\packages\microsoft.codeanalysis.analyzers\3.3.4 + C:\Users\vtall\.nuget\packages\entityframework\6.5.1 \ No newline at end of file diff --git a/OpenArchival.DataAccess/obj/Release/net9.0/OpenArchival.DataAccess.AssemblyInfo.cs b/OpenArchival.DataAccess/obj/Release/net9.0/OpenArchival.DataAccess.AssemblyInfo.cs index 90621f2..550d0e4 100644 --- a/OpenArchival.DataAccess/obj/Release/net9.0/OpenArchival.DataAccess.AssemblyInfo.cs +++ b/OpenArchival.DataAccess/obj/Release/net9.0/OpenArchival.DataAccess.AssemblyInfo.cs @@ -15,7 +15,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("OpenArchival.DataAccess")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+77318e87d12fb2935cd521cd7ef445296c08f8af")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+781793a27f2e164808340b1adb5ce70e1800b187")] [assembly: System.Reflection.AssemblyProductAttribute("OpenArchival.DataAccess")] [assembly: System.Reflection.AssemblyTitleAttribute("OpenArchival.DataAccess")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/OpenArchival.DataAccess/obj/Release/net9.0/OpenArchival.DataAccess.AssemblyInfoInputs.cache b/OpenArchival.DataAccess/obj/Release/net9.0/OpenArchival.DataAccess.AssemblyInfoInputs.cache index 0659382..b83faec 100644 --- a/OpenArchival.DataAccess/obj/Release/net9.0/OpenArchival.DataAccess.AssemblyInfoInputs.cache +++ b/OpenArchival.DataAccess/obj/Release/net9.0/OpenArchival.DataAccess.AssemblyInfoInputs.cache @@ -1 +1 @@ -cc950e208738c8967b3f3df0fc70fe22c92049085b0d068f4b8de0841ba74fd2 +0157f894327ee0804b572c5a6532673bcdf2ccf9dc704f130e15e50822efddc9 diff --git a/OpenArchival.DataAccess/obj/Release/net9.0/OpenArchival.DataAccess.GeneratedMSBuildEditorConfig.editorconfig b/OpenArchival.DataAccess/obj/Release/net9.0/OpenArchival.DataAccess.GeneratedMSBuildEditorConfig.editorconfig index 87f9029..a309b2b 100644 --- a/OpenArchival.DataAccess/obj/Release/net9.0/OpenArchival.DataAccess.GeneratedMSBuildEditorConfig.editorconfig +++ b/OpenArchival.DataAccess/obj/Release/net9.0/OpenArchival.DataAccess.GeneratedMSBuildEditorConfig.editorconfig @@ -17,13 +17,13 @@ build_property._SupportedPlatformList = Linux,macOS,Windows build_property._SupportedPlatformList = Linux,macOS,Windows build_property.RootNamespace = OpenArchival.DataAccess build_property.RootNamespace = OpenArchival.DataAccess -build_property.ProjectDir = D:\Nextcloud\Documents\Open-Archival\OpenArchival.DataAccess\ +build_property.ProjectDir = C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\ build_property.EnableComHosting = build_property.EnableGeneratedComInterfaceComImportInterop = build_property.RazorLangVersion = 9.0 build_property.SupportLocalizedComponentNames = build_property.GenerateRazorMetadataSourceChecksumAttributes = -build_property.MSBuildProjectDirectory = D:\Nextcloud\Documents\Open-Archival\OpenArchival.DataAccess +build_property.MSBuildProjectDirectory = C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess build_property._RazorSourceGeneratorDebug = build_property.EffectiveAnalysisLevelStyle = 9.0 build_property.EnableCodeStyleSeverity = diff --git a/OpenArchival.DataAccess/obj/Release/net9.0/OpenArchival.DataAccess.assets.cache b/OpenArchival.DataAccess/obj/Release/net9.0/OpenArchival.DataAccess.assets.cache index 5ed1f29..b588848 100644 Binary files a/OpenArchival.DataAccess/obj/Release/net9.0/OpenArchival.DataAccess.assets.cache and b/OpenArchival.DataAccess/obj/Release/net9.0/OpenArchival.DataAccess.assets.cache differ diff --git a/OpenArchival.DataAccess/obj/Release/net9.0/OpenArchival.DataAccess.csproj.AssemblyReference.cache b/OpenArchival.DataAccess/obj/Release/net9.0/OpenArchival.DataAccess.csproj.AssemblyReference.cache index 6cef5f0..41b49d4 100644 Binary files a/OpenArchival.DataAccess/obj/Release/net9.0/OpenArchival.DataAccess.csproj.AssemblyReference.cache and b/OpenArchival.DataAccess/obj/Release/net9.0/OpenArchival.DataAccess.csproj.AssemblyReference.cache differ diff --git a/OpenArchival.DataAccess/obj/project.assets.json b/OpenArchival.DataAccess/obj/project.assets.json index 99174cf..b853b4c 100644 --- a/OpenArchival.DataAccess/obj/project.assets.json +++ b/OpenArchival.DataAccess/obj/project.assets.json @@ -3962,24 +3962,24 @@ ] }, "packageFolders": { - "C:\\Users\\Vincent Allen\\.nuget\\packages\\": {}, + "C:\\Users\\vtall\\.nuget\\packages\\": {}, "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} }, "project": { "version": "1.0.0", "restore": { - "projectUniqueName": "D:\\Nextcloud\\Documents\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj", + "projectUniqueName": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj", "projectName": "OpenArchival.DataAccess", - "projectPath": "D:\\Nextcloud\\Documents\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj", - "packagesPath": "C:\\Users\\Vincent Allen\\.nuget\\packages\\", - "outputPath": "D:\\Nextcloud\\Documents\\Open-Archival\\OpenArchival.DataAccess\\obj\\", + "projectPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj", + "packagesPath": "C:\\Users\\vtall\\.nuget\\packages\\", + "outputPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\obj\\", "projectStyle": "PackageReference", "fallbackFolders": [ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" ], "configFilePaths": [ - "D:\\Nextcloud\\Documents\\Open-Archival\\NuGet.Config", - "C:\\Users\\Vincent Allen\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\NuGet.Config", + "C:\\Users\\vtall\\AppData\\Roaming\\NuGet\\NuGet.Config", "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], diff --git a/OpenArchival.DataAccess/obj/project.nuget.cache b/OpenArchival.DataAccess/obj/project.nuget.cache index ac0b9e6..23b5a53 100644 --- a/OpenArchival.DataAccess/obj/project.nuget.cache +++ b/OpenArchival.DataAccess/obj/project.nuget.cache @@ -1,72 +1,72 @@ { "version": 2, - "dgSpecHash": "hp7Zw2nnSf0=", + "dgSpecHash": "9ogva5y/IuM=", "success": true, - "projectFilePath": "D:\\Nextcloud\\Documents\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj", + "projectFilePath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj", "expectedPackageFiles": [ - "C:\\Users\\Vincent Allen\\.nuget\\packages\\entityframework\\6.5.1\\entityframework.6.5.1.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\humanizer.core\\2.14.1\\humanizer.core.2.14.1.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.aspnetcore.cryptography.internal\\9.0.8\\microsoft.aspnetcore.cryptography.internal.9.0.8.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.aspnetcore.cryptography.keyderivation\\9.0.8\\microsoft.aspnetcore.cryptography.keyderivation.9.0.8.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.aspnetcore.identity.entityframeworkcore\\9.0.8\\microsoft.aspnetcore.identity.entityframeworkcore.9.0.8.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\7.0.0\\microsoft.bcl.asyncinterfaces.7.0.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.build.framework\\17.8.3\\microsoft.build.framework.17.8.3.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.build.locator\\1.7.8\\microsoft.build.locator.1.7.8.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.codeanalysis.analyzers\\3.3.4\\microsoft.codeanalysis.analyzers.3.3.4.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.codeanalysis.common\\4.8.0\\microsoft.codeanalysis.common.4.8.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.codeanalysis.csharp\\4.8.0\\microsoft.codeanalysis.csharp.4.8.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.codeanalysis.csharp.workspaces\\4.8.0\\microsoft.codeanalysis.csharp.workspaces.4.8.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.codeanalysis.workspaces.common\\4.8.0\\microsoft.codeanalysis.workspaces.common.4.8.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.codeanalysis.workspaces.msbuild\\4.8.0\\microsoft.codeanalysis.workspaces.msbuild.4.8.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.csharp\\4.7.0\\microsoft.csharp.4.7.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.entityframeworkcore\\9.0.8\\microsoft.entityframeworkcore.9.0.8.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\9.0.8\\microsoft.entityframeworkcore.abstractions.9.0.8.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\9.0.8\\microsoft.entityframeworkcore.analyzers.9.0.8.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.entityframeworkcore.design\\9.0.8\\microsoft.entityframeworkcore.design.9.0.8.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\9.0.8\\microsoft.entityframeworkcore.relational.9.0.8.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\9.0.8\\microsoft.extensions.caching.abstractions.9.0.8.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.extensions.caching.memory\\9.0.8\\microsoft.extensions.caching.memory.9.0.8.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\9.0.8\\microsoft.extensions.configuration.abstractions.9.0.8.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\9.0.8\\microsoft.extensions.dependencyinjection.9.0.8.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\9.0.8\\microsoft.extensions.dependencyinjection.abstractions.9.0.8.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.extensions.dependencymodel\\9.0.8\\microsoft.extensions.dependencymodel.9.0.8.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.extensions.identity.core\\9.0.8\\microsoft.extensions.identity.core.9.0.8.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.extensions.identity.stores\\9.0.8\\microsoft.extensions.identity.stores.9.0.8.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.extensions.logging\\9.0.8\\microsoft.extensions.logging.9.0.8.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\9.0.8\\microsoft.extensions.logging.abstractions.9.0.8.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.extensions.options\\9.0.8\\microsoft.extensions.options.9.0.8.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.extensions.primitives\\9.0.8\\microsoft.extensions.primitives.9.0.8.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.win32.registry\\4.7.0\\microsoft.win32.registry.4.7.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\microsoft.win32.systemevents\\6.0.0\\microsoft.win32.systemevents.6.0.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\mono.texttemplating\\3.0.0\\mono.texttemplating.3.0.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\npgsql\\9.0.3\\npgsql.9.0.3.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\npgsql.entityframeworkcore.postgresql\\9.0.4\\npgsql.entityframeworkcore.postgresql.9.0.4.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\runtime.native.system.data.sqlclient.sni\\4.7.0\\runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\runtime.win-arm64.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\runtime.win-x64.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\runtime.win-x86.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\system.codedom\\6.0.0\\system.codedom.6.0.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\system.collections.immutable\\7.0.0\\system.collections.immutable.7.0.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\system.componentmodel.annotations\\5.0.0\\system.componentmodel.annotations.5.0.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\system.composition\\7.0.0\\system.composition.7.0.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\system.composition.attributedmodel\\7.0.0\\system.composition.attributedmodel.7.0.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\system.composition.convention\\7.0.0\\system.composition.convention.7.0.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\system.composition.hosting\\7.0.0\\system.composition.hosting.7.0.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\system.composition.runtime\\7.0.0\\system.composition.runtime.7.0.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\system.composition.typedparts\\7.0.0\\system.composition.typedparts.7.0.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\system.configuration.configurationmanager\\6.0.1\\system.configuration.configurationmanager.6.0.1.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\system.data.sqlclient\\4.8.6\\system.data.sqlclient.4.8.6.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\system.drawing.common\\6.0.0\\system.drawing.common.6.0.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\system.io.pipelines\\7.0.0\\system.io.pipelines.7.0.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\system.reflection.metadata\\7.0.0\\system.reflection.metadata.7.0.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\system.security.accesscontrol\\6.0.0\\system.security.accesscontrol.6.0.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\system.security.cryptography.protecteddata\\6.0.0\\system.security.cryptography.protecteddata.6.0.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\system.security.permissions\\6.0.0\\system.security.permissions.6.0.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\system.security.principal.windows\\4.7.0\\system.security.principal.windows.4.7.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\system.text.json\\9.0.8\\system.text.json.9.0.8.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\system.threading.channels\\7.0.0\\system.threading.channels.7.0.0.nupkg.sha512", - "C:\\Users\\Vincent Allen\\.nuget\\packages\\system.windows.extensions\\6.0.0\\system.windows.extensions.6.0.0.nupkg.sha512" + "C:\\Users\\vtall\\.nuget\\packages\\entityframework\\6.5.1\\entityframework.6.5.1.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\humanizer.core\\2.14.1\\humanizer.core.2.14.1.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.aspnetcore.cryptography.internal\\9.0.8\\microsoft.aspnetcore.cryptography.internal.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.aspnetcore.cryptography.keyderivation\\9.0.8\\microsoft.aspnetcore.cryptography.keyderivation.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.aspnetcore.identity.entityframeworkcore\\9.0.8\\microsoft.aspnetcore.identity.entityframeworkcore.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\7.0.0\\microsoft.bcl.asyncinterfaces.7.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.build.framework\\17.8.3\\microsoft.build.framework.17.8.3.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.build.locator\\1.7.8\\microsoft.build.locator.1.7.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.codeanalysis.analyzers\\3.3.4\\microsoft.codeanalysis.analyzers.3.3.4.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.codeanalysis.common\\4.8.0\\microsoft.codeanalysis.common.4.8.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.codeanalysis.csharp\\4.8.0\\microsoft.codeanalysis.csharp.4.8.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.codeanalysis.csharp.workspaces\\4.8.0\\microsoft.codeanalysis.csharp.workspaces.4.8.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.codeanalysis.workspaces.common\\4.8.0\\microsoft.codeanalysis.workspaces.common.4.8.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.codeanalysis.workspaces.msbuild\\4.8.0\\microsoft.codeanalysis.workspaces.msbuild.4.8.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.csharp\\4.7.0\\microsoft.csharp.4.7.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.entityframeworkcore\\9.0.8\\microsoft.entityframeworkcore.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\9.0.8\\microsoft.entityframeworkcore.abstractions.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\9.0.8\\microsoft.entityframeworkcore.analyzers.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.entityframeworkcore.design\\9.0.8\\microsoft.entityframeworkcore.design.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\9.0.8\\microsoft.entityframeworkcore.relational.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\9.0.8\\microsoft.extensions.caching.abstractions.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.caching.memory\\9.0.8\\microsoft.extensions.caching.memory.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\9.0.8\\microsoft.extensions.configuration.abstractions.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\9.0.8\\microsoft.extensions.dependencyinjection.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\9.0.8\\microsoft.extensions.dependencyinjection.abstractions.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.dependencymodel\\9.0.8\\microsoft.extensions.dependencymodel.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.identity.core\\9.0.8\\microsoft.extensions.identity.core.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.identity.stores\\9.0.8\\microsoft.extensions.identity.stores.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.logging\\9.0.8\\microsoft.extensions.logging.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\9.0.8\\microsoft.extensions.logging.abstractions.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.options\\9.0.8\\microsoft.extensions.options.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.primitives\\9.0.8\\microsoft.extensions.primitives.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.win32.registry\\4.7.0\\microsoft.win32.registry.4.7.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.win32.systemevents\\6.0.0\\microsoft.win32.systemevents.6.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\mono.texttemplating\\3.0.0\\mono.texttemplating.3.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\npgsql\\9.0.3\\npgsql.9.0.3.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\npgsql.entityframeworkcore.postgresql\\9.0.4\\npgsql.entityframeworkcore.postgresql.9.0.4.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\runtime.native.system.data.sqlclient.sni\\4.7.0\\runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\runtime.win-arm64.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\runtime.win-x64.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\runtime.win-x86.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.codedom\\6.0.0\\system.codedom.6.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.collections.immutable\\7.0.0\\system.collections.immutable.7.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.componentmodel.annotations\\5.0.0\\system.componentmodel.annotations.5.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.composition\\7.0.0\\system.composition.7.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.composition.attributedmodel\\7.0.0\\system.composition.attributedmodel.7.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.composition.convention\\7.0.0\\system.composition.convention.7.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.composition.hosting\\7.0.0\\system.composition.hosting.7.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.composition.runtime\\7.0.0\\system.composition.runtime.7.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.composition.typedparts\\7.0.0\\system.composition.typedparts.7.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.configuration.configurationmanager\\6.0.1\\system.configuration.configurationmanager.6.0.1.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.data.sqlclient\\4.8.6\\system.data.sqlclient.4.8.6.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.drawing.common\\6.0.0\\system.drawing.common.6.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.io.pipelines\\7.0.0\\system.io.pipelines.7.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.reflection.metadata\\7.0.0\\system.reflection.metadata.7.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.security.accesscontrol\\6.0.0\\system.security.accesscontrol.6.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.security.cryptography.protecteddata\\6.0.0\\system.security.cryptography.protecteddata.6.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.security.permissions\\6.0.0\\system.security.permissions.6.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.security.principal.windows\\4.7.0\\system.security.principal.windows.4.7.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.text.json\\9.0.8\\system.text.json.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.threading.channels\\7.0.0\\system.threading.channels.7.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.windows.extensions\\6.0.0\\system.windows.extensions.6.0.0.nupkg.sha512" ], "logs": [] } \ No newline at end of file diff --git a/OpenArchival.sln b/OpenArchival.sln index 26d0ed3..83ab792 100644 --- a/OpenArchival.sln +++ b/OpenArchival.sln @@ -15,6 +15,12 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OpenArchival.DataAccess", " EndProject Project("{E53339B2-1760-4266-BCC7-CA923CBCF16C}") = "docker-compose", "docker-compose.dcproj", "{81DDED9D-158B-E303-5F62-77A2896D2A5A}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OpenArchival.Blazor.FileViewer", "OpenArchival.Blazor.FileViewer\OpenArchival.Blazor.FileViewer.csproj", "{C90DE897-C79F-EEE6-6DF6-936C80C3A783}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OpenArchival.Blazor.AdminPages", "OpenArchival.Blazor.AdminPages\OpenArchival.Blazor.AdminPages.csproj", "{520BA4C1-D700-44D9-80B3-F30FDB870166}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OpenArchival.Blazor.CustomComponents", "OpenArchival.Blazor.CustomComponents\OpenArchival.Blazor.CustomComponents.csproj", "{C8F28D94-810B-43E1-9520-FD2F7337175A}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -33,6 +39,18 @@ Global {81DDED9D-158B-E303-5F62-77A2896D2A5A}.Debug|Any CPU.Build.0 = Debug|Any CPU {81DDED9D-158B-E303-5F62-77A2896D2A5A}.Release|Any CPU.ActiveCfg = Release|Any CPU {81DDED9D-158B-E303-5F62-77A2896D2A5A}.Release|Any CPU.Build.0 = Release|Any CPU + {C90DE897-C79F-EEE6-6DF6-936C80C3A783}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {C90DE897-C79F-EEE6-6DF6-936C80C3A783}.Debug|Any CPU.Build.0 = Debug|Any CPU + {C90DE897-C79F-EEE6-6DF6-936C80C3A783}.Release|Any CPU.ActiveCfg = Release|Any CPU + {C90DE897-C79F-EEE6-6DF6-936C80C3A783}.Release|Any CPU.Build.0 = Release|Any CPU + {520BA4C1-D700-44D9-80B3-F30FDB870166}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {520BA4C1-D700-44D9-80B3-F30FDB870166}.Debug|Any CPU.Build.0 = Debug|Any CPU + {520BA4C1-D700-44D9-80B3-F30FDB870166}.Release|Any CPU.ActiveCfg = Release|Any CPU + {520BA4C1-D700-44D9-80B3-F30FDB870166}.Release|Any CPU.Build.0 = Release|Any CPU + {C8F28D94-810B-43E1-9520-FD2F7337175A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {C8F28D94-810B-43E1-9520-FD2F7337175A}.Debug|Any CPU.Build.0 = Debug|Any CPU + {C8F28D94-810B-43E1-9520-FD2F7337175A}.Release|Any CPU.ActiveCfg = Release|Any CPU + {C8F28D94-810B-43E1-9520-FD2F7337175A}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/bin/Debug/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.dll b/bin/Debug/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.dll index c2fdf47..3f43fcd 100644 Binary files a/bin/Debug/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.dll and b/bin/Debug/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.dll differ diff --git a/bin/Debug/Microsoft.EntityFrameworkCore.Abstractions.dll b/bin/Debug/Microsoft.EntityFrameworkCore.Abstractions.dll index a73a07e..69538cb 100644 Binary files a/bin/Debug/Microsoft.EntityFrameworkCore.Abstractions.dll and b/bin/Debug/Microsoft.EntityFrameworkCore.Abstractions.dll differ diff --git a/bin/Debug/Microsoft.EntityFrameworkCore.Relational.dll b/bin/Debug/Microsoft.EntityFrameworkCore.Relational.dll index 386de7f..083c63b 100644 Binary files a/bin/Debug/Microsoft.EntityFrameworkCore.Relational.dll and b/bin/Debug/Microsoft.EntityFrameworkCore.Relational.dll differ diff --git a/bin/Debug/Microsoft.EntityFrameworkCore.dll b/bin/Debug/Microsoft.EntityFrameworkCore.dll index 0110c7f..8face4d 100644 Binary files a/bin/Debug/Microsoft.EntityFrameworkCore.dll and b/bin/Debug/Microsoft.EntityFrameworkCore.dll differ diff --git a/bin/Debug/Microsoft.Extensions.Caching.Abstractions.dll b/bin/Debug/Microsoft.Extensions.Caching.Abstractions.dll index 3817d75..17a80ed 100644 Binary files a/bin/Debug/Microsoft.Extensions.Caching.Abstractions.dll and b/bin/Debug/Microsoft.Extensions.Caching.Abstractions.dll differ diff --git a/bin/Debug/Microsoft.Extensions.Caching.Memory.dll b/bin/Debug/Microsoft.Extensions.Caching.Memory.dll index 99e0248..25650b6 100644 Binary files a/bin/Debug/Microsoft.Extensions.Caching.Memory.dll and b/bin/Debug/Microsoft.Extensions.Caching.Memory.dll differ diff --git a/bin/Debug/Microsoft.Extensions.Configuration.Abstractions.dll b/bin/Debug/Microsoft.Extensions.Configuration.Abstractions.dll index 17e344e..5230a86 100644 Binary files a/bin/Debug/Microsoft.Extensions.Configuration.Abstractions.dll and b/bin/Debug/Microsoft.Extensions.Configuration.Abstractions.dll differ diff --git a/bin/Debug/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/bin/Debug/Microsoft.Extensions.DependencyInjection.Abstractions.dll index e7affaf..f531f26 100644 Binary files a/bin/Debug/Microsoft.Extensions.DependencyInjection.Abstractions.dll and b/bin/Debug/Microsoft.Extensions.DependencyInjection.Abstractions.dll differ diff --git a/bin/Debug/Microsoft.Extensions.DependencyInjection.dll b/bin/Debug/Microsoft.Extensions.DependencyInjection.dll index 6191756..7fbaa22 100644 Binary files a/bin/Debug/Microsoft.Extensions.DependencyInjection.dll and b/bin/Debug/Microsoft.Extensions.DependencyInjection.dll differ diff --git a/bin/Debug/Microsoft.Extensions.Logging.Abstractions.dll b/bin/Debug/Microsoft.Extensions.Logging.Abstractions.dll index cb1d711..ab89c5b 100644 Binary files a/bin/Debug/Microsoft.Extensions.Logging.Abstractions.dll and b/bin/Debug/Microsoft.Extensions.Logging.Abstractions.dll differ diff --git a/bin/Debug/Microsoft.Extensions.Logging.dll b/bin/Debug/Microsoft.Extensions.Logging.dll index 61d3a7e..85d21f3 100644 Binary files a/bin/Debug/Microsoft.Extensions.Logging.dll and b/bin/Debug/Microsoft.Extensions.Logging.dll differ diff --git a/bin/Debug/Microsoft.Extensions.Options.dll b/bin/Debug/Microsoft.Extensions.Options.dll index bfb0647..8189fd3 100644 Binary files a/bin/Debug/Microsoft.Extensions.Options.dll and b/bin/Debug/Microsoft.Extensions.Options.dll differ diff --git a/bin/Debug/Microsoft.Extensions.Primitives.dll b/bin/Debug/Microsoft.Extensions.Primitives.dll index b7e4481..f25294e 100644 Binary files a/bin/Debug/Microsoft.Extensions.Primitives.dll and b/bin/Debug/Microsoft.Extensions.Primitives.dll differ diff --git a/bin/Debug/Microsoft.IdentityModel.Abstractions.dll b/bin/Debug/Microsoft.IdentityModel.Abstractions.dll deleted file mode 100644 index dfcb632..0000000 Binary files a/bin/Debug/Microsoft.IdentityModel.Abstractions.dll and /dev/null differ diff --git a/bin/Debug/Microsoft.IdentityModel.Logging.dll b/bin/Debug/Microsoft.IdentityModel.Logging.dll deleted file mode 100644 index ce60b3c..0000000 Binary files a/bin/Debug/Microsoft.IdentityModel.Logging.dll and /dev/null differ diff --git a/bin/Debug/Microsoft.IdentityModel.Tokens.dll b/bin/Debug/Microsoft.IdentityModel.Tokens.dll deleted file mode 100644 index da12e5f..0000000 Binary files a/bin/Debug/Microsoft.IdentityModel.Tokens.dll and /dev/null differ diff --git a/bin/Debug/MudBlazor.dll b/bin/Debug/MudBlazor.dll index 364caa6..323705d 100644 Binary files a/bin/Debug/MudBlazor.dll and b/bin/Debug/MudBlazor.dll differ diff --git a/bin/Debug/OpenArchival.Blazor.AdminPages.dll b/bin/Debug/OpenArchival.Blazor.AdminPages.dll new file mode 100644 index 0000000..ccec9ca Binary files /dev/null and b/bin/Debug/OpenArchival.Blazor.AdminPages.dll differ diff --git a/bin/Debug/OpenArchival.Blazor.AdminPages.pdb b/bin/Debug/OpenArchival.Blazor.AdminPages.pdb new file mode 100644 index 0000000..0e40e46 Binary files /dev/null and b/bin/Debug/OpenArchival.Blazor.AdminPages.pdb differ diff --git a/bin/Debug/OpenArchival.Blazor.CustomComponents.dll b/bin/Debug/OpenArchival.Blazor.CustomComponents.dll new file mode 100644 index 0000000..898228c Binary files /dev/null and b/bin/Debug/OpenArchival.Blazor.CustomComponents.dll differ diff --git a/bin/Debug/OpenArchival.Blazor.CustomComponents.pdb b/bin/Debug/OpenArchival.Blazor.CustomComponents.pdb new file mode 100644 index 0000000..29f5933 Binary files /dev/null and b/bin/Debug/OpenArchival.Blazor.CustomComponents.pdb differ diff --git a/bin/Debug/OpenArchival.Blazor.FileViewer.dll b/bin/Debug/OpenArchival.Blazor.FileViewer.dll new file mode 100644 index 0000000..33bc30c Binary files /dev/null and b/bin/Debug/OpenArchival.Blazor.FileViewer.dll differ diff --git a/bin/Debug/OpenArchival.Blazor.FileViewer.pdb b/bin/Debug/OpenArchival.Blazor.FileViewer.pdb new file mode 100644 index 0000000..04280da Binary files /dev/null and b/bin/Debug/OpenArchival.Blazor.FileViewer.pdb differ diff --git a/bin/Debug/OpenArchival.Blazor.deps.json b/bin/Debug/OpenArchival.Blazor.deps.json index 2e58b77..5f56958 100644 --- a/bin/Debug/OpenArchival.Blazor.deps.json +++ b/bin/Debug/OpenArchival.Blazor.deps.json @@ -10,16 +10,20 @@ "dependencies": { "CodeBeam.MudExtensions": "6.3.0", "Dapper": "2.1.66", - "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore": "9.0.8", - "Microsoft.EntityFrameworkCore": "9.0.8", - "Microsoft.EntityFrameworkCore.SqlServer": "9.0.8", - "Microsoft.EntityFrameworkCore.Tools": "9.0.8", + "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore": "9.0.9", + "Microsoft.EntityFrameworkCore": "9.0.9", + "Microsoft.EntityFrameworkCore.SqlServer": "9.0.9", + "Microsoft.EntityFrameworkCore.Tools": "9.0.9", "Microsoft.VisualStudio.Azure.Containers.Tools.Targets": "1.22.1", - "MudBlazor": "8.12.0", + "MudBlazor": "8.13.0", "Npgsql": "9.0.3", "Npgsql.DependencyInjection": "9.0.3", "Npgsql.EntityFrameworkCore.PostgreSQL": "9.0.4", - "OpenArchival.DataAccess": "1.0.0" + "OpenArchival.Blazor.AdminPages": "1.0.0", + "OpenArchival.Blazor.CustomComponents": "1.0.0", + "OpenArchival.Blazor.FileViewer": "1.0.0", + "OpenArchival.DataAccess": "1.0.0", + "System.Collections": "4.3.0" }, "runtime": { "OpenArchival.Blazor.dll": {} @@ -33,7 +37,7 @@ "System.Memory.Data": "1.0.2", "System.Numerics.Vectors": "4.5.0", "System.Text.Encodings.Web": "6.0.0", - "System.Text.Json": "9.0.8", + "System.Text.Json": "9.0.9", "System.Threading.Tasks.Extensions": "4.5.4" }, "runtime": { @@ -50,7 +54,7 @@ "Microsoft.Identity.Client.Extensions.Msal": "4.61.3", "System.Memory": "4.5.4", "System.Security.Cryptography.ProtectedData": "6.0.0", - "System.Text.Json": "9.0.8", + "System.Text.Json": "9.0.9", "System.Threading.Tasks.Extensions": "4.5.4" }, "runtime": { @@ -67,7 +71,7 @@ "CsvHelper": "30.0.1", "Microsoft.AspNetCore.Components": "9.0.1", "Microsoft.AspNetCore.Components.Web": "9.0.1", - "MudBlazor": "8.12.0" + "MudBlazor": "8.13.0" }, "runtime": { "lib/net7.0/CodeBeam.MudExtensions.dll": { @@ -122,8 +126,8 @@ "Microsoft.AspNetCore.Authorization/9.0.1": { "dependencies": { "Microsoft.AspNetCore.Metadata": "9.0.1", - "Microsoft.Extensions.Logging.Abstractions": "9.0.8", - "Microsoft.Extensions.Options": "9.0.8" + "Microsoft.Extensions.Logging.Abstractions": "9.0.9", + "Microsoft.Extensions.Options": "9.0.9" }, "runtime": { "lib/net9.0/Microsoft.AspNetCore.Authorization.dll": { @@ -160,8 +164,8 @@ "dependencies": { "Microsoft.AspNetCore.Components": "9.0.1", "Microsoft.AspNetCore.Components.Forms": "9.0.1", - "Microsoft.Extensions.DependencyInjection": "9.0.8", - "Microsoft.Extensions.Primitives": "9.0.8", + "Microsoft.Extensions.DependencyInjection": "9.0.9", + "Microsoft.Extensions.Primitives": "9.0.9", "Microsoft.JSInterop": "9.0.1" }, "runtime": { @@ -190,20 +194,20 @@ } } }, - "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore/9.0.8": { + "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore/9.0.9": { "dependencies": { - "Microsoft.EntityFrameworkCore.Relational": "9.0.8" + "Microsoft.EntityFrameworkCore.Relational": "9.0.9" }, "runtime": { "lib/net9.0/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.dll": { - "assemblyVersion": "9.0.8.0", - "fileVersion": "9.0.825.36808" + "assemblyVersion": "9.0.9.0", + "fileVersion": "9.0.925.42003" } } }, "Microsoft.AspNetCore.Identity.EntityFrameworkCore/9.0.8": { "dependencies": { - "Microsoft.EntityFrameworkCore.Relational": "9.0.8", + "Microsoft.EntityFrameworkCore.Relational": "9.0.9", "Microsoft.Extensions.Identity.Stores": "9.0.8" }, "runtime": { @@ -463,7 +467,7 @@ "Microsoft.Build.Framework": "17.8.3", "Microsoft.CodeAnalysis.Common": "4.8.0", "Microsoft.CodeAnalysis.Workspaces.Common": "4.8.0", - "System.Text.Json": "9.0.8" + "System.Text.Json": "9.0.9" }, "runtime": { "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll": { @@ -579,30 +583,30 @@ } } }, - "Microsoft.EntityFrameworkCore/9.0.8": { + "Microsoft.EntityFrameworkCore/9.0.9": { "dependencies": { - "Microsoft.EntityFrameworkCore.Abstractions": "9.0.8", - "Microsoft.EntityFrameworkCore.Analyzers": "9.0.8", - "Microsoft.Extensions.Caching.Memory": "9.0.8", - "Microsoft.Extensions.Logging": "9.0.8" + "Microsoft.EntityFrameworkCore.Abstractions": "9.0.9", + "Microsoft.EntityFrameworkCore.Analyzers": "9.0.9", + "Microsoft.Extensions.Caching.Memory": "9.0.9", + "Microsoft.Extensions.Logging": "9.0.9" }, "runtime": { "lib/net8.0/Microsoft.EntityFrameworkCore.dll": { - "assemblyVersion": "9.0.8.0", - "fileVersion": "9.0.825.36802" + "assemblyVersion": "9.0.9.0", + "fileVersion": "9.0.925.41909" } } }, - "Microsoft.EntityFrameworkCore.Abstractions/9.0.8": { + "Microsoft.EntityFrameworkCore.Abstractions/9.0.9": { "runtime": { "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { - "assemblyVersion": "9.0.8.0", - "fileVersion": "9.0.825.36802" + "assemblyVersion": "9.0.9.0", + "fileVersion": "9.0.925.41909" } } }, - "Microsoft.EntityFrameworkCore.Analyzers/9.0.8": {}, - "Microsoft.EntityFrameworkCore.Design/9.0.8": { + "Microsoft.EntityFrameworkCore.Analyzers/9.0.9": {}, + "Microsoft.EntityFrameworkCore.Design/9.0.9": { "dependencies": { "Humanizer.Core": "2.14.1", "Microsoft.Build.Framework": "17.8.3", @@ -610,126 +614,126 @@ "Microsoft.CodeAnalysis.CSharp": "4.8.0", "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.8.0", "Microsoft.CodeAnalysis.Workspaces.MSBuild": "4.8.0", - "Microsoft.EntityFrameworkCore.Relational": "9.0.8", - "Microsoft.Extensions.Caching.Memory": "9.0.8", - "Microsoft.Extensions.Configuration.Abstractions": "9.0.8", - "Microsoft.Extensions.DependencyModel": "9.0.8", - "Microsoft.Extensions.Logging": "9.0.8", + "Microsoft.EntityFrameworkCore.Relational": "9.0.9", + "Microsoft.Extensions.Caching.Memory": "9.0.9", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.9", + "Microsoft.Extensions.DependencyModel": "9.0.9", + "Microsoft.Extensions.Logging": "9.0.9", "Mono.TextTemplating": "3.0.0", - "System.Text.Json": "9.0.8" + "System.Text.Json": "9.0.9" }, "runtime": { "lib/net8.0/Microsoft.EntityFrameworkCore.Design.dll": { - "assemblyVersion": "9.0.8.0", - "fileVersion": "9.0.825.36802" + "assemblyVersion": "9.0.9.0", + "fileVersion": "9.0.925.41909" } } }, - "Microsoft.EntityFrameworkCore.Relational/9.0.8": { + "Microsoft.EntityFrameworkCore.Relational/9.0.9": { "dependencies": { - "Microsoft.EntityFrameworkCore": "9.0.8", - "Microsoft.Extensions.Caching.Memory": "9.0.8", - "Microsoft.Extensions.Configuration.Abstractions": "9.0.8", - "Microsoft.Extensions.Logging": "9.0.8" + "Microsoft.EntityFrameworkCore": "9.0.9", + "Microsoft.Extensions.Caching.Memory": "9.0.9", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.9", + "Microsoft.Extensions.Logging": "9.0.9" }, "runtime": { "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": { - "assemblyVersion": "9.0.8.0", - "fileVersion": "9.0.825.36802" + "assemblyVersion": "9.0.9.0", + "fileVersion": "9.0.925.41909" } } }, - "Microsoft.EntityFrameworkCore.SqlServer/9.0.8": { + "Microsoft.EntityFrameworkCore.SqlServer/9.0.9": { "dependencies": { "Microsoft.Data.SqlClient": "5.1.6", - "Microsoft.EntityFrameworkCore.Relational": "9.0.8", - "Microsoft.Extensions.Caching.Memory": "9.0.8", - "Microsoft.Extensions.Configuration.Abstractions": "9.0.8", - "Microsoft.Extensions.Logging": "9.0.8", - "System.Formats.Asn1": "9.0.8", - "System.Text.Json": "9.0.8" + "Microsoft.EntityFrameworkCore.Relational": "9.0.9", + "Microsoft.Extensions.Caching.Memory": "9.0.9", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.9", + "Microsoft.Extensions.Logging": "9.0.9", + "System.Formats.Asn1": "9.0.9", + "System.Text.Json": "9.0.9" }, "runtime": { "lib/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll": { - "assemblyVersion": "9.0.8.0", - "fileVersion": "9.0.825.36802" + "assemblyVersion": "9.0.9.0", + "fileVersion": "9.0.925.41909" } } }, - "Microsoft.EntityFrameworkCore.Tools/9.0.8": { + "Microsoft.EntityFrameworkCore.Tools/9.0.9": { "dependencies": { - "Microsoft.EntityFrameworkCore.Design": "9.0.8" + "Microsoft.EntityFrameworkCore.Design": "9.0.9" } }, - "Microsoft.Extensions.Caching.Abstractions/9.0.8": { + "Microsoft.Extensions.Caching.Abstractions/9.0.9": { "dependencies": { - "Microsoft.Extensions.Primitives": "9.0.8" + "Microsoft.Extensions.Primitives": "9.0.9" }, "runtime": { "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.dll": { "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.825.36511" + "fileVersion": "9.0.925.41916" } } }, - "Microsoft.Extensions.Caching.Memory/9.0.8": { + "Microsoft.Extensions.Caching.Memory/9.0.9": { "dependencies": { - "Microsoft.Extensions.Caching.Abstractions": "9.0.8", - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8", - "Microsoft.Extensions.Logging.Abstractions": "9.0.8", - "Microsoft.Extensions.Options": "9.0.8", - "Microsoft.Extensions.Primitives": "9.0.8" + "Microsoft.Extensions.Caching.Abstractions": "9.0.9", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.9", + "Microsoft.Extensions.Logging.Abstractions": "9.0.9", + "Microsoft.Extensions.Options": "9.0.9", + "Microsoft.Extensions.Primitives": "9.0.9" }, "runtime": { "lib/net9.0/Microsoft.Extensions.Caching.Memory.dll": { "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.825.36511" + "fileVersion": "9.0.925.41916" } } }, - "Microsoft.Extensions.Configuration.Abstractions/9.0.8": { + "Microsoft.Extensions.Configuration.Abstractions/9.0.9": { "dependencies": { - "Microsoft.Extensions.Primitives": "9.0.8" + "Microsoft.Extensions.Primitives": "9.0.9" }, "runtime": { "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": { "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.825.36511" + "fileVersion": "9.0.925.41916" } } }, - "Microsoft.Extensions.DependencyInjection/9.0.8": { + "Microsoft.Extensions.DependencyInjection/9.0.9": { "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8" + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.9" }, "runtime": { "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": { "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.825.36511" + "fileVersion": "9.0.925.41916" } } }, - "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.8": { + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.9": { "runtime": { "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.825.36511" + "fileVersion": "9.0.925.41916" } } }, - "Microsoft.Extensions.DependencyModel/9.0.8": { + "Microsoft.Extensions.DependencyModel/9.0.9": { "runtime": { "lib/net9.0/Microsoft.Extensions.DependencyModel.dll": { - "assemblyVersion": "9.0.0.8", - "fileVersion": "9.0.825.36511" + "assemblyVersion": "9.0.0.9", + "fileVersion": "9.0.925.41916" } } }, "Microsoft.Extensions.Identity.Core/9.0.8": { "dependencies": { "Microsoft.AspNetCore.Cryptography.KeyDerivation": "9.0.8", - "Microsoft.Extensions.Logging": "9.0.8", - "Microsoft.Extensions.Options": "9.0.8" + "Microsoft.Extensions.Logging": "9.0.9", + "Microsoft.Extensions.Options": "9.0.9" }, "runtime": { "lib/net9.0/Microsoft.Extensions.Identity.Core.dll": { @@ -740,9 +744,9 @@ }, "Microsoft.Extensions.Identity.Stores/9.0.8": { "dependencies": { - "Microsoft.Extensions.Caching.Abstractions": "9.0.8", + "Microsoft.Extensions.Caching.Abstractions": "9.0.9", "Microsoft.Extensions.Identity.Core": "9.0.8", - "Microsoft.Extensions.Logging": "9.0.8" + "Microsoft.Extensions.Logging": "9.0.9" }, "runtime": { "lib/net9.0/Microsoft.Extensions.Identity.Stores.dll": { @@ -753,10 +757,10 @@ }, "Microsoft.Extensions.Localization/9.0.1": { "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.9", "Microsoft.Extensions.Localization.Abstractions": "9.0.1", - "Microsoft.Extensions.Logging.Abstractions": "9.0.8", - "Microsoft.Extensions.Options": "9.0.8" + "Microsoft.Extensions.Logging.Abstractions": "9.0.9", + "Microsoft.Extensions.Options": "9.0.9" }, "runtime": { "lib/net9.0/Microsoft.Extensions.Localization.dll": { @@ -773,53 +777,53 @@ } } }, - "Microsoft.Extensions.Logging/9.0.8": { + "Microsoft.Extensions.Logging/9.0.9": { "dependencies": { - "Microsoft.Extensions.DependencyInjection": "9.0.8", - "Microsoft.Extensions.Logging.Abstractions": "9.0.8", - "Microsoft.Extensions.Options": "9.0.8" + "Microsoft.Extensions.DependencyInjection": "9.0.9", + "Microsoft.Extensions.Logging.Abstractions": "9.0.9", + "Microsoft.Extensions.Options": "9.0.9" }, "runtime": { "lib/net9.0/Microsoft.Extensions.Logging.dll": { "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.825.36511" + "fileVersion": "9.0.925.41916" } } }, - "Microsoft.Extensions.Logging.Abstractions/9.0.8": { + "Microsoft.Extensions.Logging.Abstractions/9.0.9": { "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8" + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.9" }, "runtime": { "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": { "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.825.36511" + "fileVersion": "9.0.925.41916" } } }, - "Microsoft.Extensions.Options/9.0.8": { + "Microsoft.Extensions.Options/9.0.9": { "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8", - "Microsoft.Extensions.Primitives": "9.0.8" + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.9", + "Microsoft.Extensions.Primitives": "9.0.9" }, "runtime": { "lib/net9.0/Microsoft.Extensions.Options.dll": { "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.825.36511" + "fileVersion": "9.0.925.41916" } } }, - "Microsoft.Extensions.Primitives/9.0.8": { + "Microsoft.Extensions.Primitives/9.0.9": { "runtime": { "lib/net9.0/Microsoft.Extensions.Primitives.dll": { "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.825.36511" + "fileVersion": "9.0.925.41916" } } }, "Microsoft.Identity.Client/4.61.3": { "dependencies": { - "Microsoft.IdentityModel.Abstractions": "6.35.0", + "Microsoft.IdentityModel.Abstractions": "8.14.0", "System.Diagnostics.DiagnosticSource": "6.0.1" }, "runtime": { @@ -841,20 +845,20 @@ } } }, - "Microsoft.IdentityModel.Abstractions/6.35.0": { + "Microsoft.IdentityModel.Abstractions/8.14.0": { "runtime": { - "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll": { - "assemblyVersion": "6.35.0.0", - "fileVersion": "6.35.0.41201" + "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll": { + "assemblyVersion": "8.14.0.0", + "fileVersion": "8.14.0.60815" } } }, "Microsoft.IdentityModel.JsonWebTokens/6.35.0": { "dependencies": { - "Microsoft.IdentityModel.Tokens": "6.35.0", + "Microsoft.IdentityModel.Tokens": "8.14.0", "System.Text.Encoding": "4.3.0", "System.Text.Encodings.Web": "6.0.0", - "System.Text.Json": "9.0.8" + "System.Text.Json": "9.0.9" }, "runtime": { "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll": { @@ -863,21 +867,21 @@ } } }, - "Microsoft.IdentityModel.Logging/6.35.0": { + "Microsoft.IdentityModel.Logging/8.14.0": { "dependencies": { - "Microsoft.IdentityModel.Abstractions": "6.35.0" + "Microsoft.IdentityModel.Abstractions": "8.14.0" }, "runtime": { - "lib/net6.0/Microsoft.IdentityModel.Logging.dll": { - "assemblyVersion": "6.35.0.0", - "fileVersion": "6.35.0.41201" + "lib/net9.0/Microsoft.IdentityModel.Logging.dll": { + "assemblyVersion": "8.14.0.0", + "fileVersion": "8.14.0.60815" } } }, "Microsoft.IdentityModel.Protocols/6.35.0": { "dependencies": { - "Microsoft.IdentityModel.Logging": "6.35.0", - "Microsoft.IdentityModel.Tokens": "6.35.0" + "Microsoft.IdentityModel.Logging": "8.14.0", + "Microsoft.IdentityModel.Tokens": "8.14.0" }, "runtime": { "lib/net6.0/Microsoft.IdentityModel.Protocols.dll": { @@ -898,16 +902,15 @@ } } }, - "Microsoft.IdentityModel.Tokens/6.35.0": { + "Microsoft.IdentityModel.Tokens/8.14.0": { "dependencies": { - "Microsoft.CSharp": "4.7.0", - "Microsoft.IdentityModel.Logging": "6.35.0", - "System.Security.Cryptography.Cng": "5.0.0" + "Microsoft.Extensions.Logging.Abstractions": "9.0.9", + "Microsoft.IdentityModel.Logging": "8.14.0" }, "runtime": { - "lib/net6.0/Microsoft.IdentityModel.Tokens.dll": { - "assemblyVersion": "6.35.0.0", - "fileVersion": "6.35.0.41201" + "lib/net9.0/Microsoft.IdentityModel.Tokens.dll": { + "assemblyVersion": "8.14.0.0", + "fileVersion": "8.14.0.60815" } } }, @@ -963,7 +966,7 @@ } } }, - "MudBlazor/8.12.0": { + "MudBlazor/8.13.0": { "dependencies": { "Microsoft.AspNetCore.Components": "9.0.1", "Microsoft.AspNetCore.Components.Web": "9.0.1", @@ -971,14 +974,14 @@ }, "runtime": { "lib/net9.0/MudBlazor.dll": { - "assemblyVersion": "8.12.0.0", - "fileVersion": "8.12.0.0" + "assemblyVersion": "8.13.0.0", + "fileVersion": "8.13.0.0" } } }, "Npgsql/9.0.3": { "dependencies": { - "Microsoft.Extensions.Logging.Abstractions": "9.0.8" + "Microsoft.Extensions.Logging.Abstractions": "9.0.9" }, "runtime": { "lib/net8.0/Npgsql.dll": { @@ -989,7 +992,7 @@ }, "Npgsql.DependencyInjection/9.0.3": { "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.9", "Npgsql": "9.0.3" }, "runtime": { @@ -1001,8 +1004,8 @@ }, "Npgsql.EntityFrameworkCore.PostgreSQL/9.0.4": { "dependencies": { - "Microsoft.EntityFrameworkCore": "9.0.8", - "Microsoft.EntityFrameworkCore.Relational": "9.0.8", + "Microsoft.EntityFrameworkCore": "9.0.9", + "Microsoft.EntityFrameworkCore.Relational": "9.0.9", "Npgsql": "9.0.3" }, "runtime": { @@ -1049,7 +1052,7 @@ "System.ClientModel/1.0.0": { "dependencies": { "System.Memory.Data": "1.0.2", - "System.Text.Json": "9.0.8" + "System.Text.Json": "9.0.9" }, "runtime": { "lib/net6.0/System.ClientModel.dll": { @@ -1066,6 +1069,13 @@ } } }, + "System.Collections/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, "System.Collections.Immutable/7.0.0": {}, "System.ComponentModel.Annotations/5.0.0": {}, "System.Composition/7.0.0": { @@ -1197,11 +1207,18 @@ } } }, - "System.Formats.Asn1/9.0.8": {}, + "System.Formats.Asn1/9.0.9": { + "runtime": { + "lib/net9.0/System.Formats.Asn1.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.925.41916" + } + } + }, "System.IdentityModel.Tokens.Jwt/6.35.0": { "dependencies": { "Microsoft.IdentityModel.JsonWebTokens": "6.35.0", - "Microsoft.IdentityModel.Tokens": "6.35.0" + "Microsoft.IdentityModel.Tokens": "8.14.0" }, "runtime": { "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll": { @@ -1215,7 +1232,7 @@ "System.Memory.Data/1.0.2": { "dependencies": { "System.Text.Encodings.Web": "6.0.0", - "System.Text.Json": "9.0.8" + "System.Text.Json": "9.0.9" }, "runtime": { "lib/netstandard2.0/System.Memory.Data.dll": { @@ -1259,7 +1276,7 @@ "System.Security.AccessControl/6.0.0": {}, "System.Security.Cryptography.Cng/5.0.0": { "dependencies": { - "System.Formats.Asn1": "9.0.8" + "System.Formats.Asn1": "9.0.9" } }, "System.Security.Cryptography.ProtectedData/6.0.0": { @@ -1308,7 +1325,14 @@ "System.Runtime.CompilerServices.Unsafe": "6.0.0" } }, - "System.Text.Json/9.0.8": {}, + "System.Text.Json/9.0.9": { + "runtime": { + "lib/net9.0/System.Text.Json.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.925.41916" + } + } + }, "System.Threading.Channels/7.0.0": {}, "System.Threading.Tasks.Extensions/4.5.4": {}, "System.Windows.Extensions/6.0.0": { @@ -1330,12 +1354,54 @@ } } }, + "OpenArchival.Blazor.AdminPages/1.0.0": { + "dependencies": { + "CodeBeam.MudExtensions": "6.3.0", + "Microsoft.IdentityModel.Abstractions": "8.14.0", + "Microsoft.IdentityModel.Tokens": "8.14.0", + "MudBlazor": "8.13.0", + "OpenArchival.Blazor.CustomComponents": "1.0.0", + "OpenArchival.DataAccess": "1.0.0" + }, + "runtime": { + "OpenArchival.Blazor.AdminPages.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "OpenArchival.Blazor.CustomComponents/1.0.0": { + "dependencies": { + "CodeBeam.MudExtensions": "6.3.0", + "MudBlazor": "8.13.0", + "OpenArchival.DataAccess": "1.0.0" + }, + "runtime": { + "OpenArchival.Blazor.CustomComponents.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "OpenArchival.Blazor.FileViewer/1.0.0": { + "dependencies": { + "CodeBeam.MudExtensions": "6.3.0", + "MudBlazor": "8.13.0", + "OpenArchival.DataAccess": "1.0.0" + }, + "runtime": { + "OpenArchival.Blazor.FileViewer.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, "OpenArchival.DataAccess/1.0.0": { "dependencies": { "EntityFramework": "6.5.1", "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "9.0.8", - "Microsoft.EntityFrameworkCore": "9.0.8", - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8", + "Microsoft.EntityFrameworkCore": "9.0.9", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.9", "Npgsql": "9.0.3", "Npgsql.EntityFrameworkCore.PostgreSQL": "9.0.4" }, @@ -1459,12 +1525,12 @@ "path": "microsoft.aspnetcore.cryptography.keyderivation/9.0.8", "hashPath": "microsoft.aspnetcore.cryptography.keyderivation.9.0.8.nupkg.sha512" }, - "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore/9.0.8": { + "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore/9.0.9": { "type": "package", "serviceable": true, - "sha512": "sha512-/fr42V7LN7jmlIc7akFQQPPXcEy92+iPr2O7Eum0X3EZv/gcOHKNeaB1MnhViEQs0ylAMVDRTPi3OyoVKRxlDg==", - "path": "microsoft.aspnetcore.diagnostics.entityframeworkcore/9.0.8", - "hashPath": "microsoft.aspnetcore.diagnostics.entityframeworkcore.9.0.8.nupkg.sha512" + "sha512": "sha512-ClnQ7NYH6glI4B8b91qiu0vN+5cuMrltpJJoJQmD9LPNMMTinkqmzEyFBce8r7Y68dEWiq14CBGYdr91++z+NQ==", + "path": "microsoft.aspnetcore.diagnostics.entityframeworkcore/9.0.9", + "hashPath": "microsoft.aspnetcore.diagnostics.entityframeworkcore.9.0.9.nupkg.sha512" }, "Microsoft.AspNetCore.Identity.EntityFrameworkCore/9.0.8": { "type": "package", @@ -1564,96 +1630,96 @@ "path": "microsoft.data.sqlclient.sni.runtime/5.1.1", "hashPath": "microsoft.data.sqlclient.sni.runtime.5.1.1.nupkg.sha512" }, - "Microsoft.EntityFrameworkCore/9.0.8": { + "Microsoft.EntityFrameworkCore/9.0.9": { "type": "package", "serviceable": true, - "sha512": "sha512-bNGdPhN762+BIIO5MFYLjafRqkSS1MqLOc/erd55InvLnFxt9H3N5JNsuag1ZHyBor1VtD42U0CHpgqkWeAYgQ==", - "path": "microsoft.entityframeworkcore/9.0.8", - "hashPath": "microsoft.entityframeworkcore.9.0.8.nupkg.sha512" + "sha512": "sha512-zkt5yQgnpWKX3rOxn+ZcV23Aj0296XCTqg4lx1hKY+wMXBgkn377UhBrY/A4H6kLpNT7wqZN98xCV0YHXu9VRA==", + "path": "microsoft.entityframeworkcore/9.0.9", + "hashPath": "microsoft.entityframeworkcore.9.0.9.nupkg.sha512" }, - "Microsoft.EntityFrameworkCore.Abstractions/9.0.8": { + "Microsoft.EntityFrameworkCore.Abstractions/9.0.9": { "type": "package", "serviceable": true, - "sha512": "sha512-B2yfAIQRRAQ4zvvWqh+HudD+juV3YoLlpXnrog3tU0PM9AFpuq6xo0+mEglN1P43WgdcUiF+65CWBcZe35s15Q==", - "path": "microsoft.entityframeworkcore.abstractions/9.0.8", - "hashPath": "microsoft.entityframeworkcore.abstractions.9.0.8.nupkg.sha512" + "sha512": "sha512-QdM2k3Mnip2QsaxJbCI95dc2SajRMENdmaMhVKj4jPC5dmkoRcu3eEdvZAgDbd4bFVV1jtPGdHtXewtoBMlZqA==", + "path": "microsoft.entityframeworkcore.abstractions/9.0.9", + "hashPath": "microsoft.entityframeworkcore.abstractions.9.0.9.nupkg.sha512" }, - "Microsoft.EntityFrameworkCore.Analyzers/9.0.8": { + "Microsoft.EntityFrameworkCore.Analyzers/9.0.9": { "type": "package", "serviceable": true, - "sha512": "sha512-2EYStCXt4Hi9p3J3EYMQbItJDtASJd064Kcs8C8hj8Jt5srILrR9qlaL0Ryvk8NrWQoCQvIELsmiuqLEZMLvGA==", - "path": "microsoft.entityframeworkcore.analyzers/9.0.8", - "hashPath": "microsoft.entityframeworkcore.analyzers.9.0.8.nupkg.sha512" + "sha512": "sha512-uiKeU/qR0YpaDUa4+g0rAjKCuwfq8YWZGcpPptnFWIr1K7dXQTm/15D2HDwwU4ln3Uf66krYybymuY58ua4hhw==", + "path": "microsoft.entityframeworkcore.analyzers/9.0.9", + "hashPath": "microsoft.entityframeworkcore.analyzers.9.0.9.nupkg.sha512" }, - "Microsoft.EntityFrameworkCore.Design/9.0.8": { + "Microsoft.EntityFrameworkCore.Design/9.0.9": { "type": "package", "serviceable": true, - "sha512": "sha512-02e8OcoumSUAES3VkXrMT9EnNCUKWJoifn5+8fFEbAtRhKL3xg2a/Mj6rsAUGF7tkYFox6oKzJCn0jbm6b8Lbw==", - "path": "microsoft.entityframeworkcore.design/9.0.8", - "hashPath": "microsoft.entityframeworkcore.design.9.0.8.nupkg.sha512" + "sha512": "sha512-cFxH70tohWe3ugCjLhZB01mR7WHpg5dEK6zHsbkDFfpLxWT+HoZQKgchTJgF4bPWBPTyrlYlqfPY212fFtmJjg==", + "path": "microsoft.entityframeworkcore.design/9.0.9", + "hashPath": "microsoft.entityframeworkcore.design.9.0.9.nupkg.sha512" }, - "Microsoft.EntityFrameworkCore.Relational/9.0.8": { + "Microsoft.EntityFrameworkCore.Relational/9.0.9": { "type": "package", "serviceable": true, - "sha512": "sha512-OVhfyxiHxMvYpwQ8Jy3YZi4koy6TK5/Q7C1oq3z6db+HEGuu6x9L1BX5zDIdJxxlRePMyO4D8ORiXj/D7+MUqw==", - "path": "microsoft.entityframeworkcore.relational/9.0.8", - "hashPath": "microsoft.entityframeworkcore.relational.9.0.8.nupkg.sha512" + "sha512": "sha512-SonFU9a8x4jZIhIBtCw1hIE3QKjd4c7Y3mjptoh682dfQe7K9pUPGcEV/sk4n8AJdq4fkyJPCaOdYaObhae/Iw==", + "path": "microsoft.entityframeworkcore.relational/9.0.9", + "hashPath": "microsoft.entityframeworkcore.relational.9.0.9.nupkg.sha512" }, - "Microsoft.EntityFrameworkCore.SqlServer/9.0.8": { + "Microsoft.EntityFrameworkCore.SqlServer/9.0.9": { "type": "package", "serviceable": true, - "sha512": "sha512-yNZJIdLQTTHj6FTv9+IUQwmQvOwvUanTBOG1ibeTaaB1zfTtOqrSFQnjMOkcKOgxu+ofsBEDcuctb/f5xj/Oog==", - "path": "microsoft.entityframeworkcore.sqlserver/9.0.8", - "hashPath": "microsoft.entityframeworkcore.sqlserver.9.0.8.nupkg.sha512" + "sha512": "sha512-t+6Zo92F5CgKyFncPSWRB3DFNwBrGug9F6rlrUFlJEr4Bf0t4ZFhZLg0qfuA3ouT7AQKuLTrvXLxuov8DWcuPQ==", + "path": "microsoft.entityframeworkcore.sqlserver/9.0.9", + "hashPath": "microsoft.entityframeworkcore.sqlserver.9.0.9.nupkg.sha512" }, - "Microsoft.EntityFrameworkCore.Tools/9.0.8": { + "Microsoft.EntityFrameworkCore.Tools/9.0.9": { "type": "package", "serviceable": true, - "sha512": "sha512-gtjwfJsEB5Mz5qOhdYjm+9KWJEVmVu5xxOgrxHxW6dNmhGfwdNXnNx5Nvdk6IHt0hmn0OK6MREMZEOsjrnSCfA==", - "path": "microsoft.entityframeworkcore.tools/9.0.8", - "hashPath": "microsoft.entityframeworkcore.tools.9.0.8.nupkg.sha512" + "sha512": "sha512-Q8n1PXXJApa1qX8HI3r/YuHoJ1HuLwjI2hLqaCV9K9pqQhGpi6Z38laOYwL2ElUOTWCxTKMDEMMYWfPlw6rwgg==", + "path": "microsoft.entityframeworkcore.tools/9.0.9", + "hashPath": "microsoft.entityframeworkcore.tools.9.0.9.nupkg.sha512" }, - "Microsoft.Extensions.Caching.Abstractions/9.0.8": { + "Microsoft.Extensions.Caching.Abstractions/9.0.9": { "type": "package", "serviceable": true, - "sha512": "sha512-4h7bsVoKoiK+SlPM+euX/ayGnKZhl47pPCidLTiio9xyG+vgVVfcYxcYQgjm0SCrdSxjG0EGIAKF8EFr3G8Ifw==", - "path": "microsoft.extensions.caching.abstractions/9.0.8", - "hashPath": "microsoft.extensions.caching.abstractions.9.0.8.nupkg.sha512" + "sha512": "sha512-NgtRHOdPrAEacfjXLSrH/SRrSqGf6Vaa6d16mW2yoyJdg7AJr0BnBvxkv7PkCm/CHVyzojTK7Y+oUDEulqY1Qw==", + "path": "microsoft.extensions.caching.abstractions/9.0.9", + "hashPath": "microsoft.extensions.caching.abstractions.9.0.9.nupkg.sha512" }, - "Microsoft.Extensions.Caching.Memory/9.0.8": { + "Microsoft.Extensions.Caching.Memory/9.0.9": { "type": "package", "serviceable": true, - "sha512": "sha512-grR+oPyj8HVn4DT8CFUUdSw2pZZKS13KjytFe4txpHQliGM1GEDotohmjgvyl3hm7RFB3FRqvbouEX3/1ewp5A==", - "path": "microsoft.extensions.caching.memory/9.0.8", - "hashPath": "microsoft.extensions.caching.memory.9.0.8.nupkg.sha512" + "sha512": "sha512-ln31BtsDsBQxykJgxuCtiUXWRET9FmqeEq0BpPIghkYtGpDDVs8ZcLHAjCCzbw6aGoLek4Z7JaDjSO/CjOD0iw==", + "path": "microsoft.extensions.caching.memory/9.0.9", + "hashPath": "microsoft.extensions.caching.memory.9.0.9.nupkg.sha512" }, - "Microsoft.Extensions.Configuration.Abstractions/9.0.8": { + "Microsoft.Extensions.Configuration.Abstractions/9.0.9": { "type": "package", "serviceable": true, - "sha512": "sha512-yNou2KM35RvzOh4vUFtl2l33rWPvOCoba+nzEDJ+BgD8aOL/jew4WPCibQvntRfOJ2pJU8ARygSMD+pdjvDHuA==", - "path": "microsoft.extensions.configuration.abstractions/9.0.8", - "hashPath": "microsoft.extensions.configuration.abstractions.9.0.8.nupkg.sha512" + "sha512": "sha512-p5RKAY9POvs3axwA/AQRuJeM8AHuE8h4qbP1NxQeGm0ep46aXz1oCLAp/oOYxX1GsjStgdhHrN3XXLLXr0+b3w==", + "path": "microsoft.extensions.configuration.abstractions/9.0.9", + "hashPath": "microsoft.extensions.configuration.abstractions.9.0.9.nupkg.sha512" }, - "Microsoft.Extensions.DependencyInjection/9.0.8": { + "Microsoft.Extensions.DependencyInjection/9.0.9": { "type": "package", "serviceable": true, - "sha512": "sha512-JJjI2Fa+QtZcUyuNjbKn04OjIUX5IgFGFu/Xc+qvzh1rXdZHLcnqqVXhR4093bGirTwacRlHiVg1XYI9xum6QQ==", - "path": "microsoft.extensions.dependencyinjection/9.0.8", - "hashPath": "microsoft.extensions.dependencyinjection.9.0.8.nupkg.sha512" + "sha512": "sha512-zQV2WOSP+3z1EuK91ULxfGgo2Y75bTRnmJHp08+w/YXAyekZutX/qCd88/HOMNh35MDW9mJJJxPpMPS+1Rww8A==", + "path": "microsoft.extensions.dependencyinjection/9.0.9", + "hashPath": "microsoft.extensions.dependencyinjection.9.0.9.nupkg.sha512" }, - "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.8": { + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.9": { "type": "package", "serviceable": true, - "sha512": "sha512-xY3lTjj4+ZYmiKIkyWitddrp1uL5uYiweQjqo4BKBw01ZC4HhcfgLghDpPZcUlppgWAFqFy9SgkiYWOMx365pw==", - "path": "microsoft.extensions.dependencyinjection.abstractions/9.0.8", - "hashPath": "microsoft.extensions.dependencyinjection.abstractions.9.0.8.nupkg.sha512" + "sha512": "sha512-/hymojfWbE9AlDOa0mczR44m00Jj+T3+HZO0ZnVTI032fVycI0ZbNOVFP6kqZMcXiLSYXzR2ilcwaRi6dzeGyA==", + "path": "microsoft.extensions.dependencyinjection.abstractions/9.0.9", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.9.0.9.nupkg.sha512" }, - "Microsoft.Extensions.DependencyModel/9.0.8": { + "Microsoft.Extensions.DependencyModel/9.0.9": { "type": "package", "serviceable": true, - "sha512": "sha512-3CW02zNjyqJ2eORo8Zkznpw6+QvK+tYUKZgKuKuAIYdy73TRFvpaqCwYws1k6/lMSJ7ZqABfWn0/wa5bRsIJ4w==", - "path": "microsoft.extensions.dependencymodel/9.0.8", - "hashPath": "microsoft.extensions.dependencymodel.9.0.8.nupkg.sha512" + "sha512": "sha512-fNGvKct2De8ghm0Bpfq0iWthtzIWabgOTi+gJhNOPhNJIowXNEUE2eZNW/zNCzrHVA3PXg2yZ+3cWZndC2IqYA==", + "path": "microsoft.extensions.dependencymodel/9.0.9", + "hashPath": "microsoft.extensions.dependencymodel.9.0.9.nupkg.sha512" }, "Microsoft.Extensions.Identity.Core/9.0.8": { "type": "package", @@ -1683,33 +1749,33 @@ "path": "microsoft.extensions.localization.abstractions/9.0.1", "hashPath": "microsoft.extensions.localization.abstractions.9.0.1.nupkg.sha512" }, - "Microsoft.Extensions.Logging/9.0.8": { + "Microsoft.Extensions.Logging/9.0.9": { "type": "package", "serviceable": true, - "sha512": "sha512-Z/7ze+0iheT7FJeZPqJKARYvyC2bmwu3whbm/48BJjdlGVvgDguoCqJIkI/67NkroTYobd5geai1WheNQvWrgA==", - "path": "microsoft.extensions.logging/9.0.8", - "hashPath": "microsoft.extensions.logging.9.0.8.nupkg.sha512" + "sha512": "sha512-MaCB0Y9hNDs4YLu3HCJbo199WnJT8xSgajG1JYGANz9FkseQ5f3v/llu3HxLI6mjDlu7pa7ps9BLPWjKzsAAzQ==", + "path": "microsoft.extensions.logging/9.0.9", + "hashPath": "microsoft.extensions.logging.9.0.9.nupkg.sha512" }, - "Microsoft.Extensions.Logging.Abstractions/9.0.8": { + "Microsoft.Extensions.Logging.Abstractions/9.0.9": { "type": "package", "serviceable": true, - "sha512": "sha512-pYnAffJL7ARD/HCnnPvnFKSIHnTSmWz84WIlT9tPeQ4lHNiu0Az7N/8itihWvcF8sT+VVD5lq8V+ckMzu4SbOw==", - "path": "microsoft.extensions.logging.abstractions/9.0.8", - "hashPath": "microsoft.extensions.logging.abstractions.9.0.8.nupkg.sha512" + "sha512": "sha512-FEgpSF+Z9StMvrsSViaybOBwR0f0ZZxDm8xV5cSOFiXN/t+ys+rwAlTd/6yG7Ld1gfppgvLcMasZry3GsI9lGA==", + "path": "microsoft.extensions.logging.abstractions/9.0.9", + "hashPath": "microsoft.extensions.logging.abstractions.9.0.9.nupkg.sha512" }, - "Microsoft.Extensions.Options/9.0.8": { + "Microsoft.Extensions.Options/9.0.9": { "type": "package", "serviceable": true, - "sha512": "sha512-OmTaQ0v4gxGQkehpwWIqPoEiwsPuG/u4HUsbOFoWGx4DKET2AXzopnFe/fE608FIhzc/kcg2p8JdyMRCCUzitQ==", - "path": "microsoft.extensions.options/9.0.8", - "hashPath": "microsoft.extensions.options.9.0.8.nupkg.sha512" + "sha512": "sha512-loxGGHE1FC2AefwPHzrjPq7X92LQm64qnU/whKfo6oWaceewPUVYQJBJs3S3E2qlWwnCpeZ+dGCPTX+5dgVAuQ==", + "path": "microsoft.extensions.options/9.0.9", + "hashPath": "microsoft.extensions.options.9.0.9.nupkg.sha512" }, - "Microsoft.Extensions.Primitives/9.0.8": { + "Microsoft.Extensions.Primitives/9.0.9": { "type": "package", "serviceable": true, - "sha512": "sha512-tizSIOEsIgSNSSh+hKeUVPK7xmTIjR8s+mJWOu1KXV3htvNQiPMFRMO17OdI1y/4ZApdBVk49u/08QGC9yvLug==", - "path": "microsoft.extensions.primitives/9.0.8", - "hashPath": "microsoft.extensions.primitives.9.0.8.nupkg.sha512" + "sha512": "sha512-z4pyMePOrl733ltTowbN565PxBw1oAr8IHmIXNDiDqd22nFpYltX9KhrNC/qBWAG1/Zx5MHX+cOYhWJQYCO/iw==", + "path": "microsoft.extensions.primitives/9.0.9", + "hashPath": "microsoft.extensions.primitives.9.0.9.nupkg.sha512" }, "Microsoft.Identity.Client/4.61.3": { "type": "package", @@ -1725,12 +1791,12 @@ "path": "microsoft.identity.client.extensions.msal/4.61.3", "hashPath": "microsoft.identity.client.extensions.msal.4.61.3.nupkg.sha512" }, - "Microsoft.IdentityModel.Abstractions/6.35.0": { + "Microsoft.IdentityModel.Abstractions/8.14.0": { "type": "package", "serviceable": true, - "sha512": "sha512-xuR8E4Rd96M41CnUSCiOJ2DBh+z+zQSmyrYHdYhD6K4fXBcQGVnRCFQ0efROUYpP+p0zC1BLKr0JRpVuujTZSg==", - "path": "microsoft.identitymodel.abstractions/6.35.0", - "hashPath": "microsoft.identitymodel.abstractions.6.35.0.nupkg.sha512" + "sha512": "sha512-iwbCpSjD3ehfTwBhtSNEtKPK0ICun6ov7Ibx6ISNA9bfwIyzI2Siwyi9eJFCJBwxowK9xcA1mj+jBWiigeqgcQ==", + "path": "microsoft.identitymodel.abstractions/8.14.0", + "hashPath": "microsoft.identitymodel.abstractions.8.14.0.nupkg.sha512" }, "Microsoft.IdentityModel.JsonWebTokens/6.35.0": { "type": "package", @@ -1739,12 +1805,12 @@ "path": "microsoft.identitymodel.jsonwebtokens/6.35.0", "hashPath": "microsoft.identitymodel.jsonwebtokens.6.35.0.nupkg.sha512" }, - "Microsoft.IdentityModel.Logging/6.35.0": { + "Microsoft.IdentityModel.Logging/8.14.0": { "type": "package", "serviceable": true, - "sha512": "sha512-jePrSfGAmqT81JDCNSY+fxVWoGuJKt9e6eJ+vT7+quVS55nWl//jGjUQn4eFtVKt4rt5dXaleZdHRB9J9AJZ7Q==", - "path": "microsoft.identitymodel.logging/6.35.0", - "hashPath": "microsoft.identitymodel.logging.6.35.0.nupkg.sha512" + "sha512": "sha512-eqqnemdW38CKZEHS6diA50BV94QICozDZEvSrsvN3SJXUFwVB9gy+/oz76gldP7nZliA16IglXjXTCTdmU/Ejg==", + "path": "microsoft.identitymodel.logging/8.14.0", + "hashPath": "microsoft.identitymodel.logging.8.14.0.nupkg.sha512" }, "Microsoft.IdentityModel.Protocols/6.35.0": { "type": "package", @@ -1760,12 +1826,12 @@ "path": "microsoft.identitymodel.protocols.openidconnect/6.35.0", "hashPath": "microsoft.identitymodel.protocols.openidconnect.6.35.0.nupkg.sha512" }, - "Microsoft.IdentityModel.Tokens/6.35.0": { + "Microsoft.IdentityModel.Tokens/8.14.0": { "type": "package", "serviceable": true, - "sha512": "sha512-RN7lvp7s3Boucg1NaNAbqDbxtlLj5Qeb+4uSS1TeK5FSBVM40P4DKaTKChT43sHyKfh7V0zkrMph6DdHvyA4bg==", - "path": "microsoft.identitymodel.tokens/6.35.0", - "hashPath": "microsoft.identitymodel.tokens.6.35.0.nupkg.sha512" + "sha512": "sha512-lKIZiBiGd36k02TCdMHp1KlNWisyIvQxcYJvIkz7P4gSQ9zi8dgh6S5Grj8NNG7HWYIPfQymGyoZ6JB5d1Lo1g==", + "path": "microsoft.identitymodel.tokens/8.14.0", + "hashPath": "microsoft.identitymodel.tokens.8.14.0.nupkg.sha512" }, "Microsoft.JSInterop/9.0.1": { "type": "package", @@ -1823,12 +1889,12 @@ "path": "mono.texttemplating/3.0.0", "hashPath": "mono.texttemplating.3.0.0.nupkg.sha512" }, - "MudBlazor/8.12.0": { + "MudBlazor/8.13.0": { "type": "package", "serviceable": true, - "sha512": "sha512-ZwgHPt2DwiQoFeP8jxPzNEsUmJF17ljtospVH+uMUKUKpklz6jEkdE5vNs7PnHaPH9HEbpFEQgJw8QPlnFZjsQ==", - "path": "mudblazor/8.12.0", - "hashPath": "mudblazor.8.12.0.nupkg.sha512" + "sha512": "sha512-Y6JW93zf8tiVhMSkkL0mZ3ruqjOTNftvVoX3sik6NEnIye+Gs0FXI8rhXfrH2LU79Mw/fOtT5ms3L/Q4TKx2kA==", + "path": "mudblazor/8.13.0", + "hashPath": "mudblazor.8.13.0.nupkg.sha512" }, "Npgsql/9.0.3": { "type": "package", @@ -1893,6 +1959,13 @@ "path": "system.codedom/6.0.0", "hashPath": "system.codedom.6.0.0.nupkg.sha512" }, + "System.Collections/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "path": "system.collections/4.3.0", + "hashPath": "system.collections.4.3.0.nupkg.sha512" + }, "System.Collections.Immutable/7.0.0": { "type": "package", "serviceable": true, @@ -1977,12 +2050,12 @@ "path": "system.drawing.common/6.0.0", "hashPath": "system.drawing.common.6.0.0.nupkg.sha512" }, - "System.Formats.Asn1/9.0.8": { + "System.Formats.Asn1/9.0.9": { "type": "package", "serviceable": true, - "sha512": "sha512-gGL0gt2nAArsF2oOMFzClll6QN2FhtooTxEQ+K26uer4lrhahnYIo/qOn5HUSfjHlM91646L5/7dYIMJ86fHkQ==", - "path": "system.formats.asn1/9.0.8", - "hashPath": "system.formats.asn1.9.0.8.nupkg.sha512" + "sha512": "sha512-hnQCFWPAvZM45fFEExgbHTgq6GyfyQdHxyI+PvuzqI1G7KvBYcnNEPHbLJ+1jP+Ip69yBvvUOxaibmDInmOw2Q==", + "path": "system.formats.asn1/9.0.9", + "hashPath": "system.formats.asn1.9.0.9.nupkg.sha512" }, "System.IdentityModel.Tokens.Jwt/6.35.0": { "type": "package", @@ -2103,12 +2176,12 @@ "path": "system.text.encodings.web/6.0.0", "hashPath": "system.text.encodings.web.6.0.0.nupkg.sha512" }, - "System.Text.Json/9.0.8": { + "System.Text.Json/9.0.9": { "type": "package", "serviceable": true, - "sha512": "sha512-mIQir9jBqk0V7X0Nw5hzPJZC8DuGdf+2DS3jAVsr6rq5+/VyH5rza0XGcONJUWBrZ+G6BCwNyjWYd9lncBu48A==", - "path": "system.text.json/9.0.8", - "hashPath": "system.text.json.9.0.8.nupkg.sha512" + "sha512": "sha512-NEnpppwq67fRz/OvQRxsEMgetDJsxlxpEsAFO/4PZYbAyAMd4Ol6KS7phc8uDoKPsnbdzRLKobpX303uQwCqdg==", + "path": "system.text.json/9.0.9", + "hashPath": "system.text.json.9.0.9.nupkg.sha512" }, "System.Threading.Channels/7.0.0": { "type": "package", @@ -2131,6 +2204,21 @@ "path": "system.windows.extensions/6.0.0", "hashPath": "system.windows.extensions.6.0.0.nupkg.sha512" }, + "OpenArchival.Blazor.AdminPages/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "OpenArchival.Blazor.CustomComponents/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "OpenArchival.Blazor.FileViewer/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, "OpenArchival.DataAccess/1.0.0": { "type": "project", "serviceable": false, diff --git a/bin/Debug/OpenArchival.Blazor.dll b/bin/Debug/OpenArchival.Blazor.dll index 425809b..36c604d 100644 Binary files a/bin/Debug/OpenArchival.Blazor.dll and b/bin/Debug/OpenArchival.Blazor.dll differ diff --git a/bin/Debug/OpenArchival.Blazor.exe b/bin/Debug/OpenArchival.Blazor.exe index 3562ff9..41b6ef2 100644 Binary files a/bin/Debug/OpenArchival.Blazor.exe and b/bin/Debug/OpenArchival.Blazor.exe differ diff --git a/bin/Debug/OpenArchival.Blazor.pdb b/bin/Debug/OpenArchival.Blazor.pdb index eda9cb2..b7a8e68 100644 Binary files a/bin/Debug/OpenArchival.Blazor.pdb and b/bin/Debug/OpenArchival.Blazor.pdb differ diff --git a/bin/Debug/OpenArchival.Blazor.staticwebassets.endpoints.json b/bin/Debug/OpenArchival.Blazor.staticwebassets.endpoints.json index 4966c0b..645f299 100644 --- a/bin/Debug/OpenArchival.Blazor.staticwebassets.endpoints.json +++ b/bin/Debug/OpenArchival.Blazor.staticwebassets.endpoints.json @@ -1 +1 @@ -{"Version":1,"ManifestType":"Build","Endpoints":[{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.css","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"21465"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk=\""},{"Name":"Last-Modified","Value":"Sun, 26 Feb 2023 14:08:26 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.css","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000295508274"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3383"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"6PJ7t7WR38pQTSYe6IR0pbqo2cIZK5wuW/w26kprtBg=\""},{"Name":"ETag","Value":"W/\"Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk=\""},{"Name":"Last-Modified","Value":"Fri, 05 Sep 2025 16:32:47 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.css.gz","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3383"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"6PJ7t7WR38pQTSYe6IR0pbqo2cIZK5wuW/w26kprtBg=\""},{"Name":"Last-Modified","Value":"Fri, 05 Sep 2025 16:32:47 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6PJ7t7WR38pQTSYe6IR0pbqo2cIZK5wuW/w26kprtBg="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.js","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"328"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc=\""},{"Name":"Last-Modified","Value":"Sun, 26 Feb 2023 14:08:26 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.js","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005076142132"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"196"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"B4PUgpr06+d3lAMWknp0EVkaGxPZJdpp5/UidGHzvnc=\""},{"Name":"ETag","Value":"W/\"FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc=\""},{"Name":"Last-Modified","Value":"Fri, 05 Sep 2025 16:32:47 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.js.gz","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"196"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"B4PUgpr06+d3lAMWknp0EVkaGxPZJdpp5/UidGHzvnc=\""},{"Name":"Last-Modified","Value":"Fri, 05 Sep 2025 16:32:47 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-B4PUgpr06+d3lAMWknp0EVkaGxPZJdpp5/UidGHzvnc="}]},{"Route":"_content/CodeBeam.MudExtensions/Mud_Secondary.png","AssetFile":"_content/CodeBeam.MudExtensions/Mud_Secondary.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4558"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"G3hYUw4Ps9P/IQ3lw2zu96RSZaOf4zU+4QkXkH8Xi3Y=\""},{"Name":"Last-Modified","Value":"Sat, 08 Oct 2022 09:55:02 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G3hYUw4Ps9P/IQ3lw2zu96RSZaOf4zU+4QkXkH8Xi3Y="}]},{"Route":"_content/MudBlazor/MudBlazor.min.0n6lrtb02s.css","AssetFile":"_content/MudBlazor/MudBlazor.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"606258"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"3FM/mjas9rQiq2CY+FQPy1Pe1iCLSx/qZltQxK4dcuQ=\""},{"Name":"Last-Modified","Value":"Tue, 02 Sep 2025 18:25:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0n6lrtb02s"},{"Name":"integrity","Value":"sha256-3FM/mjas9rQiq2CY+FQPy1Pe1iCLSx/qZltQxK4dcuQ="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.css"}]},{"Route":"_content/MudBlazor/MudBlazor.min.css","AssetFile":"_content/MudBlazor/MudBlazor.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"606258"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"3FM/mjas9rQiq2CY+FQPy1Pe1iCLSx/qZltQxK4dcuQ=\""},{"Name":"Last-Modified","Value":"Tue, 02 Sep 2025 18:25:58 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3FM/mjas9rQiq2CY+FQPy1Pe1iCLSx/qZltQxK4dcuQ="}]},{"Route":"_content/MudBlazor/MudBlazor.min.css","AssetFile":"_content/MudBlazor/MudBlazor.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015264845"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"65509"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"G6ttMFl4pZQbeXfp7Od0SO3bC9h9rp9m7NW7DgD0a1Q=\""},{"Name":"ETag","Value":"W/\"3FM/mjas9rQiq2CY+FQPy1Pe1iCLSx/qZltQxK4dcuQ=\""},{"Name":"Last-Modified","Value":"Fri, 05 Sep 2025 16:32:47 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3FM/mjas9rQiq2CY+FQPy1Pe1iCLSx/qZltQxK4dcuQ="}]},{"Route":"_content/MudBlazor/MudBlazor.min.css.gz","AssetFile":"_content/MudBlazor/MudBlazor.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"65509"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"G6ttMFl4pZQbeXfp7Od0SO3bC9h9rp9m7NW7DgD0a1Q=\""},{"Name":"Last-Modified","Value":"Fri, 05 Sep 2025 16:32:47 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G6ttMFl4pZQbeXfp7Od0SO3bC9h9rp9m7NW7DgD0a1Q="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js","AssetFile":"_content/MudBlazor/MudBlazor.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"73682"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Qf9/gSPxTxchB08Wi5WXxjPqw2IQvnyVUW27s7cwoUo=\""},{"Name":"Last-Modified","Value":"Tue, 02 Sep 2025 18:25:58 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Qf9/gSPxTxchB08Wi5WXxjPqw2IQvnyVUW27s7cwoUo="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js","AssetFile":"_content/MudBlazor/MudBlazor.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000062952471"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15884"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"qhJtBPrvSKzfmYIXttsCBAyz1XObWORxmjjeuquTVx8=\""},{"Name":"ETag","Value":"W/\"Qf9/gSPxTxchB08Wi5WXxjPqw2IQvnyVUW27s7cwoUo=\""},{"Name":"Last-Modified","Value":"Fri, 05 Sep 2025 16:32:47 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Qf9/gSPxTxchB08Wi5WXxjPqw2IQvnyVUW27s7cwoUo="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js.gz","AssetFile":"_content/MudBlazor/MudBlazor.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15884"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"qhJtBPrvSKzfmYIXttsCBAyz1XObWORxmjjeuquTVx8=\""},{"Name":"Last-Modified","Value":"Fri, 05 Sep 2025 16:32:47 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qhJtBPrvSKzfmYIXttsCBAyz1XObWORxmjjeuquTVx8="}]},{"Route":"_content/MudBlazor/MudBlazor.min.lftp6ydp6b.js","AssetFile":"_content/MudBlazor/MudBlazor.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"73682"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Qf9/gSPxTxchB08Wi5WXxjPqw2IQvnyVUW27s7cwoUo=\""},{"Name":"Last-Modified","Value":"Tue, 02 Sep 2025 18:25:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lftp6ydp6b"},{"Name":"integrity","Value":"sha256-Qf9/gSPxTxchB08Wi5WXxjPqw2IQvnyVUW27s7cwoUo="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.js"}]},{"Route":"favicon.2jeq8efc6q.ico","AssetFile":"favicon.ico.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000336021505"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2975"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"b7CPHqpoIGsGVgOrEO+r2XPyaLrLUBwkA6R2jOMbS7M=\""},{"Name":"ETag","Value":"W/\"8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA=\""},{"Name":"Last-Modified","Value":"Fri, 05 Sep 2025 16:32:47 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2jeq8efc6q"},{"Name":"integrity","Value":"sha256-8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA="},{"Name":"label","Value":"favicon.ico"}]},{"Route":"favicon.2jeq8efc6q.ico","AssetFile":"favicon.ico","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"15086"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA=\""},{"Name":"Last-Modified","Value":"Tue, 12 Aug 2025 18:28:17 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2jeq8efc6q"},{"Name":"integrity","Value":"sha256-8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA="},{"Name":"label","Value":"favicon.ico"}]},{"Route":"favicon.2jeq8efc6q.ico.gz","AssetFile":"favicon.ico.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":"2975"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"b7CPHqpoIGsGVgOrEO+r2XPyaLrLUBwkA6R2jOMbS7M=\""},{"Name":"Last-Modified","Value":"Fri, 05 Sep 2025 16:32:47 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2jeq8efc6q"},{"Name":"integrity","Value":"sha256-b7CPHqpoIGsGVgOrEO+r2XPyaLrLUBwkA6R2jOMbS7M="},{"Name":"label","Value":"favicon.ico.gz"}]},{"Route":"favicon.ico","AssetFile":"favicon.ico.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000336021505"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2975"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"b7CPHqpoIGsGVgOrEO+r2XPyaLrLUBwkA6R2jOMbS7M=\""},{"Name":"ETag","Value":"W/\"8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA=\""},{"Name":"Last-Modified","Value":"Fri, 05 Sep 2025 16:32:47 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA="}]},{"Route":"favicon.ico","AssetFile":"favicon.ico","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"15086"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA=\""},{"Name":"Last-Modified","Value":"Tue, 12 Aug 2025 18:28:17 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA="}]},{"Route":"favicon.ico.gz","AssetFile":"favicon.ico.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2975"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"b7CPHqpoIGsGVgOrEO+r2XPyaLrLUBwkA6R2jOMbS7M=\""},{"Name":"Last-Modified","Value":"Fri, 05 Sep 2025 16:32:47 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-b7CPHqpoIGsGVgOrEO+r2XPyaLrLUBwkA6R2jOMbS7M="}]}]} \ No newline at end of file +{"Version":1,"ManifestType":"Build","Endpoints":[{"Route":"OpenArchival.Blazor.of6ssq9pmk.styles.css","AssetFile":"OpenArchival.Blazor.styles.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.009708737864"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"102"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"iaEgFyUTJAhMAW+JFVh6LKM3gSG0Kn0oNWuuMVofbCw=\""},{"Name":"ETag","Value":"W/\"lCMY9zSeY9QeKoomwsAHffyneUvstrerzcX/DLZLNWc=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Link","Value":"<_content/OpenArchival.Blazor.FileViewer/OpenArchival.Blazor.FileViewer.83wakjp31g.bundle.scp.css>; rel=\"preload\"; as=\"style\""},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"of6ssq9pmk"},{"Name":"integrity","Value":"sha256-lCMY9zSeY9QeKoomwsAHffyneUvstrerzcX/DLZLNWc="},{"Name":"label","Value":"OpenArchival.Blazor.styles.css"}]},{"Route":"OpenArchival.Blazor.of6ssq9pmk.styles.css","AssetFile":"OpenArchival.Blazor.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"111"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"lCMY9zSeY9QeKoomwsAHffyneUvstrerzcX/DLZLNWc=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Link","Value":"<_content/OpenArchival.Blazor.FileViewer/OpenArchival.Blazor.FileViewer.83wakjp31g.bundle.scp.css>; rel=\"preload\"; as=\"style\""}],"EndpointProperties":[{"Name":"fingerprint","Value":"of6ssq9pmk"},{"Name":"integrity","Value":"sha256-lCMY9zSeY9QeKoomwsAHffyneUvstrerzcX/DLZLNWc="},{"Name":"label","Value":"OpenArchival.Blazor.styles.css"}]},{"Route":"OpenArchival.Blazor.of6ssq9pmk.styles.css.gz","AssetFile":"OpenArchival.Blazor.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":"102"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"iaEgFyUTJAhMAW+JFVh6LKM3gSG0Kn0oNWuuMVofbCw=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"of6ssq9pmk"},{"Name":"integrity","Value":"sha256-iaEgFyUTJAhMAW+JFVh6LKM3gSG0Kn0oNWuuMVofbCw="},{"Name":"label","Value":"OpenArchival.Blazor.styles.css.gz"}]},{"Route":"OpenArchival.Blazor.styles.css","AssetFile":"OpenArchival.Blazor.styles.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.009708737864"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"102"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"iaEgFyUTJAhMAW+JFVh6LKM3gSG0Kn0oNWuuMVofbCw=\""},{"Name":"ETag","Value":"W/\"lCMY9zSeY9QeKoomwsAHffyneUvstrerzcX/DLZLNWc=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Link","Value":"<_content/OpenArchival.Blazor.FileViewer/OpenArchival.Blazor.FileViewer.83wakjp31g.bundle.scp.css>; rel=\"preload\"; as=\"style\""},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lCMY9zSeY9QeKoomwsAHffyneUvstrerzcX/DLZLNWc="}]},{"Route":"OpenArchival.Blazor.styles.css","AssetFile":"OpenArchival.Blazor.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"111"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"lCMY9zSeY9QeKoomwsAHffyneUvstrerzcX/DLZLNWc=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Link","Value":"<_content/OpenArchival.Blazor.FileViewer/OpenArchival.Blazor.FileViewer.83wakjp31g.bundle.scp.css>; rel=\"preload\"; as=\"style\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lCMY9zSeY9QeKoomwsAHffyneUvstrerzcX/DLZLNWc="}]},{"Route":"OpenArchival.Blazor.styles.css.gz","AssetFile":"OpenArchival.Blazor.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":"102"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"iaEgFyUTJAhMAW+JFVh6LKM3gSG0Kn0oNWuuMVofbCw=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-iaEgFyUTJAhMAW+JFVh6LKM3gSG0Kn0oNWuuMVofbCw="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.css","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"21465"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk=\""},{"Name":"Last-Modified","Value":"Sun, 26 Feb 2023 14:08:26 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.css","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000295508274"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3383"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"6PJ7t7WR38pQTSYe6IR0pbqo2cIZK5wuW/w26kprtBg=\""},{"Name":"ETag","Value":"W/\"Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Bhx2r5I6dCdUGoHmzIgc0yinDvilo44BmePWMEQ2Ofk="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.css.gz","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3383"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"6PJ7t7WR38pQTSYe6IR0pbqo2cIZK5wuW/w26kprtBg=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6PJ7t7WR38pQTSYe6IR0pbqo2cIZK5wuW/w26kprtBg="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.js","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"328"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc=\""},{"Name":"Last-Modified","Value":"Sun, 26 Feb 2023 14:08:26 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.js","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005076142132"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"196"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"B4PUgpr06+d3lAMWknp0EVkaGxPZJdpp5/UidGHzvnc=\""},{"Name":"ETag","Value":"W/\"FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FWIeETQ/nUZck23SPsBRN/OQQ3EHuNDWksqB8A5Q8dc="}]},{"Route":"_content/CodeBeam.MudExtensions/MudExtensions.min.js.gz","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"196"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"B4PUgpr06+d3lAMWknp0EVkaGxPZJdpp5/UidGHzvnc=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-B4PUgpr06+d3lAMWknp0EVkaGxPZJdpp5/UidGHzvnc="}]},{"Route":"_content/CodeBeam.MudExtensions/Mud_Secondary.png","AssetFile":"_content/CodeBeam.MudExtensions/Mud_Secondary.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4558"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"G3hYUw4Ps9P/IQ3lw2zu96RSZaOf4zU+4QkXkH8Xi3Y=\""},{"Name":"Last-Modified","Value":"Sat, 08 Oct 2022 09:55:02 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G3hYUw4Ps9P/IQ3lw2zu96RSZaOf4zU+4QkXkH8Xi3Y="}]},{"Route":"_content/MudBlazor/MudBlazor.min.css","AssetFile":"_content/MudBlazor/MudBlazor.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"606250"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0=\""},{"Name":"Last-Modified","Value":"Wed, 01 Oct 2025 21:51:05 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0="}]},{"Route":"_content/MudBlazor/MudBlazor.min.css","AssetFile":"_content/MudBlazor/MudBlazor.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015264845"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"65509"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"VcBMO3aXrzxl+jfWY+TaxPKsd3L0UWjeJZliEXOyzzI=\""},{"Name":"ETag","Value":"W/\"TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0="}]},{"Route":"_content/MudBlazor/MudBlazor.min.css.gz","AssetFile":"_content/MudBlazor/MudBlazor.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"65509"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"VcBMO3aXrzxl+jfWY+TaxPKsd3L0UWjeJZliEXOyzzI=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-VcBMO3aXrzxl+jfWY+TaxPKsd3L0UWjeJZliEXOyzzI="}]},{"Route":"_content/MudBlazor/MudBlazor.min.jk5eo7zo4m.css","AssetFile":"_content/MudBlazor/MudBlazor.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"606250"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0=\""},{"Name":"Last-Modified","Value":"Wed, 01 Oct 2025 21:51:05 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jk5eo7zo4m"},{"Name":"integrity","Value":"sha256-TSgzDIY4qdWvjvfBaUSrnerVt2+FjH4cXGlPrxEz1C0="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.css"}]},{"Route":"_content/MudBlazor/MudBlazor.min.js","AssetFile":"_content/MudBlazor/MudBlazor.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"75165"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw=\""},{"Name":"Last-Modified","Value":"Wed, 01 Oct 2025 21:51:05 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js","AssetFile":"_content/MudBlazor/MudBlazor.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000061150859"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16352"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"0BJxfo+EOJvNKoBv/2ahm4RKrPjv7PhB/R16C3XOHDo=\""},{"Name":"ETag","Value":"W/\"hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js.gz","AssetFile":"_content/MudBlazor/MudBlazor.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16352"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"0BJxfo+EOJvNKoBv/2ahm4RKrPjv7PhB/R16C3XOHDo=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0BJxfo+EOJvNKoBv/2ahm4RKrPjv7PhB/R16C3XOHDo="}]},{"Route":"_content/MudBlazor/MudBlazor.min.tjzqk7tnel.js","AssetFile":"_content/MudBlazor/MudBlazor.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"75165"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw=\""},{"Name":"Last-Modified","Value":"Wed, 01 Oct 2025 21:51:05 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tjzqk7tnel"},{"Name":"integrity","Value":"sha256-hylTyzoFC8Kp1f0FRqBY1LUV5GLhjEZGZbvrFnkZ1Tw="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.js"}]},{"Route":"_content/OpenArchival.Blazor.FileViewer/OpenArchival.Blazor.FileViewer.83wakjp31g.bundle.scp.css","AssetFile":"_content/OpenArchival.Blazor.FileViewer/OpenArchival.Blazor.FileViewer.83wakjp31g.bundle.scp.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.006134969325"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"162"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"w7pUrtgbGsKChPQ+JZf6wIJIlRo5ItP1AJKKjbLPBUM=\""},{"Name":"ETag","Value":"W/\"9NCmFFvSZYsIWCQoks2vSnN9EMEwePSQhoXfFOCn5mg=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"83wakjp31g"},{"Name":"integrity","Value":"sha256-9NCmFFvSZYsIWCQoks2vSnN9EMEwePSQhoXfFOCn5mg="},{"Name":"label","Value":"_content/OpenArchival.Blazor.FileViewer/OpenArchival.Blazor.FileViewer.bundle.scp.css"}]},{"Route":"_content/OpenArchival.Blazor.FileViewer/OpenArchival.Blazor.FileViewer.83wakjp31g.bundle.scp.css","AssetFile":"_content/OpenArchival.Blazor.FileViewer/OpenArchival.Blazor.FileViewer.83wakjp31g.bundle.scp.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"186"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"9NCmFFvSZYsIWCQoks2vSnN9EMEwePSQhoXfFOCn5mg=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"83wakjp31g"},{"Name":"integrity","Value":"sha256-9NCmFFvSZYsIWCQoks2vSnN9EMEwePSQhoXfFOCn5mg="},{"Name":"label","Value":"_content/OpenArchival.Blazor.FileViewer/OpenArchival.Blazor.FileViewer.bundle.scp.css"}]},{"Route":"_content/OpenArchival.Blazor.FileViewer/OpenArchival.Blazor.FileViewer.83wakjp31g.bundle.scp.css.gz","AssetFile":"_content/OpenArchival.Blazor.FileViewer/OpenArchival.Blazor.FileViewer.83wakjp31g.bundle.scp.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":"162"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"w7pUrtgbGsKChPQ+JZf6wIJIlRo5ItP1AJKKjbLPBUM=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"83wakjp31g"},{"Name":"integrity","Value":"sha256-w7pUrtgbGsKChPQ+JZf6wIJIlRo5ItP1AJKKjbLPBUM="},{"Name":"label","Value":"_content/OpenArchival.Blazor.FileViewer/OpenArchival.Blazor.FileViewer.bundle.scp.css.gz"}]},{"Route":"_content/OpenArchival.Blazor.FileViewer/OpenArchival.Blazor.FileViewer.bundle.scp.css","AssetFile":"_content/OpenArchival.Blazor.FileViewer/OpenArchival.Blazor.FileViewer.83wakjp31g.bundle.scp.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.006134969325"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"162"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"w7pUrtgbGsKChPQ+JZf6wIJIlRo5ItP1AJKKjbLPBUM=\""},{"Name":"ETag","Value":"W/\"9NCmFFvSZYsIWCQoks2vSnN9EMEwePSQhoXfFOCn5mg=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9NCmFFvSZYsIWCQoks2vSnN9EMEwePSQhoXfFOCn5mg="}]},{"Route":"_content/OpenArchival.Blazor.FileViewer/OpenArchival.Blazor.FileViewer.bundle.scp.css","AssetFile":"_content/OpenArchival.Blazor.FileViewer/OpenArchival.Blazor.FileViewer.83wakjp31g.bundle.scp.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"186"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"9NCmFFvSZYsIWCQoks2vSnN9EMEwePSQhoXfFOCn5mg=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9NCmFFvSZYsIWCQoks2vSnN9EMEwePSQhoXfFOCn5mg="}]},{"Route":"_content/OpenArchival.Blazor.FileViewer/OpenArchival.Blazor.FileViewer.bundle.scp.css.gz","AssetFile":"_content/OpenArchival.Blazor.FileViewer/OpenArchival.Blazor.FileViewer.83wakjp31g.bundle.scp.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"162"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"w7pUrtgbGsKChPQ+JZf6wIJIlRo5ItP1AJKKjbLPBUM=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:27 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-w7pUrtgbGsKChPQ+JZf6wIJIlRo5ItP1AJKKjbLPBUM="}]},{"Route":"favicon.2jeq8efc6q.ico","AssetFile":"favicon.ico.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000336021505"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2975"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"b7CPHqpoIGsGVgOrEO+r2XPyaLrLUBwkA6R2jOMbS7M=\""},{"Name":"ETag","Value":"W/\"8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2jeq8efc6q"},{"Name":"integrity","Value":"sha256-8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA="},{"Name":"label","Value":"favicon.ico"}]},{"Route":"favicon.2jeq8efc6q.ico","AssetFile":"favicon.ico","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"15086"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA=\""},{"Name":"Last-Modified","Value":"Tue, 09 Sep 2025 18:04:11 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2jeq8efc6q"},{"Name":"integrity","Value":"sha256-8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA="},{"Name":"label","Value":"favicon.ico"}]},{"Route":"favicon.2jeq8efc6q.ico.gz","AssetFile":"favicon.ico.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":"2975"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"b7CPHqpoIGsGVgOrEO+r2XPyaLrLUBwkA6R2jOMbS7M=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2jeq8efc6q"},{"Name":"integrity","Value":"sha256-b7CPHqpoIGsGVgOrEO+r2XPyaLrLUBwkA6R2jOMbS7M="},{"Name":"label","Value":"favicon.ico.gz"}]},{"Route":"favicon.ico","AssetFile":"favicon.ico.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000336021505"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2975"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"b7CPHqpoIGsGVgOrEO+r2XPyaLrLUBwkA6R2jOMbS7M=\""},{"Name":"ETag","Value":"W/\"8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA="}]},{"Route":"favicon.ico","AssetFile":"favicon.ico","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"15086"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA=\""},{"Name":"Last-Modified","Value":"Tue, 09 Sep 2025 18:04:11 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8kNQh+LErZHx3sMz237BHWFasAGQ88EWakJrWWYOxTA="}]},{"Route":"favicon.ico.gz","AssetFile":"favicon.ico.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2975"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"b7CPHqpoIGsGVgOrEO+r2XPyaLrLUBwkA6R2jOMbS7M=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-b7CPHqpoIGsGVgOrEO+r2XPyaLrLUBwkA6R2jOMbS7M="}]},{"Route":"js/downloadHelper.js","AssetFile":"js/downloadHelper.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.004237288136"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"235"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"FAg7kmeFsh8jkhGZs/GZGp9lb/FDf6lNCN/9/HzL7Dc=\""},{"Name":"ETag","Value":"W/\"1Y0+hi0re9m8XGNP8FnpYyxExUDrHq+JH6HMHvv/ECc=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1Y0+hi0re9m8XGNP8FnpYyxExUDrHq+JH6HMHvv/ECc="}]},{"Route":"js/downloadHelper.js","AssetFile":"js/downloadHelper.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"346"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"1Y0+hi0re9m8XGNP8FnpYyxExUDrHq+JH6HMHvv/ECc=\""},{"Name":"Last-Modified","Value":"Tue, 07 Oct 2025 16:44:09 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1Y0+hi0re9m8XGNP8FnpYyxExUDrHq+JH6HMHvv/ECc="}]},{"Route":"js/downloadHelper.js.gz","AssetFile":"js/downloadHelper.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"235"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"FAg7kmeFsh8jkhGZs/GZGp9lb/FDf6lNCN/9/HzL7Dc=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FAg7kmeFsh8jkhGZs/GZGp9lb/FDf6lNCN/9/HzL7Dc="}]},{"Route":"js/downloadHelper.zy4ksw00d9.js","AssetFile":"js/downloadHelper.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.004237288136"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"235"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"FAg7kmeFsh8jkhGZs/GZGp9lb/FDf6lNCN/9/HzL7Dc=\""},{"Name":"ETag","Value":"W/\"1Y0+hi0re9m8XGNP8FnpYyxExUDrHq+JH6HMHvv/ECc=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zy4ksw00d9"},{"Name":"integrity","Value":"sha256-1Y0+hi0re9m8XGNP8FnpYyxExUDrHq+JH6HMHvv/ECc="},{"Name":"label","Value":"js/downloadHelper.js"}]},{"Route":"js/downloadHelper.zy4ksw00d9.js","AssetFile":"js/downloadHelper.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"346"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"1Y0+hi0re9m8XGNP8FnpYyxExUDrHq+JH6HMHvv/ECc=\""},{"Name":"Last-Modified","Value":"Tue, 07 Oct 2025 16:44:09 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zy4ksw00d9"},{"Name":"integrity","Value":"sha256-1Y0+hi0re9m8XGNP8FnpYyxExUDrHq+JH6HMHvv/ECc="},{"Name":"label","Value":"js/downloadHelper.js"}]},{"Route":"js/downloadHelper.zy4ksw00d9.js.gz","AssetFile":"js/downloadHelper.js.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":"235"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"FAg7kmeFsh8jkhGZs/GZGp9lb/FDf6lNCN/9/HzL7Dc=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zy4ksw00d9"},{"Name":"integrity","Value":"sha256-FAg7kmeFsh8jkhGZs/GZGp9lb/FDf6lNCN/9/HzL7Dc="},{"Name":"label","Value":"js/downloadHelper.js.gz"}]},{"Route":"js/imageSizeGetter.6k2m17moin.js","AssetFile":"js/imageSizeGetter.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001519756839"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"657"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"E7gYH0HUXBVbrGIOQeZXi1EKyLtFMQvfEx1uCLzd+H0=\""},{"Name":"ETag","Value":"W/\"djPj7C64LX1RuirqUYjojHK/GAwYXsTwjRrnBSiYW9k=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6k2m17moin"},{"Name":"integrity","Value":"sha256-djPj7C64LX1RuirqUYjojHK/GAwYXsTwjRrnBSiYW9k="},{"Name":"label","Value":"js/imageSizeGetter.js"}]},{"Route":"js/imageSizeGetter.6k2m17moin.js","AssetFile":"js/imageSizeGetter.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1824"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"djPj7C64LX1RuirqUYjojHK/GAwYXsTwjRrnBSiYW9k=\""},{"Name":"Last-Modified","Value":"Tue, 07 Oct 2025 20:16:31 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6k2m17moin"},{"Name":"integrity","Value":"sha256-djPj7C64LX1RuirqUYjojHK/GAwYXsTwjRrnBSiYW9k="},{"Name":"label","Value":"js/imageSizeGetter.js"}]},{"Route":"js/imageSizeGetter.6k2m17moin.js.gz","AssetFile":"js/imageSizeGetter.js.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":"657"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"E7gYH0HUXBVbrGIOQeZXi1EKyLtFMQvfEx1uCLzd+H0=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6k2m17moin"},{"Name":"integrity","Value":"sha256-E7gYH0HUXBVbrGIOQeZXi1EKyLtFMQvfEx1uCLzd+H0="},{"Name":"label","Value":"js/imageSizeGetter.js.gz"}]},{"Route":"js/imageSizeGetter.js","AssetFile":"js/imageSizeGetter.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001519756839"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"657"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"E7gYH0HUXBVbrGIOQeZXi1EKyLtFMQvfEx1uCLzd+H0=\""},{"Name":"ETag","Value":"W/\"djPj7C64LX1RuirqUYjojHK/GAwYXsTwjRrnBSiYW9k=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-djPj7C64LX1RuirqUYjojHK/GAwYXsTwjRrnBSiYW9k="}]},{"Route":"js/imageSizeGetter.js","AssetFile":"js/imageSizeGetter.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1824"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"djPj7C64LX1RuirqUYjojHK/GAwYXsTwjRrnBSiYW9k=\""},{"Name":"Last-Modified","Value":"Tue, 07 Oct 2025 20:16:31 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-djPj7C64LX1RuirqUYjojHK/GAwYXsTwjRrnBSiYW9k="}]},{"Route":"js/imageSizeGetter.js.gz","AssetFile":"js/imageSizeGetter.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"657"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"E7gYH0HUXBVbrGIOQeZXi1EKyLtFMQvfEx1uCLzd+H0=\""},{"Name":"Last-Modified","Value":"Wed, 08 Oct 2025 17:06:30 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-E7gYH0HUXBVbrGIOQeZXi1EKyLtFMQvfEx1uCLzd+H0="}]}]} \ No newline at end of file diff --git a/bin/Debug/OpenArchival.Blazor.staticwebassets.runtime.json b/bin/Debug/OpenArchival.Blazor.staticwebassets.runtime.json index 38513ed..59bb7ca 100644 --- a/bin/Debug/OpenArchival.Blazor.staticwebassets.runtime.json +++ b/bin/Debug/OpenArchival.Blazor.staticwebassets.runtime.json @@ -1 +1 @@ -{"ContentRoots":["D:\\Nextcloud\\Documents\\Open-Archival\\OpenArchival.Blazor\\wwwroot\\","D:\\Nextcloud\\Documents\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\","C:\\Users\\Vincent Allen\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\","C:\\Users\\Vincent Allen\\.nuget\\packages\\mudblazor\\8.12.0\\staticwebassets\\"],"Root":{"Children":{"favicon.ico":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"favicon.ico"},"Patterns":null},"favicon.ico.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"uorc1pfmvs-2jeq8efc6q.gz"},"Patterns":null},"_content":{"Children":{"CodeBeam.MudExtensions":{"Children":{"Mud_Secondary.png":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"Mud_Secondary.png"},"Patterns":null},"MudExtensions.min.css":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"MudExtensions.min.css"},"Patterns":null},"MudExtensions.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"24gzn4tg1a-qz4batx9cb.gz"},"Patterns":null},"MudExtensions.min.js":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"MudExtensions.min.js"},"Patterns":null},"MudExtensions.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"stwk5nfoxp-loe7cozwzj.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"MudBlazor":{"Children":{"MudBlazor.min.css":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"MudBlazor.min.css"},"Patterns":null},"MudBlazor.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"tzxjg6is5z-0n6lrtb02s.gz"},"Patterns":null},"MudBlazor.min.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"MudBlazor.min.js"},"Patterns":null},"MudBlazor.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"0wz98yz2xy-lftp6ydp6b.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}} \ No newline at end of file +{"ContentRoots":["C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\wwwroot\\","C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\compressed\\","C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor\\obj\\Debug\\net9.0\\scopedcss\\bundle\\","C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\","C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\","C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\scopedcss\\projectbundle\\","C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\compressed\\"],"Root":{"Children":{"favicon.ico":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"favicon.ico"},"Patterns":null},"favicon.ico.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"uorc1pfmvs-2jeq8efc6q.gz"},"Patterns":null},"OpenArchival.Blazor.styles.css":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"OpenArchival.Blazor.styles.css"},"Patterns":null},"OpenArchival.Blazor.styles.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"6sncp75uxm-of6ssq9pmk.gz"},"Patterns":null},"js":{"Children":{"downloadHelper.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/downloadHelper.js"},"Patterns":null},"downloadHelper.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"i11yscesdd-zy4ksw00d9.gz"},"Patterns":null},"imageSizeGetter.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/imageSizeGetter.js"},"Patterns":null},"imageSizeGetter.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"rou3pye8gp-6k2m17moin.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"_content":{"Children":{"CodeBeam.MudExtensions":{"Children":{"Mud_Secondary.png":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"Mud_Secondary.png"},"Patterns":null},"MudExtensions.min.css":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"MudExtensions.min.css"},"Patterns":null},"MudExtensions.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"24gzn4tg1a-qz4batx9cb.gz"},"Patterns":null},"MudExtensions.min.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"MudExtensions.min.js"},"Patterns":null},"MudExtensions.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"stwk5nfoxp-loe7cozwzj.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"MudBlazor":{"Children":{"MudBlazor.min.css":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"MudBlazor.min.css"},"Patterns":null},"MudBlazor.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"tzxjg6is5z-jk5eo7zo4m.gz"},"Patterns":null},"MudBlazor.min.js":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"MudBlazor.min.js"},"Patterns":null},"MudBlazor.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"0wz98yz2xy-tjzqk7tnel.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"OpenArchival.Blazor.FileViewer":{"Children":{"OpenArchival.Blazor.FileViewer.83wakjp31g.bundle.scp.css":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"OpenArchival.Blazor.FileViewer.bundle.scp.css"},"Patterns":null},"OpenArchival.Blazor.FileViewer.83wakjp31g.bundle.scp.css.gz":{"Children":null,"Asset":{"ContentRootIndex":6,"SubPath":"oacsgz2ky3-83wakjp31g.gz"},"Patterns":null}},"Asset":null,"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/OpenArchival.DataAccess.dll b/bin/Debug/OpenArchival.DataAccess.dll index 1857770..0a0293e 100644 Binary files a/bin/Debug/OpenArchival.DataAccess.dll and b/bin/Debug/OpenArchival.DataAccess.dll differ diff --git a/bin/Debug/OpenArchival.DataAccess.exe b/bin/Debug/OpenArchival.DataAccess.exe index a321073..0caa7a8 100644 Binary files a/bin/Debug/OpenArchival.DataAccess.exe and b/bin/Debug/OpenArchival.DataAccess.exe differ diff --git a/bin/Debug/OpenArchival.DataAccess.pdb b/bin/Debug/OpenArchival.DataAccess.pdb index f3a24b7..7e038b6 100644 Binary files a/bin/Debug/OpenArchival.DataAccess.pdb and b/bin/Debug/OpenArchival.DataAccess.pdb differ diff --git a/bin/Debug/System.Text.Json.dll b/bin/Debug/System.Text.Json.dll new file mode 100644 index 0000000..c61bda8 Binary files /dev/null and b/bin/Debug/System.Text.Json.dll differ diff --git a/obj/Debug/docker-compose.dcproj.AssemblyReference.cache b/obj/Debug/docker-compose.dcproj.AssemblyReference.cache index 93acbc3..5c53420 100644 Binary files a/obj/Debug/docker-compose.dcproj.AssemblyReference.cache and b/obj/Debug/docker-compose.dcproj.AssemblyReference.cache differ diff --git a/obj/Debug/docker-compose.dcproj.CoreCompileInputs.cache b/obj/Debug/docker-compose.dcproj.CoreCompileInputs.cache index a6f273e..65eaa2e 100644 --- a/obj/Debug/docker-compose.dcproj.CoreCompileInputs.cache +++ b/obj/Debug/docker-compose.dcproj.CoreCompileInputs.cache @@ -1 +1 @@ -26bf65d8e4bba9aef0f122a980b56467cc7257592fddc3684a653e0f8edfbaae +687719cb9a6e40c62ecdcd0447c1807c53d7e761be6fb34c108ab37b47c6b619 diff --git a/obj/Debug/docker-compose.dcproj.FileListAbsolute.txt b/obj/Debug/docker-compose.dcproj.FileListAbsolute.txt index acb2bea..953ea2f 100644 --- a/obj/Debug/docker-compose.dcproj.FileListAbsolute.txt +++ b/obj/Debug/docker-compose.dcproj.FileListAbsolute.txt @@ -57,3 +57,66 @@ D:\Nextcloud\Documents\Open-Archival\bin\Debug\OpenArchival.DataAccess.pdb D:\Nextcloud\Documents\Open-Archival\obj\Debug\docker-compose.dcproj.AssemblyReference.cache D:\Nextcloud\Documents\Open-Archival\obj\Debug\docker-compose.dcproj.CoreCompileInputs.cache D:\Nextcloud\Documents\Open-Archival\obj\Debug\docker-c.35A3FFBA.Up2Date +C:\Users\vtall\source\repos\vtallen\Open-Archival\bin\Debug\OpenArchival.Blazor.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\obj\Debug\docker-compose.dcproj.CoreCompileInputs.cache +C:\Users\vtall\source\repos\vtallen\Open-Archival\bin\Debug\OpenArchival.Blazor.deps.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\bin\Debug\OpenArchival.Blazor.runtimeconfig.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\bin\Debug\OpenArchival.DataAccess.deps.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\bin\Debug\OpenArchival.DataAccess.runtimeconfig.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\bin\Debug\OpenArchival.DataAccess.staticwebassets.endpoints.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\bin\Debug\OpenArchival.DataAccess.exe +C:\Users\vtall\source\repos\vtallen\Open-Archival\bin\Debug\appsettings.Development.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\bin\Debug\appsettings.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\bin\Debug\appsettingstemplate.Development.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\bin\Debug\appsettingstemplate.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\bin\Debug\OpenArchival.Blazor.staticwebassets.runtime.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\bin\Debug\OpenArchival.Blazor.staticwebassets.endpoints.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\bin\Debug\OpenArchival.Blazor.exe +C:\Users\vtall\source\repos\vtallen\Open-Archival\bin\Debug\Microsoft.EntityFrameworkCore.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\bin\Debug\OpenArchival.DataAccess.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\bin\Debug\Microsoft.Extensions.DependencyInjection.Abstractions.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\bin\Debug\Microsoft.Extensions.Logging.Abstractions.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\bin\Debug\Microsoft.Extensions.Identity.Core.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\bin\Debug\Microsoft.AspNetCore.Components.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\bin\Debug\MudBlazor.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\bin\Debug\Microsoft.AspNetCore.Components.Web.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\bin\Debug\Microsoft.AspNetCore.Authorization.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\bin\Debug\Microsoft.JSInterop.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\bin\Debug\Microsoft.Extensions.Options.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\bin\Debug\Microsoft.AspNetCore.Components.Forms.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\bin\Debug\Microsoft.Extensions.Primitives.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\bin\Debug\OpenArchival.Blazor.AdminPages.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\bin\Debug\OpenArchival.Blazor.FileViewer.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\bin\Debug\CodeBeam.MudExtensions.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\bin\Debug\Microsoft.Extensions.Configuration.Abstractions.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\bin\Debug\Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\bin\Debug\Microsoft.Extensions.Identity.Stores.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\bin\Debug\Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\bin\Debug\Microsoft.Extensions.Logging.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\bin\Debug\Microsoft.EntityFrameworkCore.Relational.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\bin\Debug\Npgsql.EntityFrameworkCore.PostgreSQL.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\bin\Debug\System.Text.Json.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\bin\Debug\Microsoft.Extensions.Caching.Abstractions.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\bin\Debug\Microsoft.EntityFrameworkCore.Abstractions.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\bin\Debug\Microsoft.Extensions.DependencyInjection.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\bin\Debug\Microsoft.Extensions.Caching.Memory.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\bin\Debug\EntityFramework.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\bin\Debug\Microsoft.AspNetCore.Cryptography.KeyDerivation.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\bin\Debug\Microsoft.Extensions.Localization.Abstractions.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\bin\Debug\Microsoft.Extensions.Localization.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\bin\Debug\Microsoft.AspNetCore.Metadata.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\bin\Debug\OpenArchival.Blazor.CustomComponents.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\bin\Debug\CsvHelper.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\bin\Debug\Npgsql.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\bin\Debug\System.CodeDom.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\bin\Debug\System.Configuration.ConfigurationManager.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\bin\Debug\System.Data.SqlClient.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\bin\Debug\Microsoft.AspNetCore.Cryptography.Internal.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\bin\Debug\System.Security.Cryptography.ProtectedData.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\bin\Debug\OpenArchival.Blazor.pdb +C:\Users\vtall\source\repos\vtallen\Open-Archival\bin\Debug\OpenArchival.DataAccess.pdb +C:\Users\vtall\source\repos\vtallen\Open-Archival\bin\Debug\OpenArchival.Blazor.AdminPages.pdb +C:\Users\vtall\source\repos\vtallen\Open-Archival\bin\Debug\OpenArchival.Blazor.FileViewer.pdb +C:\Users\vtall\source\repos\vtallen\Open-Archival\bin\Debug\OpenArchival.Blazor.CustomComponents.pdb +C:\Users\vtall\source\repos\vtallen\Open-Archival\obj\Debug\docker-compose.dcproj.AssemblyReference.cache +C:\Users\vtall\source\repos\vtallen\Open-Archival\obj\Debug\docker-c.35A3FFBA.Up2Date diff --git a/obj/Docker/CachedComposeConfigFilePaths.cache b/obj/Docker/CachedComposeConfigFilePaths.cache deleted file mode 100644 index 75b5551..0000000 --- a/obj/Docker/CachedComposeConfigFilePaths.cache +++ /dev/null @@ -1,2 +0,0 @@ -z9qnY6u+HRFwN0YXx0lFjNA6uCsPgcWPRfnT3Cx/lu4=>D:\Nextcloud\Documents\Open-Archival\obj\Docker\MergedDockerCompose.cache -Hme+/2yXOAQgzyuEVqmYi8Mmdh/Ge8R1+WY/hLk5o0I=>D:\Nextcloud\Documents\Open-Archival\obj\Docker\MergedDockerCompose1.cache diff --git a/obj/Docker/DockerDevelopmentMode.cache b/obj/Docker/DockerDevelopmentMode.cache deleted file mode 100644 index 565a238..0000000 --- a/obj/Docker/DockerDevelopmentMode.cache +++ /dev/null @@ -1 +0,0 @@ -Fast \ No newline at end of file diff --git a/obj/Docker/HashOfDockerArtifacts.cache b/obj/Docker/HashOfDockerArtifacts.cache deleted file mode 100644 index e42d66f..0000000 --- a/obj/Docker/HashOfDockerArtifacts.cache +++ /dev/null @@ -1 +0,0 @@ -N/yZlWe41R0Stmd9lJTT3JqUP6/81ndw9soYuAP7GYtbnH1PEyPill9cD0r3MvOS/4jR/2UuVBtQLDpXBoT2Wg== \ No newline at end of file diff --git a/obj/Docker/LaunchContext.cache b/obj/Docker/LaunchContext.cache deleted file mode 100644 index 1ead615..0000000 --- a/obj/Docker/LaunchContext.cache +++ /dev/null @@ -1 +0,0 @@ -Debug \ No newline at end of file diff --git a/obj/Docker/MergedDockerCompose.cache b/obj/Docker/MergedDockerCompose.cache deleted file mode 100644 index bd24774..0000000 --- a/obj/Docker/MergedDockerCompose.cache +++ /dev/null @@ -1,90 +0,0 @@ -name: dockercompose13046784533988757350 -services: - db: - environment: - POSTGRES_DB: postgres - POSTGRES_PASSWORD: postgres - POSTGRES_USER: postgres - healthcheck: - test: - - CMD-SHELL - - pg_isready -U postgres -d postgres - timeout: 5s - interval: 10s - retries: 5 - image: postgres:latest - networks: - default: null - ports: - - mode: ingress - target: 5432 - published: "5432" - protocol: tcp - restart: always - volumes: - - type: volume - source: postgres_data - target: /var/lib/postgresql/data - volume: {} - openarchival.blazor: - build: - context: D:\Nextcloud\Documents\Open-Archival - dockerfile: OpenArchival.Blazor/Dockerfile - depends_on: - db: - condition: service_healthy - required: true - environment: - ASPNETCORE_ENVIRONMENT: Development - ASPNETCORE_HTTP_PORTS: "8080" - ASPNETCORE_HTTPS_PORTS: "8081" - ConnectionStrings__DefaultConnection: Host=db;Port=5432;Database=postgres;Username=postgres;Password=postgres - image: openarchivalblazor - networks: - default: null - ports: - - mode: ingress - target: 8080 - published: "3801" - protocol: tcp - - mode: ingress - target: 8081 - published: "4334" - protocol: tcp - - mode: ingress - target: 8080 - protocol: tcp - - mode: ingress - target: 8081 - protocol: tcp - volumes: - - type: bind - source: C:\Users\Vincent Allen\AppData\Roaming/Microsoft/UserSecrets - target: /home/app/.microsoft/usersecrets - read_only: true - bind: - create_host_path: true - - type: bind - source: C:\Users\Vincent Allen\AppData\Roaming/Microsoft/UserSecrets - target: /root/.microsoft/usersecrets - read_only: true - bind: - create_host_path: true - - type: bind - source: C:\Users\Vincent Allen\AppData\Roaming/ASP.NET/Https - target: /home/app/.aspnet/https - read_only: true - bind: - create_host_path: true - - type: bind - source: C:\Users\Vincent Allen\AppData\Roaming/ASP.NET/Https - target: /root/.aspnet/https - read_only: true - bind: - create_host_path: true -networks: - default: - name: dockercompose13046784533988757350_default -volumes: - postgres_data: - name: dockercompose13046784533988757350_postgres_data \ No newline at end of file diff --git a/obj/Docker/MergedDockerCompose1.cache b/obj/Docker/MergedDockerCompose1.cache deleted file mode 100644 index 7c39d0d..0000000 --- a/obj/Docker/MergedDockerCompose1.cache +++ /dev/null @@ -1,151 +0,0 @@ -name: dockercompose13046784533988757350 -services: - db: - environment: - POSTGRES_DB: postgres - POSTGRES_PASSWORD: postgres - POSTGRES_USER: postgres - healthcheck: - test: - - CMD-SHELL - - pg_isready -U postgres -d postgres - timeout: 5s - interval: 10s - retries: 5 - image: postgres:latest - networks: - default: null - ports: - - mode: ingress - target: 5432 - published: "5432" - protocol: tcp - restart: always - volumes: - - type: volume - source: postgres_data - target: /var/lib/postgresql/data - volume: {} - openarchival.blazor: - build: - context: D:\Nextcloud\Documents\Open-Archival - dockerfile: OpenArchival.Blazor/Dockerfile - args: - BUILD_CONFIGURATION: Debug - LAUNCHING_FROM_VS: "true" - labels: - com.microsoft.created-by: visual-studio - com.microsoft.visual-studio.project-name: OpenArchival.Blazor - target: base - depends_on: - db: - condition: service_healthy - required: true - entrypoint: - - dotnet - - --roll-forward - - Major - - /VSTools/DistrolessHelper/DistrolessHelper.dll - - --wait - environment: - ASPNETCORE_ENVIRONMENT: Development - ASPNETCORE_HTTP_PORTS: "8080" - ASPNETCORE_HTTPS_PORTS: "8081" - ASPNETCORE_LOGGING__CONSOLE__DISABLECOLORS: "true" - ConnectionStrings__DefaultConnection: Host=db;Port=5432;Database=postgres;Username=postgres;Password=postgres - DOTNET_USE_POLLING_FILE_WATCHER: "1" - NUGET_FALLBACK_PACKAGES: /.nuget/fallbackpackages - image: openarchivalblazor:dev - labels: - com.microsoft.visualstudio.debuggee.arguments: ' --additionalProbingPath /.nuget/packages --additionalProbingPath /.nuget/fallbackpackages "/app/bin/Debug/net9.0/OpenArchival.Blazor.dll"' - com.microsoft.visualstudio.debuggee.killprogram: dotnet --roll-forward Major /VSTools/DistrolessHelper/DistrolessHelper.dll --stop dotnet - com.microsoft.visualstudio.debuggee.program: dotnet - com.microsoft.visualstudio.debuggee.workingdirectory: /app - networks: - default: null - ports: - - mode: ingress - target: 8080 - published: "3801" - protocol: tcp - - mode: ingress - target: 8081 - published: "4334" - protocol: tcp - - mode: ingress - target: 8080 - protocol: tcp - - mode: ingress - target: 8081 - protocol: tcp - tty: true - volumes: - - type: bind - source: C:\Users\Vincent Allen\AppData\Roaming\Microsoft\UserSecrets - target: /home/app/.microsoft/usersecrets - read_only: true - bind: - create_host_path: true - - type: bind - source: C:\Users\Vincent Allen\AppData\Roaming\Microsoft\UserSecrets - target: /root/.microsoft/usersecrets - read_only: true - bind: - create_host_path: true - - type: bind - source: C:\Users\Vincent Allen\AppData\Roaming\ASP.NET\Https - target: /home/app/.aspnet/https - read_only: true - bind: - create_host_path: true - - type: bind - source: C:\Users\Vincent Allen\AppData\Roaming\ASP.NET\Https - target: /root/.aspnet/https - read_only: true - bind: - create_host_path: true - - type: bind - source: D:\Nextcloud\Documents\Open-Archival\OpenArchival.Blazor - target: /app - bind: - create_host_path: true - - type: bind - source: D:\Nextcloud\Documents\Open-Archival - target: /src - bind: - create_host_path: true - - type: bind - source: C:\Users\Vincent Allen\vsdbg\vs2017u5 - target: /remote_debugger - bind: - create_host_path: true - - type: bind - source: C:\Users\Vincent Allen\.nuget\packages - target: /.nuget/packages - read_only: true - bind: - create_host_path: true - - type: bind - source: C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages - target: /.nuget/fallbackpackages - read_only: true - bind: - create_host_path: true - - type: bind - source: C:\Program Files\Microsoft Visual Studio\2022\Community\MSBuild\Sdks\Microsoft.Docker.Sdk\tools\linux-x64\net6.0 - target: /VSTools - read_only: true - bind: - create_host_path: true - - type: bind - source: C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\HotReload - target: /HotReloadAgent - read_only: true - bind: - create_host_path: true -networks: - default: - name: dockercompose13046784533988757350_default -volumes: - postgres_data: - name: dockercompose13046784533988757350_postgres_data \ No newline at end of file diff --git a/obj/Docker/TargetOS.cache b/obj/Docker/TargetOS.cache deleted file mode 100644 index 3ab1070..0000000 --- a/obj/Docker/TargetOS.cache +++ /dev/null @@ -1 +0,0 @@ -Linux \ No newline at end of file diff --git a/obj/Docker/docker-compose.vs.debug.g.yml b/obj/Docker/docker-compose.vs.debug.g.yml deleted file mode 100644 index 96113b6..0000000 --- a/obj/Docker/docker-compose.vs.debug.g.yml +++ /dev/null @@ -1,35 +0,0 @@ -services: - openarchival.blazor: - image: openarchivalblazor:dev - build: - args: - LAUNCHING_FROM_VS: true - BUILD_CONFIGURATION: Debug - target: base - labels: - com.microsoft.created-by: "visual-studio" - com.microsoft.visual-studio.project-name: "OpenArchival.Blazor" - environment: - - DOTNET_USE_POLLING_FILE_WATCHER=1 - - ASPNETCORE_LOGGING__CONSOLE__DISABLECOLORS=true - - NUGET_FALLBACK_PACKAGES=/.nuget/fallbackpackages - volumes: - - D:\Nextcloud\Documents\Open-Archival\OpenArchival.Blazor:/app:rw - - D:\Nextcloud\Documents\Open-Archival:/src:rw - - C:\Users\Vincent Allen\vsdbg\vs2017u5:/remote_debugger:rw - - C:\Users\Vincent Allen\.nuget\packages:/.nuget/packages:ro - - C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages:/.nuget/fallbackpackages:ro - - C:\Users\Vincent Allen\AppData\Roaming\ASP.NET\Https:/root/.aspnet/https:ro - - C:\Users\Vincent Allen\AppData\Roaming\ASP.NET\Https:/home/app/.aspnet/https:ro - - C:\Users\Vincent Allen\AppData\Roaming\Microsoft\UserSecrets:/root/.microsoft/usersecrets:ro - - C:\Users\Vincent Allen\AppData\Roaming\Microsoft\UserSecrets:/home/app/.microsoft/usersecrets:ro - - C:\Program Files\Microsoft Visual Studio\2022\Community\MSBuild\Sdks\Microsoft.Docker.Sdk\tools\linux-x64\net6.0:/VSTools:ro - - C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\HotReload:/HotReloadAgent:ro - - entrypoint: "dotnet --roll-forward Major /VSTools/DistrolessHelper/DistrolessHelper.dll --wait" - labels: - com.microsoft.visualstudio.debuggee.program: "dotnet" - com.microsoft.visualstudio.debuggee.arguments: " --additionalProbingPath /.nuget/packages --additionalProbingPath /.nuget/fallbackpackages \"/app/bin/Debug/net9.0/OpenArchival.Blazor.dll\"" - com.microsoft.visualstudio.debuggee.workingdirectory: "/app" - com.microsoft.visualstudio.debuggee.killprogram: "dotnet --roll-forward Major /VSTools/DistrolessHelper/DistrolessHelper.dll --stop dotnet" - tty: true \ No newline at end of file diff --git a/obj/Docker/docker-compose.vs.debug.partial.g.yml b/obj/Docker/docker-compose.vs.debug.partial.g.yml deleted file mode 100644 index 96113b6..0000000 --- a/obj/Docker/docker-compose.vs.debug.partial.g.yml +++ /dev/null @@ -1,35 +0,0 @@ -services: - openarchival.blazor: - image: openarchivalblazor:dev - build: - args: - LAUNCHING_FROM_VS: true - BUILD_CONFIGURATION: Debug - target: base - labels: - com.microsoft.created-by: "visual-studio" - com.microsoft.visual-studio.project-name: "OpenArchival.Blazor" - environment: - - DOTNET_USE_POLLING_FILE_WATCHER=1 - - ASPNETCORE_LOGGING__CONSOLE__DISABLECOLORS=true - - NUGET_FALLBACK_PACKAGES=/.nuget/fallbackpackages - volumes: - - D:\Nextcloud\Documents\Open-Archival\OpenArchival.Blazor:/app:rw - - D:\Nextcloud\Documents\Open-Archival:/src:rw - - C:\Users\Vincent Allen\vsdbg\vs2017u5:/remote_debugger:rw - - C:\Users\Vincent Allen\.nuget\packages:/.nuget/packages:ro - - C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages:/.nuget/fallbackpackages:ro - - C:\Users\Vincent Allen\AppData\Roaming\ASP.NET\Https:/root/.aspnet/https:ro - - C:\Users\Vincent Allen\AppData\Roaming\ASP.NET\Https:/home/app/.aspnet/https:ro - - C:\Users\Vincent Allen\AppData\Roaming\Microsoft\UserSecrets:/root/.microsoft/usersecrets:ro - - C:\Users\Vincent Allen\AppData\Roaming\Microsoft\UserSecrets:/home/app/.microsoft/usersecrets:ro - - C:\Program Files\Microsoft Visual Studio\2022\Community\MSBuild\Sdks\Microsoft.Docker.Sdk\tools\linux-x64\net6.0:/VSTools:ro - - C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\HotReload:/HotReloadAgent:ro - - entrypoint: "dotnet --roll-forward Major /VSTools/DistrolessHelper/DistrolessHelper.dll --wait" - labels: - com.microsoft.visualstudio.debuggee.program: "dotnet" - com.microsoft.visualstudio.debuggee.arguments: " --additionalProbingPath /.nuget/packages --additionalProbingPath /.nuget/fallbackpackages \"/app/bin/Debug/net9.0/OpenArchival.Blazor.dll\"" - com.microsoft.visualstudio.debuggee.workingdirectory: "/app" - com.microsoft.visualstudio.debuggee.killprogram: "dotnet --roll-forward Major /VSTools/DistrolessHelper/DistrolessHelper.dll --stop dotnet" - tty: true \ No newline at end of file diff --git a/obj/Docker/docker-compose.vs.release.g.yml b/obj/Docker/docker-compose.vs.release.g.yml deleted file mode 100644 index a909717..0000000 --- a/obj/Docker/docker-compose.vs.release.g.yml +++ /dev/null @@ -1,26 +0,0 @@ -services: - openarchival.blazor: - build: - args: - LAUNCHING_FROM_VS: true - BUILD_CONFIGURATION: Debug - labels: - com.microsoft.created-by: "visual-studio" - com.microsoft.visual-studio.project-name: "OpenArchival.Blazor" - volumes: - - C:\Users\Vincent Allen\vsdbg\vs2017u5:/remote_debugger:rw - - C:\Users\Vincent Allen\AppData\Roaming\ASP.NET\Https:/root/.aspnet/https:ro - - C:\Users\Vincent Allen\AppData\Roaming\ASP.NET\Https:/home/app/.aspnet/https:ro - - C:\Users\Vincent Allen\AppData\Roaming\Microsoft\UserSecrets:/root/.microsoft/usersecrets:ro - - C:\Users\Vincent Allen\AppData\Roaming\Microsoft\UserSecrets:/home/app/.microsoft/usersecrets:ro - - C:\Program Files\Microsoft Visual Studio\2022\Community\MSBuild\Sdks\Microsoft.Docker.Sdk\tools\linux-x64\net6.0:/VSTools:ro - - C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\HotReload:/HotReloadAgent:ro - - entrypoint: "dotnet --roll-forward Major /VSTools/DistrolessHelper/DistrolessHelper.dll --wait" - labels: - com.microsoft.visualstudio.debuggee.program: "dotnet" - com.microsoft.visualstudio.debuggee.arguments: " --additionalProbingPath /.nuget/packages --additionalProbingPath /.nuget/fallbackpackages \"/app/OpenArchival.Blazor.dll\"" - com.microsoft.visualstudio.debuggee.workingdirectory: "/app" - com.microsoft.visualstudio.debuggee.killprogram: "dotnet --roll-forward Major /VSTools/DistrolessHelper/DistrolessHelper.dll --stop dotnet" - com.microsoft.visual-studio.project-name: "OpenArchival.Blazor" - tty: true \ No newline at end of file diff --git a/obj/Docker/docker-compose.vs.release.partial.g.yml b/obj/Docker/docker-compose.vs.release.partial.g.yml deleted file mode 100644 index a909717..0000000 --- a/obj/Docker/docker-compose.vs.release.partial.g.yml +++ /dev/null @@ -1,26 +0,0 @@ -services: - openarchival.blazor: - build: - args: - LAUNCHING_FROM_VS: true - BUILD_CONFIGURATION: Debug - labels: - com.microsoft.created-by: "visual-studio" - com.microsoft.visual-studio.project-name: "OpenArchival.Blazor" - volumes: - - C:\Users\Vincent Allen\vsdbg\vs2017u5:/remote_debugger:rw - - C:\Users\Vincent Allen\AppData\Roaming\ASP.NET\Https:/root/.aspnet/https:ro - - C:\Users\Vincent Allen\AppData\Roaming\ASP.NET\Https:/home/app/.aspnet/https:ro - - C:\Users\Vincent Allen\AppData\Roaming\Microsoft\UserSecrets:/root/.microsoft/usersecrets:ro - - C:\Users\Vincent Allen\AppData\Roaming\Microsoft\UserSecrets:/home/app/.microsoft/usersecrets:ro - - C:\Program Files\Microsoft Visual Studio\2022\Community\MSBuild\Sdks\Microsoft.Docker.Sdk\tools\linux-x64\net6.0:/VSTools:ro - - C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\HotReload:/HotReloadAgent:ro - - entrypoint: "dotnet --roll-forward Major /VSTools/DistrolessHelper/DistrolessHelper.dll --wait" - labels: - com.microsoft.visualstudio.debuggee.program: "dotnet" - com.microsoft.visualstudio.debuggee.arguments: " --additionalProbingPath /.nuget/packages --additionalProbingPath /.nuget/fallbackpackages \"/app/OpenArchival.Blazor.dll\"" - com.microsoft.visualstudio.debuggee.workingdirectory: "/app" - com.microsoft.visualstudio.debuggee.killprogram: "dotnet --roll-forward Major /VSTools/DistrolessHelper/DistrolessHelper.dll --stop dotnet" - com.microsoft.visual-studio.project-name: "OpenArchival.Blazor" - tty: true \ No newline at end of file diff --git a/obj/Docker/obj/Docker/ContainerCreationResult.cache b/obj/Docker/obj/Docker/ContainerCreationResult.cache deleted file mode 100644 index 7822ebe..0000000 --- a/obj/Docker/obj/Docker/ContainerCreationResult.cache +++ /dev/null @@ -1 +0,0 @@ -NoConflict \ No newline at end of file diff --git a/obj/Docker/openarchival.blazor/AbsoluteOutputAssemblyPath.cache b/obj/Docker/openarchival.blazor/AbsoluteOutputAssemblyPath.cache deleted file mode 100644 index 24850f3..0000000 --- a/obj/Docker/openarchival.blazor/AbsoluteOutputAssemblyPath.cache +++ /dev/null @@ -1 +0,0 @@ -D:\Nextcloud\Documents\Open-Archival\OpenArchival.Blazor\bin\Debug\net9.0\OpenArchival.Blazor.dll \ No newline at end of file diff --git a/obj/Docker/openarchival.blazor/BuildContextPath.cache b/obj/Docker/openarchival.blazor/BuildContextPath.cache deleted file mode 100644 index 6cd9911..0000000 --- a/obj/Docker/openarchival.blazor/BuildContextPath.cache +++ /dev/null @@ -1 +0,0 @@ -D:\Nextcloud\Documents\Open-Archival \ No newline at end of file diff --git a/obj/Docker/openarchival.blazor/ContainerDebugAbsoluteOutputAssemblyPath.cache b/obj/Docker/openarchival.blazor/ContainerDebugAbsoluteOutputAssemblyPath.cache deleted file mode 100644 index a679b0f..0000000 --- a/obj/Docker/openarchival.blazor/ContainerDebugAbsoluteOutputAssemblyPath.cache +++ /dev/null @@ -1 +0,0 @@ -/app/bin/Debug/net9.0/OpenArchival.Blazor.dll \ No newline at end of file diff --git a/obj/Docker/openarchival.blazor/DistrolessHelperSupported.cache b/obj/Docker/openarchival.blazor/DistrolessHelperSupported.cache deleted file mode 100644 index 4791ed5..0000000 --- a/obj/Docker/openarchival.blazor/DistrolessHelperSupported.cache +++ /dev/null @@ -1 +0,0 @@ -True \ No newline at end of file diff --git a/obj/Docker/openarchival.blazor/ProjectType.cache b/obj/Docker/openarchival.blazor/ProjectType.cache deleted file mode 100644 index 25d6646..0000000 --- a/obj/Docker/openarchival.blazor/ProjectType.cache +++ /dev/null @@ -1 +0,0 @@ -AspNetCore \ No newline at end of file diff --git a/obj/Docker/openarchival.blazor/TargetFramework.cache b/obj/Docker/openarchival.blazor/TargetFramework.cache deleted file mode 100644 index 8d2863a..0000000 --- a/obj/Docker/openarchival.blazor/TargetFramework.cache +++ /dev/null @@ -1 +0,0 @@ -DotNetCore \ No newline at end of file diff --git a/obj/Docker/openarchival.blazor/TargetFrameworkVersion.cache b/obj/Docker/openarchival.blazor/TargetFrameworkVersion.cache deleted file mode 100644 index a809050..0000000 --- a/obj/Docker/openarchival.blazor/TargetFrameworkVersion.cache +++ /dev/null @@ -1 +0,0 @@ -9.0 \ No newline at end of file diff --git a/obj/Docker/openarchival.blazor/VolumeMappingsForStaticWebAssets.cache b/obj/Docker/openarchival.blazor/VolumeMappingsForStaticWebAssets.cache deleted file mode 100644 index ca1221e..0000000 --- a/obj/Docker/openarchival.blazor/VolumeMappingsForStaticWebAssets.cache +++ /dev/null @@ -1 +0,0 @@ -[{"SourcePath":"D:\\Nextcloud\\Documents\\Open-Archival","TargetPath":"/src","ReadOnly":false},{"SourcePath":"C:\\Users\\Vincent Allen\\.nuget\\packages","TargetPath":"/.nuget/packages","ReadOnly":true},{"SourcePath":"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages","TargetPath":"/.nuget/fallbackpackages","ReadOnly":true}] \ No newline at end of file diff --git a/obj/Docker/openarchival.blazor/VolumeMappingsForTools.cache b/obj/Docker/openarchival.blazor/VolumeMappingsForTools.cache deleted file mode 100644 index 9f446d3..0000000 --- a/obj/Docker/openarchival.blazor/VolumeMappingsForTools.cache +++ /dev/null @@ -1 +0,0 @@ -[{"SourcePath":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Sdks\\Microsoft.Docker.Sdk\\tools\\linux-x64\\net6.0","TargetPath":"/VSTools","ReadOnly":true},{"SourcePath":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\Common7\\IDE\\CommonExtensions\\Microsoft\\HotReload","TargetPath":"/HotReloadAgent","ReadOnly":true}] \ No newline at end of file diff --git a/old/OpenArchival.Blazor.AdminComponents/ArchiveConfiguration.razor b/old/OpenArchival.Blazor.AdminComponents/ArchiveConfiguration.razor new file mode 100644 index 0000000..ba10aea --- /dev/null +++ b/old/OpenArchival.Blazor.AdminComponents/ArchiveConfiguration.razor @@ -0,0 +1,50 @@ +@page "/archiveadmin" + +@using Microsoft.AspNetCore.Authorization +@using MudBlazor +@using OpenArchival.Blazor.AdminComponents; + +@attribute [Authorize(Roles = "Admin")] + + + + + + + + + + + + + + + + +@inject ArtifactEntrySharedHelpers Helpers; +@inject IDialogService DialogService; + +@code { + /* + public async Task ShowAddGroupingDialog(ArtifactGroupingRowElement validationModel) + { + var parameters = new DialogParameters { ["Model"] = validationModel}; + + var options = new DialogOptions { CloseOnEscapeKey = true, BackdropClick = false }; + + var dialog = await DialogService.ShowAsync("Create a Group", parameters, options); + var result = await dialog.Result; + + if (result is not null && !result.Canceled) + { + + } + } + */ +} diff --git a/old/OpenArchival.Blazor.AdminComponents/ArchiveItems/AddArchiveGroupingComponent.razor b/old/OpenArchival.Blazor.AdminComponents/ArchiveItems/AddArchiveGroupingComponent.razor new file mode 100644 index 0000000..7d06e7c --- /dev/null +++ b/old/OpenArchival.Blazor.AdminComponents/ArchiveItems/AddArchiveGroupingComponent.razor @@ -0,0 +1,354 @@ +@using Microsoft.AspNetCore.Components.Web +@using MudBlazor +@using OpenArchival.Blazor.AdminComponents.Categories +@using OpenArchival.Blazor.CustomComponents; +@using OpenArchival.DataAccess; +@using System.ComponentModel.DataAnnotations + +@inject IDialogService DialogService +@inject NavigationManager NavigationManager; +@inject IArchiveCategoryProvider CategoryProvider; +@inject ArtifactEntrySharedHelpers Helpers; + + + Add an Archive Item + + + + @foreach (var result in ValidationResults) + { + @result.ErrorMessage + } + + + + + + + + + + + + + +
+ + + Archive Item Identifier + + + + + + Grouping Title + + + + Grouping Description + + + + Grouping Type + + + + + + + + @if (Model is not null) + { + @for (int index = 0; index < Model.ArtifactEntries.Count; ++index) + { + // Capture the current item in a local variable for the lambda + var currentEntry = Model.ArtifactEntries[index]; + + + } + } +
+ + + + + + + @if (FormButtonsEnabled) + { + + Cancel + + + + Publish + + } + + + +@code { + [Parameter] + public bool ClearOnPublish { get; set; } = true; + + /// + /// The URI to navigate to if cancel is pressed. null to navigate to no page + /// + [Parameter] + public string? BackLink { get; set; } = null; + + /// + /// The URI to navigate to if publish is pressed, null to navigate to no page + /// + [Parameter] + public string? ForwardLink { get; set; } = null; + + /// + /// Called when publish is clicked + /// + [Parameter] + public EventCallback GroupingPublished { get; set; } + + /// + /// The model to display on the form + /// + [Parameter] + public ArtifactGroupingValidationModel Model { get; set; } = new(); + + /// + /// Determines if the cancel and publish buttons should be show to the user or if the containing component will + /// handle their functionality (ie if used in a dialog and you want to use the dialog buttons instead of this component's handlers) + /// + [Parameter] + public bool FormButtonsEnabled { get; set; } = true; + + private UploadDropBox _uploadComponent = default!; + + private IdentifierTextBox _identifierTextBox = default!; + + private ElementReference _formDiv = default!; + + private bool _isFormDivVisible = false; + + private string _formDivStyle => _isFormDivVisible ? "" : "display: none;"; + + public List DatesData { get; set; } = []; + + public List Categories { get; set; } = new(); + + private List _filePathListings = new(); + + private bool _categorySelected = false; + + public bool IsValid { get; set; } = false; + + public List ValidationResults { get; private set; } = []; + + // Used to store the files that have already been uploaded if this component is being displayed + // with a filled in model. Used to populate the upload drop box + private List ExistingFiles { get; set; } = new(); + + protected override async Task OnParametersSetAsync() + { + // Ensure to reload the component if a model has been supplied so that the full + // component will render + if (Model?.Category is not null) + { + await OnCategoryChanged(); + } + + if (Model is not null && Model.Category is not null) + { + // The data entry should only be shown if a category has been selected + _isFormDivVisible = true; + } + + if (Model is not null) + { + ExistingFiles = Model.ArtifactEntries + .Where(e => e.Files.Any()) + .Select(e => e.Files[0]) + .ToList(); + } + + StateHasChanged(); + } + + private async Task PublishClicked(MouseEventArgs args) + { + var validationContext = new ValidationContext(Model); + var validationResult = new List(); + + IsValid = Validator.TryValidateObject(Model, validationContext, validationResult); + ArtifactGroupingValidationModel oldModel = Model; + if (ForwardLink is not null) + { + if (IsValid) + { + NavigationManager.NavigateTo(ForwardLink); + } + } + + if (IsValid && ClearOnPublish) + { + Model = new(); + await _uploadComponent.ClearClicked.InvokeAsync(); + StateHasChanged(); + } + + await GroupingPublished.InvokeAsync(oldModel); + } + + private void CancelClicked(MouseEventArgs args) + { + if (BackLink is not null) { + NavigationManager.NavigateTo(BackLink); + } + else + { + throw new ArgumentNullException("No back link provided for the add archive item page."); + } + } + + private async Task HandleEntryUpdate(ArtifactEntryValidationModel originalEntry, ArtifactEntryValidationModel updatedEntry) + { + // Find the index of the original object in our list + var index = Model.ArtifactEntries.IndexOf(originalEntry); + + // If found, replace it with the updated version + if (index != -1) + { + Model.ArtifactEntries[index] = updatedEntry; + } + + // Now, run the validation logic + await OnChanged(); + } + + // You can now simplify your OnFilesUploaded method slightly + private async Task OnFilesUploaded(List args) + { + _filePathListings = args; + + // This part is tricky. Adding items while iterating can be problematic. + // A better approach is to create the entries first, then tell Blazor to render. + var newEntries = new List(); + foreach (var file in args) + { + // Associate the file with the entry if needed + newEntries.Add(new ArtifactEntryValidationModel { Files = [file]}); + } + Model.ArtifactEntries.AddRange(newEntries); + + // StateHasChanged() is implicitly called by OnChanged() if validation passes + await OnChanged(); + } + + private async Task OnClearFilesClicked() + { + _filePathListings = []; + Model.ArtifactEntries = []; + StateHasChanged(); + await OnChanged(); + } + + async Task OnChanged() + { + var validationContext = new ValidationContext(Model); + var validationResult = new List(); + + IsValid = Validator.TryValidateObject(Model, validationContext, validationResult); + + if (IsValid) + { + StateHasChanged(); + } + } + + async Task OnCategoryChanged() + { + if (Model.Category is not null && _identifierTextBox is not null) + { + _identifierTextBox.VerifyFormatCategory = Model.Category; + _isFormDivVisible = true; + if (!_categorySelected) + { + _categorySelected = true; + } + StateHasChanged(); + } + + await OnChanged(); + } + + public async Task OnAddCategoryClicked() + { + var options = new DialogOptions { CloseOnEscapeKey = true, BackdropClick = false }; + var dialog = await DialogService.ShowAsync("Create a Category", options); + + var result = await dialog.Result; + + if (result is not null && !result.Canceled) + { + await CategoryProvider.CreateCategoryAsync(CategoryValidationModel.ToArchiveCategory((CategoryValidationModel)result.Data)); + StateHasChanged(); + await OnChanged(); + } + } + + private async Task> SearchCategory(string value, CancellationToken cancellationToken) + { + List categories; + if (string.IsNullOrEmpty(value)) + { + categories = new(await CategoryProvider.Top(25) ?? []); + } + else + { + categories = new((await CategoryProvider.Search(value) ?? [])); + } + + return categories; + } + + private async void OnDeleteEntryClicked((int index, string filename) data) + { + Model.ArtifactEntries.RemoveAt(data.index); + _uploadComponent.RemoveFile(data.filename); + StateHasChanged(); + } +} diff --git a/old/OpenArchival.Blazor.AdminComponents/ArchiveItems/AddGroupingDialog.razor b/old/OpenArchival.Blazor.AdminComponents/ArchiveItems/AddGroupingDialog.razor new file mode 100644 index 0000000..75f89f8 --- /dev/null +++ b/old/OpenArchival.Blazor.AdminComponents/ArchiveItems/AddGroupingDialog.razor @@ -0,0 +1,37 @@ + + + Edit a Category + + + + + + + + Cancel + OK + + + +@code { + [Parameter] + public required ArtifactGroupingValidationModel Model { get; set; } + + [CascadingParameter] + IMudDialogInstance MudDialog { get; set; } + + [Parameter] + public bool IsUpdate { get; set; } = false; + + + private void OnCancel(MouseEventArgs args) + { + MudDialog.Cancel(); + } + private void OnSubmit(MouseEventArgs args) + { + MudDialog.Close(DialogResult.Ok(Model)); + } +} diff --git a/old/OpenArchival.Blazor.AdminComponents/ArchiveItems/ArchiveEntryCreatorCard.razor b/old/OpenArchival.Blazor.AdminComponents/ArchiveItems/ArchiveEntryCreatorCard.razor new file mode 100644 index 0000000..517d074 --- /dev/null +++ b/old/OpenArchival.Blazor.AdminComponents/ArchiveItems/ArchiveEntryCreatorCard.razor @@ -0,0 +1,323 @@ +@using OpenArchival.Blazor.Components.CustomComponents; +@using System.ComponentModel.DataAnnotations +@using MudBlazor + +@inject ArtifactEntrySharedHelpers Helpers; +@inject IArtifactDefectProvider DefectsProvider; +@inject IArtifactStorageLocationProvider StorageLocationProvider; +@inject IArchiveEntryTagProvider TagsProvider; +@inject IArtifactTypeProvider TypesProvider; +@inject IListedNameProvider ListedNameProvider; + + + + + @if (Model.Files.Count > 0) { + @(Model.Files[0].OriginalName) + } + + + Delete + + + + + @foreach (var error in ValidationResults) + { + + @error.ErrorMessage + + } + + Archive Item Title + + + + Archive Item Numbering + Enter a unique ID for this entry + + + + Item Description + + + + Storage Location + + + + Artifact Type + + + + @* Tags entry *@ + Tags + + + + + + + + + Listed Names + Enter any names of the people associated with this entry. + + + + + + + + + Associated Dates + + + + + + + + + + + + + Defects + + + + + + + + + Related Artifacts + Tag this entry with the identifier of any other entry to link them. + + + + + + + + + Artifact Text Contents + Input the text transcription of the words on the artifact if applicable to aid the search engine. + + + + Additional files + + + + +@code { + [Parameter] + public required FilePathListing MainFilePath { get; set; } + + [Parameter] + public EventCallback ModelChanged { get; set; } + + [Parameter] + public EventCallback InputsChanged { get; set; } + + [Parameter] + public required ArtifactEntryValidationModel Model { get; set; } = new() { StorageLocation = "hello", Title = "Hello" }; + + [Parameter] + public required int ArtifactEntryIndex {get; set;} + + [Parameter] + public EventCallback<(int index, string filename)> OnEntryDeletedClicked { get; set; } + + private ChipContainer _tagsChipContainer; + + private string _tagsInputValue { get; set; } = ""; + + private ChipContainer _assocaitedDatesChipContainer; + + private DateTime? _associatedDateInputValue { get; set; } = default; + + private ChipContainer _listedNamesChipContainer; + + private string _listedNamesInputValue { get; set; } = ""; + + private ChipContainer _defectsChipContainer; + + private string _defectsInputValue = ""; + + private ChipContainer _assocaitedArtifactsChipContainer; + + private ArtifactEntry? _associatedArtifactValue = null; + + private string _artifactTextContent = ""; + + public bool IsValid { get; set; } + + public List ValidationResults { get; private set; } = []; + + public UploadDropBox _uploadDropBox = default!; + + protected override Task OnParametersSetAsync() + { + if (_uploadDropBox is not null && Model is not null && Model.Files is not null) + { + _uploadDropBox.ExistingFiles = Model.Files.GetRange(1, Model.Files.Count - 1); + } + + if (Model.Files is not null && Model.Files.Any()) + { + MainFilePath = Model.Files[0]; + } + + return base.OnParametersSetAsync(); + } + + public async Task OnInputsChanged() + { + // 1. Clear previous validation errors + ValidationResults.Clear(); + + var validationContext = new ValidationContext(Model); + + // 2. Run the validator + IsValid = Validator.TryValidateObject(Model, validationContext, ValidationResults, validateAllProperties: true); + // 3. REMOVE this line. Let the parent's update trigger the re-render. + // StateHasChanged(); + + await InputsChanged.InvokeAsync(); + } + + private async Task OnFilesUploaded(List filePathListings) + { + if (MainFilePath is not null) + { + var oldFiles = Model.Files.GetRange(1, Model.Files.Count - 1); + Model.Files = [MainFilePath]; + Model.Files.AddRange(oldFiles); + Model.Files.AddRange(filePathListings); + } else + { + Model.Files = []; + } + Model.Files.AddRange(filePathListings); + + StateHasChanged(); + } + + private async Task OnFilesCleared() + { + if (MainFilePath is not null) { + Model.Files = [MainFilePath]; + } else + { + Model.Files = []; + } + } + + private Task OnDefectsValueChanged(string text) + { + _defectsInputValue = text; + return ModelChanged.InvokeAsync(Model); + } + + private Task OnTagsInputTextChanged(string text) + { + _tagsInputValue = text; + return ModelChanged.InvokeAsync(Model); + } + + private Task OnListedNamesTextChanged(string text) + { + _listedNamesInputValue = text; + return ModelChanged.InvokeAsync(Model); + } + + private Task OnAssociatedArtifactChanged(ArtifactEntry grouping) + { + if (grouping is not null) + { + _associatedArtifactValue = grouping; + return ModelChanged.InvokeAsync(Model); + } + + return ModelChanged.InvokeAsync(Model); + } + + private Task OnArtifactTextContentChanged(string value) + { + Model.FileTextContent = value; + return ModelChanged.InvokeAsync(Model); + } + + public async Task HandleChipContainerEnter(KeyboardEventArgs args, ChipContainer container, Type value, Action resetInputAction) + { + if (args.Key == "Enter") + { + await container.AddItem(value); + resetInputAction?.Invoke(); + StateHasChanged(); + await ModelChanged.InvokeAsync(Model); + } + } + + public async Task HandleAssociatedDateChipContainerAdd(MouseEventArgs args) + { + if (_associatedDateInputValue is not null) + { + DateTime unspecifiedDate = (DateTime)_associatedDateInputValue; + + DateTime utcDate = DateTime.SpecifyKind(unspecifiedDate, DateTimeKind.Utc); + + await _assocaitedDatesChipContainer.AddItem(utcDate); + + _associatedDateInputValue = default; + } + } + private async Task OnDeleteEntryClicked(MouseEventArgs args) + { + await OnEntryDeletedClicked.InvokeAsync((ArtifactEntryIndex, MainFilePath.OriginalName)); + } +} \ No newline at end of file diff --git a/old/OpenArchival.Blazor.AdminComponents/ArchiveItems/ArchiveGroupingsTable.razor b/old/OpenArchival.Blazor.AdminComponents/ArchiveItems/ArchiveGroupingsTable.razor new file mode 100644 index 0000000..d43358e --- /dev/null +++ b/old/OpenArchival.Blazor.AdminComponents/ArchiveItems/ArchiveGroupingsTable.razor @@ -0,0 +1,173 @@ +@using Microsoft.AspNetCore.Components.Web +@using MudBlazor +@using OpenArchival.DataAccess + + + + Delete + + + + + + + + + + + + + + + + Edit + + + + + + + + + + + +@inject IArtifactGroupingProvider GroupingProvider; +@inject IDialogService DialogService; +@inject IArtifactGroupingProvider GroupingProvider; +@inject ArtifactEntrySharedHelpers Helpers; + +@code +{ + public List ArtifactGroupingRows { get; set; } = new(); + + public MudDataGrid DataGrid { get; set; } = default!; + + protected override async Task OnInitializedAsync() + { + // Load inital data + List groupings = await GroupingProvider.GetGroupingsPaged(1, 25); + SetGroupingRows(groupings); + + await base.OnInitializedAsync(); + StateHasChanged(); + } + + private void SetGroupingRows(IEnumerable groupings) + { + ArtifactGroupingRows.Clear(); + + foreach (var grouping in groupings) + { + ArtifactGroupingRows.Add(new ArtifactGroupingRowElement() + { + ArtifactGroupingIdentifier=grouping.ArtifactGroupingIdentifier ?? throw new ArgumentNullException(nameof(grouping), "Got a null grouping identifier"), + CategoryName=grouping.Category.Name, + Title=grouping.Title, + IsPublicallyVisible=grouping.IsPublicallyVisible, + Id=grouping.Id + } + ); + } + } + + private async Task OnRowEditClick(ArtifactGroupingRowElement row) + { + var parameters = new DialogParameters(); + + var model = await GroupingProvider.GetGroupingAsync(row.Id); + + parameters.Add("Model", ArtifactGroupingValidationModel.ToValidationModel(model)); + + var options = new DialogOptions() + { + MaxWidth = MaxWidth.ExtraExtraLarge, + FullWidth = true + }; + + var dialog = await DialogService.ShowAsync("Edit Grouping", parameters, options); + + var result = await dialog.Result; + + if (result is not null && !result.Canceled) + { + var validationModel = (ArtifactGroupingValidationModel)result.Data!; + + await Helpers.OnGroupingPublished(validationModel); + + await DataGrid.ReloadServerData(); + } + } + + private async Task OnDeleteClicked(MouseEventArgs args) + { + HashSet selected = DataGrid.SelectedItems; + + bool? confirmed = await DialogService.ShowMessageBox + ( + new MessageBoxOptions(){ + Message=$"Are you sure you want to delete {selected.Count} groupings?", + Title="Delete Groupings", + CancelText="Cancel", + YesText="Delete" + }); + + if (confirmed is not null && (confirmed ?? throw new ArgumentNullException("confirmed was null"))) + { + foreach (var grouping in selected) + { + await GroupingProvider.DeleteGroupingAsync(grouping.Id); + StateHasChanged(); + } + } + } + + private async Task> ServerReload(GridState state) + { + int totalItems = await GroupingProvider.GetTotalCount(); + + IEnumerable groupings = await GroupingProvider.GetGroupingsPaged(state.Page + 1, state.PageSize); + + var pagedItems = groupings.Select(grouping => new ArtifactGroupingRowElement() + { + Id = grouping.Id, + Title = grouping.Title, + ArtifactGroupingIdentifier = grouping.ArtifactGroupingIdentifier ?? throw new ArgumentNullException(nameof(grouping), "Got a null ArtifactGroupingIdentifier"), + CategoryName = grouping.Category.Name, + IsPublicallyVisible = grouping.IsPublicallyVisible, + }); + + return new GridData() + { + TotalItems = totalItems, + Items = pagedItems + }; + } +} \ No newline at end of file diff --git a/old/OpenArchival.Blazor.AdminComponents/ArchiveItems/ArtifactEntrySharedHelpers.cs b/old/OpenArchival.Blazor.AdminComponents/ArchiveItems/ArtifactEntrySharedHelpers.cs new file mode 100644 index 0000000..d334aac --- /dev/null +++ b/old/OpenArchival.Blazor.AdminComponents/ArchiveItems/ArtifactEntrySharedHelpers.cs @@ -0,0 +1,260 @@ +using Microsoft.EntityFrameworkCore; +using OpenArchival.DataAccess; + +namespace OpenArchival.Blazor.AdminComponents; + +public class ArtifactEntrySharedHelpers +{ + IArtifactDefectProvider DefectsProvider { get; set; } + + IArtifactStorageLocationProvider StorageLocationProvider { get; set; } + + IArchiveEntryTagProvider TagsProvider { get; set; } + + IArtifactTypeProvider TypesProvider { get; set; } + + IListedNameProvider ListedNameProvider { get; set; } + + IDbContextFactory DbContextFactory { get; set; } + + IArtifactGroupingProvider GroupingProvider { get; set; } + + + public ArtifactEntrySharedHelpers(IArtifactDefectProvider defectsProvider, IArtifactStorageLocationProvider storageLocationProvider, IArchiveEntryTagProvider tagsProvider, IArtifactTypeProvider typesProvider, IListedNameProvider listedNamesProvider, IDbContextFactory contextFactory, IArtifactGroupingProvider groupingProvider) + { + DefectsProvider = defectsProvider; + StorageLocationProvider = storageLocationProvider; + TagsProvider = tagsProvider; + TypesProvider = typesProvider; + ListedNameProvider = listedNamesProvider; + DbContextFactory = contextFactory; + GroupingProvider = groupingProvider; + } + + public async Task> SearchDefects(string value, CancellationToken cancellationToken) + { + List defects; + if (string.IsNullOrEmpty(value)) + { + defects = new((await DefectsProvider.Top(25) ?? []).Select(prop => prop.Description)); + } + else + { + defects = new((await DefectsProvider.Search(value) ?? []).Select(prop => prop.Description)); + } + + return defects; + } + + public async Task> SearchStorageLocation(string value, CancellationToken cancellationToken) + { + List storageLocations; + if (string.IsNullOrEmpty(value)) + { + storageLocations = new((await StorageLocationProvider.Top(25) ?? []).Select(prop => prop.Location)); + } + else + { + storageLocations = new((await StorageLocationProvider.Search(value) ?? []).Select(prop => prop.Location)); + } + + return storageLocations; + } + + public async Task> SearchTags(string value, CancellationToken cancellationToken) + { + List tags; + if (string.IsNullOrEmpty(value)) + { + tags = new((await TagsProvider.Top(25) ?? []).Select(prop => prop.Name)); + } + else + { + tags = new((await TagsProvider.Search(value) ?? []).Select(prop => prop.Name)); + } + + return tags; + } + + public async Task> SearchItemTypes(string value, CancellationToken cancellationToken) + { + List itemTypes; + if (string.IsNullOrEmpty(value)) + { + itemTypes = new((await TypesProvider.Top(25) ?? []).Select(prop => prop.Name)); + } + else + { + itemTypes = new((await TypesProvider.Search(value) ?? []).Select(prop => prop.Name)); + } + + return itemTypes; + } + + public async Task> SearchListedNames(string value, CancellationToken cancellationToken) + { + List names; + if (string.IsNullOrEmpty(value)) + { + names = new((await ListedNameProvider.Top(25) ?? [])); + } + else + { + names = new((await ListedNameProvider.Search(value) ?? [])); + } + + return names.Select(p => p.Value); + } + + /* + public async Task OnGroupingPublished(ArtifactGroupingValidationModel model) + { + await using var context = await DbContextFactory.CreateDbContextAsync(); + + + + + + + + + var grouping = model.ToArtifactGrouping(); + + // The old logic for attaching the category is still good. + context.Attach(grouping.Category); + + // 1. Handle ArtifactType (no change, this was fine) + if (grouping.Type is not null) + { + var existingType = await context.ArtifactTypes + .FirstOrDefaultAsync(t => t.Name == grouping.Type.Name); + + if (existingType is not null) + { + grouping.Type = existingType; + } + } + + // 2. Process ChildArtifactEntries + foreach (var entry in grouping.ChildArtifactEntries) + { + // Handle ArtifactStorageLocation (no change, this was fine) + var existingLocation = await context.ArtifactStorageLocations + .FirstOrDefaultAsync(l => l.Location == entry.StorageLocation.Location); + + if (existingLocation is not null) + { + entry.StorageLocation = existingLocation; + } + + // Handle Defects + if (entry.Defects is not null && entry.Defects.Any()) + { + var defectDescriptions = entry.Defects.Select(d => d.Description).ToList(); + var existingDefects = await context.ArtifactDefects + .Where(d => defectDescriptions.Contains(d.Description)) + .ToListAsync(); + + // Replace in-memory defects with existing ones + for (int i = 0; i < entry.Defects.Count; i++) + { + var existingDefect = existingDefects + .FirstOrDefault(ed => ed.Description == entry.Defects[i].Description); + + if (existingDefect is not null) + { + entry.Defects[i] = existingDefect; + } + } + } + + // Handle ListedNames + if (entry.ListedNames is not null && entry.ListedNames.Any()) + { + var listedNamesValues = entry.ListedNames.Select(n => n.Value).ToList(); + var existingNames = await context.ArtifactAssociatedNames + .Where(n => listedNamesValues.Contains(n.Value)) + .ToListAsync(); + + for (int i = 0; i < entry.ListedNames.Count; i++) + { + var existingName = existingNames + .FirstOrDefault(en => en.Value == entry.ListedNames[i].Value); + + if (existingName is not null) + { + entry.ListedNames[i] = existingName; + } + } + } + + // Handle Tags + if (entry.Tags is not null && entry.Tags.Any()) + { + var tagNames = entry.Tags.Select(t => t.Name).ToList(); + var existingTags = await context.ArtifactEntryTags + .Where(t => tagNames.Contains(t.Name)) + .ToListAsync(); + + for (int i = 0; i < entry.Tags.Count; i++) + { + var existingTag = existingTags + .FirstOrDefault(et => et.Name == entry.Tags[i].Name); + + if (existingTag is not null) + { + entry.Tags[i] = existingTag; + } + } + } + + // 💡 NEW: Handle pre-existing FilePathListings + // This is the key change to resolve the exception + if (entry.Files is not null) + { + foreach (var filepath in entry.Files) + { + // The issue is trying to add a new entity that has an existing primary key. + // Since you stated that all files are pre-added, you must attach them. + // Attach() tells EF Core to track the entity, assuming it already exists. + context.Attach(filepath); + // Also ensure the parent-child relationship is set correctly, though it's likely set by ToArtifactGrouping + filepath.ParentArtifactEntry = entry; + } + } + // Tag each entry with the parent grouping so it is linked correctly in the database + entry.ArtifactGrouping = grouping; + } + + // 3. Add the main grouping object and let EF Core handle the graph + // The previous issues with the graph are resolved, so this line should now work. + context.ArtifactGroupings.Add(grouping); + + // 4. Save all changes in a single transaction + await context.SaveChangesAsync(); + } + */ + + public async Task OnGroupingPublished(ArtifactGroupingValidationModel model) + { + // The OnGroupingPublished method in this class should not contain DbContext logic. + // It should orchestrate the data flow by calling the appropriate provider methods. + var isNew = model.Id == 0 || model.Id is null; + + // Convert the validation model to an entity + var grouping = model.ToArtifactGrouping(); + + if (isNew) + { + // For a new grouping, use the CreateGroupingAsync method. + // The provider method will handle the file path logic. + await GroupingProvider.CreateGroupingAsync(grouping); + } + else + { + // For an existing grouping, use the UpdateGroupingAsync method. + // The provider method will handle the change tracking. + await GroupingProvider.UpdateGroupingAsync(grouping); + } + } +} diff --git a/old/OpenArchival.Blazor.AdminComponents/ArchiveItems/IdentifierTextBox.razor b/old/OpenArchival.Blazor.AdminComponents/ArchiveItems/IdentifierTextBox.razor new file mode 100644 index 0000000..1e9d480 --- /dev/null +++ b/old/OpenArchival.Blazor.AdminComponents/ArchiveItems/IdentifierTextBox.razor @@ -0,0 +1,109 @@ +@using System.Text + +Item Identifier: @Value +@if (_identifierError) +{ + + All identifier fields must be filled in. + +} + + + + @for (int index = 0; index < IdentifierFields.Count; index++) + { + // You must create a local variable inside the loop for binding to work correctly. + var field = IdentifierFields[index]; + + + + + + @if (index < IdentifierFields.Count - 1) + { + + @FieldSeparator + + } + } + + +@using OpenArchival.DataAccess; +@inject IArchiveCategoryProvider CategoryProvider; + +@code { + [Parameter] + public required string FieldSeparator { get; set; } = "-"; + + private List _identifierFields = new(); + + [Parameter] + public required List IdentifierFields + { + get => _identifierFields; + set => _identifierFields = value ?? new(); + } + + [Parameter] + public EventCallback ValueChanged { get; set; } + + private ArchiveCategory _verifyFormatCategory; + public ArchiveCategory? VerifyFormatCategory + { + get + { + return _verifyFormatCategory; + } + set + { + if (value is not null) + { + _identifierFields.Clear(); + _verifyFormatCategory = value; + foreach (var field in value.FieldNames) + { + _identifierFields.Add(new IdentifierFieldValidationModel() {Name=field, Value=""}); + } + } + } + } + + public bool IsValid { get; set; } = false; + + // Computed property that builds the final string + public string Value => string.Join(FieldSeparator, IdentifierFields.Select(f => f.Value).Where(v => !string.IsNullOrEmpty(v))); + + private bool _identifierError = false; + + /// + /// This runs when parameters are first set, ensuring the initial state is correct. + /// + protected override void OnParametersSet() + { + ValidateFields(); + StateHasChanged(); + } + + /// + /// This runs after the user types into a field. + /// + private async Task OnInputChanged() + { + ValidateFields(); + await ValueChanged.InvokeAsync(this.Value); + } + + /// + /// Reusable method to check the validity of the identifier fields. + /// + private void ValidateFields() + { + // Set to true if ANY field is empty or null. + _identifierError = IdentifierFields.Any(f => string.IsNullOrEmpty(f.Value)); + IsValid = !_identifierError; + } +} \ No newline at end of file diff --git a/old/OpenArchival.Blazor.AdminComponents/ArchiveItems/ValidationModels/ArtifactEntryValidationModel.cs b/old/OpenArchival.Blazor.AdminComponents/ArchiveItems/ValidationModels/ArtifactEntryValidationModel.cs new file mode 100644 index 0000000..5697835 --- /dev/null +++ b/old/OpenArchival.Blazor.AdminComponents/ArchiveItems/ValidationModels/ArtifactEntryValidationModel.cs @@ -0,0 +1,94 @@ +namespace OpenArchival.Blazor.AdminComponents; + +using OpenArchival.DataAccess; +using System.ComponentModel.DataAnnotations; + +public class ArtifactEntryValidationModel +{ + /// + /// Used when translating between the validation model and the database model + /// + public int? Id { get; set; } + + [Required(AllowEmptyStrings = false, ErrorMessage = "An artifact numbering must be supplied")] + public string? ArtifactNumber { get; set; } + + [Required(AllowEmptyStrings = false, ErrorMessage = "A title must be provided")] + public string? Title { get; set; } + + public string? Description { get; set; } + + public string? Type { get; set; } + + public string? StorageLocation { get; set; } + + public List? Tags { get; set; } = []; + + public List? ListedNames { get; set; } = []; + + public List? AssociatedDates { get; set; } = []; + + public List? Defects { get; set; } = []; + + public List? Links { get; set; } = []; + + public List? Files { get; set; } = []; + + public string? FileTextContent { get; set; } + + public List RelatedArtifacts { get; set; } = []; + + public bool IsPublicallyVisible { get; set; } = true; + + public ArtifactEntry ToArtifactEntry(ArtifactGrouping? parent = null) + { + List tags = new(); + if (Tags is not null) + { + foreach (var tag in Tags) + { + tags.Add(new ArtifactEntryTag() { Name = tag }); + } + } + + List defects = new(); + foreach (var defect in Defects) + { + defects.Add(new ArtifactDefect() { Description=defect}); + } + + var entry = new ArtifactEntry() + { + Id = Id ?? 0, + Files = Files, + Type = new DataAccess.ArtifactType() { Name = Type }, + ArtifactNumber = ArtifactNumber, + AssociatedDates = AssociatedDates, + Defects = defects, + Links = Links, + StorageLocation = null, + Description = Description, + FileTextContent = FileTextContent, + IsPubliclyVisible = IsPublicallyVisible, + Tags = tags, + Title = Title, + ArtifactGrouping = parent, + RelatedTo = RelatedArtifacts, + }; + + List listedNames = new(); + foreach (var name in ListedNames) + { + listedNames.Add(new ListedName() { Value=name }); + } + + entry.ListedNames = listedNames; + + if (!string.IsNullOrEmpty(StorageLocation)) + { + entry.StorageLocation = new ArtifactStorageLocation() { Location = StorageLocation }; + } + + return entry; + } +} diff --git a/old/OpenArchival.Blazor.AdminComponents/ArchiveItems/ValidationModels/ArtifactGroupingValidationModel.cs b/old/OpenArchival.Blazor.AdminComponents/ArchiveItems/ValidationModels/ArtifactGroupingValidationModel.cs new file mode 100644 index 0000000..c7fa210 --- /dev/null +++ b/old/OpenArchival.Blazor.AdminComponents/ArchiveItems/ValidationModels/ArtifactGroupingValidationModel.cs @@ -0,0 +1,139 @@ +using OpenArchival.DataAccess; +using System.ComponentModel.DataAnnotations; + +namespace OpenArchival.Blazor.AdminComponents; + +public class ArtifactGroupingValidationModel : IValidatableObject +{ + /// + /// Used by update code to track the database record that corresponds to the data within this DTO + /// + public int? Id { get; set; } + + [Required(ErrorMessage = "A grouping title is required.")] + public string? Title { get; set; } + + [Required(ErrorMessage = "A grouping description is required.")] + public string? Description { get; set; } + + [Required(ErrorMessage = "A type is required.")] + public string? Type { get; set; } + + public ArchiveCategory? Category { get; set; } + + public List IdentifierFieldValues { get; set; } = new(); + + public List ArtifactEntries { get; set; } = new(); + + public bool IsPublicallyVisible { get; set; } = true; + + public ArtifactGrouping ToArtifactGrouping() + { + IdentifierFields identifierFields = new(); + identifierFields.Values = IdentifierFieldValues.Select(p => p.Value).ToList(); + + List entries = []; + foreach (var entry in ArtifactEntries) + { + entries.Add(entry.ToArtifactEntry()); + } + + var grouping = new ArtifactGrouping() + { + Id = Id ?? default, + Title = Title, + Description = Description, + Category = Category, + IdentifierFields = identifierFields, + IsPublicallyVisible = true, + ChildArtifactEntries = entries, + Type = new ArtifactType() { Name = Type } + }; + + // Create the parent link + foreach (var entry in grouping.ChildArtifactEntries) + { + entry.ArtifactGrouping = grouping; + } + + return grouping; + } + + public static ArtifactGroupingValidationModel ToValidationModel(ArtifactGrouping grouping) + { + var entries = new List(); + + foreach (var entry in grouping.ChildArtifactEntries) + { + var defects = new List(); + + if (entry.Defects is not null) + { + defects.AddRange(entry.Defects.Select(defect => defect.Description)); + } + + var validationModel = new ArtifactEntryValidationModel() + { + Id = entry.Id, + Title = entry.Title, + StorageLocation = entry.StorageLocation.Location, + ArtifactNumber = entry.ArtifactNumber, + AssociatedDates = entry.AssociatedDates, + Defects = entry?.Defects?.Select(defect => defect.Description).ToList(), + Description = entry?.Description, + Files = entry?.Files, + FileTextContent = entry?.FileTextContent, + IsPublicallyVisible = entry.IsPubliclyVisible, + Links = entry.Links, + ListedNames = entry?.ListedNames?.Select(name => name.Value).ToList(), + RelatedArtifacts = entry.RelatedTo, + Tags = entry?.Tags?.Select(tag => tag.Name).ToList(), + Type = entry?.Type.Name, + }; + + entries.Add(validationModel); + } + + var identifierFieldsStrings = grouping.IdentifierFields.Values; + List identifierFields = new(); + for (int index = 0; index < identifierFieldsStrings.Count; ++index) + { + identifierFields.Add(new IdentifierFieldValidationModel() + { + Value = identifierFieldsStrings[index], + Name = grouping.Category.FieldNames[index] + }); + } + return new ArtifactGroupingValidationModel() + { + Id = grouping.Id, + Title = grouping.Title, + ArtifactEntries = entries, + Category = grouping.Category, + Description = grouping.Description, + IdentifierFieldValues = identifierFields, + IsPublicallyVisible = grouping.IsPublicallyVisible, + Type = grouping.Type.Name + }; + } + + public IEnumerable Validate(ValidationContext validationContext) + { + foreach (var entry in ArtifactEntries) + { + var context = new ValidationContext(entry); + var validationResult = new List(); + + bool valid = Validator.TryValidateObject(entry, context, validationResult); + foreach (var result in validationResult) + { + yield return result; + } + } + + if (!ArtifactEntries.Any()) + { + yield return new ValidationResult("Must upload one or more files"); + } + } +} diff --git a/old/OpenArchival.Blazor.AdminComponents/ArchiveItems/ValidationModels/IdentifierFieldValidationModel.cs b/old/OpenArchival.Blazor.AdminComponents/ArchiveItems/ValidationModels/IdentifierFieldValidationModel.cs new file mode 100644 index 0000000..11879e9 --- /dev/null +++ b/old/OpenArchival.Blazor.AdminComponents/ArchiveItems/ValidationModels/IdentifierFieldValidationModel.cs @@ -0,0 +1,7 @@ +namespace OpenArchival.Blazor.AdminComponents; + +public class IdentifierFieldValidationModel +{ + public string Name { get; set; } = ""; + public string Value { get; set; } = ""; +} diff --git a/old/OpenArchival.Blazor.AdminComponents/Categories/CategoriesListComponent.razor b/old/OpenArchival.Blazor.AdminComponents/Categories/CategoriesListComponent.razor new file mode 100644 index 0000000..2453a4f --- /dev/null +++ b/old/OpenArchival.Blazor.AdminComponents/Categories/CategoriesListComponent.razor @@ -0,0 +1,81 @@ +@using Microsoft.EntityFrameworkCore; +@using MudBlazor.Interfaces + +@page "/categorieslist" + + + Categories + + + @foreach (ArchiveCategory category in _categories) + { + + @category.Name + @if (ShowDeleteButton) + { + + + + } + + } + + @ChildContent + + +@inject IArchiveCategoryProvider CategoryProvider; +@inject ILogger Logger; + +@code { + [Parameter] + public RenderFragment ChildContent { get; set; } = default!; + + [Parameter] + public bool ShowDeleteButton { get; set; } = false; + + [Parameter] + public EventCallback ListItemClickedCallback { get; set; } + + [Parameter] + public EventCallback OnDeleteClickedCallback { get; set; } + + private List _categories = new(); + + protected override async Task OnInitializedAsync() + { + await LoadCategories(); + } + + private async Task LoadCategories() + { + var categories = await CategoryProvider.GetAllArchiveCategories(); + if (categories is null) + { + Logger.LogError("There were no categories in the database when attempting to load the list of categories."); + _categories.Clear(); + return; + } + _categories = categories.ToList(); + } + + public async Task RefreshData() + { + await LoadCategories(); + StateHasChanged(); + } + + private async Task OnCategoryItemClicked(ArchiveCategory category) + { + await ListItemClickedCallback.InvokeAsync(category); + } + + private async Task HandleDeleteClick(ArchiveCategory category) + { + await OnDeleteClickedCallback.InvokeAsync(category); + } +} \ No newline at end of file diff --git a/old/OpenArchival.Blazor.AdminComponents/Categories/CategoryCreatorDialog.razor b/old/OpenArchival.Blazor.AdminComponents/Categories/CategoryCreatorDialog.razor new file mode 100644 index 0000000..7610390 --- /dev/null +++ b/old/OpenArchival.Blazor.AdminComponents/Categories/CategoryCreatorDialog.razor @@ -0,0 +1,164 @@ +@using System.ComponentModel.DataAnnotations; +@using MudBlazor +@using OpenArchival.DataAccess; + + + + Create a Category + + + + + + + + Item Tag Identifier + This will be the format of the identifier used for each archive entry. + + + Format Preview: + @FormatPreview + + + + + + + + + + + + @for (int index = 0; index < ValidationModel.FieldNames.Count; ++index) + { + var localIndex = index; + + + + + } + + + + + Cancel + OK + + + +@inject IArchiveCategoryProvider CategoryProvider; + +@code { + [CascadingParameter] + private IMudDialogInstance MudDialog { get; set; } = default!; + + [Parameter] + public CategoryValidationModel ValidationModel { get; set; } = default!; + + [Parameter] + public bool IsUpdate { get; set; } + + [Parameter] + public string OriginalName { get; set; } = string.Empty; + + + private MudForm _form = default!; + private string FormatPreview { get; set; } = string.Empty; + + protected override void OnParametersSet() + { + if (ValidationModel is null) + { + ValidationModel = new CategoryValidationModel { NumFields = 1 }; + } else + { + ValidationModel.NumFields = ValidationModel.FieldNames.Count; + } + } + + private void OnNumFieldsChanged(int newCount) + { + if (newCount < 1) return; + ValidationModel.NumFields = newCount; + UpdateStateFromModel(); + } + + private void UpdateStateFromModel() + { + ValidationModel.FieldNames ??= new List(); + ValidationModel.FieldDescriptions ??= new List(); + + while (ValidationModel.FieldNames.Count < ValidationModel.NumFields) + { + ValidationModel.FieldNames.Add($"Field {ValidationModel.FieldNames.Count + 1}"); + } + while (ValidationModel.FieldNames.Count > ValidationModel.NumFields) + { + ValidationModel.FieldNames.RemoveAt(ValidationModel.FieldNames.Count - 1); + } + + while (ValidationModel.FieldDescriptions.Count < ValidationModel.NumFields) + { + ValidationModel.FieldDescriptions.Add(""); + } + while (ValidationModel.FieldDescriptions.Count > ValidationModel.NumFields) + { + ValidationModel.FieldDescriptions.RemoveAt(ValidationModel.FieldDescriptions.Count - 1); + } + + UpdateFormatPreview(); + StateHasChanged(); + } + + private void UpdateFormatPreview() + { + var fieldNames = ValidationModel.FieldNames.Select(name => string.IsNullOrEmpty(name) ? "<...>" : $"<{name}>"); + FormatPreview = string.Join(ValidationModel.FieldSeparator, fieldNames); + } + + private async Task Submit() + { + await _form.Validate(); + if (!_form.IsValid) return; + + MudDialog.Close(DialogResult.Ok(ValidationModel)); + } + + private void Cancel() => MudDialog.Cancel(); + + // In your MudDialog component's @code block + + private void HandleNameUpdate((int Index, string NewValue) data) + { + if (data.Index < ValidationModel.FieldNames.Count) + { + ValidationModel.FieldNames[data.Index] = data.NewValue; + UpdateFormatPreview(); // Update the preview in real-time + } + } + + private void HandleDescriptionUpdate((int Index, string NewValue) data) + { + if (data.Index < ValidationModel.FieldDescriptions.Count) + { + ValidationModel.FieldDescriptions[data.Index] = data.NewValue; + } + } +} \ No newline at end of file diff --git a/old/OpenArchival.Blazor.AdminComponents/Categories/CategoryFieldCardComponent.razor b/old/OpenArchival.Blazor.AdminComponents/Categories/CategoryFieldCardComponent.razor new file mode 100644 index 0000000..d7c7891 --- /dev/null +++ b/old/OpenArchival.Blazor.AdminComponents/Categories/CategoryFieldCardComponent.razor @@ -0,0 +1,39 @@ + + + + + + + + +@code { + [Parameter] public int Index { get; set; } + + [Parameter] public string FieldName { get; set; } = ""; + [Parameter] public string FieldDescription { get; set; } = ""; + + [Parameter] public EventCallback<(int Index, string NewValue)> OnNameUpdate { get; set; } + [Parameter] public EventCallback<(int Index, string NewValue)> OnDescriptionUpdate { get; set; } + + private async Task OnNameChanged() + { + await OnNameUpdate.InvokeAsync((Index, FieldName)); + } + + private async Task OnDescriptionChanged() + { + await OnDescriptionUpdate.InvokeAsync((Index, FieldDescription)); + } +} \ No newline at end of file diff --git a/old/OpenArchival.Blazor.AdminComponents/Categories/ValidationModels/ArtifactGroupingRowElement.cs b/old/OpenArchival.Blazor.AdminComponents/Categories/ValidationModels/ArtifactGroupingRowElement.cs new file mode 100644 index 0000000..6ef62e0 --- /dev/null +++ b/old/OpenArchival.Blazor.AdminComponents/Categories/ValidationModels/ArtifactGroupingRowElement.cs @@ -0,0 +1,25 @@ +namespace OpenArchival.Blazor.AdminComponents; + +public class ArtifactGroupingRowElement +{ + public required int Id { get; set; } + + public required string ArtifactGroupingIdentifier { get; set; } + + public required string CategoryName { get; set; } + + public required string Title { get; set; } + + public bool IsPublicallyVisible { get; set; } + + public bool Equals(ArtifactGroupingRowElement? other) + { + if (other is null) return false; + if (ReferenceEquals(this, other)) return true; + return Id == other.Id; // Compare based on the unique Id + } + + public override bool Equals(object? obj) => Equals(obj as ArtifactGroupingRowElement); + + public override int GetHashCode() => Id.GetHashCode(); +} \ No newline at end of file diff --git a/old/OpenArchival.Blazor.AdminComponents/Categories/ValidationModels/CategoryValidationModel.cs b/old/OpenArchival.Blazor.AdminComponents/Categories/ValidationModels/CategoryValidationModel.cs new file mode 100644 index 0000000..637acb6 --- /dev/null +++ b/old/OpenArchival.Blazor.AdminComponents/Categories/ValidationModels/CategoryValidationModel.cs @@ -0,0 +1,74 @@ +namespace OpenArchival.Blazor.AdminComponents; + +using Microsoft.IdentityModel.Abstractions; +using Microsoft.IdentityModel.Tokens; +using OpenArchival.DataAccess; + +using System.ComponentModel.DataAnnotations; + +public class CategoryValidationModel +{ + public int? DatabaseId { get; set; } + + [Required(ErrorMessage = "Category name is required.")] + public string? Name { get; set; } + + public string? Description { get; set; } + + [Required(ErrorMessage = "Field separator is required.")] + [StringLength(1, ErrorMessage = "Separator must be a single character.")] + public string FieldSeparator { get; set; } = "-"; + + [Required(ErrorMessage = "At least one field is needed")] + [Range(1, int.MaxValue, ErrorMessage = "At least one field must be created.")] + public int NumFields { get; set; } = 1; + + public List FieldNames { get; set; } = [""]; + + public List FieldDescriptions { get; set; } = [""]; + + public IEnumerable Validate(ValidationContext context) + { + if ((FieldNames is not null && FieldNames.Any()) || (FieldDescriptions is not null && FieldDescriptions.Any())) + { + yield return new ValidationResult( + "Either the FieldNames or FieldDescriptions were null or empty. At least one is required", + new[] { nameof(FieldNames), nameof(FieldDescriptions) } + ); + } + } + + public static CategoryValidationModel FromArchiveCategory(ArchiveCategory category) + { + return new CategoryValidationModel() + { + Name = category.Name, + Description = category.Description, + DatabaseId = category.Id, + FieldSeparator = category.FieldSeparator, + FieldNames = category.FieldNames, + FieldDescriptions = category.FieldDescriptions, + }; + } + + public static ArchiveCategory ToArchiveCategory(CategoryValidationModel model) + { + return new ArchiveCategory() + { + Name = model.Name, + FieldSeparator = model.FieldSeparator, + Description = model.Description, + FieldNames = model.FieldNames, + FieldDescriptions = model.FieldDescriptions + }; + } + + public static void UpdateArchiveValidationModel(CategoryValidationModel model, ArchiveCategory category) + { + category.Name = model.Name ?? throw new ArgumentNullException(nameof(model.Name), "The model name was null."); + category.Description = model.Description; + category.FieldSeparator = model.FieldSeparator; + category.FieldNames = model.FieldNames; + category.FieldDescriptions = model.FieldDescriptions; + } +} \ No newline at end of file diff --git a/old/OpenArchival.Blazor.AdminComponents/Categories/ViewAddCategoriesComponent.razor b/old/OpenArchival.Blazor.AdminComponents/Categories/ViewAddCategoriesComponent.razor new file mode 100644 index 0000000..e1b50a1 --- /dev/null +++ b/old/OpenArchival.Blazor.AdminComponents/Categories/ViewAddCategoriesComponent.razor @@ -0,0 +1,83 @@ +@page "/categories" + +@using Microsoft.EntityFrameworkCore +@using MudBlazor +@using OpenArchival.DataAccess; + +@inject IDialogService DialogService +@inject IArchiveCategoryProvider CategoryProvider; +@inject IDbContextFactory DbContextFactory; +@inject ILogger Logger; + + + Add Category + + + +@code { + CategoriesListComponent _categoriesListComponent = default!; + + private async Task DeleteCategory(ArchiveCategory category) + { + // 1. Show a confirmation dialog (recommended) + var confirmed = await DialogService.ShowMessageBox("Confirm", $"Delete {category.Name}?", yesText:"Delete", cancelText:"Cancel"); + if (confirmed != true) return; + + await CategoryProvider.DeleteCategoryAsync(category); + await _categoriesListComponent.RefreshData(); + StateHasChanged(); + } + + private async Task ShowFilledDialog(ArchiveCategory category) + { + CategoryValidationModel validationModel = CategoryValidationModel.FromArchiveCategory(category); + + var parameters = new DialogParameters { ["ValidationModel"] = validationModel, ["IsUpdate"] = true, ["OriginalName"] = category.Name}; + + var options = new DialogOptions { CloseOnEscapeKey = true, BackdropClick=false}; + + var dialog = await DialogService.ShowAsync("Create a Category", parameters, options); + var result = await dialog.Result; + + if (result is not null && !result.Canceled && _categoriesListComponent is not null) + { + if (result.Data is null) + { + Logger.LogError($"The new category received by the result had a null data result member."); + throw new NullReferenceException($"The new category received by the result had a null data result member."); + } + + CategoryValidationModel model = (CategoryValidationModel)result.Data; + CategoryValidationModel.UpdateArchiveValidationModel(model, category); + + await using var context = await DbContextFactory.CreateDbContextAsync(); + await context.SaveChangesAsync(); + + StateHasChanged(); + await _categoriesListComponent.RefreshData(); + } + } + + private async Task OnAddClick() + { + var options = new DialogOptions { CloseOnEscapeKey = true, BackdropClick=false }; + var dialog = await DialogService.ShowAsync("Create a Category", options); + + var result = await dialog.Result; + + if (result is not null && !result.Canceled && _categoriesListComponent is not null && result.Data is not null) + { + await using var context = await DbContextFactory.CreateDbContextAsync(); + CategoryValidationModel model = (CategoryValidationModel)result.Data; + context.ArchiveCategories.Add(CategoryValidationModel.ToArchiveCategory(model)); + + await context.SaveChangesAsync(); + StateHasChanged(); + await _categoriesListComponent.RefreshData(); + } + } +} \ No newline at end of file diff --git a/old/OpenArchival.Blazor.AdminComponents/OpenArchival.Blazor.AdminComponents.csproj b/old/OpenArchival.Blazor.AdminComponents/OpenArchival.Blazor.AdminComponents.csproj new file mode 100644 index 0000000..3439ff0 --- /dev/null +++ b/old/OpenArchival.Blazor.AdminComponents/OpenArchival.Blazor.AdminComponents.csproj @@ -0,0 +1,21 @@ + + + + net9.0 + enable + enable + true + + + + + + + + + + + + + + diff --git a/old/OpenArchival.Blazor.AdminComponents/obj/Debug/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs b/old/OpenArchival.Blazor.AdminComponents/obj/Debug/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs new file mode 100644 index 0000000..feda5e9 --- /dev/null +++ b/old/OpenArchival.Blazor.AdminComponents/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/old/OpenArchival.Blazor.AdminComponents/obj/Debug/net9.0/OpenArchival.Blazor.AdminComponents.AssemblyInfo.cs b/old/OpenArchival.Blazor.AdminComponents/obj/Debug/net9.0/OpenArchival.Blazor.AdminComponents.AssemblyInfo.cs new file mode 100644 index 0000000..798e668 --- /dev/null +++ b/old/OpenArchival.Blazor.AdminComponents/obj/Debug/net9.0/OpenArchival.Blazor.AdminComponents.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// 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("OpenArchival.Blazor.AdminComponents")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+781793a27f2e164808340b1adb5ce70e1800b187")] +[assembly: System.Reflection.AssemblyProductAttribute("OpenArchival.Blazor.AdminComponents")] +[assembly: System.Reflection.AssemblyTitleAttribute("OpenArchival.Blazor.AdminComponents")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/old/OpenArchival.Blazor.AdminComponents/obj/Debug/net9.0/OpenArchival.Blazor.AdminComponents.AssemblyInfoInputs.cache b/old/OpenArchival.Blazor.AdminComponents/obj/Debug/net9.0/OpenArchival.Blazor.AdminComponents.AssemblyInfoInputs.cache new file mode 100644 index 0000000..6bb092e --- /dev/null +++ b/old/OpenArchival.Blazor.AdminComponents/obj/Debug/net9.0/OpenArchival.Blazor.AdminComponents.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +d6c702980d8ce768dd39ac9044db7e13722a53b6d82b1db84001a96fa1795b07 diff --git a/old/OpenArchival.Blazor.AdminComponents/obj/Debug/net9.0/OpenArchival.Blazor.AdminComponents.GeneratedMSBuildEditorConfig.editorconfig b/old/OpenArchival.Blazor.AdminComponents/obj/Debug/net9.0/OpenArchival.Blazor.AdminComponents.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..d921e8a --- /dev/null +++ b/old/OpenArchival.Blazor.AdminComponents/obj/Debug/net9.0/OpenArchival.Blazor.AdminComponents.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,61 @@ +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 +build_property.RootNamespace = OpenArchival.Blazor.AdminComponents +build_property.RootNamespace = OpenArchival.Blazor.AdminComponents +build_property.ProjectDir = C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.AdminComponents\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.RazorLangVersion = 9.0 +build_property.SupportLocalizedComponentNames = +build_property.GenerateRazorMetadataSourceChecksumAttributes = +build_property.MSBuildProjectDirectory = C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.AdminComponents +build_property._RazorSourceGeneratorDebug = +build_property.EffectiveAnalysisLevelStyle = 9.0 +build_property.EnableCodeStyleSeverity = + +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor.AdminComponents/ArchiveConfiguration.razor] +build_metadata.AdditionalFiles.TargetPath = QXJjaGl2ZUNvbmZpZ3VyYXRpb24ucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor.AdminComponents/ArchiveItems/AddArchiveGroupingComponent.razor] +build_metadata.AdditionalFiles.TargetPath = QXJjaGl2ZUl0ZW1zXEFkZEFyY2hpdmVHcm91cGluZ0NvbXBvbmVudC5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor.AdminComponents/ArchiveItems/AddGroupingDialog.razor] +build_metadata.AdditionalFiles.TargetPath = QXJjaGl2ZUl0ZW1zXEFkZEdyb3VwaW5nRGlhbG9nLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor.AdminComponents/ArchiveItems/ArchiveEntryCreatorCard.razor] +build_metadata.AdditionalFiles.TargetPath = QXJjaGl2ZUl0ZW1zXEFyY2hpdmVFbnRyeUNyZWF0b3JDYXJkLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor.AdminComponents/ArchiveItems/ArchiveGroupingsTable.razor] +build_metadata.AdditionalFiles.TargetPath = QXJjaGl2ZUl0ZW1zXEFyY2hpdmVHcm91cGluZ3NUYWJsZS5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor.AdminComponents/ArchiveItems/IdentifierTextBox.razor] +build_metadata.AdditionalFiles.TargetPath = QXJjaGl2ZUl0ZW1zXElkZW50aWZpZXJUZXh0Qm94LnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor.AdminComponents/Categories/CategoriesListComponent.razor] +build_metadata.AdditionalFiles.TargetPath = Q2F0ZWdvcmllc1xDYXRlZ29yaWVzTGlzdENvbXBvbmVudC5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor.AdminComponents/Categories/CategoryCreatorDialog.razor] +build_metadata.AdditionalFiles.TargetPath = Q2F0ZWdvcmllc1xDYXRlZ29yeUNyZWF0b3JEaWFsb2cucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor.AdminComponents/Categories/CategoryFieldCardComponent.razor] +build_metadata.AdditionalFiles.TargetPath = Q2F0ZWdvcmllc1xDYXRlZ29yeUZpZWxkQ2FyZENvbXBvbmVudC5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor.AdminComponents/Categories/ViewAddCategoriesComponent.razor] +build_metadata.AdditionalFiles.TargetPath = Q2F0ZWdvcmllc1xWaWV3QWRkQ2F0ZWdvcmllc0NvbXBvbmVudC5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = diff --git a/old/OpenArchival.Blazor.AdminComponents/obj/Debug/net9.0/OpenArchival.Blazor.AdminComponents.GlobalUsings.g.cs b/old/OpenArchival.Blazor.AdminComponents/obj/Debug/net9.0/OpenArchival.Blazor.AdminComponents.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/old/OpenArchival.Blazor.AdminComponents/obj/Debug/net9.0/OpenArchival.Blazor.AdminComponents.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/old/OpenArchival.Blazor.AdminComponents/obj/Debug/net9.0/OpenArchival.Blazor.AdminComponents.RazorAssemblyInfo.cache b/old/OpenArchival.Blazor.AdminComponents/obj/Debug/net9.0/OpenArchival.Blazor.AdminComponents.RazorAssemblyInfo.cache new file mode 100644 index 0000000..ecb9c97 --- /dev/null +++ b/old/OpenArchival.Blazor.AdminComponents/obj/Debug/net9.0/OpenArchival.Blazor.AdminComponents.RazorAssemblyInfo.cache @@ -0,0 +1 @@ +d5ac7ab69059af111e9d7125adeb7b174ca570725d4b64a544cca7bd11ac7ca0 diff --git a/old/OpenArchival.Blazor.AdminComponents/obj/Debug/net9.0/OpenArchival.Blazor.AdminComponents.RazorAssemblyInfo.cs b/old/OpenArchival.Blazor.AdminComponents/obj/Debug/net9.0/OpenArchival.Blazor.AdminComponents.RazorAssemblyInfo.cs new file mode 100644 index 0000000..cd3853c --- /dev/null +++ b/old/OpenArchival.Blazor.AdminComponents/obj/Debug/net9.0/OpenArchival.Blazor.AdminComponents.RazorAssemblyInfo.cs @@ -0,0 +1,18 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ProvideApplicationPartFactoryAttribute("Microsoft.AspNetCore.Mvc.ApplicationParts.ConsolidatedAssemblyApplicationPartFact" + + "ory, Microsoft.AspNetCore.Mvc.Razor")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/old/OpenArchival.Blazor.AdminComponents/obj/Debug/net9.0/OpenArchival.Blazor.AdminComponents.assets.cache b/old/OpenArchival.Blazor.AdminComponents/obj/Debug/net9.0/OpenArchival.Blazor.AdminComponents.assets.cache new file mode 100644 index 0000000..2d01ff2 Binary files /dev/null and b/old/OpenArchival.Blazor.AdminComponents/obj/Debug/net9.0/OpenArchival.Blazor.AdminComponents.assets.cache differ diff --git a/old/OpenArchival.Blazor.AdminComponents/obj/Debug/net9.0/OpenArchival.Blazor.AdminComponents.csproj.AssemblyReference.cache b/old/OpenArchival.Blazor.AdminComponents/obj/Debug/net9.0/OpenArchival.Blazor.AdminComponents.csproj.AssemblyReference.cache new file mode 100644 index 0000000..a124fd3 Binary files /dev/null and b/old/OpenArchival.Blazor.AdminComponents/obj/Debug/net9.0/OpenArchival.Blazor.AdminComponents.csproj.AssemblyReference.cache differ diff --git a/old/OpenArchival.Blazor.AdminComponents/obj/Debug/net9.0/OpenArchival.Blazor.AdminComponents.csproj.CoreCompileInputs.cache b/old/OpenArchival.Blazor.AdminComponents/obj/Debug/net9.0/OpenArchival.Blazor.AdminComponents.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..910af2a --- /dev/null +++ b/old/OpenArchival.Blazor.AdminComponents/obj/Debug/net9.0/OpenArchival.Blazor.AdminComponents.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +c26e6e8be0dcc89c95ebb12c96c280a82b473997e8e280f4d82776a11a637964 diff --git a/old/OpenArchival.Blazor.AdminComponents/obj/Debug/net9.0/OpenArchival.Blazor.AdminComponents.csproj.FileListAbsolute.txt b/old/OpenArchival.Blazor.AdminComponents/obj/Debug/net9.0/OpenArchival.Blazor.AdminComponents.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..41aa356 --- /dev/null +++ b/old/OpenArchival.Blazor.AdminComponents/obj/Debug/net9.0/OpenArchival.Blazor.AdminComponents.csproj.FileListAbsolute.txt @@ -0,0 +1,7 @@ +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.AdminComponents\obj\Debug\net9.0\OpenArchival.Blazor.AdminComponents.csproj.AssemblyReference.cache +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.AdminComponents\obj\Debug\net9.0\rpswa.dswa.cache.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.AdminComponents\obj\Debug\net9.0\OpenArchival.Blazor.AdminComponents.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.AdminComponents\obj\Debug\net9.0\OpenArchival.Blazor.AdminComponents.AssemblyInfoInputs.cache +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.AdminComponents\obj\Debug\net9.0\OpenArchival.Blazor.AdminComponents.AssemblyInfo.cs +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.AdminComponents\obj\Debug\net9.0\OpenArchival.Blazor.AdminComponents.csproj.CoreCompileInputs.cache +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.AdminComponents\obj\Debug\net9.0\OpenArchival.Blazor.AdminComponents.sourcelink.json diff --git a/old/OpenArchival.Blazor.AdminComponents/obj/Debug/net9.0/OpenArchival.Blazor.AdminComponents.sourcelink.json b/old/OpenArchival.Blazor.AdminComponents/obj/Debug/net9.0/OpenArchival.Blazor.AdminComponents.sourcelink.json new file mode 100644 index 0000000..bd84b90 --- /dev/null +++ b/old/OpenArchival.Blazor.AdminComponents/obj/Debug/net9.0/OpenArchival.Blazor.AdminComponents.sourcelink.json @@ -0,0 +1 @@ +{"documents":{"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\*":"https://raw.githubusercontent.com/vtallen/Open-Archival/781793a27f2e164808340b1adb5ce70e1800b187/*"}} \ No newline at end of file diff --git a/old/OpenArchival.Blazor.AdminComponents/obj/Debug/net9.0/rpswa.dswa.cache.json b/old/OpenArchival.Blazor.AdminComponents/obj/Debug/net9.0/rpswa.dswa.cache.json new file mode 100644 index 0000000..5f9ce2e --- /dev/null +++ b/old/OpenArchival.Blazor.AdminComponents/obj/Debug/net9.0/rpswa.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"RcMo5LzxSIOCNCu7lbTmlJrIoAR1WVdGIK4+WGrWvPo=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["QXk5oc0JzooFBqYEdVwSwJAdvQND37MS5tfyc5UXI\u002B0=","FdIr21w0XuwQaHm717YUc2GAhCIM9CX\u002BDOY0\u002Bnnox\u002Bg=","g4RssrHaMNy8RI5sKXNoFfkPgj77256Ar4XmqgWG8Sk=","sfHl\u002BTtl\u002B/Dp5mZDJ\u002B/vdcI76Epl\u002BuPvQPs/KGsyKgg=","t0iPXI/PT10SLjUd9IrFtx8E7x5Km3obwTAL\u002BNKwz4I=","zSCCzXtj6V7SzFECnpbq7y6c8ayqCunsl64t1n1724c=","rTXTHpYV89IUh4tv0q03RoGMVLkWo9dZszTqdLcnFXg=","LkaMxwPm\u002BmOD013lPaQKwsvxlvCIHmjZOn4mFw69d9M=","gQxgQC2M5p5VkN9CbAm45xBqNdmu9Qk9Er4QPIi2UbM=","AisFpM0rBaG4l/\u002BvkfzsVGuG3nbW6CwkQi8v8zur8FA="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/old/OpenArchival.Blazor.AdminComponents/obj/Debug/net9.0/staticwebassets.removed.txt b/old/OpenArchival.Blazor.AdminComponents/obj/Debug/net9.0/staticwebassets.removed.txt new file mode 100644 index 0000000..e69de29 diff --git a/old/OpenArchival.Blazor.AdminComponents/obj/OpenArchival.Blazor.AdminComponents.csproj.nuget.dgspec.json b/old/OpenArchival.Blazor.AdminComponents/obj/OpenArchival.Blazor.AdminComponents.csproj.nuget.dgspec.json new file mode 100644 index 0000000..7437d68 --- /dev/null +++ b/old/OpenArchival.Blazor.AdminComponents/obj/OpenArchival.Blazor.AdminComponents.csproj.nuget.dgspec.json @@ -0,0 +1,268 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.AdminComponents\\OpenArchival.Blazor.AdminComponents.csproj": {} + }, + "projects": { + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.AdminComponents\\OpenArchival.Blazor.AdminComponents.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.AdminComponents\\OpenArchival.Blazor.AdminComponents.csproj", + "projectName": "OpenArchival.Blazor.AdminComponents", + "projectPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.AdminComponents\\OpenArchival.Blazor.AdminComponents.csproj", + "packagesPath": "C:\\Users\\vtall\\.nuget\\packages\\", + "outputPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.AdminComponents\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\NuGet.Config", + "C:\\Users\\vtall\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net9.0" + ], + "sources": { + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "projectReferences": { + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\OpenArchival.Blazor.CustomComponents.csproj": { + "projectPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\OpenArchival.Blazor.CustomComponents.csproj" + }, + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj": { + "projectPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "9.0.300" + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.304/PortableRuntimeIdentifierGraph.json" + } + } + }, + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\OpenArchival.Blazor.CustomComponents.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\OpenArchival.Blazor.CustomComponents.csproj", + "projectName": "OpenArchival.Blazor.CustomComponents", + "projectPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\OpenArchival.Blazor.CustomComponents.csproj", + "packagesPath": "C:\\Users\\vtall\\.nuget\\packages\\", + "outputPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\NuGet.Config", + "C:\\Users\\vtall\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net9.0" + ], + "sources": { + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "projectReferences": { + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj": { + "projectPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "9.0.300" + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "dependencies": { + "CodeBeam.MudBlazor.Extensions": { + "target": "Package", + "version": "[8.2.4, )" + }, + "MudBlazor": { + "target": "Package", + "version": "[8.12.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.304/PortableRuntimeIdentifierGraph.json" + } + } + }, + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj", + "projectName": "OpenArchival.DataAccess", + "projectPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj", + "packagesPath": "C:\\Users\\vtall\\.nuget\\packages\\", + "outputPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\NuGet.Config", + "C:\\Users\\vtall\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net9.0" + ], + "sources": { + "C:\\Program Files\\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": { + "EntityFramework": { + "target": "Package", + "version": "[6.5.1, )" + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore": { + "target": "Package", + "version": "[9.0.8, )" + }, + "Microsoft.EntityFrameworkCore": { + "target": "Package", + "version": "[9.0.8, )" + }, + "Microsoft.EntityFrameworkCore.Design": { + "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", + "suppressParent": "All", + "target": "Package", + "version": "[9.0.8, )" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions": { + "target": "Package", + "version": "[9.0.8, )" + }, + "Npgsql": { + "target": "Package", + "version": "[9.0.3, )" + }, + "Npgsql.EntityFrameworkCore.PostgreSQL": { + "target": "Package", + "version": "[9.0.4, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.304/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/old/OpenArchival.Blazor.AdminComponents/obj/OpenArchival.Blazor.AdminComponents.csproj.nuget.g.props b/old/OpenArchival.Blazor.AdminComponents/obj/OpenArchival.Blazor.AdminComponents.csproj.nuget.g.props new file mode 100644 index 0000000..c0d8e16 --- /dev/null +++ b/old/OpenArchival.Blazor.AdminComponents/obj/OpenArchival.Blazor.AdminComponents.csproj.nuget.g.props @@ -0,0 +1,26 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\vtall\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + PackageReference + 6.14.1 + + + + + + + + + + + + + C:\Users\vtall\.nuget\packages\entityframework\6.5.1 + C:\Users\vtall\.nuget\packages\buildbundlerminifier\3.2.449 + + \ No newline at end of file diff --git a/old/OpenArchival.Blazor.AdminComponents/obj/OpenArchival.Blazor.AdminComponents.csproj.nuget.g.targets b/old/OpenArchival.Blazor.AdminComponents/obj/OpenArchival.Blazor.AdminComponents.csproj.nuget.g.targets new file mode 100644 index 0000000..a8b955c --- /dev/null +++ b/old/OpenArchival.Blazor.AdminComponents/obj/OpenArchival.Blazor.AdminComponents.csproj.nuget.g.targets @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/old/OpenArchival.Blazor.AdminComponents/obj/Release/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs b/old/OpenArchival.Blazor.AdminComponents/obj/Release/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs new file mode 100644 index 0000000..feda5e9 --- /dev/null +++ b/old/OpenArchival.Blazor.AdminComponents/obj/Release/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/old/OpenArchival.Blazor.AdminComponents/obj/Release/net9.0/OpenArchival.Blazor.AdminComponents.AssemblyInfo.cs b/old/OpenArchival.Blazor.AdminComponents/obj/Release/net9.0/OpenArchival.Blazor.AdminComponents.AssemblyInfo.cs new file mode 100644 index 0000000..8123d05 --- /dev/null +++ b/old/OpenArchival.Blazor.AdminComponents/obj/Release/net9.0/OpenArchival.Blazor.AdminComponents.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// 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("OpenArchival.Blazor.AdminComponents")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+781793a27f2e164808340b1adb5ce70e1800b187")] +[assembly: System.Reflection.AssemblyProductAttribute("OpenArchival.Blazor.AdminComponents")] +[assembly: System.Reflection.AssemblyTitleAttribute("OpenArchival.Blazor.AdminComponents")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/old/OpenArchival.Blazor.AdminComponents/obj/Release/net9.0/OpenArchival.Blazor.AdminComponents.AssemblyInfoInputs.cache b/old/OpenArchival.Blazor.AdminComponents/obj/Release/net9.0/OpenArchival.Blazor.AdminComponents.AssemblyInfoInputs.cache new file mode 100644 index 0000000..ff8939a --- /dev/null +++ b/old/OpenArchival.Blazor.AdminComponents/obj/Release/net9.0/OpenArchival.Blazor.AdminComponents.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +d50caa8352c298607a0de8c3bbd9699415b1177ccb100bf2c5e920acaf251772 diff --git a/old/OpenArchival.Blazor.AdminComponents/obj/Release/net9.0/OpenArchival.Blazor.AdminComponents.GeneratedMSBuildEditorConfig.editorconfig b/old/OpenArchival.Blazor.AdminComponents/obj/Release/net9.0/OpenArchival.Blazor.AdminComponents.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..d921e8a --- /dev/null +++ b/old/OpenArchival.Blazor.AdminComponents/obj/Release/net9.0/OpenArchival.Blazor.AdminComponents.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,61 @@ +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 +build_property.RootNamespace = OpenArchival.Blazor.AdminComponents +build_property.RootNamespace = OpenArchival.Blazor.AdminComponents +build_property.ProjectDir = C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.AdminComponents\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.RazorLangVersion = 9.0 +build_property.SupportLocalizedComponentNames = +build_property.GenerateRazorMetadataSourceChecksumAttributes = +build_property.MSBuildProjectDirectory = C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.AdminComponents +build_property._RazorSourceGeneratorDebug = +build_property.EffectiveAnalysisLevelStyle = 9.0 +build_property.EnableCodeStyleSeverity = + +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor.AdminComponents/ArchiveConfiguration.razor] +build_metadata.AdditionalFiles.TargetPath = QXJjaGl2ZUNvbmZpZ3VyYXRpb24ucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor.AdminComponents/ArchiveItems/AddArchiveGroupingComponent.razor] +build_metadata.AdditionalFiles.TargetPath = QXJjaGl2ZUl0ZW1zXEFkZEFyY2hpdmVHcm91cGluZ0NvbXBvbmVudC5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor.AdminComponents/ArchiveItems/AddGroupingDialog.razor] +build_metadata.AdditionalFiles.TargetPath = QXJjaGl2ZUl0ZW1zXEFkZEdyb3VwaW5nRGlhbG9nLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor.AdminComponents/ArchiveItems/ArchiveEntryCreatorCard.razor] +build_metadata.AdditionalFiles.TargetPath = QXJjaGl2ZUl0ZW1zXEFyY2hpdmVFbnRyeUNyZWF0b3JDYXJkLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor.AdminComponents/ArchiveItems/ArchiveGroupingsTable.razor] +build_metadata.AdditionalFiles.TargetPath = QXJjaGl2ZUl0ZW1zXEFyY2hpdmVHcm91cGluZ3NUYWJsZS5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor.AdminComponents/ArchiveItems/IdentifierTextBox.razor] +build_metadata.AdditionalFiles.TargetPath = QXJjaGl2ZUl0ZW1zXElkZW50aWZpZXJUZXh0Qm94LnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor.AdminComponents/Categories/CategoriesListComponent.razor] +build_metadata.AdditionalFiles.TargetPath = Q2F0ZWdvcmllc1xDYXRlZ29yaWVzTGlzdENvbXBvbmVudC5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor.AdminComponents/Categories/CategoryCreatorDialog.razor] +build_metadata.AdditionalFiles.TargetPath = Q2F0ZWdvcmllc1xDYXRlZ29yeUNyZWF0b3JEaWFsb2cucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor.AdminComponents/Categories/CategoryFieldCardComponent.razor] +build_metadata.AdditionalFiles.TargetPath = Q2F0ZWdvcmllc1xDYXRlZ29yeUZpZWxkQ2FyZENvbXBvbmVudC5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor.AdminComponents/Categories/ViewAddCategoriesComponent.razor] +build_metadata.AdditionalFiles.TargetPath = Q2F0ZWdvcmllc1xWaWV3QWRkQ2F0ZWdvcmllc0NvbXBvbmVudC5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = diff --git a/old/OpenArchival.Blazor.AdminComponents/obj/Release/net9.0/OpenArchival.Blazor.AdminComponents.GlobalUsings.g.cs b/old/OpenArchival.Blazor.AdminComponents/obj/Release/net9.0/OpenArchival.Blazor.AdminComponents.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/old/OpenArchival.Blazor.AdminComponents/obj/Release/net9.0/OpenArchival.Blazor.AdminComponents.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/old/OpenArchival.Blazor.AdminComponents/obj/Release/net9.0/OpenArchival.Blazor.AdminComponents.RazorAssemblyInfo.cache b/old/OpenArchival.Blazor.AdminComponents/obj/Release/net9.0/OpenArchival.Blazor.AdminComponents.RazorAssemblyInfo.cache new file mode 100644 index 0000000..ecb9c97 --- /dev/null +++ b/old/OpenArchival.Blazor.AdminComponents/obj/Release/net9.0/OpenArchival.Blazor.AdminComponents.RazorAssemblyInfo.cache @@ -0,0 +1 @@ +d5ac7ab69059af111e9d7125adeb7b174ca570725d4b64a544cca7bd11ac7ca0 diff --git a/old/OpenArchival.Blazor.AdminComponents/obj/Release/net9.0/OpenArchival.Blazor.AdminComponents.RazorAssemblyInfo.cs b/old/OpenArchival.Blazor.AdminComponents/obj/Release/net9.0/OpenArchival.Blazor.AdminComponents.RazorAssemblyInfo.cs new file mode 100644 index 0000000..cd3853c --- /dev/null +++ b/old/OpenArchival.Blazor.AdminComponents/obj/Release/net9.0/OpenArchival.Blazor.AdminComponents.RazorAssemblyInfo.cs @@ -0,0 +1,18 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ProvideApplicationPartFactoryAttribute("Microsoft.AspNetCore.Mvc.ApplicationParts.ConsolidatedAssemblyApplicationPartFact" + + "ory, Microsoft.AspNetCore.Mvc.Razor")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/old/OpenArchival.Blazor.AdminComponents/obj/Release/net9.0/OpenArchival.Blazor.AdminComponents.assets.cache b/old/OpenArchival.Blazor.AdminComponents/obj/Release/net9.0/OpenArchival.Blazor.AdminComponents.assets.cache new file mode 100644 index 0000000..77e27c7 Binary files /dev/null and b/old/OpenArchival.Blazor.AdminComponents/obj/Release/net9.0/OpenArchival.Blazor.AdminComponents.assets.cache differ diff --git a/old/OpenArchival.Blazor.AdminComponents/obj/Release/net9.0/OpenArchival.Blazor.AdminComponents.csproj.AssemblyReference.cache b/old/OpenArchival.Blazor.AdminComponents/obj/Release/net9.0/OpenArchival.Blazor.AdminComponents.csproj.AssemblyReference.cache new file mode 100644 index 0000000..c2e8508 Binary files /dev/null and b/old/OpenArchival.Blazor.AdminComponents/obj/Release/net9.0/OpenArchival.Blazor.AdminComponents.csproj.AssemblyReference.cache differ diff --git a/old/OpenArchival.Blazor.AdminComponents/obj/project.assets.json b/old/OpenArchival.Blazor.AdminComponents/obj/project.assets.json new file mode 100644 index 0000000..73d43ab --- /dev/null +++ b/old/OpenArchival.Blazor.AdminComponents/obj/project.assets.json @@ -0,0 +1,2593 @@ +{ + "version": 3, + "targets": { + "net9.0": { + "BuildBundlerMinifier/3.2.449": { + "type": "package", + "build": { + "build/_._": {} + } + }, + "CodeBeam.MudBlazor.Extensions/8.2.4": { + "type": "package", + "dependencies": { + "BuildBundlerMinifier": "3.2.449", + "CsvHelper": "33.0.1", + "Microsoft.AspNetCore.Components": "9.0.7", + "Microsoft.AspNetCore.Components.Web": "9.0.7", + "MudBlazor": "8.0.0", + "ZXing.Net": "0.16.9" + }, + "compile": { + "lib/net9.0/CodeBeam.MudBlazor.Extensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/CodeBeam.MudBlazor.Extensions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/CodeBeam.MudBlazor.Extensions.props": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/CodeBeam.MudBlazor.Extensions.props": {} + } + }, + "CsvHelper/33.0.1": { + "type": "package", + "compile": { + "lib/net8.0/CsvHelper.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/CsvHelper.dll": { + "related": ".xml" + } + } + }, + "EntityFramework/6.5.1": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.7.0", + "System.CodeDom": "6.0.0", + "System.ComponentModel.Annotations": "5.0.0", + "System.Configuration.ConfigurationManager": "6.0.1", + "System.Data.SqlClient": "4.8.6" + }, + "compile": { + "lib/netstandard2.1/EntityFramework.SqlServer.dll": { + "related": ".xml" + }, + "lib/netstandard2.1/EntityFramework.dll": { + "related": ".SqlServer.xml;.xml" + } + }, + "runtime": { + "lib/netstandard2.1/EntityFramework.SqlServer.dll": { + "related": ".xml" + }, + "lib/netstandard2.1/EntityFramework.dll": { + "related": ".SqlServer.xml;.xml" + } + }, + "build": { + "buildTransitive/net6.0/EntityFramework.props": {}, + "buildTransitive/net6.0/EntityFramework.targets": {} + } + }, + "Microsoft.AspNetCore.Authorization/9.0.7": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Metadata": "9.0.7", + "Microsoft.Extensions.Logging.Abstractions": "9.0.7", + "Microsoft.Extensions.Options": "9.0.7" + }, + "compile": { + "lib/net9.0/Microsoft.AspNetCore.Authorization.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Authorization.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Components/9.0.7": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Authorization": "9.0.7", + "Microsoft.AspNetCore.Components.Analyzers": "9.0.7" + }, + "compile": { + "lib/net9.0/Microsoft.AspNetCore.Components.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Components.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Components.Analyzers/9.0.7": { + "type": "package", + "build": { + "buildTransitive/netstandard2.0/Microsoft.AspNetCore.Components.Analyzers.targets": {} + } + }, + "Microsoft.AspNetCore.Components.Forms/9.0.7": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Components": "9.0.7" + }, + "compile": { + "lib/net9.0/Microsoft.AspNetCore.Components.Forms.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Components.Forms.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Components.Web/9.0.7": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Components": "9.0.7", + "Microsoft.AspNetCore.Components.Forms": "9.0.7", + "Microsoft.Extensions.DependencyInjection": "9.0.7", + "Microsoft.Extensions.Primitives": "9.0.7", + "Microsoft.JSInterop": "9.0.7" + }, + "compile": { + "lib/net9.0/Microsoft.AspNetCore.Components.Web.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Components.Web.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Cryptography.Internal/9.0.8": { + "type": "package", + "compile": { + "lib/net9.0/Microsoft.AspNetCore.Cryptography.Internal.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Cryptography.Internal.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Cryptography.Internal": "9.0.8" + }, + "compile": { + "lib/net9.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore.Relational": "9.0.8", + "Microsoft.Extensions.Identity.Stores": "9.0.8" + }, + "compile": { + "lib/net9.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Metadata/9.0.7": { + "type": "package", + "compile": { + "lib/net9.0/Microsoft.AspNetCore.Metadata.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Metadata.dll": { + "related": ".xml" + } + } + }, + "Microsoft.CSharp/4.7.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "Microsoft.EntityFrameworkCore/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "9.0.8", + "Microsoft.EntityFrameworkCore.Analyzers": "9.0.8", + "Microsoft.Extensions.Caching.Memory": "9.0.8", + "Microsoft.Extensions.Logging": "9.0.8" + }, + "compile": { + "lib/net8.0/Microsoft.EntityFrameworkCore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.EntityFrameworkCore.props": {} + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/9.0.8": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/9.0.8": { + "type": "package" + }, + "Microsoft.EntityFrameworkCore.Relational/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore": "9.0.8", + "Microsoft.Extensions.Caching.Memory": "9.0.8", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.8", + "Microsoft.Extensions.Logging": "9.0.8" + }, + "compile": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Caching.Abstractions/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.8" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Caching.Memory/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "9.0.8", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8", + "Microsoft.Extensions.Logging.Abstractions": "9.0.8", + "Microsoft.Extensions.Options": "9.0.8", + "Microsoft.Extensions.Primitives": "9.0.8" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Caching.Memory.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Caching.Memory.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.8" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.8": { + "type": "package", + "compile": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Identity.Core/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Cryptography.KeyDerivation": "9.0.8", + "Microsoft.Extensions.Logging": "9.0.8", + "Microsoft.Extensions.Options": "9.0.8" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Identity.Core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Identity.Core.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Identity.Stores/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "9.0.8", + "Microsoft.Extensions.Identity.Core": "9.0.8", + "Microsoft.Extensions.Logging": "9.0.8" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Identity.Stores.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Identity.Stores.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Localization/9.0.1": { + "type": "package", + "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" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Localization.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Localization.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Localization.Abstractions/9.0.1": { + "type": "package", + "compile": { + "lib/net9.0/Microsoft.Extensions.Localization.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Localization.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Logging/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "9.0.8", + "Microsoft.Extensions.Logging.Abstractions": "9.0.8", + "Microsoft.Extensions.Options": "9.0.8" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.Options/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8", + "Microsoft.Extensions.Primitives": "9.0.8" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.Extensions.Options.targets": {} + } + }, + "Microsoft.Extensions.Primitives/9.0.8": { + "type": "package", + "compile": { + "lib/net9.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.JSInterop/9.0.7": { + "type": "package", + "compile": { + "lib/net9.0/Microsoft.JSInterop.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.JSInterop.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Win32.Registry/4.7.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "MudBlazor/8.12.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Components": "9.0.1", + "Microsoft.AspNetCore.Components.Web": "9.0.1", + "Microsoft.Extensions.Localization": "9.0.1" + }, + "compile": { + "lib/net9.0/MudBlazor.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/MudBlazor.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/MudBlazor.props": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/MudBlazor.props": {} + } + }, + "Npgsql/9.0.3": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "8.0.2" + }, + "compile": { + "lib/net8.0/Npgsql.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Npgsql.dll": { + "related": ".xml" + } + } + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/9.0.4": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore": "[9.0.1, 10.0.0)", + "Microsoft.EntityFrameworkCore.Relational": "[9.0.1, 10.0.0)", + "Npgsql": "9.0.3" + }, + "compile": { + "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { + "related": ".xml" + } + } + }, + "runtime.native.System.Data.SqlClient.sni/4.7.0": { + "type": "package", + "dependencies": { + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0" + } + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "runtimeTargets": { + "runtimes/win-arm64/native/sni.dll": { + "assetType": "native", + "rid": "win-arm64" + } + } + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "runtimeTargets": { + "runtimes/win-x64/native/sni.dll": { + "assetType": "native", + "rid": "win-x64" + } + } + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "runtimeTargets": { + "runtimes/win-x86/native/sni.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "System.CodeDom/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.CodeDom.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.CodeDom.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.ComponentModel.Annotations/5.0.0": { + "type": "package", + "compile": { + "ref/netstandard2.1/System.ComponentModel.Annotations.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/System.ComponentModel.Annotations.dll": { + "related": ".xml" + } + } + }, + "System.Configuration.ConfigurationManager/6.0.1": { + "type": "package", + "dependencies": { + "System.Security.Cryptography.ProtectedData": "6.0.0", + "System.Security.Permissions": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Configuration.ConfigurationManager.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Configuration.ConfigurationManager.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Data.SqlClient/4.8.6": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Registry": "4.7.0", + "System.Security.Principal.Windows": "4.7.0", + "runtime.native.System.Data.SqlClient.sni": "4.7.0" + }, + "compile": { + "ref/netcoreapp2.1/System.Data.SqlClient.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Drawing.Common/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Win32.SystemEvents": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Drawing.Common.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Drawing.Common.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/net6.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.AccessControl/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Security.AccessControl.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Security.AccessControl.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Security.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.ProtectedData/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Permissions/6.0.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Windows.Extensions": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Security.Permissions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Security.Permissions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Security.Principal.Windows/4.7.0": { + "type": "package", + "compile": { + "ref/netcoreapp3.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Security.Principal.Windows.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Windows.Extensions/6.0.0": { + "type": "package", + "dependencies": { + "System.Drawing.Common": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Windows.Extensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Windows.Extensions.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "ZXing.Net/0.16.9": { + "type": "package", + "compile": { + "lib/net7.0/zxing.dll": { + "related": ".XML" + } + }, + "runtime": { + "lib/net7.0/zxing.dll": { + "related": ".XML" + } + } + }, + "OpenArchival.Blazor.CustomComponents/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v9.0", + "dependencies": { + "CodeBeam.MudBlazor.Extensions": "8.2.4", + "MudBlazor": "8.12.0", + "OpenArchival.DataAccess": "1.0.0" + }, + "compile": { + "bin/placeholder/OpenArchival.Blazor.CustomComponents.dll": {} + }, + "runtime": { + "bin/placeholder/OpenArchival.Blazor.CustomComponents.dll": {} + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "OpenArchival.DataAccess/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v9.0", + "dependencies": { + "EntityFramework": "6.5.1", + "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "9.0.8", + "Microsoft.EntityFrameworkCore": "9.0.8", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8", + "Npgsql": "9.0.3", + "Npgsql.EntityFrameworkCore.PostgreSQL": "9.0.4" + }, + "compile": { + "bin/placeholder/OpenArchival.DataAccess.dll": {} + }, + "runtime": { + "bin/placeholder/OpenArchival.DataAccess.dll": {} + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + } + } + }, + "libraries": { + "BuildBundlerMinifier/3.2.449": { + "sha512": "uA9sYDy4VepL3xwzBTLcP2LyuVYMt0ZIT3gaSiXvGoX15Ob+rOP+hGydhevlSVd+rFo+Y+VQFEHDuWU8HBW+XA==", + "type": "package", + "path": "buildbundlerminifier/3.2.449", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/BuildBundlerMinifier.targets", + "buildbundlerminifier.3.2.449.nupkg.sha512", + "buildbundlerminifier.nuspec", + "tools/net46/BundlerMinifier.dll", + "tools/net46/NUglify.dll", + "tools/net46/Newtonsoft.Json.dll", + "tools/netcoreapp2.0/BundlerMinifier.dll", + "tools/netcoreapp2.0/NUglify.dll", + "tools/netcoreapp2.0/Newtonsoft.Json.dll", + "tools/netcoreapp3.0/BundlerMinifier.dll", + "tools/netcoreapp3.0/NUglify.dll", + "tools/netcoreapp3.0/Newtonsoft.Json.dll", + "tools/netcoreapp3.1/BundlerMinifier.dll", + "tools/netcoreapp3.1/NUglify.dll", + "tools/netcoreapp3.1/Newtonsoft.Json.dll", + "tools/netstandard1.3/BundlerMinifier.dll", + "tools/netstandard1.3/NUglify.dll", + "tools/netstandard1.3/Newtonsoft.Json.dll" + ] + }, + "CodeBeam.MudBlazor.Extensions/8.2.4": { + "sha512": "IaQoIcREfkHq8VUxFDZQrK69blNw+0FwTjC8JGHhhSGugJZ3UFOjhpYYAhiU/1Eue3PXySLXzJFXzsD/hIArVw==", + "type": "package", + "path": "codebeam.mudblazor.extensions/8.2.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Mud_Secondary.png", + "build/CodeBeam.MudBlazor.Extensions.props", + "build/Microsoft.AspNetCore.StaticWebAssetEndpoints.props", + "build/Microsoft.AspNetCore.StaticWebAssets.props", + "buildMultiTargeting/CodeBeam.MudBlazor.Extensions.props", + "buildTransitive/CodeBeam.MudBlazor.Extensions.props", + "codebeam.mudblazor.extensions.8.2.4.nupkg.sha512", + "codebeam.mudblazor.extensions.nuspec", + "lib/net8.0/CodeBeam.MudBlazor.Extensions.dll", + "lib/net8.0/CodeBeam.MudBlazor.Extensions.xml", + "lib/net9.0/CodeBeam.MudBlazor.Extensions.dll", + "lib/net9.0/CodeBeam.MudBlazor.Extensions.xml", + "staticwebassets/MudExtensions.min.css", + "staticwebassets/MudExtensions.min.js", + "staticwebassets/Mud_Secondary.png", + "staticwebassets/eraser.cur", + "staticwebassets/pencil.cur" + ] + }, + "CsvHelper/33.0.1": { + "sha512": "fev4lynklAU2A9GVMLtwarkwaanjSYB4wUqO2nOJX5hnzObORzUqVLe+bDYCUyIIRQM4o5Bsq3CcyJR89iMmEQ==", + "type": "package", + "path": "csvhelper/33.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "csvhelper.33.0.1.nupkg.sha512", + "csvhelper.nuspec", + "lib/net462/CsvHelper.dll", + "lib/net462/CsvHelper.xml", + "lib/net47/CsvHelper.dll", + "lib/net47/CsvHelper.xml", + "lib/net48/CsvHelper.dll", + "lib/net48/CsvHelper.xml", + "lib/net6.0/CsvHelper.dll", + "lib/net6.0/CsvHelper.xml", + "lib/net7.0/CsvHelper.dll", + "lib/net7.0/CsvHelper.xml", + "lib/net8.0/CsvHelper.dll", + "lib/net8.0/CsvHelper.xml", + "lib/netstandard2.0/CsvHelper.dll", + "lib/netstandard2.0/CsvHelper.xml", + "lib/netstandard2.1/CsvHelper.dll", + "lib/netstandard2.1/CsvHelper.xml" + ] + }, + "EntityFramework/6.5.1": { + "sha512": "sQRP2lWg1i3aAGWqdliAM8zrGx7LHMUk+9/MoxUjwfTZYGMXvZ2JYZTlyTm1PqDxvn3c9E3U76TWDON7Y5+CVA==", + "type": "package", + "path": "entityframework/6.5.1", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "README.md", + "build/EntityFramework.DefaultItems.props", + "build/EntityFramework.props", + "build/EntityFramework.targets", + "build/Microsoft.Data.Entity.Build.Tasks.dll", + "build/net6.0/EntityFramework.props", + "build/net6.0/EntityFramework.targets", + "buildTransitive/EntityFramework.props", + "buildTransitive/EntityFramework.targets", + "buildTransitive/net6.0/EntityFramework.props", + "buildTransitive/net6.0/EntityFramework.targets", + "content/net40/App.config.install.xdt", + "content/net40/App.config.transform", + "content/net40/Web.config.install.xdt", + "content/net40/Web.config.transform", + "entityframework.6.5.1.nupkg.sha512", + "entityframework.nuspec", + "lib/net40/EntityFramework.SqlServer.dll", + "lib/net40/EntityFramework.SqlServer.xml", + "lib/net40/EntityFramework.dll", + "lib/net40/EntityFramework.xml", + "lib/net45/EntityFramework.SqlServer.dll", + "lib/net45/EntityFramework.SqlServer.xml", + "lib/net45/EntityFramework.dll", + "lib/net45/EntityFramework.xml", + "lib/netstandard2.1/EntityFramework.SqlServer.dll", + "lib/netstandard2.1/EntityFramework.SqlServer.xml", + "lib/netstandard2.1/EntityFramework.dll", + "lib/netstandard2.1/EntityFramework.xml", + "tools/EntityFramework6.PS2.psd1", + "tools/EntityFramework6.PS2.psm1", + "tools/EntityFramework6.psd1", + "tools/EntityFramework6.psm1", + "tools/about_EntityFramework6.help.txt", + "tools/init.ps1", + "tools/install.ps1", + "tools/net40/any/ef6.exe", + "tools/net40/any/ef6.pdb", + "tools/net40/win-arm64/ef6.exe", + "tools/net40/win-arm64/ef6.pdb", + "tools/net40/win-x86/ef6.exe", + "tools/net40/win-x86/ef6.pdb", + "tools/net45/any/ef6.exe", + "tools/net45/any/ef6.pdb", + "tools/net45/win-arm64/ef6.exe", + "tools/net45/win-arm64/ef6.pdb", + "tools/net45/win-x86/ef6.exe", + "tools/net45/win-x86/ef6.pdb", + "tools/net6.0/any/ef6.dll", + "tools/net6.0/any/ef6.pdb", + "tools/net6.0/any/ef6.runtimeconfig.json" + ] + }, + "Microsoft.AspNetCore.Authorization/9.0.7": { + "sha512": "P0Gej6X5cEoK+sS9XpgYSzg0Nz8OOlvfQb12aOAJW/P4b9nAzLQCVoNp1GDyR/P8eMSnoPARiKPaa6q51iR0oA==", + "type": "package", + "path": "microsoft.aspnetcore.authorization/9.0.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/Microsoft.AspNetCore.Authorization.dll", + "lib/net462/Microsoft.AspNetCore.Authorization.xml", + "lib/net9.0/Microsoft.AspNetCore.Authorization.dll", + "lib/net9.0/Microsoft.AspNetCore.Authorization.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.xml", + "microsoft.aspnetcore.authorization.9.0.7.nupkg.sha512", + "microsoft.aspnetcore.authorization.nuspec" + ] + }, + "Microsoft.AspNetCore.Components/9.0.7": { + "sha512": "cZpVsxWWGagoP2U6Kjqm107gVZHTmiM2m7YDNRsScTWoBB1iyEIznvYG9ZK4XkDY4yDUTdnZrXRMMVu8K7dJ8Q==", + "type": "package", + "path": "microsoft.aspnetcore.components/9.0.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.txt", + "lib/net9.0/Microsoft.AspNetCore.Components.dll", + "lib/net9.0/Microsoft.AspNetCore.Components.xml", + "microsoft.aspnetcore.components.9.0.7.nupkg.sha512", + "microsoft.aspnetcore.components.nuspec" + ] + }, + "Microsoft.AspNetCore.Components.Analyzers/9.0.7": { + "sha512": "SlMcfUJHFxjIFAecPY55in8u93AZo5NQrRlPY3hKrSsLEgyjjtZGzWIn+F9RluHw5wRct/QFRCt2sQwEhn8qtA==", + "type": "package", + "path": "microsoft.aspnetcore.components.analyzers/9.0.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.txt", + "analyzers/dotnet/cs/Microsoft.AspNetCore.Components.Analyzers.dll", + "build/netstandard2.0/Microsoft.AspNetCore.Components.Analyzers.targets", + "buildTransitive/netstandard2.0/Microsoft.AspNetCore.Components.Analyzers.targets", + "microsoft.aspnetcore.components.analyzers.9.0.7.nupkg.sha512", + "microsoft.aspnetcore.components.analyzers.nuspec" + ] + }, + "Microsoft.AspNetCore.Components.Forms/9.0.7": { + "sha512": "ecnFWXV/ClmBfkevmalj1e1+T00AkihOyK8yQdKOwKmibraYphyup4BdOLP7v17PNVF4d5njsoHmFtVBvYpsJg==", + "type": "package", + "path": "microsoft.aspnetcore.components.forms/9.0.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.txt", + "lib/net9.0/Microsoft.AspNetCore.Components.Forms.dll", + "lib/net9.0/Microsoft.AspNetCore.Components.Forms.xml", + "microsoft.aspnetcore.components.forms.9.0.7.nupkg.sha512", + "microsoft.aspnetcore.components.forms.nuspec" + ] + }, + "Microsoft.AspNetCore.Components.Web/9.0.7": { + "sha512": "fP+WmahEXWgCTgL/aRo/y75v1nni8E8WfbpkbWOeMBk2UdQORqQbFPIkttu8JPYVACDfVYgEDKIDtVqEY9Akkg==", + "type": "package", + "path": "microsoft.aspnetcore.components.web/9.0.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.txt", + "lib/net9.0/Microsoft.AspNetCore.Components.Web.dll", + "lib/net9.0/Microsoft.AspNetCore.Components.Web.xml", + "microsoft.aspnetcore.components.web.9.0.7.nupkg.sha512", + "microsoft.aspnetcore.components.web.nuspec" + ] + }, + "Microsoft.AspNetCore.Cryptography.Internal/9.0.8": { + "sha512": "NwGO0wh/IjEthBLGA6fWfIiftsNF/paA5RxWp6ji4wWazetJgQ4truR9nU2thAzzFLiXqlg8vGjdVDA8bHu0zA==", + "type": "package", + "path": "microsoft.aspnetcore.cryptography.internal/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/Microsoft.AspNetCore.Cryptography.Internal.dll", + "lib/net462/Microsoft.AspNetCore.Cryptography.Internal.xml", + "lib/net9.0/Microsoft.AspNetCore.Cryptography.Internal.dll", + "lib/net9.0/Microsoft.AspNetCore.Cryptography.Internal.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.xml", + "microsoft.aspnetcore.cryptography.internal.9.0.8.nupkg.sha512", + "microsoft.aspnetcore.cryptography.internal.nuspec" + ] + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/9.0.8": { + "sha512": "gK70xxXYwwPiXYKYVmLYMuIO5EOGrRtQghmM6PkgtZ/0lgLEjIs//xgSLvZkV/mroNHA1DEqTcqscEj9OzZ1IA==", + "type": "package", + "path": "microsoft.aspnetcore.cryptography.keyderivation/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll", + "lib/net462/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml", + "lib/net9.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll", + "lib/net9.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml", + "microsoft.aspnetcore.cryptography.keyderivation.9.0.8.nupkg.sha512", + "microsoft.aspnetcore.cryptography.keyderivation.nuspec" + ] + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore/9.0.8": { + "sha512": "z4q9roxXMQePwFM5tXXZS5sKkU78yYXVkj56NYYx9xKe+mxGkJMV1MaO0GFE6HnnM8bE3Xxhs0hAPw2jKbse6w==", + "type": "package", + "path": "microsoft.aspnetcore.identity.entityframeworkcore/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net9.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll", + "lib/net9.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.xml", + "microsoft.aspnetcore.identity.entityframeworkcore.9.0.8.nupkg.sha512", + "microsoft.aspnetcore.identity.entityframeworkcore.nuspec" + ] + }, + "Microsoft.AspNetCore.Metadata/9.0.7": { + "sha512": "bM2x5yps2P6eXqFkR5ztKX7QRGGqJ4Vy5PxVdR7ADjYPNmMhrD57r8d9H++hpljk9sdjKI3Sppd7NZyA721nEA==", + "type": "package", + "path": "microsoft.aspnetcore.metadata/9.0.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/Microsoft.AspNetCore.Metadata.dll", + "lib/net462/Microsoft.AspNetCore.Metadata.xml", + "lib/net9.0/Microsoft.AspNetCore.Metadata.dll", + "lib/net9.0/Microsoft.AspNetCore.Metadata.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Metadata.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Metadata.xml", + "microsoft.aspnetcore.metadata.9.0.7.nupkg.sha512", + "microsoft.aspnetcore.metadata.nuspec" + ] + }, + "Microsoft.CSharp/4.7.0": { + "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", + "type": "package", + "path": "microsoft.csharp/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/Microsoft.CSharp.dll", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.3/Microsoft.CSharp.dll", + "lib/netstandard2.0/Microsoft.CSharp.dll", + "lib/netstandard2.0/Microsoft.CSharp.xml", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/uap10.0.16299/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.csharp.4.7.0.nupkg.sha512", + "microsoft.csharp.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/Microsoft.CSharp.dll", + "ref/netcore50/Microsoft.CSharp.xml", + "ref/netcore50/de/Microsoft.CSharp.xml", + "ref/netcore50/es/Microsoft.CSharp.xml", + "ref/netcore50/fr/Microsoft.CSharp.xml", + "ref/netcore50/it/Microsoft.CSharp.xml", + "ref/netcore50/ja/Microsoft.CSharp.xml", + "ref/netcore50/ko/Microsoft.CSharp.xml", + "ref/netcore50/ru/Microsoft.CSharp.xml", + "ref/netcore50/zh-hans/Microsoft.CSharp.xml", + "ref/netcore50/zh-hant/Microsoft.CSharp.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.0/Microsoft.CSharp.dll", + "ref/netstandard1.0/Microsoft.CSharp.xml", + "ref/netstandard1.0/de/Microsoft.CSharp.xml", + "ref/netstandard1.0/es/Microsoft.CSharp.xml", + "ref/netstandard1.0/fr/Microsoft.CSharp.xml", + "ref/netstandard1.0/it/Microsoft.CSharp.xml", + "ref/netstandard1.0/ja/Microsoft.CSharp.xml", + "ref/netstandard1.0/ko/Microsoft.CSharp.xml", + "ref/netstandard1.0/ru/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml", + "ref/netstandard2.0/Microsoft.CSharp.dll", + "ref/netstandard2.0/Microsoft.CSharp.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.0.16299/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.EntityFrameworkCore/9.0.8": { + "sha512": "bNGdPhN762+BIIO5MFYLjafRqkSS1MqLOc/erd55InvLnFxt9H3N5JNsuag1ZHyBor1VtD42U0CHpgqkWeAYgQ==", + "type": "package", + "path": "microsoft.entityframeworkcore/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "buildTransitive/net8.0/Microsoft.EntityFrameworkCore.props", + "lib/net8.0/Microsoft.EntityFrameworkCore.dll", + "lib/net8.0/Microsoft.EntityFrameworkCore.xml", + "microsoft.entityframeworkcore.9.0.8.nupkg.sha512", + "microsoft.entityframeworkcore.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Abstractions/9.0.8": { + "sha512": "B2yfAIQRRAQ4zvvWqh+HudD+juV3YoLlpXnrog3tU0PM9AFpuq6xo0+mEglN1P43WgdcUiF+65CWBcZe35s15Q==", + "type": "package", + "path": "microsoft.entityframeworkcore.abstractions/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll", + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.xml", + "microsoft.entityframeworkcore.abstractions.9.0.8.nupkg.sha512", + "microsoft.entityframeworkcore.abstractions.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Analyzers/9.0.8": { + "sha512": "2EYStCXt4Hi9p3J3EYMQbItJDtASJd064Kcs8C8hj8Jt5srILrR9qlaL0Ryvk8NrWQoCQvIELsmiuqLEZMLvGA==", + "type": "package", + "path": "microsoft.entityframeworkcore.analyzers/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll", + "docs/PACKAGE.md", + "microsoft.entityframeworkcore.analyzers.9.0.8.nupkg.sha512", + "microsoft.entityframeworkcore.analyzers.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Relational/9.0.8": { + "sha512": "OVhfyxiHxMvYpwQ8Jy3YZi4koy6TK5/Q7C1oq3z6db+HEGuu6x9L1BX5zDIdJxxlRePMyO4D8ORiXj/D7+MUqw==", + "type": "package", + "path": "microsoft.entityframeworkcore.relational/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll", + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.xml", + "microsoft.entityframeworkcore.relational.9.0.8.nupkg.sha512", + "microsoft.entityframeworkcore.relational.nuspec" + ] + }, + "Microsoft.Extensions.Caching.Abstractions/9.0.8": { + "sha512": "4h7bsVoKoiK+SlPM+euX/ayGnKZhl47pPCidLTiio9xyG+vgVVfcYxcYQgjm0SCrdSxjG0EGIAKF8EFr3G8Ifw==", + "type": "package", + "path": "microsoft.extensions.caching.abstractions/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Caching.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml", + "microsoft.extensions.caching.abstractions.9.0.8.nupkg.sha512", + "microsoft.extensions.caching.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Caching.Memory/9.0.8": { + "sha512": "grR+oPyj8HVn4DT8CFUUdSw2pZZKS13KjytFe4txpHQliGM1GEDotohmjgvyl3hm7RFB3FRqvbouEX3/1ewp5A==", + "type": "package", + "path": "microsoft.extensions.caching.memory/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Caching.Memory.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Memory.targets", + "lib/net462/Microsoft.Extensions.Caching.Memory.dll", + "lib/net462/Microsoft.Extensions.Caching.Memory.xml", + "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/net8.0/Microsoft.Extensions.Caching.Memory.xml", + "lib/net9.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/net9.0/Microsoft.Extensions.Caching.Memory.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml", + "microsoft.extensions.caching.memory.9.0.8.nupkg.sha512", + "microsoft.extensions.caching.memory.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.8": { + "sha512": "yNou2KM35RvzOh4vUFtl2l33rWPvOCoba+nzEDJ+BgD8aOL/jew4WPCibQvntRfOJ2pJU8ARygSMD+pdjvDHuA==", + "type": "package", + "path": "microsoft.extensions.configuration.abstractions/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "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/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.9.0.8.nupkg.sha512", + "microsoft.extensions.configuration.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection/9.0.8": { + "sha512": "JJjI2Fa+QtZcUyuNjbKn04OjIUX5IgFGFu/Xc+qvzh1rXdZHLcnqqVXhR4093bGirTwacRlHiVg1XYI9xum6QQ==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets", + "lib/net462/Microsoft.Extensions.DependencyInjection.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml", + "microsoft.extensions.dependencyinjection.9.0.8.nupkg.sha512", + "microsoft.extensions.dependencyinjection.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.8": { + "sha512": "xY3lTjj4+ZYmiKIkyWitddrp1uL5uYiweQjqo4BKBw01ZC4HhcfgLghDpPZcUlppgWAFqFy9SgkiYWOMx365pw==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "microsoft.extensions.dependencyinjection.abstractions.9.0.8.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Identity.Core/9.0.8": { + "sha512": "giUYz84GHAizDucZp5vWAusDO2s9Jrrg2jQ6HUQNGs5HQMKJVobLPMQSiyg8R4yecH0pIc0QjANh0B/Kw13BHA==", + "type": "package", + "path": "microsoft.extensions.identity.core/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/Microsoft.Extensions.Identity.Core.dll", + "lib/net462/Microsoft.Extensions.Identity.Core.xml", + "lib/net9.0/Microsoft.Extensions.Identity.Core.dll", + "lib/net9.0/Microsoft.Extensions.Identity.Core.xml", + "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.dll", + "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.xml", + "microsoft.extensions.identity.core.9.0.8.nupkg.sha512", + "microsoft.extensions.identity.core.nuspec" + ] + }, + "Microsoft.Extensions.Identity.Stores/9.0.8": { + "sha512": "sycaHcq78yI591+KxEdd53a7pJGQEl9H/wDsFkaPNE9g7loyq8vufPcc/9RH3KlGt5joR5Ey7PdoRSrlLjCgJg==", + "type": "package", + "path": "microsoft.extensions.identity.stores/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/Microsoft.Extensions.Identity.Stores.dll", + "lib/net462/Microsoft.Extensions.Identity.Stores.xml", + "lib/net9.0/Microsoft.Extensions.Identity.Stores.dll", + "lib/net9.0/Microsoft.Extensions.Identity.Stores.xml", + "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.dll", + "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.xml", + "microsoft.extensions.identity.stores.9.0.8.nupkg.sha512", + "microsoft.extensions.identity.stores.nuspec" + ] + }, + "Microsoft.Extensions.Localization/9.0.1": { + "sha512": "UgvX4Yb2T3tEsKT30ktZr0H7kTRPapCgEH0bdTwxiEGSdA39/hAQMvvb+vgHpqmevDU5+puyI9ujRkmmbF946w==", + "type": "package", + "path": "microsoft.extensions.localization/9.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/Microsoft.Extensions.Localization.dll", + "lib/net462/Microsoft.Extensions.Localization.xml", + "lib/net9.0/Microsoft.Extensions.Localization.dll", + "lib/net9.0/Microsoft.Extensions.Localization.xml", + "lib/netstandard2.0/Microsoft.Extensions.Localization.dll", + "lib/netstandard2.0/Microsoft.Extensions.Localization.xml", + "microsoft.extensions.localization.9.0.1.nupkg.sha512", + "microsoft.extensions.localization.nuspec" + ] + }, + "Microsoft.Extensions.Localization.Abstractions/9.0.1": { + "sha512": "CABog43lyaZQMjmlktuImCy6zmAzRBaXqN81uPaMQjlp//ISDVYItZPh6KWpWRF4MY/B67X5oDc3JTUpfdocZw==", + "type": "package", + "path": "microsoft.extensions.localization.abstractions/9.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/Microsoft.Extensions.Localization.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Localization.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.Localization.Abstractions.dll", + "lib/net9.0/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.9.0.1.nupkg.sha512", + "microsoft.extensions.localization.abstractions.nuspec" + ] + }, + "Microsoft.Extensions.Logging/9.0.8": { + "sha512": "Z/7ze+0iheT7FJeZPqJKARYvyC2bmwu3whbm/48BJjdlGVvgDguoCqJIkI/67NkroTYobd5geai1WheNQvWrgA==", + "type": "package", + "path": "microsoft.extensions.logging/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "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/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.9.0.8.nupkg.sha512", + "microsoft.extensions.logging.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.8": { + "sha512": "pYnAffJL7ARD/HCnnPvnFKSIHnTSmWz84WIlT9tPeQ4lHNiu0Az7N/8itihWvcF8sT+VVD5lq8V+ckMzu4SbOw==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", + "microsoft.extensions.logging.abstractions.9.0.8.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Options/9.0.8": { + "sha512": "OmTaQ0v4gxGQkehpwWIqPoEiwsPuG/u4HUsbOFoWGx4DKET2AXzopnFe/fE608FIhzc/kcg2p8JdyMRCCUzitQ==", + "type": "package", + "path": "microsoft.extensions.options/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Options.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "buildTransitive/net461/Microsoft.Extensions.Options.targets", + "buildTransitive/net462/Microsoft.Extensions.Options.targets", + "buildTransitive/net8.0/Microsoft.Extensions.Options.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Options.targets", + "lib/net462/Microsoft.Extensions.Options.dll", + "lib/net462/Microsoft.Extensions.Options.xml", + "lib/net8.0/Microsoft.Extensions.Options.dll", + "lib/net8.0/Microsoft.Extensions.Options.xml", + "lib/net9.0/Microsoft.Extensions.Options.dll", + "lib/net9.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.0/Microsoft.Extensions.Options.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.1/Microsoft.Extensions.Options.dll", + "lib/netstandard2.1/Microsoft.Extensions.Options.xml", + "microsoft.extensions.options.9.0.8.nupkg.sha512", + "microsoft.extensions.options.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Primitives/9.0.8": { + "sha512": "tizSIOEsIgSNSSh+hKeUVPK7xmTIjR8s+mJWOu1KXV3htvNQiPMFRMO17OdI1y/4ZApdBVk49u/08QGC9yvLug==", + "type": "package", + "path": "microsoft.extensions.primitives/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Primitives.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets", + "lib/net462/Microsoft.Extensions.Primitives.dll", + "lib/net462/Microsoft.Extensions.Primitives.xml", + "lib/net8.0/Microsoft.Extensions.Primitives.dll", + "lib/net8.0/Microsoft.Extensions.Primitives.xml", + "lib/net9.0/Microsoft.Extensions.Primitives.dll", + "lib/net9.0/Microsoft.Extensions.Primitives.xml", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", + "microsoft.extensions.primitives.9.0.8.nupkg.sha512", + "microsoft.extensions.primitives.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.JSInterop/9.0.7": { + "sha512": "+FFcgE9nFf/M/8sSJPzKnGFkALO5Q3mCdljpsxe/ZFRt6bqMcImv8d74HgMamOauhmVlC7MU9GmnbblF9CpNlQ==", + "type": "package", + "path": "microsoft.jsinterop/9.0.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net9.0/Microsoft.JSInterop.dll", + "lib/net9.0/Microsoft.JSInterop.xml", + "microsoft.jsinterop.9.0.7.nupkg.sha512", + "microsoft.jsinterop.nuspec" + ] + }, + "Microsoft.Win32.Registry/4.7.0": { + "sha512": "KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", + "type": "package", + "path": "microsoft.win32.registry/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.xml", + "lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "microsoft.win32.registry.4.7.0.nupkg.sha512", + "microsoft.win32.registry.nuspec", + "ref/net46/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.xml", + "ref/net472/Microsoft.Win32.Registry.dll", + "ref/net472/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/Microsoft.Win32.Registry.dll", + "ref/netstandard1.3/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml", + "ref/netstandard2.0/Microsoft.Win32.Registry.dll", + "ref/netstandard2.0/Microsoft.Win32.Registry.xml", + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml", + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "sha512": "hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==", + "type": "package", + "path": "microsoft.win32.systemevents/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Win32.SystemEvents.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Win32.SystemEvents.dll", + "lib/net461/Microsoft.Win32.SystemEvents.xml", + "lib/net6.0/Microsoft.Win32.SystemEvents.dll", + "lib/net6.0/Microsoft.Win32.SystemEvents.xml", + "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll", + "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml", + "microsoft.win32.systemevents.6.0.0.nupkg.sha512", + "microsoft.win32.systemevents.nuspec", + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.xml", + "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml", + "useSharedDesignerContext.txt" + ] + }, + "MudBlazor/8.12.0": { + "sha512": "ZwgHPt2DwiQoFeP8jxPzNEsUmJF17ljtospVH+uMUKUKpklz6jEkdE5vNs7PnHaPH9HEbpFEQgJw8QPlnFZjsQ==", + "type": "package", + "path": "mudblazor/8.12.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE", + "Nuget.png", + "README.md", + "analyzers/dotnet/cs/MudBlazor.Analyzers.dll", + "build/Microsoft.AspNetCore.StaticWebAssetEndpoints.props", + "build/Microsoft.AspNetCore.StaticWebAssets.props", + "build/MudBlazor.props", + "build/MudBlazor.targets", + "buildMultiTargeting/MudBlazor.props", + "buildTransitive/MudBlazor.props", + "lib/net8.0/MudBlazor.dll", + "lib/net8.0/MudBlazor.xml", + "lib/net9.0/MudBlazor.dll", + "lib/net9.0/MudBlazor.xml", + "mudblazor.8.12.0.nupkg.sha512", + "mudblazor.nuspec", + "staticwebassets/MudBlazor.min.css", + "staticwebassets/MudBlazor.min.js" + ] + }, + "Npgsql/9.0.3": { + "sha512": "tPvY61CxOAWxNsKLEBg+oR646X4Bc8UmyQ/tJszL/7mEmIXQnnBhVJZrZEEUv0Bstu0mEsHZD5At3EO8zQRAYw==", + "type": "package", + "path": "npgsql/9.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net6.0/Npgsql.dll", + "lib/net6.0/Npgsql.xml", + "lib/net8.0/Npgsql.dll", + "lib/net8.0/Npgsql.xml", + "npgsql.9.0.3.nupkg.sha512", + "npgsql.nuspec", + "postgresql.png" + ] + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/9.0.4": { + "sha512": "mw5vcY2IEc7L+IeGrxpp/J5OSnCcjkjAgJYCm/eD52wpZze8zsSifdqV7zXslSMmfJG2iIUGZyo3KuDtEFKwMQ==", + "type": "package", + "path": "npgsql.entityframeworkcore.postgresql/9.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll", + "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.xml", + "npgsql.entityframeworkcore.postgresql.9.0.4.nupkg.sha512", + "npgsql.entityframeworkcore.postgresql.nuspec", + "postgresql.png" + ] + }, + "runtime.native.System.Data.SqlClient.sni/4.7.0": { + "sha512": "9kyFSIdN3T0qjDQ2R0HRXYIhS3l5psBzQi6qqhdLz+SzFyEy4sVxNOke+yyYv8Cu8rPER12c3RDjLT8wF3WBYQ==", + "type": "package", + "path": "runtime.native.system.data.sqlclient.sni/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512", + "runtime.native.system.data.sqlclient.sni.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "sha512": "LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==", + "type": "package", + "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.nuspec", + "runtimes/win-arm64/native/sni.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "sha512": "38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==", + "type": "package", + "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "runtime.win-x64.runtime.native.system.data.sqlclient.sni.nuspec", + "runtimes/win-x64/native/sni.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "sha512": "YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==", + "type": "package", + "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "runtime.win-x86.runtime.native.system.data.sqlclient.sni.nuspec", + "runtimes/win-x86/native/sni.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.CodeDom/6.0.0": { + "sha512": "CPc6tWO1LAer3IzfZufDBRL+UZQcj5uS207NHALQzP84Vp/z6wF0Aa0YZImOQY8iStY0A2zI/e3ihKNPfUm8XA==", + "type": "package", + "path": "system.codedom/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.CodeDom.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.CodeDom.dll", + "lib/net461/System.CodeDom.xml", + "lib/net6.0/System.CodeDom.dll", + "lib/net6.0/System.CodeDom.xml", + "lib/netstandard2.0/System.CodeDom.dll", + "lib/netstandard2.0/System.CodeDom.xml", + "system.codedom.6.0.0.nupkg.sha512", + "system.codedom.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.ComponentModel.Annotations/5.0.0": { + "sha512": "dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==", + "type": "package", + "path": "system.componentmodel.annotations/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.ComponentModel.Annotations.dll", + "lib/netcore50/System.ComponentModel.Annotations.dll", + "lib/netstandard1.4/System.ComponentModel.Annotations.dll", + "lib/netstandard2.0/System.ComponentModel.Annotations.dll", + "lib/netstandard2.1/System.ComponentModel.Annotations.dll", + "lib/netstandard2.1/System.ComponentModel.Annotations.xml", + "lib/portable-net45+win8/_._", + "lib/win8/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.ComponentModel.Annotations.dll", + "ref/net461/System.ComponentModel.Annotations.xml", + "ref/netcore50/System.ComponentModel.Annotations.dll", + "ref/netcore50/System.ComponentModel.Annotations.xml", + "ref/netcore50/de/System.ComponentModel.Annotations.xml", + "ref/netcore50/es/System.ComponentModel.Annotations.xml", + "ref/netcore50/fr/System.ComponentModel.Annotations.xml", + "ref/netcore50/it/System.ComponentModel.Annotations.xml", + "ref/netcore50/ja/System.ComponentModel.Annotations.xml", + "ref/netcore50/ko/System.ComponentModel.Annotations.xml", + "ref/netcore50/ru/System.ComponentModel.Annotations.xml", + "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/System.ComponentModel.Annotations.dll", + "ref/netstandard1.1/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/System.ComponentModel.Annotations.dll", + "ref/netstandard1.3/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/System.ComponentModel.Annotations.dll", + "ref/netstandard1.4/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard2.0/System.ComponentModel.Annotations.dll", + "ref/netstandard2.0/System.ComponentModel.Annotations.xml", + "ref/netstandard2.1/System.ComponentModel.Annotations.dll", + "ref/netstandard2.1/System.ComponentModel.Annotations.xml", + "ref/portable-net45+win8/_._", + "ref/win8/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.annotations.5.0.0.nupkg.sha512", + "system.componentmodel.annotations.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Configuration.ConfigurationManager/6.0.1": { + "sha512": "jXw9MlUu/kRfEU0WyTptAVueupqIeE3/rl0EZDMlf8pcvJnitQ8HeVEp69rZdaStXwTV72boi/Bhw8lOeO+U2w==", + "type": "package", + "path": "system.configuration.configurationmanager/6.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Configuration.ConfigurationManager.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Configuration.ConfigurationManager.dll", + "lib/net461/System.Configuration.ConfigurationManager.xml", + "lib/net6.0/System.Configuration.ConfigurationManager.dll", + "lib/net6.0/System.Configuration.ConfigurationManager.xml", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml", + "runtimes/win/lib/net461/System.Configuration.ConfigurationManager.dll", + "runtimes/win/lib/net461/System.Configuration.ConfigurationManager.xml", + "system.configuration.configurationmanager.6.0.1.nupkg.sha512", + "system.configuration.configurationmanager.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Data.SqlClient/4.8.6": { + "sha512": "2Ij/LCaTQRyAi5lAv7UUTV9R2FobC8xN9mE0fXBZohum/xLl8IZVmE98Rq5ugQHjCgTBRKqpXRb4ORulRdA6Ig==", + "type": "package", + "path": "system.data.sqlclient/4.8.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net451/System.Data.SqlClient.dll", + "lib/net46/System.Data.SqlClient.dll", + "lib/net461/System.Data.SqlClient.dll", + "lib/net461/System.Data.SqlClient.xml", + "lib/netcoreapp2.1/System.Data.SqlClient.dll", + "lib/netcoreapp2.1/System.Data.SqlClient.xml", + "lib/netstandard1.2/System.Data.SqlClient.dll", + "lib/netstandard1.2/System.Data.SqlClient.xml", + "lib/netstandard1.3/System.Data.SqlClient.dll", + "lib/netstandard1.3/System.Data.SqlClient.xml", + "lib/netstandard2.0/System.Data.SqlClient.dll", + "lib/netstandard2.0/System.Data.SqlClient.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net451/System.Data.SqlClient.dll", + "ref/net46/System.Data.SqlClient.dll", + "ref/net461/System.Data.SqlClient.dll", + "ref/net461/System.Data.SqlClient.xml", + "ref/netcoreapp2.1/System.Data.SqlClient.dll", + "ref/netcoreapp2.1/System.Data.SqlClient.xml", + "ref/netstandard1.2/System.Data.SqlClient.dll", + "ref/netstandard1.2/System.Data.SqlClient.xml", + "ref/netstandard1.2/de/System.Data.SqlClient.xml", + "ref/netstandard1.2/es/System.Data.SqlClient.xml", + "ref/netstandard1.2/fr/System.Data.SqlClient.xml", + "ref/netstandard1.2/it/System.Data.SqlClient.xml", + "ref/netstandard1.2/ja/System.Data.SqlClient.xml", + "ref/netstandard1.2/ko/System.Data.SqlClient.xml", + "ref/netstandard1.2/ru/System.Data.SqlClient.xml", + "ref/netstandard1.2/zh-hans/System.Data.SqlClient.xml", + "ref/netstandard1.2/zh-hant/System.Data.SqlClient.xml", + "ref/netstandard1.3/System.Data.SqlClient.dll", + "ref/netstandard1.3/System.Data.SqlClient.xml", + "ref/netstandard1.3/de/System.Data.SqlClient.xml", + "ref/netstandard1.3/es/System.Data.SqlClient.xml", + "ref/netstandard1.3/fr/System.Data.SqlClient.xml", + "ref/netstandard1.3/it/System.Data.SqlClient.xml", + "ref/netstandard1.3/ja/System.Data.SqlClient.xml", + "ref/netstandard1.3/ko/System.Data.SqlClient.xml", + "ref/netstandard1.3/ru/System.Data.SqlClient.xml", + "ref/netstandard1.3/zh-hans/System.Data.SqlClient.xml", + "ref/netstandard1.3/zh-hant/System.Data.SqlClient.xml", + "ref/netstandard2.0/System.Data.SqlClient.dll", + "ref/netstandard2.0/System.Data.SqlClient.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll", + "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.xml", + "runtimes/unix/lib/netstandard1.3/System.Data.SqlClient.dll", + "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll", + "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.xml", + "runtimes/win/lib/net451/System.Data.SqlClient.dll", + "runtimes/win/lib/net46/System.Data.SqlClient.dll", + "runtimes/win/lib/net461/System.Data.SqlClient.dll", + "runtimes/win/lib/net461/System.Data.SqlClient.xml", + "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll", + "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.xml", + "runtimes/win/lib/netstandard1.3/System.Data.SqlClient.dll", + "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll", + "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.xml", + "runtimes/win/lib/uap10.0.16299/System.Data.SqlClient.dll", + "runtimes/win/lib/uap10.0.16299/System.Data.SqlClient.xml", + "system.data.sqlclient.4.8.6.nupkg.sha512", + "system.data.sqlclient.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Drawing.Common/6.0.0": { + "sha512": "NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==", + "type": "package", + "path": "system.drawing.common/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Drawing.Common.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Drawing.Common.dll", + "lib/net461/System.Drawing.Common.xml", + "lib/net6.0/System.Drawing.Common.dll", + "lib/net6.0/System.Drawing.Common.xml", + "lib/netcoreapp3.1/System.Drawing.Common.dll", + "lib/netcoreapp3.1/System.Drawing.Common.xml", + "lib/netstandard2.0/System.Drawing.Common.dll", + "lib/netstandard2.0/System.Drawing.Common.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "runtimes/unix/lib/net6.0/System.Drawing.Common.dll", + "runtimes/unix/lib/net6.0/System.Drawing.Common.xml", + "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.dll", + "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.xml", + "runtimes/win/lib/net6.0/System.Drawing.Common.dll", + "runtimes/win/lib/net6.0/System.Drawing.Common.xml", + "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.dll", + "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.xml", + "system.drawing.common.6.0.0.nupkg.sha512", + "system.drawing.common.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.AccessControl/6.0.0": { + "sha512": "AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==", + "type": "package", + "path": "system.security.accesscontrol/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Security.AccessControl.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.xml", + "lib/net6.0/System.Security.AccessControl.dll", + "lib/net6.0/System.Security.AccessControl.xml", + "lib/netstandard2.0/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.xml", + "runtimes/win/lib/net461/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.xml", + "runtimes/win/lib/net6.0/System.Security.AccessControl.dll", + "runtimes/win/lib/net6.0/System.Security.AccessControl.xml", + "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.dll", + "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.xml", + "system.security.accesscontrol.6.0.0.nupkg.sha512", + "system.security.accesscontrol.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Cryptography.ProtectedData/6.0.0": { + "sha512": "rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==", + "type": "package", + "path": "system.security.cryptography.protecteddata/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Security.Cryptography.ProtectedData.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Security.Cryptography.ProtectedData.dll", + "lib/net461/System.Security.Cryptography.ProtectedData.xml", + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll", + "lib/net6.0/System.Security.Cryptography.ProtectedData.xml", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml", + "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.xml", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512", + "system.security.cryptography.protecteddata.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Permissions/6.0.0": { + "sha512": "T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==", + "type": "package", + "path": "system.security.permissions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Security.Permissions.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Security.Permissions.dll", + "lib/net461/System.Security.Permissions.xml", + "lib/net5.0/System.Security.Permissions.dll", + "lib/net5.0/System.Security.Permissions.xml", + "lib/net6.0/System.Security.Permissions.dll", + "lib/net6.0/System.Security.Permissions.xml", + "lib/netcoreapp3.1/System.Security.Permissions.dll", + "lib/netcoreapp3.1/System.Security.Permissions.xml", + "lib/netstandard2.0/System.Security.Permissions.dll", + "lib/netstandard2.0/System.Security.Permissions.xml", + "runtimes/win/lib/net461/System.Security.Permissions.dll", + "runtimes/win/lib/net461/System.Security.Permissions.xml", + "system.security.permissions.6.0.0.nupkg.sha512", + "system.security.permissions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Principal.Windows/4.7.0": { + "sha512": "ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==", + "type": "package", + "path": "system.security.principal.windows/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.xml", + "lib/netstandard1.3/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.xml", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.xml", + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll", + "ref/netcoreapp3.0/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/System.Security.Principal.Windows.dll", + "ref/netstandard1.3/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/de/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/es/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/it/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml", + "ref/netstandard2.0/System.Security.Principal.Windows.dll", + "ref/netstandard2.0/System.Security.Principal.Windows.xml", + "ref/uap10.0.16299/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.principal.windows.4.7.0.nupkg.sha512", + "system.security.principal.windows.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Windows.Extensions/6.0.0": { + "sha512": "IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==", + "type": "package", + "path": "system.windows.extensions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net6.0/System.Windows.Extensions.dll", + "lib/net6.0/System.Windows.Extensions.xml", + "lib/netcoreapp3.1/System.Windows.Extensions.dll", + "lib/netcoreapp3.1/System.Windows.Extensions.xml", + "runtimes/win/lib/net6.0/System.Windows.Extensions.dll", + "runtimes/win/lib/net6.0/System.Windows.Extensions.xml", + "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.dll", + "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.xml", + "system.windows.extensions.6.0.0.nupkg.sha512", + "system.windows.extensions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "ZXing.Net/0.16.9": { + "sha512": "7WaVMHklpT3Ye2ragqRIwlFRsb6kOk63BOGADV0fan3ulVfGLUYkDi5yNUsZS/7FVNkWbtHAlDLmu4WnHGfqvQ==", + "type": "package", + "path": "zxing.net/0.16.9", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/native/zxing.XML", + "lib/native/zxing.pri", + "lib/native/zxing.winmd", + "lib/net20-cf/zxing.ce2.0.dll", + "lib/net20-cf/zxing.ce2.0.xml", + "lib/net20/zxing.XML", + "lib/net20/zxing.dll", + "lib/net35-cf/zxing.ce3.5.dll", + "lib/net35-cf/zxing.ce3.5.xml", + "lib/net35/zxing.XML", + "lib/net35/zxing.dll", + "lib/net40/zxing.XML", + "lib/net40/zxing.dll", + "lib/net40/zxing.presentation.XML", + "lib/net40/zxing.presentation.dll", + "lib/net45/zxing.XML", + "lib/net45/zxing.dll", + "lib/net45/zxing.presentation.XML", + "lib/net45/zxing.presentation.dll", + "lib/net461/zxing.XML", + "lib/net461/zxing.dll", + "lib/net461/zxing.presentation.XML", + "lib/net461/zxing.presentation.dll", + "lib/net47/zxing.XML", + "lib/net47/zxing.dll", + "lib/net47/zxing.presentation.XML", + "lib/net47/zxing.presentation.dll", + "lib/net48/zxing.XML", + "lib/net48/zxing.dll", + "lib/net48/zxing.presentation.XML", + "lib/net48/zxing.presentation.dll", + "lib/net5.0/zxing.XML", + "lib/net5.0/zxing.dll", + "lib/net6.0/zxing.XML", + "lib/net6.0/zxing.dll", + "lib/net7.0/zxing.XML", + "lib/net7.0/zxing.dll", + "lib/netcoreapp3.0/zxing.dll", + "lib/netcoreapp3.0/zxing.xml", + "lib/netcoreapp3.1/zxing.dll", + "lib/netcoreapp3.1/zxing.xml", + "lib/netstandard1.0/zxing.dll", + "lib/netstandard1.0/zxing.xml", + "lib/netstandard1.1/zxing.dll", + "lib/netstandard1.1/zxing.xml", + "lib/netstandard1.3/zxing.dll", + "lib/netstandard1.3/zxing.xml", + "lib/netstandard2.0/zxing.dll", + "lib/netstandard2.0/zxing.xml", + "lib/netstandard2.1/zxing.dll", + "lib/netstandard2.1/zxing.xml", + "lib/portable-win+net40+sl4+sl5+wp7+wp71+wp8/zxing.portable.XML", + "lib/portable-win+net40+sl4+sl5+wp7+wp71+wp8/zxing.portable.dll", + "lib/sl3-wp/zxing.wp7.0.XML", + "lib/sl3-wp/zxing.wp7.0.dll", + "lib/sl4-wp71/zxing.wp7.1.XML", + "lib/sl4-wp71/zxing.wp7.1.dll", + "lib/sl4/zxing.sl4.XML", + "lib/sl4/zxing.sl4.dll", + "lib/sl5/zxing.sl5.XML", + "lib/sl5/zxing.sl5.dll", + "lib/uap10/zxing.dll", + "lib/uap10/zxing.pri", + "lib/uap10/zxing.xml", + "lib/windows8-managed/zxing.winrt.XML", + "lib/windows8-managed/zxing.winrt.dll", + "lib/windows8/zxing.XML", + "lib/windows8/zxing.pri", + "lib/windows8/zxing.winmd", + "lib/wp8/zxing.wp8.0.XML", + "lib/wp8/zxing.wp8.0.dll", + "logo.jpg", + "zxing.net.0.16.9.nupkg.sha512", + "zxing.net.nuspec" + ] + }, + "OpenArchival.Blazor.CustomComponents/1.0.0": { + "type": "project", + "path": "../OpenArchival.Blazor.CustomComponents/OpenArchival.Blazor.CustomComponents.csproj", + "msbuildProject": "../OpenArchival.Blazor.CustomComponents/OpenArchival.Blazor.CustomComponents.csproj" + }, + "OpenArchival.DataAccess/1.0.0": { + "type": "project", + "path": "../OpenArchival.DataAccess/OpenArchival.DataAccess.csproj", + "msbuildProject": "../OpenArchival.DataAccess/OpenArchival.DataAccess.csproj" + } + }, + "projectFileDependencyGroups": { + "net9.0": [ + "OpenArchival.Blazor.CustomComponents >= 1.0.0", + "OpenArchival.DataAccess >= 1.0.0" + ] + }, + "packageFolders": { + "C:\\Users\\vtall\\.nuget\\packages\\": {}, + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.AdminComponents\\OpenArchival.Blazor.AdminComponents.csproj", + "projectName": "OpenArchival.Blazor.AdminComponents", + "projectPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.AdminComponents\\OpenArchival.Blazor.AdminComponents.csproj", + "packagesPath": "C:\\Users\\vtall\\.nuget\\packages\\", + "outputPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.AdminComponents\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\NuGet.Config", + "C:\\Users\\vtall\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net9.0" + ], + "sources": { + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "projectReferences": { + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\OpenArchival.Blazor.CustomComponents.csproj": { + "projectPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\OpenArchival.Blazor.CustomComponents.csproj" + }, + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj": { + "projectPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "9.0.300" + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.304/PortableRuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/old/OpenArchival.Blazor.AdminComponents/obj/project.nuget.cache b/old/OpenArchival.Blazor.AdminComponents/obj/project.nuget.cache new file mode 100644 index 0000000..3d79d0d --- /dev/null +++ b/old/OpenArchival.Blazor.AdminComponents/obj/project.nuget.cache @@ -0,0 +1,61 @@ +{ + "version": 2, + "dgSpecHash": "FUnZ4Gld9dY=", + "success": true, + "projectFilePath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.AdminComponents\\OpenArchival.Blazor.AdminComponents.csproj", + "expectedPackageFiles": [ + "C:\\Users\\vtall\\.nuget\\packages\\buildbundlerminifier\\3.2.449\\buildbundlerminifier.3.2.449.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudblazor.extensions\\8.2.4\\codebeam.mudblazor.extensions.8.2.4.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\csvhelper\\33.0.1\\csvhelper.33.0.1.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\entityframework\\6.5.1\\entityframework.6.5.1.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.aspnetcore.authorization\\9.0.7\\microsoft.aspnetcore.authorization.9.0.7.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.aspnetcore.components\\9.0.7\\microsoft.aspnetcore.components.9.0.7.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.aspnetcore.components.analyzers\\9.0.7\\microsoft.aspnetcore.components.analyzers.9.0.7.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.aspnetcore.components.forms\\9.0.7\\microsoft.aspnetcore.components.forms.9.0.7.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.aspnetcore.components.web\\9.0.7\\microsoft.aspnetcore.components.web.9.0.7.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.aspnetcore.cryptography.internal\\9.0.8\\microsoft.aspnetcore.cryptography.internal.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.aspnetcore.cryptography.keyderivation\\9.0.8\\microsoft.aspnetcore.cryptography.keyderivation.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.aspnetcore.identity.entityframeworkcore\\9.0.8\\microsoft.aspnetcore.identity.entityframeworkcore.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.aspnetcore.metadata\\9.0.7\\microsoft.aspnetcore.metadata.9.0.7.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.csharp\\4.7.0\\microsoft.csharp.4.7.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.entityframeworkcore\\9.0.8\\microsoft.entityframeworkcore.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\9.0.8\\microsoft.entityframeworkcore.abstractions.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\9.0.8\\microsoft.entityframeworkcore.analyzers.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\9.0.8\\microsoft.entityframeworkcore.relational.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\9.0.8\\microsoft.extensions.caching.abstractions.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.caching.memory\\9.0.8\\microsoft.extensions.caching.memory.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\9.0.8\\microsoft.extensions.configuration.abstractions.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\9.0.8\\microsoft.extensions.dependencyinjection.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\9.0.8\\microsoft.extensions.dependencyinjection.abstractions.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.identity.core\\9.0.8\\microsoft.extensions.identity.core.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.identity.stores\\9.0.8\\microsoft.extensions.identity.stores.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.localization\\9.0.1\\microsoft.extensions.localization.9.0.1.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.localization.abstractions\\9.0.1\\microsoft.extensions.localization.abstractions.9.0.1.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.logging\\9.0.8\\microsoft.extensions.logging.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\9.0.8\\microsoft.extensions.logging.abstractions.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.options\\9.0.8\\microsoft.extensions.options.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.primitives\\9.0.8\\microsoft.extensions.primitives.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.jsinterop\\9.0.7\\microsoft.jsinterop.9.0.7.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.win32.registry\\4.7.0\\microsoft.win32.registry.4.7.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.win32.systemevents\\6.0.0\\microsoft.win32.systemevents.6.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.12.0\\mudblazor.8.12.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\npgsql\\9.0.3\\npgsql.9.0.3.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\npgsql.entityframeworkcore.postgresql\\9.0.4\\npgsql.entityframeworkcore.postgresql.9.0.4.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\runtime.native.system.data.sqlclient.sni\\4.7.0\\runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\runtime.win-arm64.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\runtime.win-x64.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\runtime.win-x86.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.codedom\\6.0.0\\system.codedom.6.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.componentmodel.annotations\\5.0.0\\system.componentmodel.annotations.5.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.configuration.configurationmanager\\6.0.1\\system.configuration.configurationmanager.6.0.1.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.data.sqlclient\\4.8.6\\system.data.sqlclient.4.8.6.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.drawing.common\\6.0.0\\system.drawing.common.6.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.security.accesscontrol\\6.0.0\\system.security.accesscontrol.6.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.security.cryptography.protecteddata\\6.0.0\\system.security.cryptography.protecteddata.6.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.security.permissions\\6.0.0\\system.security.permissions.6.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.security.principal.windows\\4.7.0\\system.security.principal.windows.4.7.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.windows.extensions\\6.0.0\\system.windows.extensions.6.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\zxing.net\\0.16.9\\zxing.net.0.16.9.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/old/OpenArchival.Blazor.CustomComponents/Areas/MyFeature/Pages/Page1.cshtml b/old/OpenArchival.Blazor.CustomComponents/Areas/MyFeature/Pages/Page1.cshtml new file mode 100644 index 0000000..58dcc0f --- /dev/null +++ b/old/OpenArchival.Blazor.CustomComponents/Areas/MyFeature/Pages/Page1.cshtml @@ -0,0 +1,13 @@ +@page +@model OpenArchival.Blazor.CustomComponents.MyFeature.Pages.Page1Model + + + + + + + Page1 + + + + diff --git a/old/OpenArchival.Blazor.CustomComponents/Areas/MyFeature/Pages/Page1.cshtml.cs b/old/OpenArchival.Blazor.CustomComponents/Areas/MyFeature/Pages/Page1.cshtml.cs new file mode 100644 index 0000000..0d2651a --- /dev/null +++ b/old/OpenArchival.Blazor.CustomComponents/Areas/MyFeature/Pages/Page1.cshtml.cs @@ -0,0 +1,13 @@ +using Microsoft.AspNetCore.Mvc; +using Microsoft.AspNetCore.Mvc.RazorPages; + +namespace OpenArchival.Blazor.CustomComponents.MyFeature.Pages +{ + public class Page1Model : PageModel + { + public void OnGet() + { + + } + } +} diff --git a/old/OpenArchival.Blazor.CustomComponents/ChipContainer.razor b/old/OpenArchival.Blazor.CustomComponents/ChipContainer.razor new file mode 100644 index 0000000..c5ddbdb --- /dev/null +++ b/old/OpenArchival.Blazor.CustomComponents/ChipContainer.razor @@ -0,0 +1,82 @@ +@* ChipContainer.razor *@ +@typeparam T + +
+ @* Loop through and display each item as a chip *@ + @foreach (var item in Items) + { + + @DisplayFunc(item) + + } + + @* Render the input control provided by the consumer *@ +
+ @if (InputContent is not null) + { + @InputContent(this) + } +
+ + @SubmitButton +
+ +@code { + /// + /// The list of items to display and manage. + /// + [Parameter] + public required List Items { get; set; } = new(); + + /// + /// Required for two-way binding (@bind-Items). + /// + [Parameter] + public EventCallback> ItemsChanged { get; set; } + + /// + /// The RenderFragment that defines the custom input control. + /// The 'context' is a reference to this component instance. + /// + [Parameter] + public RenderFragment>? InputContent { get; set; } + + [Parameter] + public RenderFragment SubmitButton { get; set; } + + /// + /// A function to convert an item of type T to a string for display in the chip. + /// Defaults to item.ToString(). + /// + [Parameter] + public Func DisplayFunc { get; set; } = item => item?.ToString() ?? string.Empty; + + + + /// + /// A public method that the consumer's input control can call to add a new item. + /// + public async Task AddItem(T item) + { + if (item is null || (item is string str && string.IsNullOrWhiteSpace(str))) + { + return; + } + + // Add the item if it doesn't already exist + if (!Items.Contains(item)) + { + Items.Add(item); + await ItemsChanged.InvokeAsync(Items); + } + } + + /// + /// Removes an item from the list when the chip's close icon is clicked. + /// + private async Task RemoveItem(T item) + { + Items.Remove(item); + await ItemsChanged.InvokeAsync(Items); + } +} \ No newline at end of file diff --git a/old/OpenArchival.Blazor.CustomComponents/FileUploadOptions.cs b/old/OpenArchival.Blazor.CustomComponents/FileUploadOptions.cs new file mode 100644 index 0000000..4857491 --- /dev/null +++ b/old/OpenArchival.Blazor.CustomComponents/FileUploadOptions.cs @@ -0,0 +1,10 @@ +namespace OpenArchival.Blazor.CustomComponents; + +public class FileUploadOptions +{ + public static string Key = "FileUploadOptions"; + public required long MaxUploadSizeBytes { get; set; } + public required string UploadFolderPath { get; set; } + + public required int MaxFileCount { get; set; } +} diff --git a/old/OpenArchival.Blazor.CustomComponents/OpenArchival.Blazor.CustomComponents.csproj b/old/OpenArchival.Blazor.CustomComponents/OpenArchival.Blazor.CustomComponents.csproj new file mode 100644 index 0000000..9b7e346 --- /dev/null +++ b/old/OpenArchival.Blazor.CustomComponents/OpenArchival.Blazor.CustomComponents.csproj @@ -0,0 +1,25 @@ + + + + net9.0 + enable + enable + true + + + + + + + + + + + + + + + + + + diff --git a/old/OpenArchival.Blazor.CustomComponents/UploadDropBox.razor b/old/OpenArchival.Blazor.CustomComponents/UploadDropBox.razor new file mode 100644 index 0000000..b1de0f7 --- /dev/null +++ b/old/OpenArchival.Blazor.CustomComponents/UploadDropBox.razor @@ -0,0 +1,252 @@ +@using Microsoft.AspNetCore.Components.Forms +@using Microsoft.Extensions.Logging +@using Microsoft.Extensions.Options +@using MudBlazor +@using OpenArchival.DataAccess; + + + + + + @if (Files.Any() || ExistingFiles.Any()) + { + + @foreach (var file in Files) + { + var color = _fileToDiskFileName.Keys.Contains(file) ? Color.Success : Color.Warning; + + } + + @foreach (var filelisting in ExistingFiles) + { + + } + + } + + + + Open file picker + + + Upload + + + Clear + + + + @if (Files.Count != _fileToDiskFileName.Count) + { + *Files must be uploaded + } + + +@inject IOptions _options; +@inject IFilePathListingProvider PathProvider; +@inject ISnackbar Snackbar; +@inject ILogger _logger; + +@code { + private const string DefaultDragClass = "relative rounded-lg border-2 border-dashed pa-4 mt-4 mud-width-full mud-height-full"; + + private string _dragClass = DefaultDragClass; + + public readonly List Files = new(); + + private readonly Dictionary _fileToDiskFileName = new(); + + private MudFileUpload>? _fileUpload; + + public int SelectedFileCount { get => Files.Count; } + + public bool UploadsComplete { get; set; } = true; + + [Parameter] + public EventCallback> FilesUploaded {get; set; } + + [Parameter] + public EventCallback ClearClicked { get; set; } + + [Parameter] + public List ExistingFiles { get; set; } = new(); + + protected override Task OnParametersSetAsync() + { + StateHasChanged(); + return base.OnParametersSetAsync(); + } + + private async Task ClearAsync() + { + foreach (var pair in _fileToDiskFileName) + { + try + { + FileInfo targetFile = new(pair.Value); + if (targetFile.Exists) + { + targetFile.Delete(); + } + await PathProvider.DeleteFilePathListingAsync(pair.Key.Name, pair.Value); + } + catch (Exception ex) + { + _logger.LogError(ex, "Error deleting file {FileName}", pair.Key.Name); + Snackbar.Add($"Error cleaning up file: {pair.Key.Name}", Severity.Warning); + } + } + + foreach (var listing in ExistingFiles) + { + try + { + FileInfo targetFile = new(listing.Path); + if (targetFile.Exists) + { + targetFile.Delete(); + } + await PathProvider.DeleteFilePathListingAsync(listing.OriginalName, listing.Path); + } + catch (Exception ex) + { + _logger.LogError(ex, $"Error deleting file {listing.Path}"); + Snackbar.Add($"Error cleaning up file: {listing.OriginalName}", Severity.Warning); + } + } + + _fileToDiskFileName.Clear(); + Files.Clear(); + await (_fileUpload?.ClearAsync() ?? Task.CompletedTask); + + ClearDragClass(); + UploadsComplete = true; + await ClearClicked.InvokeAsync(); + } + + private Task OpenFilePickerAsync() + => _fileUpload?.OpenFilePickerAsync() ?? Task.CompletedTask; + + private void OnInputFileChanged(InputFileChangeEventArgs e) + { + ClearDragClass(); + var files = e.GetMultipleFiles(maximumFileCount: _options.Value.MaxFileCount); + Files.AddRange(files); + + UploadsComplete = false; + StateHasChanged(); + } + + private async Task Upload() + { + if (!Files.Any()) + { + Snackbar.Add("No files to upload.", Severity.Warning); + return; + } + + Snackbar.Configuration.PositionClass = Defaults.Classes.Position.TopCenter; + + List fileListings = []; + foreach (var file in Files) + { + if (_fileToDiskFileName.ContainsKey(file)) continue; + try + { + var diskFileName = $"{Guid.NewGuid()}{Path.GetExtension(file.Name)}"; + var destinationPath = Path.Combine(_options.Value.UploadFolderPath, diskFileName); + + await using var browserUploadStream = file.OpenReadStream(maxAllowedSize: _options.Value.MaxUploadSizeBytes); + await using var outFileStream = new FileStream(destinationPath, FileMode.Create); + + await browserUploadStream.CopyToAsync(outFileStream); + + _fileToDiskFileName.Add(file, destinationPath); + + var fileListing = new FilePathListing() { Path = destinationPath, OriginalName = Path.GetFileName(file.Name) }; + fileListings.Add(fileListing); + await PathProvider.CreateFilePathListingAsync(fileListing); + + Snackbar.Add($"Uploaded {file.Name}", Severity.Success); + + UploadsComplete = true; + } + catch (Exception ex) + { + Snackbar.Add($"Error uploading file {file.Name}: {ex.Message}", Severity.Error); + } + } + + await FilesUploaded.InvokeAsync(fileListings); + } + + private void SetDragClass() + => _dragClass = $"{DefaultDragClass} mud-border-primary"; + + private void ClearDragClass() + => _dragClass = DefaultDragClass; + + public void RemoveFile(string filename) + { + var existingFile = ExistingFiles.Where(f => f.OriginalName == filename).FirstOrDefault(); + if (existingFile is not null) + { + ExistingFiles.Remove(existingFile); + } + + var file = Files.Where(f => f.Name == filename).FirstOrDefault(); + if (file is not null) + { + Files.Remove(file); + } + } +} \ No newline at end of file diff --git a/old/OpenArchival.Blazor.CustomComponents/bin/Debug/net9.0/OpenArchival.Blazor.CustomComponents.deps.json b/old/OpenArchival.Blazor.CustomComponents/bin/Debug/net9.0/OpenArchival.Blazor.CustomComponents.deps.json new file mode 100644 index 0000000..6e0a1d1 --- /dev/null +++ b/old/OpenArchival.Blazor.CustomComponents/bin/Debug/net9.0/OpenArchival.Blazor.CustomComponents.deps.json @@ -0,0 +1,965 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v9.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v9.0": { + "OpenArchival.Blazor.CustomComponents/1.0.0": { + "dependencies": { + "CodeBeam.MudBlazor.Extensions": "8.2.4", + "MudBlazor": "8.12.0", + "OpenArchival.DataAccess": "1.0.0" + }, + "runtime": { + "OpenArchival.Blazor.CustomComponents.dll": {} + } + }, + "BuildBundlerMinifier/3.2.449": {}, + "CodeBeam.MudBlazor.Extensions/8.2.4": { + "dependencies": { + "BuildBundlerMinifier": "3.2.449", + "CsvHelper": "33.0.1", + "Microsoft.AspNetCore.Components": "9.0.7", + "Microsoft.AspNetCore.Components.Web": "9.0.7", + "MudBlazor": "8.12.0", + "ZXing.Net": "0.16.9" + }, + "runtime": { + "lib/net9.0/CodeBeam.MudBlazor.Extensions.dll": { + "assemblyVersion": "8.2.4.0", + "fileVersion": "8.2.4.0" + } + } + }, + "CsvHelper/33.0.1": { + "runtime": { + "lib/net8.0/CsvHelper.dll": { + "assemblyVersion": "33.0.0.0", + "fileVersion": "33.0.1.24" + } + } + }, + "EntityFramework/6.5.1": { + "dependencies": { + "Microsoft.CSharp": "4.7.0", + "System.CodeDom": "6.0.0", + "System.ComponentModel.Annotations": "5.0.0", + "System.Configuration.ConfigurationManager": "6.0.1", + "System.Data.SqlClient": "4.8.6" + }, + "runtime": { + "lib/netstandard2.1/EntityFramework.SqlServer.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.500.124.31603" + }, + "lib/netstandard2.1/EntityFramework.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.500.124.31603" + } + } + }, + "Microsoft.AspNetCore.Authorization/9.0.7": { + "dependencies": { + "Microsoft.AspNetCore.Metadata": "9.0.7", + "Microsoft.Extensions.Logging.Abstractions": "9.0.8", + "Microsoft.Extensions.Options": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Authorization.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31702" + } + } + }, + "Microsoft.AspNetCore.Components/9.0.7": { + "dependencies": { + "Microsoft.AspNetCore.Authorization": "9.0.7", + "Microsoft.AspNetCore.Components.Analyzers": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Components.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31702" + } + } + }, + "Microsoft.AspNetCore.Components.Analyzers/9.0.7": {}, + "Microsoft.AspNetCore.Components.Forms/9.0.7": { + "dependencies": { + "Microsoft.AspNetCore.Components": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Components.Forms.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31702" + } + } + }, + "Microsoft.AspNetCore.Components.Web/9.0.7": { + "dependencies": { + "Microsoft.AspNetCore.Components": "9.0.7", + "Microsoft.AspNetCore.Components.Forms": "9.0.7", + "Microsoft.Extensions.DependencyInjection": "9.0.8", + "Microsoft.Extensions.Primitives": "9.0.8", + "Microsoft.JSInterop": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Components.Web.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31702" + } + } + }, + "Microsoft.AspNetCore.Cryptography.Internal/9.0.8": { + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Cryptography.Internal.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36808" + } + } + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/9.0.8": { + "dependencies": { + "Microsoft.AspNetCore.Cryptography.Internal": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36808" + } + } + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore/9.0.8": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Relational": "9.0.8", + "Microsoft.Extensions.Identity.Stores": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": { + "assemblyVersion": "9.0.8.0", + "fileVersion": "9.0.825.36808" + } + } + }, + "Microsoft.AspNetCore.Metadata/9.0.7": { + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Metadata.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31702" + } + } + }, + "Microsoft.CSharp/4.7.0": {}, + "Microsoft.EntityFrameworkCore/9.0.8": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "9.0.8", + "Microsoft.EntityFrameworkCore.Analyzers": "9.0.8", + "Microsoft.Extensions.Caching.Memory": "9.0.8", + "Microsoft.Extensions.Logging": "9.0.8" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.dll": { + "assemblyVersion": "9.0.8.0", + "fileVersion": "9.0.825.36802" + } + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/9.0.8": { + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "assemblyVersion": "9.0.8.0", + "fileVersion": "9.0.825.36802" + } + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/9.0.8": {}, + "Microsoft.EntityFrameworkCore.Relational/9.0.8": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "9.0.8", + "Microsoft.Extensions.Caching.Memory": "9.0.8", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.8", + "Microsoft.Extensions.Logging": "9.0.8" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "assemblyVersion": "9.0.8.0", + "fileVersion": "9.0.825.36802" + } + } + }, + "Microsoft.Extensions.Caching.Abstractions/9.0.8": { + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Extensions.Caching.Memory/9.0.8": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "9.0.8", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8", + "Microsoft.Extensions.Logging.Abstractions": "9.0.8", + "Microsoft.Extensions.Options": "9.0.8", + "Microsoft.Extensions.Primitives": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Caching.Memory.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.8": { + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Extensions.DependencyInjection/9.0.8": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.8": { + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Extensions.Identity.Core/9.0.8": { + "dependencies": { + "Microsoft.AspNetCore.Cryptography.KeyDerivation": "9.0.8", + "Microsoft.Extensions.Logging": "9.0.8", + "Microsoft.Extensions.Options": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Identity.Core.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36808" + } + } + }, + "Microsoft.Extensions.Identity.Stores/9.0.8": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "9.0.8", + "Microsoft.Extensions.Identity.Core": "9.0.8", + "Microsoft.Extensions.Logging": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Identity.Stores.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36808" + } + } + }, + "Microsoft.Extensions.Localization/9.0.1": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8", + "Microsoft.Extensions.Localization.Abstractions": "9.0.1", + "Microsoft.Extensions.Logging.Abstractions": "9.0.8", + "Microsoft.Extensions.Options": "9.0.8" + }, + "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.8": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "9.0.8", + "Microsoft.Extensions.Logging.Abstractions": "9.0.8", + "Microsoft.Extensions.Options": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.8": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Extensions.Options/9.0.8": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8", + "Microsoft.Extensions.Primitives": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Extensions.Primitives/9.0.8": { + "runtime": { + "lib/net9.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.JSInterop/9.0.7": { + "runtime": { + "lib/net9.0/Microsoft.JSInterop.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31702" + } + } + }, + "Microsoft.Win32.Registry/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "runtime": { + "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "MudBlazor/8.12.0": { + "dependencies": { + "Microsoft.AspNetCore.Components": "9.0.7", + "Microsoft.AspNetCore.Components.Web": "9.0.7", + "Microsoft.Extensions.Localization": "9.0.1" + }, + "runtime": { + "lib/net9.0/MudBlazor.dll": { + "assemblyVersion": "8.12.0.0", + "fileVersion": "8.12.0.0" + } + } + }, + "Npgsql/9.0.3": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "9.0.8" + }, + "runtime": { + "lib/net8.0/Npgsql.dll": { + "assemblyVersion": "9.0.3.0", + "fileVersion": "9.0.3.0" + } + } + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/9.0.4": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "9.0.8", + "Microsoft.EntityFrameworkCore.Relational": "9.0.8", + "Npgsql": "9.0.3" + }, + "runtime": { + "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { + "assemblyVersion": "9.0.4.0", + "fileVersion": "9.0.4.0" + } + } + }, + "runtime.native.System.Data.SqlClient.sni/4.7.0": { + "dependencies": { + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0" + } + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "runtimeTargets": { + "runtimes/win-arm64/native/sni.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "4.6.25512.1" + } + } + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "runtimeTargets": { + "runtimes/win-x64/native/sni.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "4.6.25512.1" + } + } + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "runtimeTargets": { + "runtimes/win-x86/native/sni.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "4.6.25512.1" + } + } + }, + "System.CodeDom/6.0.0": { + "runtime": { + "lib/net6.0/System.CodeDom.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.ComponentModel.Annotations/5.0.0": {}, + "System.Configuration.ConfigurationManager/6.0.1": { + "dependencies": { + "System.Security.Cryptography.ProtectedData": "6.0.0", + "System.Security.Permissions": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.922.41905" + } + } + }, + "System.Data.SqlClient/4.8.6": { + "dependencies": { + "Microsoft.Win32.Registry": "4.7.0", + "System.Security.Principal.Windows": "4.7.0", + "runtime.native.System.Data.SqlClient.sni": "4.7.0" + }, + "runtime": { + "lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "assemblyVersion": "4.6.1.6", + "fileVersion": "4.700.23.52603" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "4.6.1.6", + "fileVersion": "4.700.23.52603" + }, + "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.6.1.6", + "fileVersion": "4.700.23.52603" + } + } + }, + "System.Drawing.Common/6.0.0": { + "dependencies": { + "Microsoft.Win32.SystemEvents": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Drawing.Common.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + }, + "runtimes/win/lib/net6.0/System.Drawing.Common.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Security.AccessControl/6.0.0": {}, + "System.Security.Cryptography.ProtectedData/6.0.0": { + "runtime": { + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Security.Permissions/6.0.0": { + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Windows.Extensions": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Security.Permissions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Security.Principal.Windows/4.7.0": {}, + "System.Windows.Extensions/6.0.0": { + "dependencies": { + "System.Drawing.Common": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Windows.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "ZXing.Net/0.16.9": { + "runtime": { + "lib/net7.0/zxing.dll": { + "assemblyVersion": "0.16.9.0", + "fileVersion": "0.16.9.0" + } + } + }, + "OpenArchival.DataAccess/1.0.0": { + "dependencies": { + "EntityFramework": "6.5.1", + "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "9.0.8", + "Microsoft.EntityFrameworkCore": "9.0.8", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8", + "Npgsql": "9.0.3", + "Npgsql.EntityFrameworkCore.PostgreSQL": "9.0.4" + }, + "runtime": { + "OpenArchival.DataAccess.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + } + } + }, + "libraries": { + "OpenArchival.Blazor.CustomComponents/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "BuildBundlerMinifier/3.2.449": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uA9sYDy4VepL3xwzBTLcP2LyuVYMt0ZIT3gaSiXvGoX15Ob+rOP+hGydhevlSVd+rFo+Y+VQFEHDuWU8HBW+XA==", + "path": "buildbundlerminifier/3.2.449", + "hashPath": "buildbundlerminifier.3.2.449.nupkg.sha512" + }, + "CodeBeam.MudBlazor.Extensions/8.2.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IaQoIcREfkHq8VUxFDZQrK69blNw+0FwTjC8JGHhhSGugJZ3UFOjhpYYAhiU/1Eue3PXySLXzJFXzsD/hIArVw==", + "path": "codebeam.mudblazor.extensions/8.2.4", + "hashPath": "codebeam.mudblazor.extensions.8.2.4.nupkg.sha512" + }, + "CsvHelper/33.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fev4lynklAU2A9GVMLtwarkwaanjSYB4wUqO2nOJX5hnzObORzUqVLe+bDYCUyIIRQM4o5Bsq3CcyJR89iMmEQ==", + "path": "csvhelper/33.0.1", + "hashPath": "csvhelper.33.0.1.nupkg.sha512" + }, + "EntityFramework/6.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sQRP2lWg1i3aAGWqdliAM8zrGx7LHMUk+9/MoxUjwfTZYGMXvZ2JYZTlyTm1PqDxvn3c9E3U76TWDON7Y5+CVA==", + "path": "entityframework/6.5.1", + "hashPath": "entityframework.6.5.1.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authorization/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-P0Gej6X5cEoK+sS9XpgYSzg0Nz8OOlvfQb12aOAJW/P4b9nAzLQCVoNp1GDyR/P8eMSnoPARiKPaa6q51iR0oA==", + "path": "microsoft.aspnetcore.authorization/9.0.7", + "hashPath": "microsoft.aspnetcore.authorization.9.0.7.nupkg.sha512" + }, + "Microsoft.AspNetCore.Components/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cZpVsxWWGagoP2U6Kjqm107gVZHTmiM2m7YDNRsScTWoBB1iyEIznvYG9ZK4XkDY4yDUTdnZrXRMMVu8K7dJ8Q==", + "path": "microsoft.aspnetcore.components/9.0.7", + "hashPath": "microsoft.aspnetcore.components.9.0.7.nupkg.sha512" + }, + "Microsoft.AspNetCore.Components.Analyzers/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SlMcfUJHFxjIFAecPY55in8u93AZo5NQrRlPY3hKrSsLEgyjjtZGzWIn+F9RluHw5wRct/QFRCt2sQwEhn8qtA==", + "path": "microsoft.aspnetcore.components.analyzers/9.0.7", + "hashPath": "microsoft.aspnetcore.components.analyzers.9.0.7.nupkg.sha512" + }, + "Microsoft.AspNetCore.Components.Forms/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ecnFWXV/ClmBfkevmalj1e1+T00AkihOyK8yQdKOwKmibraYphyup4BdOLP7v17PNVF4d5njsoHmFtVBvYpsJg==", + "path": "microsoft.aspnetcore.components.forms/9.0.7", + "hashPath": "microsoft.aspnetcore.components.forms.9.0.7.nupkg.sha512" + }, + "Microsoft.AspNetCore.Components.Web/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fP+WmahEXWgCTgL/aRo/y75v1nni8E8WfbpkbWOeMBk2UdQORqQbFPIkttu8JPYVACDfVYgEDKIDtVqEY9Akkg==", + "path": "microsoft.aspnetcore.components.web/9.0.7", + "hashPath": "microsoft.aspnetcore.components.web.9.0.7.nupkg.sha512" + }, + "Microsoft.AspNetCore.Cryptography.Internal/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NwGO0wh/IjEthBLGA6fWfIiftsNF/paA5RxWp6ji4wWazetJgQ4truR9nU2thAzzFLiXqlg8vGjdVDA8bHu0zA==", + "path": "microsoft.aspnetcore.cryptography.internal/9.0.8", + "hashPath": "microsoft.aspnetcore.cryptography.internal.9.0.8.nupkg.sha512" + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gK70xxXYwwPiXYKYVmLYMuIO5EOGrRtQghmM6PkgtZ/0lgLEjIs//xgSLvZkV/mroNHA1DEqTcqscEj9OzZ1IA==", + "path": "microsoft.aspnetcore.cryptography.keyderivation/9.0.8", + "hashPath": "microsoft.aspnetcore.cryptography.keyderivation.9.0.8.nupkg.sha512" + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-z4q9roxXMQePwFM5tXXZS5sKkU78yYXVkj56NYYx9xKe+mxGkJMV1MaO0GFE6HnnM8bE3Xxhs0hAPw2jKbse6w==", + "path": "microsoft.aspnetcore.identity.entityframeworkcore/9.0.8", + "hashPath": "microsoft.aspnetcore.identity.entityframeworkcore.9.0.8.nupkg.sha512" + }, + "Microsoft.AspNetCore.Metadata/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bM2x5yps2P6eXqFkR5ztKX7QRGGqJ4Vy5PxVdR7ADjYPNmMhrD57r8d9H++hpljk9sdjKI3Sppd7NZyA721nEA==", + "path": "microsoft.aspnetcore.metadata/9.0.7", + "hashPath": "microsoft.aspnetcore.metadata.9.0.7.nupkg.sha512" + }, + "Microsoft.CSharp/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", + "path": "microsoft.csharp/4.7.0", + "hashPath": "microsoft.csharp.4.7.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bNGdPhN762+BIIO5MFYLjafRqkSS1MqLOc/erd55InvLnFxt9H3N5JNsuag1ZHyBor1VtD42U0CHpgqkWeAYgQ==", + "path": "microsoft.entityframeworkcore/9.0.8", + "hashPath": "microsoft.entityframeworkcore.9.0.8.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Abstractions/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-B2yfAIQRRAQ4zvvWqh+HudD+juV3YoLlpXnrog3tU0PM9AFpuq6xo0+mEglN1P43WgdcUiF+65CWBcZe35s15Q==", + "path": "microsoft.entityframeworkcore.abstractions/9.0.8", + "hashPath": "microsoft.entityframeworkcore.abstractions.9.0.8.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Analyzers/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2EYStCXt4Hi9p3J3EYMQbItJDtASJd064Kcs8C8hj8Jt5srILrR9qlaL0Ryvk8NrWQoCQvIELsmiuqLEZMLvGA==", + "path": "microsoft.entityframeworkcore.analyzers/9.0.8", + "hashPath": "microsoft.entityframeworkcore.analyzers.9.0.8.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Relational/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OVhfyxiHxMvYpwQ8Jy3YZi4koy6TK5/Q7C1oq3z6db+HEGuu6x9L1BX5zDIdJxxlRePMyO4D8ORiXj/D7+MUqw==", + "path": "microsoft.entityframeworkcore.relational/9.0.8", + "hashPath": "microsoft.entityframeworkcore.relational.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Abstractions/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4h7bsVoKoiK+SlPM+euX/ayGnKZhl47pPCidLTiio9xyG+vgVVfcYxcYQgjm0SCrdSxjG0EGIAKF8EFr3G8Ifw==", + "path": "microsoft.extensions.caching.abstractions/9.0.8", + "hashPath": "microsoft.extensions.caching.abstractions.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Memory/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-grR+oPyj8HVn4DT8CFUUdSw2pZZKS13KjytFe4txpHQliGM1GEDotohmjgvyl3hm7RFB3FRqvbouEX3/1ewp5A==", + "path": "microsoft.extensions.caching.memory/9.0.8", + "hashPath": "microsoft.extensions.caching.memory.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yNou2KM35RvzOh4vUFtl2l33rWPvOCoba+nzEDJ+BgD8aOL/jew4WPCibQvntRfOJ2pJU8ARygSMD+pdjvDHuA==", + "path": "microsoft.extensions.configuration.abstractions/9.0.8", + "hashPath": "microsoft.extensions.configuration.abstractions.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JJjI2Fa+QtZcUyuNjbKn04OjIUX5IgFGFu/Xc+qvzh1rXdZHLcnqqVXhR4093bGirTwacRlHiVg1XYI9xum6QQ==", + "path": "microsoft.extensions.dependencyinjection/9.0.8", + "hashPath": "microsoft.extensions.dependencyinjection.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xY3lTjj4+ZYmiKIkyWitddrp1uL5uYiweQjqo4BKBw01ZC4HhcfgLghDpPZcUlppgWAFqFy9SgkiYWOMx365pw==", + "path": "microsoft.extensions.dependencyinjection.abstractions/9.0.8", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Identity.Core/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-giUYz84GHAizDucZp5vWAusDO2s9Jrrg2jQ6HUQNGs5HQMKJVobLPMQSiyg8R4yecH0pIc0QjANh0B/Kw13BHA==", + "path": "microsoft.extensions.identity.core/9.0.8", + "hashPath": "microsoft.extensions.identity.core.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Identity.Stores/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sycaHcq78yI591+KxEdd53a7pJGQEl9H/wDsFkaPNE9g7loyq8vufPcc/9RH3KlGt5joR5Ey7PdoRSrlLjCgJg==", + "path": "microsoft.extensions.identity.stores/9.0.8", + "hashPath": "microsoft.extensions.identity.stores.9.0.8.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.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Z/7ze+0iheT7FJeZPqJKARYvyC2bmwu3whbm/48BJjdlGVvgDguoCqJIkI/67NkroTYobd5geai1WheNQvWrgA==", + "path": "microsoft.extensions.logging/9.0.8", + "hashPath": "microsoft.extensions.logging.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pYnAffJL7ARD/HCnnPvnFKSIHnTSmWz84WIlT9tPeQ4lHNiu0Az7N/8itihWvcF8sT+VVD5lq8V+ckMzu4SbOw==", + "path": "microsoft.extensions.logging.abstractions/9.0.8", + "hashPath": "microsoft.extensions.logging.abstractions.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Options/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OmTaQ0v4gxGQkehpwWIqPoEiwsPuG/u4HUsbOFoWGx4DKET2AXzopnFe/fE608FIhzc/kcg2p8JdyMRCCUzitQ==", + "path": "microsoft.extensions.options/9.0.8", + "hashPath": "microsoft.extensions.options.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tizSIOEsIgSNSSh+hKeUVPK7xmTIjR8s+mJWOu1KXV3htvNQiPMFRMO17OdI1y/4ZApdBVk49u/08QGC9yvLug==", + "path": "microsoft.extensions.primitives/9.0.8", + "hashPath": "microsoft.extensions.primitives.9.0.8.nupkg.sha512" + }, + "Microsoft.JSInterop/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+FFcgE9nFf/M/8sSJPzKnGFkALO5Q3mCdljpsxe/ZFRt6bqMcImv8d74HgMamOauhmVlC7MU9GmnbblF9CpNlQ==", + "path": "microsoft.jsinterop/9.0.7", + "hashPath": "microsoft.jsinterop.9.0.7.nupkg.sha512" + }, + "Microsoft.Win32.Registry/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", + "path": "microsoft.win32.registry/4.7.0", + "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512" + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==", + "path": "microsoft.win32.systemevents/6.0.0", + "hashPath": "microsoft.win32.systemevents.6.0.0.nupkg.sha512" + }, + "MudBlazor/8.12.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZwgHPt2DwiQoFeP8jxPzNEsUmJF17ljtospVH+uMUKUKpklz6jEkdE5vNs7PnHaPH9HEbpFEQgJw8QPlnFZjsQ==", + "path": "mudblazor/8.12.0", + "hashPath": "mudblazor.8.12.0.nupkg.sha512" + }, + "Npgsql/9.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tPvY61CxOAWxNsKLEBg+oR646X4Bc8UmyQ/tJszL/7mEmIXQnnBhVJZrZEEUv0Bstu0mEsHZD5At3EO8zQRAYw==", + "path": "npgsql/9.0.3", + "hashPath": "npgsql.9.0.3.nupkg.sha512" + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/9.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mw5vcY2IEc7L+IeGrxpp/J5OSnCcjkjAgJYCm/eD52wpZze8zsSifdqV7zXslSMmfJG2iIUGZyo3KuDtEFKwMQ==", + "path": "npgsql.entityframeworkcore.postgresql/9.0.4", + "hashPath": "npgsql.entityframeworkcore.postgresql.9.0.4.nupkg.sha512" + }, + "runtime.native.System.Data.SqlClient.sni/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9kyFSIdN3T0qjDQ2R0HRXYIhS3l5psBzQi6qqhdLz+SzFyEy4sVxNOke+yyYv8Cu8rPER12c3RDjLT8wF3WBYQ==", + "path": "runtime.native.system.data.sqlclient.sni/4.7.0", + "hashPath": "runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512" + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==", + "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0", + "hashPath": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==", + "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0", + "hashPath": "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==", + "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0", + "hashPath": "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" + }, + "System.CodeDom/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CPc6tWO1LAer3IzfZufDBRL+UZQcj5uS207NHALQzP84Vp/z6wF0Aa0YZImOQY8iStY0A2zI/e3ihKNPfUm8XA==", + "path": "system.codedom/6.0.0", + "hashPath": "system.codedom.6.0.0.nupkg.sha512" + }, + "System.ComponentModel.Annotations/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==", + "path": "system.componentmodel.annotations/5.0.0", + "hashPath": "system.componentmodel.annotations.5.0.0.nupkg.sha512" + }, + "System.Configuration.ConfigurationManager/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jXw9MlUu/kRfEU0WyTptAVueupqIeE3/rl0EZDMlf8pcvJnitQ8HeVEp69rZdaStXwTV72boi/Bhw8lOeO+U2w==", + "path": "system.configuration.configurationmanager/6.0.1", + "hashPath": "system.configuration.configurationmanager.6.0.1.nupkg.sha512" + }, + "System.Data.SqlClient/4.8.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2Ij/LCaTQRyAi5lAv7UUTV9R2FobC8xN9mE0fXBZohum/xLl8IZVmE98Rq5ugQHjCgTBRKqpXRb4ORulRdA6Ig==", + "path": "system.data.sqlclient/4.8.6", + "hashPath": "system.data.sqlclient.4.8.6.nupkg.sha512" + }, + "System.Drawing.Common/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==", + "path": "system.drawing.common/6.0.0", + "hashPath": "system.drawing.common.6.0.0.nupkg.sha512" + }, + "System.Security.AccessControl/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==", + "path": "system.security.accesscontrol/6.0.0", + "hashPath": "system.security.accesscontrol.6.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.ProtectedData/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==", + "path": "system.security.cryptography.protecteddata/6.0.0", + "hashPath": "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512" + }, + "System.Security.Permissions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==", + "path": "system.security.permissions/6.0.0", + "hashPath": "system.security.permissions.6.0.0.nupkg.sha512" + }, + "System.Security.Principal.Windows/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==", + "path": "system.security.principal.windows/4.7.0", + "hashPath": "system.security.principal.windows.4.7.0.nupkg.sha512" + }, + "System.Windows.Extensions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==", + "path": "system.windows.extensions/6.0.0", + "hashPath": "system.windows.extensions.6.0.0.nupkg.sha512" + }, + "ZXing.Net/0.16.9": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7WaVMHklpT3Ye2ragqRIwlFRsb6kOk63BOGADV0fan3ulVfGLUYkDi5yNUsZS/7FVNkWbtHAlDLmu4WnHGfqvQ==", + "path": "zxing.net/0.16.9", + "hashPath": "zxing.net.0.16.9.nupkg.sha512" + }, + "OpenArchival.DataAccess/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/old/OpenArchival.Blazor.CustomComponents/bin/Debug/net9.0/OpenArchival.Blazor.CustomComponents.dll b/old/OpenArchival.Blazor.CustomComponents/bin/Debug/net9.0/OpenArchival.Blazor.CustomComponents.dll new file mode 100644 index 0000000..c2713a7 Binary files /dev/null and b/old/OpenArchival.Blazor.CustomComponents/bin/Debug/net9.0/OpenArchival.Blazor.CustomComponents.dll differ diff --git a/old/OpenArchival.Blazor.CustomComponents/bin/Debug/net9.0/OpenArchival.Blazor.CustomComponents.pdb b/old/OpenArchival.Blazor.CustomComponents/bin/Debug/net9.0/OpenArchival.Blazor.CustomComponents.pdb new file mode 100644 index 0000000..6611d9d Binary files /dev/null and b/old/OpenArchival.Blazor.CustomComponents/bin/Debug/net9.0/OpenArchival.Blazor.CustomComponents.pdb differ diff --git a/old/OpenArchival.Blazor.CustomComponents/bin/Debug/net9.0/OpenArchival.Blazor.CustomComponents.runtimeconfig.json b/old/OpenArchival.Blazor.CustomComponents/bin/Debug/net9.0/OpenArchival.Blazor.CustomComponents.runtimeconfig.json new file mode 100644 index 0000000..6e29dbe --- /dev/null +++ b/old/OpenArchival.Blazor.CustomComponents/bin/Debug/net9.0/OpenArchival.Blazor.CustomComponents.runtimeconfig.json @@ -0,0 +1,19 @@ +{ + "runtimeOptions": { + "tfm": "net9.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "9.0.0" + }, + { + "name": "Microsoft.AspNetCore.App", + "version": "9.0.0" + } + ], + "configProperties": { + "System.Reflection.NullabilityInfoContext.IsSupported": true, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/old/OpenArchival.Blazor.CustomComponents/bin/Debug/net9.0/OpenArchival.Blazor.CustomComponents.staticwebassets.endpoints.json b/old/OpenArchival.Blazor.CustomComponents/bin/Debug/net9.0/OpenArchival.Blazor.CustomComponents.staticwebassets.endpoints.json new file mode 100644 index 0000000..0589c46 --- /dev/null +++ b/old/OpenArchival.Blazor.CustomComponents/bin/Debug/net9.0/OpenArchival.Blazor.CustomComponents.staticwebassets.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[{"Route":"_content/CodeBeam.MudBlazor.Extensions/MudExtensions.min.css","AssetFile":"_content/CodeBeam.MudBlazor.Extensions/MudExtensions.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"30373"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Qd3vfmrpKweNCIANQayvn3GAwTky2GRAx678f/zrQ0c=\""},{"Name":"Last-Modified","Value":"Sat, 12 Jul 2025 09:34:39 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Qd3vfmrpKweNCIANQayvn3GAwTky2GRAx678f/zrQ0c="}]},{"Route":"_content/CodeBeam.MudBlazor.Extensions/MudExtensions.min.css","AssetFile":"_content/CodeBeam.MudBlazor.Extensions/MudExtensions.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000229832222"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4350"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"WeS03YTc2L4F0UqEze8LyBRFvMQkpkCXs3OWdsWXNp0=\""},{"Name":"ETag","Value":"W/\"Qd3vfmrpKweNCIANQayvn3GAwTky2GRAx678f/zrQ0c=\""},{"Name":"Last-Modified","Value":"Wed, 24 Sep 2025 17:47:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Qd3vfmrpKweNCIANQayvn3GAwTky2GRAx678f/zrQ0c="}]},{"Route":"_content/CodeBeam.MudBlazor.Extensions/MudExtensions.min.css.gz","AssetFile":"_content/CodeBeam.MudBlazor.Extensions/MudExtensions.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4350"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"WeS03YTc2L4F0UqEze8LyBRFvMQkpkCXs3OWdsWXNp0=\""},{"Name":"Last-Modified","Value":"Wed, 24 Sep 2025 17:47:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WeS03YTc2L4F0UqEze8LyBRFvMQkpkCXs3OWdsWXNp0="}]},{"Route":"_content/CodeBeam.MudBlazor.Extensions/MudExtensions.min.g1x2ayen6w.js","AssetFile":"_content/CodeBeam.MudBlazor.Extensions/MudExtensions.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5438"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"PDrTwptwN1LMCMh9gFmN0gwdQFXI7gU07aR2u1lfRqs=\""},{"Name":"Last-Modified","Value":"Sat, 12 Jul 2025 09:35:02 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"g1x2ayen6w"},{"Name":"integrity","Value":"sha256-PDrTwptwN1LMCMh9gFmN0gwdQFXI7gU07aR2u1lfRqs="},{"Name":"label","Value":"_content/CodeBeam.MudBlazor.Extensions/MudExtensions.min.js"}]},{"Route":"_content/CodeBeam.MudBlazor.Extensions/MudExtensions.min.js","AssetFile":"_content/CodeBeam.MudBlazor.Extensions/MudExtensions.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5438"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"PDrTwptwN1LMCMh9gFmN0gwdQFXI7gU07aR2u1lfRqs=\""},{"Name":"Last-Modified","Value":"Sat, 12 Jul 2025 09:35:02 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PDrTwptwN1LMCMh9gFmN0gwdQFXI7gU07aR2u1lfRqs="}]},{"Route":"_content/CodeBeam.MudBlazor.Extensions/MudExtensions.min.js","AssetFile":"_content/CodeBeam.MudBlazor.Extensions/MudExtensions.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000571102227"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1750"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"XkHiI1Y1MqkfLLXku4J4lit63QuWstmIt330t6k052o=\""},{"Name":"ETag","Value":"W/\"PDrTwptwN1LMCMh9gFmN0gwdQFXI7gU07aR2u1lfRqs=\""},{"Name":"Last-Modified","Value":"Wed, 24 Sep 2025 17:47:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PDrTwptwN1LMCMh9gFmN0gwdQFXI7gU07aR2u1lfRqs="}]},{"Route":"_content/CodeBeam.MudBlazor.Extensions/MudExtensions.min.js.gz","AssetFile":"_content/CodeBeam.MudBlazor.Extensions/MudExtensions.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1750"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"XkHiI1Y1MqkfLLXku4J4lit63QuWstmIt330t6k052o=\""},{"Name":"Last-Modified","Value":"Wed, 24 Sep 2025 17:47:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XkHiI1Y1MqkfLLXku4J4lit63QuWstmIt330t6k052o="}]},{"Route":"_content/CodeBeam.MudBlazor.Extensions/MudExtensions.min.zrxbvx041h.css","AssetFile":"_content/CodeBeam.MudBlazor.Extensions/MudExtensions.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"30373"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Qd3vfmrpKweNCIANQayvn3GAwTky2GRAx678f/zrQ0c=\""},{"Name":"Last-Modified","Value":"Sat, 12 Jul 2025 09:34:39 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zrxbvx041h"},{"Name":"integrity","Value":"sha256-Qd3vfmrpKweNCIANQayvn3GAwTky2GRAx678f/zrQ0c="},{"Name":"label","Value":"_content/CodeBeam.MudBlazor.Extensions/MudExtensions.min.css"}]},{"Route":"_content/CodeBeam.MudBlazor.Extensions/Mud_Secondary.png","AssetFile":"_content/CodeBeam.MudBlazor.Extensions/Mud_Secondary.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4558"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"G3hYUw4Ps9P/IQ3lw2zu96RSZaOf4zU+4QkXkH8Xi3Y=\""},{"Name":"Last-Modified","Value":"Sun, 08 Jun 2025 12:55:27 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G3hYUw4Ps9P/IQ3lw2zu96RSZaOf4zU+4QkXkH8Xi3Y="}]},{"Route":"_content/CodeBeam.MudBlazor.Extensions/Mud_Secondary.tig1qhobl3.png","AssetFile":"_content/CodeBeam.MudBlazor.Extensions/Mud_Secondary.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4558"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"G3hYUw4Ps9P/IQ3lw2zu96RSZaOf4zU+4QkXkH8Xi3Y=\""},{"Name":"Last-Modified","Value":"Sun, 08 Jun 2025 12:55:27 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tig1qhobl3"},{"Name":"integrity","Value":"sha256-G3hYUw4Ps9P/IQ3lw2zu96RSZaOf4zU+4QkXkH8Xi3Y="},{"Name":"label","Value":"_content/CodeBeam.MudBlazor.Extensions/Mud_Secondary.png"}]},{"Route":"_content/CodeBeam.MudBlazor.Extensions/eraser.8puvc5nbz2.cur","AssetFile":"_content/CodeBeam.MudBlazor.Extensions/eraser.cur","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4286"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"1GL+TjmZdDm3eGG+MG1FLkkZF8SOwo3eG/7qsNX0HuU=\""},{"Name":"Last-Modified","Value":"Sun, 08 Jun 2025 12:55:27 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8puvc5nbz2"},{"Name":"integrity","Value":"sha256-1GL+TjmZdDm3eGG+MG1FLkkZF8SOwo3eG/7qsNX0HuU="},{"Name":"label","Value":"_content/CodeBeam.MudBlazor.Extensions/eraser.cur"}]},{"Route":"_content/CodeBeam.MudBlazor.Extensions/eraser.cur","AssetFile":"_content/CodeBeam.MudBlazor.Extensions/eraser.cur","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4286"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"1GL+TjmZdDm3eGG+MG1FLkkZF8SOwo3eG/7qsNX0HuU=\""},{"Name":"Last-Modified","Value":"Sun, 08 Jun 2025 12:55:27 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1GL+TjmZdDm3eGG+MG1FLkkZF8SOwo3eG/7qsNX0HuU="}]},{"Route":"_content/CodeBeam.MudBlazor.Extensions/pencil.cpli8oaqtf.cur","AssetFile":"_content/CodeBeam.MudBlazor.Extensions/pencil.cur","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"326"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"oDnErTJbRIXAeq4Awzx/PNkRW2XA0ClXG7BIA/jTt9E=\""},{"Name":"Last-Modified","Value":"Sun, 08 Jun 2025 12:55:27 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cpli8oaqtf"},{"Name":"integrity","Value":"sha256-oDnErTJbRIXAeq4Awzx/PNkRW2XA0ClXG7BIA/jTt9E="},{"Name":"label","Value":"_content/CodeBeam.MudBlazor.Extensions/pencil.cur"}]},{"Route":"_content/CodeBeam.MudBlazor.Extensions/pencil.cur","AssetFile":"_content/CodeBeam.MudBlazor.Extensions/pencil.cur","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"326"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"oDnErTJbRIXAeq4Awzx/PNkRW2XA0ClXG7BIA/jTt9E=\""},{"Name":"Last-Modified","Value":"Sun, 08 Jun 2025 12:55:27 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-oDnErTJbRIXAeq4Awzx/PNkRW2XA0ClXG7BIA/jTt9E="}]},{"Route":"_content/MudBlazor/MudBlazor.min.0n6lrtb02s.css","AssetFile":"_content/MudBlazor/MudBlazor.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"606258"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"3FM/mjas9rQiq2CY+FQPy1Pe1iCLSx/qZltQxK4dcuQ=\""},{"Name":"Last-Modified","Value":"Tue, 02 Sep 2025 18:25:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0n6lrtb02s"},{"Name":"integrity","Value":"sha256-3FM/mjas9rQiq2CY+FQPy1Pe1iCLSx/qZltQxK4dcuQ="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.css"}]},{"Route":"_content/MudBlazor/MudBlazor.min.css","AssetFile":"_content/MudBlazor/MudBlazor.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"606258"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"3FM/mjas9rQiq2CY+FQPy1Pe1iCLSx/qZltQxK4dcuQ=\""},{"Name":"Last-Modified","Value":"Tue, 02 Sep 2025 18:25:58 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3FM/mjas9rQiq2CY+FQPy1Pe1iCLSx/qZltQxK4dcuQ="}]},{"Route":"_content/MudBlazor/MudBlazor.min.css","AssetFile":"_content/MudBlazor/MudBlazor.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015264845"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"65509"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"G6ttMFl4pZQbeXfp7Od0SO3bC9h9rp9m7NW7DgD0a1Q=\""},{"Name":"ETag","Value":"W/\"3FM/mjas9rQiq2CY+FQPy1Pe1iCLSx/qZltQxK4dcuQ=\""},{"Name":"Last-Modified","Value":"Wed, 24 Sep 2025 17:47:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3FM/mjas9rQiq2CY+FQPy1Pe1iCLSx/qZltQxK4dcuQ="}]},{"Route":"_content/MudBlazor/MudBlazor.min.css.gz","AssetFile":"_content/MudBlazor/MudBlazor.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"65509"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"G6ttMFl4pZQbeXfp7Od0SO3bC9h9rp9m7NW7DgD0a1Q=\""},{"Name":"Last-Modified","Value":"Wed, 24 Sep 2025 17:47:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G6ttMFl4pZQbeXfp7Od0SO3bC9h9rp9m7NW7DgD0a1Q="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js","AssetFile":"_content/MudBlazor/MudBlazor.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"73682"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Qf9/gSPxTxchB08Wi5WXxjPqw2IQvnyVUW27s7cwoUo=\""},{"Name":"Last-Modified","Value":"Tue, 02 Sep 2025 18:25:58 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Qf9/gSPxTxchB08Wi5WXxjPqw2IQvnyVUW27s7cwoUo="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js","AssetFile":"_content/MudBlazor/MudBlazor.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000062952471"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15884"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"qhJtBPrvSKzfmYIXttsCBAyz1XObWORxmjjeuquTVx8=\""},{"Name":"ETag","Value":"W/\"Qf9/gSPxTxchB08Wi5WXxjPqw2IQvnyVUW27s7cwoUo=\""},{"Name":"Last-Modified","Value":"Wed, 24 Sep 2025 17:47:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Qf9/gSPxTxchB08Wi5WXxjPqw2IQvnyVUW27s7cwoUo="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js.gz","AssetFile":"_content/MudBlazor/MudBlazor.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15884"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"qhJtBPrvSKzfmYIXttsCBAyz1XObWORxmjjeuquTVx8=\""},{"Name":"Last-Modified","Value":"Wed, 24 Sep 2025 17:47:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qhJtBPrvSKzfmYIXttsCBAyz1XObWORxmjjeuquTVx8="}]},{"Route":"_content/MudBlazor/MudBlazor.min.lftp6ydp6b.js","AssetFile":"_content/MudBlazor/MudBlazor.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"73682"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Qf9/gSPxTxchB08Wi5WXxjPqw2IQvnyVUW27s7cwoUo=\""},{"Name":"Last-Modified","Value":"Tue, 02 Sep 2025 18:25:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lftp6ydp6b"},{"Name":"integrity","Value":"sha256-Qf9/gSPxTxchB08Wi5WXxjPqw2IQvnyVUW27s7cwoUo="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.js"}]}]} \ No newline at end of file diff --git a/old/OpenArchival.Blazor.CustomComponents/bin/Debug/net9.0/OpenArchival.Blazor.CustomComponents.staticwebassets.runtime.json b/old/OpenArchival.Blazor.CustomComponents/bin/Debug/net9.0/OpenArchival.Blazor.CustomComponents.staticwebassets.runtime.json new file mode 100644 index 0000000..56e34eb --- /dev/null +++ b/old/OpenArchival.Blazor.CustomComponents/bin/Debug/net9.0/OpenArchival.Blazor.CustomComponents.staticwebassets.runtime.json @@ -0,0 +1 @@ +{"ContentRoots":["C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudblazor.extensions\\8.2.4\\staticwebassets\\","C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\obj\\Debug\\net9.0\\compressed\\","C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.12.0\\staticwebassets\\"],"Root":{"Children":{"_content":{"Children":{"CodeBeam.MudBlazor.Extensions":{"Children":{"eraser.cur":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"eraser.cur"},"Patterns":null},"Mud_Secondary.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"Mud_Secondary.png"},"Patterns":null},"MudExtensions.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"MudExtensions.min.css"},"Patterns":null},"MudExtensions.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"y71s3w5f9p-zrxbvx041h.gz"},"Patterns":null},"MudExtensions.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"MudExtensions.min.js"},"Patterns":null},"MudExtensions.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"xa5fgxnhtc-g1x2ayen6w.gz"},"Patterns":null},"pencil.cur":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"pencil.cur"},"Patterns":null}},"Asset":null,"Patterns":null},"MudBlazor":{"Children":{"MudBlazor.min.css":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"MudBlazor.min.css"},"Patterns":null},"MudBlazor.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"tzxjg6is5z-0n6lrtb02s.gz"},"Patterns":null},"MudBlazor.min.js":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"MudBlazor.min.js"},"Patterns":null},"MudBlazor.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"0wz98yz2xy-lftp6ydp6b.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}} \ No newline at end of file diff --git a/old/OpenArchival.Blazor.CustomComponents/bin/Debug/net9.0/OpenArchival.DataAccess.deps.json b/old/OpenArchival.Blazor.CustomComponents/bin/Debug/net9.0/OpenArchival.DataAccess.deps.json new file mode 100644 index 0000000..68112d5 --- /dev/null +++ b/old/OpenArchival.Blazor.CustomComponents/bin/Debug/net9.0/OpenArchival.DataAccess.deps.json @@ -0,0 +1,1305 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v9.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v9.0": { + "OpenArchival.DataAccess/1.0.0": { + "dependencies": { + "EntityFramework": "6.5.1", + "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "9.0.8", + "Microsoft.EntityFrameworkCore": "9.0.8", + "Microsoft.EntityFrameworkCore.Design": "9.0.8", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8", + "Npgsql": "9.0.3", + "Npgsql.EntityFrameworkCore.PostgreSQL": "9.0.4" + }, + "runtime": { + "OpenArchival.DataAccess.dll": {} + } + }, + "EntityFramework/6.5.1": { + "dependencies": { + "Microsoft.CSharp": "4.7.0", + "System.CodeDom": "6.0.0", + "System.ComponentModel.Annotations": "5.0.0", + "System.Configuration.ConfigurationManager": "6.0.1", + "System.Data.SqlClient": "4.8.6" + }, + "runtime": { + "lib/netstandard2.1/EntityFramework.SqlServer.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.500.124.31603" + }, + "lib/netstandard2.1/EntityFramework.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.500.124.31603" + } + } + }, + "Humanizer.Core/2.14.1": { + "runtime": { + "lib/net6.0/Humanizer.dll": { + "assemblyVersion": "2.14.0.0", + "fileVersion": "2.14.1.48190" + } + } + }, + "Microsoft.AspNetCore.Cryptography.Internal/9.0.8": { + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Cryptography.Internal.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36808" + } + } + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/9.0.8": { + "dependencies": { + "Microsoft.AspNetCore.Cryptography.Internal": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36808" + } + } + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore/9.0.8": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Relational": "9.0.8", + "Microsoft.Extensions.Identity.Stores": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": { + "assemblyVersion": "9.0.8.0", + "fileVersion": "9.0.825.36808" + } + } + }, + "Microsoft.Bcl.AsyncInterfaces/7.0.0": { + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "Microsoft.Build.Framework/17.8.3": {}, + "Microsoft.Build.Locator/1.7.8": { + "runtime": { + "lib/net6.0/Microsoft.Build.Locator.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.7.8.28074" + } + } + }, + "Microsoft.CodeAnalysis.Analyzers/3.3.4": {}, + "Microsoft.CodeAnalysis.Common/4.8.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "3.3.4", + "System.Collections.Immutable": "7.0.0", + "System.Reflection.Metadata": "7.0.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + } + }, + "resources": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.CSharp/4.8.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "4.8.0" + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.CSharp.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + } + }, + "resources": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.CSharp.Workspaces/4.8.0": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.CodeAnalysis.CSharp": "4.8.0", + "Microsoft.CodeAnalysis.Common": "4.8.0", + "Microsoft.CodeAnalysis.Workspaces.Common": "4.8.0" + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + } + }, + "resources": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.Workspaces.Common/4.8.0": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.Bcl.AsyncInterfaces": "7.0.0", + "Microsoft.CodeAnalysis.Common": "4.8.0", + "System.Composition": "7.0.0", + "System.IO.Pipelines": "7.0.0", + "System.Threading.Channels": "7.0.0" + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + } + }, + "resources": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.Workspaces.MSBuild/4.8.0": { + "dependencies": { + "Microsoft.Build.Framework": "17.8.3", + "Microsoft.CodeAnalysis.Common": "4.8.0", + "Microsoft.CodeAnalysis.Workspaces.Common": "4.8.0", + "System.Text.Json": "9.0.8" + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + }, + "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + } + }, + "resources": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CSharp/4.7.0": {}, + "Microsoft.EntityFrameworkCore/9.0.8": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "9.0.8", + "Microsoft.EntityFrameworkCore.Analyzers": "9.0.8", + "Microsoft.Extensions.Caching.Memory": "9.0.8", + "Microsoft.Extensions.Logging": "9.0.8" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.dll": { + "assemblyVersion": "9.0.8.0", + "fileVersion": "9.0.825.36802" + } + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/9.0.8": { + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "assemblyVersion": "9.0.8.0", + "fileVersion": "9.0.825.36802" + } + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/9.0.8": {}, + "Microsoft.EntityFrameworkCore.Design/9.0.8": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.Build.Framework": "17.8.3", + "Microsoft.Build.Locator": "1.7.8", + "Microsoft.CodeAnalysis.CSharp": "4.8.0", + "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.8.0", + "Microsoft.CodeAnalysis.Workspaces.MSBuild": "4.8.0", + "Microsoft.EntityFrameworkCore.Relational": "9.0.8", + "Microsoft.Extensions.Caching.Memory": "9.0.8", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.8", + "Microsoft.Extensions.DependencyModel": "9.0.8", + "Microsoft.Extensions.Logging": "9.0.8", + "Mono.TextTemplating": "3.0.0", + "System.Text.Json": "9.0.8" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Design.dll": { + "assemblyVersion": "9.0.8.0", + "fileVersion": "9.0.825.36802" + } + } + }, + "Microsoft.EntityFrameworkCore.Relational/9.0.8": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "9.0.8", + "Microsoft.Extensions.Caching.Memory": "9.0.8", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.8", + "Microsoft.Extensions.Logging": "9.0.8" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "assemblyVersion": "9.0.8.0", + "fileVersion": "9.0.825.36802" + } + } + }, + "Microsoft.Extensions.Caching.Abstractions/9.0.8": { + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Extensions.Caching.Memory/9.0.8": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "9.0.8", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8", + "Microsoft.Extensions.Logging.Abstractions": "9.0.8", + "Microsoft.Extensions.Options": "9.0.8", + "Microsoft.Extensions.Primitives": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Caching.Memory.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.8": { + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Extensions.DependencyInjection/9.0.8": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.8": { + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Extensions.DependencyModel/9.0.8": { + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyModel.dll": { + "assemblyVersion": "9.0.0.8", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Extensions.Identity.Core/9.0.8": { + "dependencies": { + "Microsoft.AspNetCore.Cryptography.KeyDerivation": "9.0.8", + "Microsoft.Extensions.Logging": "9.0.8", + "Microsoft.Extensions.Options": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Identity.Core.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36808" + } + } + }, + "Microsoft.Extensions.Identity.Stores/9.0.8": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "9.0.8", + "Microsoft.Extensions.Identity.Core": "9.0.8", + "Microsoft.Extensions.Logging": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Identity.Stores.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36808" + } + } + }, + "Microsoft.Extensions.Logging/9.0.8": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "9.0.8", + "Microsoft.Extensions.Logging.Abstractions": "9.0.8", + "Microsoft.Extensions.Options": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.8": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Extensions.Options/9.0.8": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8", + "Microsoft.Extensions.Primitives": "9.0.8" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Extensions.Primitives/9.0.8": { + "runtime": { + "lib/net9.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.825.36511" + } + } + }, + "Microsoft.Win32.Registry/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "runtime": { + "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Mono.TextTemplating/3.0.0": { + "dependencies": { + "System.CodeDom": "6.0.0" + }, + "runtime": { + "lib/net6.0/Mono.TextTemplating.dll": { + "assemblyVersion": "3.0.0.0", + "fileVersion": "3.0.0.1" + } + } + }, + "Npgsql/9.0.3": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "9.0.8" + }, + "runtime": { + "lib/net8.0/Npgsql.dll": { + "assemblyVersion": "9.0.3.0", + "fileVersion": "9.0.3.0" + } + } + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/9.0.4": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "9.0.8", + "Microsoft.EntityFrameworkCore.Relational": "9.0.8", + "Npgsql": "9.0.3" + }, + "runtime": { + "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { + "assemblyVersion": "9.0.4.0", + "fileVersion": "9.0.4.0" + } + } + }, + "runtime.native.System.Data.SqlClient.sni/4.7.0": { + "dependencies": { + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0" + } + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "runtimeTargets": { + "runtimes/win-arm64/native/sni.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "4.6.25512.1" + } + } + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "runtimeTargets": { + "runtimes/win-x64/native/sni.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "4.6.25512.1" + } + } + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "runtimeTargets": { + "runtimes/win-x86/native/sni.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "4.6.25512.1" + } + } + }, + "System.CodeDom/6.0.0": { + "runtime": { + "lib/net6.0/System.CodeDom.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Collections.Immutable/7.0.0": {}, + "System.ComponentModel.Annotations/5.0.0": {}, + "System.Composition/7.0.0": { + "dependencies": { + "System.Composition.AttributedModel": "7.0.0", + "System.Composition.Convention": "7.0.0", + "System.Composition.Hosting": "7.0.0", + "System.Composition.Runtime": "7.0.0", + "System.Composition.TypedParts": "7.0.0" + } + }, + "System.Composition.AttributedModel/7.0.0": { + "runtime": { + "lib/net7.0/System.Composition.AttributedModel.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Composition.Convention/7.0.0": { + "dependencies": { + "System.Composition.AttributedModel": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.Composition.Convention.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Composition.Hosting/7.0.0": { + "dependencies": { + "System.Composition.Runtime": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.Composition.Hosting.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Composition.Runtime/7.0.0": { + "runtime": { + "lib/net7.0/System.Composition.Runtime.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Composition.TypedParts/7.0.0": { + "dependencies": { + "System.Composition.AttributedModel": "7.0.0", + "System.Composition.Hosting": "7.0.0", + "System.Composition.Runtime": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.Composition.TypedParts.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Configuration.ConfigurationManager/6.0.1": { + "dependencies": { + "System.Security.Cryptography.ProtectedData": "6.0.0", + "System.Security.Permissions": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.922.41905" + } + } + }, + "System.Data.SqlClient/4.8.6": { + "dependencies": { + "Microsoft.Win32.Registry": "4.7.0", + "System.Security.Principal.Windows": "4.7.0", + "runtime.native.System.Data.SqlClient.sni": "4.7.0" + }, + "runtime": { + "lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "assemblyVersion": "4.6.1.6", + "fileVersion": "4.700.23.52603" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "4.6.1.6", + "fileVersion": "4.700.23.52603" + }, + "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.6.1.6", + "fileVersion": "4.700.23.52603" + } + } + }, + "System.Drawing.Common/6.0.0": { + "dependencies": { + "Microsoft.Win32.SystemEvents": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Drawing.Common.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + }, + "runtimes/win/lib/net6.0/System.Drawing.Common.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.IO.Pipelines/7.0.0": {}, + "System.Reflection.Metadata/7.0.0": { + "dependencies": { + "System.Collections.Immutable": "7.0.0" + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, + "System.Security.AccessControl/6.0.0": {}, + "System.Security.Cryptography.ProtectedData/6.0.0": { + "runtime": { + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Security.Permissions/6.0.0": { + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Windows.Extensions": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Security.Permissions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Security.Principal.Windows/4.7.0": {}, + "System.Text.Json/9.0.8": {}, + "System.Threading.Channels/7.0.0": {}, + "System.Windows.Extensions/6.0.0": { + "dependencies": { + "System.Drawing.Common": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Windows.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + } + } + }, + "libraries": { + "OpenArchival.DataAccess/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "EntityFramework/6.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sQRP2lWg1i3aAGWqdliAM8zrGx7LHMUk+9/MoxUjwfTZYGMXvZ2JYZTlyTm1PqDxvn3c9E3U76TWDON7Y5+CVA==", + "path": "entityframework/6.5.1", + "hashPath": "entityframework.6.5.1.nupkg.sha512" + }, + "Humanizer.Core/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw==", + "path": "humanizer.core/2.14.1", + "hashPath": "humanizer.core.2.14.1.nupkg.sha512" + }, + "Microsoft.AspNetCore.Cryptography.Internal/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NwGO0wh/IjEthBLGA6fWfIiftsNF/paA5RxWp6ji4wWazetJgQ4truR9nU2thAzzFLiXqlg8vGjdVDA8bHu0zA==", + "path": "microsoft.aspnetcore.cryptography.internal/9.0.8", + "hashPath": "microsoft.aspnetcore.cryptography.internal.9.0.8.nupkg.sha512" + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gK70xxXYwwPiXYKYVmLYMuIO5EOGrRtQghmM6PkgtZ/0lgLEjIs//xgSLvZkV/mroNHA1DEqTcqscEj9OzZ1IA==", + "path": "microsoft.aspnetcore.cryptography.keyderivation/9.0.8", + "hashPath": "microsoft.aspnetcore.cryptography.keyderivation.9.0.8.nupkg.sha512" + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-z4q9roxXMQePwFM5tXXZS5sKkU78yYXVkj56NYYx9xKe+mxGkJMV1MaO0GFE6HnnM8bE3Xxhs0hAPw2jKbse6w==", + "path": "microsoft.aspnetcore.identity.entityframeworkcore/9.0.8", + "hashPath": "microsoft.aspnetcore.identity.entityframeworkcore.9.0.8.nupkg.sha512" + }, + "Microsoft.Bcl.AsyncInterfaces/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3aeMZ1N0lJoSyzqiP03hqemtb1BijhsJADdobn/4nsMJ8V1H+CrpuduUe4hlRdx+ikBQju1VGjMD1GJ3Sk05Eg==", + "path": "microsoft.bcl.asyncinterfaces/7.0.0", + "hashPath": "microsoft.bcl.asyncinterfaces.7.0.0.nupkg.sha512" + }, + "Microsoft.Build.Framework/17.8.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NrQZJW8TlKVPx72yltGb8SVz3P5mNRk9fNiD/ao8jRSk48WqIIdCn99q4IjlVmPcruuQ+yLdjNQLL8Rb4c916g==", + "path": "microsoft.build.framework/17.8.3", + "hashPath": "microsoft.build.framework.17.8.3.nupkg.sha512" + }, + "Microsoft.Build.Locator/1.7.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sPy10x527Ph16S2u0yGME4S6ohBKJ69WfjeGG/bvELYeZVmJdKjxgnlL8cJJJLGV/cZIRqSfB12UDB8ICakOog==", + "path": "microsoft.build.locator/1.7.8", + "hashPath": "microsoft.build.locator.1.7.8.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Analyzers/3.3.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AxkxcPR+rheX0SmvpLVIGLhOUXAKG56a64kV9VQZ4y9gR9ZmPXnqZvHJnmwLSwzrEP6junUF11vuc+aqo5r68g==", + "path": "microsoft.codeanalysis.analyzers/3.3.4", + "hashPath": "microsoft.codeanalysis.analyzers.3.3.4.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Common/4.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/jR+e/9aT+BApoQJABlVCKnnggGQbvGh7BKq2/wI1LamxC+LbzhcLj4Vj7gXCofl1n4E521YfF9w0WcASGg/KA==", + "path": "microsoft.codeanalysis.common/4.8.0", + "hashPath": "microsoft.codeanalysis.common.4.8.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.CSharp/4.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+3+qfdb/aaGD8PZRCrsdobbzGs1m9u119SkkJt8e/mk3xLJz/udLtS2T6nY27OTXxBBw10HzAbC8Z9w08VyP/g==", + "path": "microsoft.codeanalysis.csharp/4.8.0", + "hashPath": "microsoft.codeanalysis.csharp.4.8.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.CSharp.Workspaces/4.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3amm4tq4Lo8/BGvg9p3BJh3S9nKq2wqCXfS7138i69TUpo/bD+XvD0hNurpEBtcNZhi1FyutiomKJqVF39ugYA==", + "path": "microsoft.codeanalysis.csharp.workspaces/4.8.0", + "hashPath": "microsoft.codeanalysis.csharp.workspaces.4.8.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Workspaces.Common/4.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LXyV+MJKsKRu3FGJA3OmSk40OUIa/dQCFLOnm5X8MNcujx7hzGu8o+zjXlb/cy5xUdZK2UKYb9YaQ2E8m9QehQ==", + "path": "microsoft.codeanalysis.workspaces.common/4.8.0", + "hashPath": "microsoft.codeanalysis.workspaces.common.4.8.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Workspaces.MSBuild/4.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IEYreI82QZKklp54yPHxZNG9EKSK6nHEkeuf+0Asie9llgS1gp0V1hw7ODG+QyoB7MuAnNQHmeV1Per/ECpv6A==", + "path": "microsoft.codeanalysis.workspaces.msbuild/4.8.0", + "hashPath": "microsoft.codeanalysis.workspaces.msbuild.4.8.0.nupkg.sha512" + }, + "Microsoft.CSharp/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", + "path": "microsoft.csharp/4.7.0", + "hashPath": "microsoft.csharp.4.7.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bNGdPhN762+BIIO5MFYLjafRqkSS1MqLOc/erd55InvLnFxt9H3N5JNsuag1ZHyBor1VtD42U0CHpgqkWeAYgQ==", + "path": "microsoft.entityframeworkcore/9.0.8", + "hashPath": "microsoft.entityframeworkcore.9.0.8.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Abstractions/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-B2yfAIQRRAQ4zvvWqh+HudD+juV3YoLlpXnrog3tU0PM9AFpuq6xo0+mEglN1P43WgdcUiF+65CWBcZe35s15Q==", + "path": "microsoft.entityframeworkcore.abstractions/9.0.8", + "hashPath": "microsoft.entityframeworkcore.abstractions.9.0.8.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Analyzers/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2EYStCXt4Hi9p3J3EYMQbItJDtASJd064Kcs8C8hj8Jt5srILrR9qlaL0Ryvk8NrWQoCQvIELsmiuqLEZMLvGA==", + "path": "microsoft.entityframeworkcore.analyzers/9.0.8", + "hashPath": "microsoft.entityframeworkcore.analyzers.9.0.8.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Design/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-02e8OcoumSUAES3VkXrMT9EnNCUKWJoifn5+8fFEbAtRhKL3xg2a/Mj6rsAUGF7tkYFox6oKzJCn0jbm6b8Lbw==", + "path": "microsoft.entityframeworkcore.design/9.0.8", + "hashPath": "microsoft.entityframeworkcore.design.9.0.8.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Relational/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OVhfyxiHxMvYpwQ8Jy3YZi4koy6TK5/Q7C1oq3z6db+HEGuu6x9L1BX5zDIdJxxlRePMyO4D8ORiXj/D7+MUqw==", + "path": "microsoft.entityframeworkcore.relational/9.0.8", + "hashPath": "microsoft.entityframeworkcore.relational.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Abstractions/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4h7bsVoKoiK+SlPM+euX/ayGnKZhl47pPCidLTiio9xyG+vgVVfcYxcYQgjm0SCrdSxjG0EGIAKF8EFr3G8Ifw==", + "path": "microsoft.extensions.caching.abstractions/9.0.8", + "hashPath": "microsoft.extensions.caching.abstractions.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Memory/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-grR+oPyj8HVn4DT8CFUUdSw2pZZKS13KjytFe4txpHQliGM1GEDotohmjgvyl3hm7RFB3FRqvbouEX3/1ewp5A==", + "path": "microsoft.extensions.caching.memory/9.0.8", + "hashPath": "microsoft.extensions.caching.memory.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yNou2KM35RvzOh4vUFtl2l33rWPvOCoba+nzEDJ+BgD8aOL/jew4WPCibQvntRfOJ2pJU8ARygSMD+pdjvDHuA==", + "path": "microsoft.extensions.configuration.abstractions/9.0.8", + "hashPath": "microsoft.extensions.configuration.abstractions.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JJjI2Fa+QtZcUyuNjbKn04OjIUX5IgFGFu/Xc+qvzh1rXdZHLcnqqVXhR4093bGirTwacRlHiVg1XYI9xum6QQ==", + "path": "microsoft.extensions.dependencyinjection/9.0.8", + "hashPath": "microsoft.extensions.dependencyinjection.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xY3lTjj4+ZYmiKIkyWitddrp1uL5uYiweQjqo4BKBw01ZC4HhcfgLghDpPZcUlppgWAFqFy9SgkiYWOMx365pw==", + "path": "microsoft.extensions.dependencyinjection.abstractions/9.0.8", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyModel/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3CW02zNjyqJ2eORo8Zkznpw6+QvK+tYUKZgKuKuAIYdy73TRFvpaqCwYws1k6/lMSJ7ZqABfWn0/wa5bRsIJ4w==", + "path": "microsoft.extensions.dependencymodel/9.0.8", + "hashPath": "microsoft.extensions.dependencymodel.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Identity.Core/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-giUYz84GHAizDucZp5vWAusDO2s9Jrrg2jQ6HUQNGs5HQMKJVobLPMQSiyg8R4yecH0pIc0QjANh0B/Kw13BHA==", + "path": "microsoft.extensions.identity.core/9.0.8", + "hashPath": "microsoft.extensions.identity.core.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Identity.Stores/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sycaHcq78yI591+KxEdd53a7pJGQEl9H/wDsFkaPNE9g7loyq8vufPcc/9RH3KlGt5joR5Ey7PdoRSrlLjCgJg==", + "path": "microsoft.extensions.identity.stores/9.0.8", + "hashPath": "microsoft.extensions.identity.stores.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Z/7ze+0iheT7FJeZPqJKARYvyC2bmwu3whbm/48BJjdlGVvgDguoCqJIkI/67NkroTYobd5geai1WheNQvWrgA==", + "path": "microsoft.extensions.logging/9.0.8", + "hashPath": "microsoft.extensions.logging.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pYnAffJL7ARD/HCnnPvnFKSIHnTSmWz84WIlT9tPeQ4lHNiu0Az7N/8itihWvcF8sT+VVD5lq8V+ckMzu4SbOw==", + "path": "microsoft.extensions.logging.abstractions/9.0.8", + "hashPath": "microsoft.extensions.logging.abstractions.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Options/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OmTaQ0v4gxGQkehpwWIqPoEiwsPuG/u4HUsbOFoWGx4DKET2AXzopnFe/fE608FIhzc/kcg2p8JdyMRCCUzitQ==", + "path": "microsoft.extensions.options/9.0.8", + "hashPath": "microsoft.extensions.options.9.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tizSIOEsIgSNSSh+hKeUVPK7xmTIjR8s+mJWOu1KXV3htvNQiPMFRMO17OdI1y/4ZApdBVk49u/08QGC9yvLug==", + "path": "microsoft.extensions.primitives/9.0.8", + "hashPath": "microsoft.extensions.primitives.9.0.8.nupkg.sha512" + }, + "Microsoft.Win32.Registry/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", + "path": "microsoft.win32.registry/4.7.0", + "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512" + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==", + "path": "microsoft.win32.systemevents/6.0.0", + "hashPath": "microsoft.win32.systemevents.6.0.0.nupkg.sha512" + }, + "Mono.TextTemplating/3.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YqueG52R/Xej4VVbKuRIodjiAhV0HR/XVbLbNrJhCZnzjnSjgMJ/dCdV0akQQxavX6hp/LC6rqLGLcXeQYU7XA==", + "path": "mono.texttemplating/3.0.0", + "hashPath": "mono.texttemplating.3.0.0.nupkg.sha512" + }, + "Npgsql/9.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tPvY61CxOAWxNsKLEBg+oR646X4Bc8UmyQ/tJszL/7mEmIXQnnBhVJZrZEEUv0Bstu0mEsHZD5At3EO8zQRAYw==", + "path": "npgsql/9.0.3", + "hashPath": "npgsql.9.0.3.nupkg.sha512" + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/9.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mw5vcY2IEc7L+IeGrxpp/J5OSnCcjkjAgJYCm/eD52wpZze8zsSifdqV7zXslSMmfJG2iIUGZyo3KuDtEFKwMQ==", + "path": "npgsql.entityframeworkcore.postgresql/9.0.4", + "hashPath": "npgsql.entityframeworkcore.postgresql.9.0.4.nupkg.sha512" + }, + "runtime.native.System.Data.SqlClient.sni/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9kyFSIdN3T0qjDQ2R0HRXYIhS3l5psBzQi6qqhdLz+SzFyEy4sVxNOke+yyYv8Cu8rPER12c3RDjLT8wF3WBYQ==", + "path": "runtime.native.system.data.sqlclient.sni/4.7.0", + "hashPath": "runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512" + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==", + "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0", + "hashPath": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==", + "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0", + "hashPath": "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==", + "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0", + "hashPath": "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" + }, + "System.CodeDom/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CPc6tWO1LAer3IzfZufDBRL+UZQcj5uS207NHALQzP84Vp/z6wF0Aa0YZImOQY8iStY0A2zI/e3ihKNPfUm8XA==", + "path": "system.codedom/6.0.0", + "hashPath": "system.codedom.6.0.0.nupkg.sha512" + }, + "System.Collections.Immutable/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dQPcs0U1IKnBdRDBkrCTi1FoajSTBzLcVTpjO4MBCMC7f4pDOIPzgBoX8JjG7X6uZRJ8EBxsi8+DR1JuwjnzOQ==", + "path": "system.collections.immutable/7.0.0", + "hashPath": "system.collections.immutable.7.0.0.nupkg.sha512" + }, + "System.ComponentModel.Annotations/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==", + "path": "system.componentmodel.annotations/5.0.0", + "hashPath": "system.componentmodel.annotations.5.0.0.nupkg.sha512" + }, + "System.Composition/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tRwgcAkDd85O8Aq6zHDANzQaq380cek9lbMg5Qma46u5BZXq/G+XvIYmu+UI+BIIZ9zssXLYrkTykEqxxvhcmg==", + "path": "system.composition/7.0.0", + "hashPath": "system.composition.7.0.0.nupkg.sha512" + }, + "System.Composition.AttributedModel/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2QzClqjElKxgI1jK1Jztnq44/8DmSuTSGGahXqQ4TdEV0h9s2KikQZIgcEqVzR7OuWDFPGLHIprBJGQEPr8fAQ==", + "path": "system.composition.attributedmodel/7.0.0", + "hashPath": "system.composition.attributedmodel.7.0.0.nupkg.sha512" + }, + "System.Composition.Convention/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IMhTlpCs4HmlD8B+J8/kWfwX7vrBBOs6xyjSTzBlYSs7W4OET4tlkR/Sg9NG8jkdJH9Mymq0qGdYS1VPqRTBnQ==", + "path": "system.composition.convention/7.0.0", + "hashPath": "system.composition.convention.7.0.0.nupkg.sha512" + }, + "System.Composition.Hosting/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eB6gwN9S+54jCTBJ5bpwMOVerKeUfGGTYCzz3QgDr1P55Gg/Wb27ShfPIhLMjmZ3MoAKu8uUSv6fcCdYJTN7Bg==", + "path": "system.composition.hosting/7.0.0", + "hashPath": "system.composition.hosting.7.0.0.nupkg.sha512" + }, + "System.Composition.Runtime/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aZJ1Zr5Txe925rbo4742XifEyW0MIni1eiUebmcrP3HwLXZ3IbXUj4MFMUH/RmnJOAQiS401leg/2Sz1MkApDw==", + "path": "system.composition.runtime/7.0.0", + "hashPath": "system.composition.runtime.7.0.0.nupkg.sha512" + }, + "System.Composition.TypedParts/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZK0KNPfbtxVceTwh+oHNGUOYV2WNOHReX2AXipuvkURC7s/jPwoWfsu3SnDBDgofqbiWr96geofdQ2erm/KTHg==", + "path": "system.composition.typedparts/7.0.0", + "hashPath": "system.composition.typedparts.7.0.0.nupkg.sha512" + }, + "System.Configuration.ConfigurationManager/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jXw9MlUu/kRfEU0WyTptAVueupqIeE3/rl0EZDMlf8pcvJnitQ8HeVEp69rZdaStXwTV72boi/Bhw8lOeO+U2w==", + "path": "system.configuration.configurationmanager/6.0.1", + "hashPath": "system.configuration.configurationmanager.6.0.1.nupkg.sha512" + }, + "System.Data.SqlClient/4.8.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2Ij/LCaTQRyAi5lAv7UUTV9R2FobC8xN9mE0fXBZohum/xLl8IZVmE98Rq5ugQHjCgTBRKqpXRb4ORulRdA6Ig==", + "path": "system.data.sqlclient/4.8.6", + "hashPath": "system.data.sqlclient.4.8.6.nupkg.sha512" + }, + "System.Drawing.Common/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==", + "path": "system.drawing.common/6.0.0", + "hashPath": "system.drawing.common.6.0.0.nupkg.sha512" + }, + "System.IO.Pipelines/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jRn6JYnNPW6xgQazROBLSfpdoczRw694vO5kKvMcNnpXuolEixUyw6IBuBs2Y2mlSX/LdLvyyWmfXhaI3ND1Yg==", + "path": "system.io.pipelines/7.0.0", + "hashPath": "system.io.pipelines.7.0.0.nupkg.sha512" + }, + "System.Reflection.Metadata/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MclTG61lsD9sYdpNz9xsKBzjsmsfCtcMZYXz/IUr2zlhaTaABonlr1ESeompTgM+Xk+IwtGYU7/voh3YWB/fWw==", + "path": "system.reflection.metadata/7.0.0", + "hashPath": "system.reflection.metadata.7.0.0.nupkg.sha512" + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" + }, + "System.Security.AccessControl/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==", + "path": "system.security.accesscontrol/6.0.0", + "hashPath": "system.security.accesscontrol.6.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.ProtectedData/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==", + "path": "system.security.cryptography.protecteddata/6.0.0", + "hashPath": "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512" + }, + "System.Security.Permissions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==", + "path": "system.security.permissions/6.0.0", + "hashPath": "system.security.permissions.6.0.0.nupkg.sha512" + }, + "System.Security.Principal.Windows/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==", + "path": "system.security.principal.windows/4.7.0", + "hashPath": "system.security.principal.windows.4.7.0.nupkg.sha512" + }, + "System.Text.Json/9.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mIQir9jBqk0V7X0Nw5hzPJZC8DuGdf+2DS3jAVsr6rq5+/VyH5rza0XGcONJUWBrZ+G6BCwNyjWYd9lncBu48A==", + "path": "system.text.json/9.0.8", + "hashPath": "system.text.json.9.0.8.nupkg.sha512" + }, + "System.Threading.Channels/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qmeeYNROMsONF6ndEZcIQ+VxR4Q/TX/7uIVLJqtwIWL7dDWeh0l1UIqgo4wYyjG//5lUNhwkLDSFl+pAWO6oiA==", + "path": "system.threading.channels/7.0.0", + "hashPath": "system.threading.channels.7.0.0.nupkg.sha512" + }, + "System.Windows.Extensions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==", + "path": "system.windows.extensions/6.0.0", + "hashPath": "system.windows.extensions.6.0.0.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/old/OpenArchival.Blazor.CustomComponents/bin/Debug/net9.0/OpenArchival.DataAccess.dll b/old/OpenArchival.Blazor.CustomComponents/bin/Debug/net9.0/OpenArchival.DataAccess.dll new file mode 100644 index 0000000..95e5a6d Binary files /dev/null and b/old/OpenArchival.Blazor.CustomComponents/bin/Debug/net9.0/OpenArchival.DataAccess.dll differ diff --git a/old/OpenArchival.Blazor.CustomComponents/bin/Debug/net9.0/OpenArchival.DataAccess.exe b/old/OpenArchival.Blazor.CustomComponents/bin/Debug/net9.0/OpenArchival.DataAccess.exe new file mode 100644 index 0000000..0caa7a8 Binary files /dev/null and b/old/OpenArchival.Blazor.CustomComponents/bin/Debug/net9.0/OpenArchival.DataAccess.exe differ diff --git a/old/OpenArchival.Blazor.CustomComponents/bin/Debug/net9.0/OpenArchival.DataAccess.pdb b/old/OpenArchival.Blazor.CustomComponents/bin/Debug/net9.0/OpenArchival.DataAccess.pdb new file mode 100644 index 0000000..4e83453 Binary files /dev/null and b/old/OpenArchival.Blazor.CustomComponents/bin/Debug/net9.0/OpenArchival.DataAccess.pdb differ diff --git a/old/OpenArchival.Blazor.CustomComponents/bin/Debug/net9.0/OpenArchival.DataAccess.runtimeconfig.json b/old/OpenArchival.Blazor.CustomComponents/bin/Debug/net9.0/OpenArchival.DataAccess.runtimeconfig.json new file mode 100644 index 0000000..1f6a32f --- /dev/null +++ b/old/OpenArchival.Blazor.CustomComponents/bin/Debug/net9.0/OpenArchival.DataAccess.runtimeconfig.json @@ -0,0 +1,20 @@ +{ + "runtimeOptions": { + "tfm": "net9.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "9.0.0" + }, + { + "name": "Microsoft.AspNetCore.App", + "version": "9.0.0" + } + ], + "configProperties": { + "System.GC.Server": true, + "System.Reflection.NullabilityInfoContext.IsSupported": true, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/old/OpenArchival.Blazor.CustomComponents/bin/Debug/net9.0/OpenArchival.DataAccess.staticwebassets.endpoints.json b/old/OpenArchival.Blazor.CustomComponents/bin/Debug/net9.0/OpenArchival.DataAccess.staticwebassets.endpoints.json new file mode 100644 index 0000000..5576e88 --- /dev/null +++ b/old/OpenArchival.Blazor.CustomComponents/bin/Debug/net9.0/OpenArchival.DataAccess.staticwebassets.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[]} \ No newline at end of file diff --git a/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs b/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs new file mode 100644 index 0000000..feda5e9 --- /dev/null +++ b/old/OpenArchival.Blazor.CustomComponents/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/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArch.4561040F.Up2Date b/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArch.4561040F.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.AssemblyInfo.cs b/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.AssemblyInfo.cs new file mode 100644 index 0000000..81489a6 --- /dev/null +++ b/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// 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("OpenArchival.Blazor.CustomComponents")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+781793a27f2e164808340b1adb5ce70e1800b187")] +[assembly: System.Reflection.AssemblyProductAttribute("OpenArchival.Blazor.CustomComponents")] +[assembly: System.Reflection.AssemblyTitleAttribute("OpenArchival.Blazor.CustomComponents")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.AssemblyInfoInputs.cache b/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.AssemblyInfoInputs.cache new file mode 100644 index 0000000..53e8c32 --- /dev/null +++ b/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +0f150b2c6c42fe6dc150484dc552ff72149942a646208d5d65628a770a14b473 diff --git a/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.GeneratedMSBuildEditorConfig.editorconfig b/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..9b11110 --- /dev/null +++ b/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,36 @@ +is_global = true +build_property.MudDebugAnalyzer = +build_property.MudAllowedAttributePattern = +build_property.MudAllowedAttributeList = +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 +build_property.RootNamespace = OpenArchival.Blazor.CustomComponents +build_property.RootNamespace = OpenArchival.Blazor.CustomComponents +build_property.ProjectDir = C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.RazorLangVersion = 9.0 +build_property.SupportLocalizedComponentNames = +build_property.GenerateRazorMetadataSourceChecksumAttributes = +build_property.MSBuildProjectDirectory = C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents +build_property._RazorSourceGeneratorDebug = +build_property.EffectiveAnalysisLevelStyle = 9.0 +build_property.EnableCodeStyleSeverity = + +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor.CustomComponents/ChipContainer.razor] +build_metadata.AdditionalFiles.TargetPath = Q2hpcENvbnRhaW5lci5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor.CustomComponents/UploadDropBox.razor] +build_metadata.AdditionalFiles.TargetPath = VXBsb2FkRHJvcEJveC5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor.CustomComponents/Areas/MyFeature/Pages/Page1.cshtml] +build_metadata.AdditionalFiles.TargetPath = QXJlYXNcTXlGZWF0dXJlXFBhZ2VzXFBhZ2UxLmNzaHRtbA== +build_metadata.AdditionalFiles.CssScope = diff --git a/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.GlobalUsings.g.cs b/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.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/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.RazorAssemblyInfo.cache b/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.RazorAssemblyInfo.cache new file mode 100644 index 0000000..ecb9c97 --- /dev/null +++ b/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.RazorAssemblyInfo.cache @@ -0,0 +1 @@ +d5ac7ab69059af111e9d7125adeb7b174ca570725d4b64a544cca7bd11ac7ca0 diff --git a/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.RazorAssemblyInfo.cs b/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.RazorAssemblyInfo.cs new file mode 100644 index 0000000..cd3853c --- /dev/null +++ b/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.RazorAssemblyInfo.cs @@ -0,0 +1,18 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ProvideApplicationPartFactoryAttribute("Microsoft.AspNetCore.Mvc.ApplicationParts.ConsolidatedAssemblyApplicationPartFact" + + "ory, Microsoft.AspNetCore.Mvc.Razor")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.assets.cache b/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.assets.cache new file mode 100644 index 0000000..ec84009 Binary files /dev/null and b/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.assets.cache differ diff --git a/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.csproj.AssemblyReference.cache b/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.csproj.AssemblyReference.cache new file mode 100644 index 0000000..0cdc53b Binary files /dev/null and b/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.csproj.AssemblyReference.cache differ diff --git a/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.csproj.BuildWithSkipAnalyzers b/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.csproj.CoreCompileInputs.cache b/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..ad2dd7e --- /dev/null +++ b/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +d1c95df4baf6501159693bc7a8bbcde6df6dfe0af04e22b7be73edf1f31fe102 diff --git a/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.csproj.FileListAbsolute.txt b/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..46dab92 --- /dev/null +++ b/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.csproj.FileListAbsolute.txt @@ -0,0 +1,46 @@ +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\bin\Debug\net9.0\OpenArchival.DataAccess.deps.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\bin\Debug\net9.0\OpenArchival.DataAccess.runtimeconfig.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\bin\Debug\net9.0\OpenArchival.DataAccess.staticwebassets.endpoints.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\bin\Debug\net9.0\OpenArchival.DataAccess.exe +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\bin\Debug\net9.0\OpenArchival.Blazor.CustomComponents.staticwebassets.runtime.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\bin\Debug\net9.0\OpenArchival.Blazor.CustomComponents.staticwebassets.endpoints.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\bin\Debug\net9.0\OpenArchival.Blazor.CustomComponents.deps.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\bin\Debug\net9.0\OpenArchival.Blazor.CustomComponents.runtimeconfig.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\bin\Debug\net9.0\OpenArchival.Blazor.CustomComponents.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\bin\Debug\net9.0\OpenArchival.Blazor.CustomComponents.pdb +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\bin\Debug\net9.0\OpenArchival.DataAccess.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\bin\Debug\net9.0\OpenArchival.DataAccess.pdb +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\OpenArchival.Blazor.CustomComponents.csproj.AssemblyReference.cache +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\rpswa.dswa.cache.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\OpenArchival.Blazor.CustomComponents.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\OpenArchival.Blazor.CustomComponents.AssemblyInfoInputs.cache +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\OpenArchival.Blazor.CustomComponents.AssemblyInfo.cs +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\OpenArchival.Blazor.CustomComponents.csproj.CoreCompileInputs.cache +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\OpenArchival.Blazor.CustomComponents.RazorAssemblyInfo.cache +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\OpenArchival.Blazor.CustomComponents.RazorAssemblyInfo.cs +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\OpenArchival.Blazor.CustomComponents.sourcelink.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\rjimswa.dswa.cache.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\rjsmrazor.dswa.cache.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\rjsmcshtml.dswa.cache.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\scopedcss\bundle\OpenArchival.Blazor.CustomComponents.styles.css +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\compressed\tzxjg6is5z-0n6lrtb02s.gz +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\compressed\0wz98yz2xy-lftp6ydp6b.gz +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\compressed\y71s3w5f9p-zrxbvx041h.gz +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\compressed\xa5fgxnhtc-g1x2ayen6w.gz +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\staticwebassets.build.json.cache +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\staticwebassets.development.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\staticwebassets.build.endpoints.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\staticwebassets\msbuild.OpenArchival.Blazor.CustomComponents.Microsoft.AspNetCore.StaticWebAssets.props +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\staticwebassets\msbuild.OpenArchival.Blazor.CustomComponents.Microsoft.AspNetCore.StaticWebAssetEndpoints.props +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\staticwebassets\msbuild.build.OpenArchival.Blazor.CustomComponents.props +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\staticwebassets\msbuild.buildMultiTargeting.OpenArchival.Blazor.CustomComponents.props +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\staticwebassets\msbuild.buildTransitive.OpenArchival.Blazor.CustomComponents.props +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\staticwebassets.pack.json +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\staticwebassets.upToDateCheck.txt +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\OpenArch.4561040F.Up2Date +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\OpenArchival.Blazor.CustomComponents.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\refint\OpenArchival.Blazor.CustomComponents.dll +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\OpenArchival.Blazor.CustomComponents.pdb +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\OpenArchival.Blazor.CustomComponents.genruntimeconfig.cache +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\ref\OpenArchival.Blazor.CustomComponents.dll diff --git a/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.dll b/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.dll new file mode 100644 index 0000000..c2713a7 Binary files /dev/null and b/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.dll differ diff --git a/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.genruntimeconfig.cache b/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.genruntimeconfig.cache new file mode 100644 index 0000000..7c5c7bb --- /dev/null +++ b/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.genruntimeconfig.cache @@ -0,0 +1 @@ +8382a9175cc270dea9003105300e8f7b19a3481b3f2543d22618376053abc1de diff --git a/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.pdb b/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.pdb new file mode 100644 index 0000000..6611d9d Binary files /dev/null and b/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.pdb differ diff --git a/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.sourcelink.json b/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.sourcelink.json new file mode 100644 index 0000000..bd84b90 --- /dev/null +++ b/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/OpenArchival.Blazor.CustomComponents.sourcelink.json @@ -0,0 +1 @@ +{"documents":{"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\*":"https://raw.githubusercontent.com/vtallen/Open-Archival/781793a27f2e164808340b1adb5ce70e1800b187/*"}} \ No newline at end of file diff --git a/OpenArchival.Blazor/obj/Debug/net9.0/compressed/0wz98yz2xy-lftp6ydp6b.gz b/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/compressed/0wz98yz2xy-lftp6ydp6b.gz similarity index 100% rename from OpenArchival.Blazor/obj/Debug/net9.0/compressed/0wz98yz2xy-lftp6ydp6b.gz rename to old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/compressed/0wz98yz2xy-lftp6ydp6b.gz diff --git a/OpenArchival.Blazor/obj/Debug/net9.0/compressed/tzxjg6is5z-0n6lrtb02s.gz b/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/compressed/tzxjg6is5z-0n6lrtb02s.gz similarity index 100% rename from OpenArchival.Blazor/obj/Debug/net9.0/compressed/tzxjg6is5z-0n6lrtb02s.gz rename to old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/compressed/tzxjg6is5z-0n6lrtb02s.gz diff --git a/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/compressed/xa5fgxnhtc-g1x2ayen6w.gz b/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/compressed/xa5fgxnhtc-g1x2ayen6w.gz new file mode 100644 index 0000000..dffacee Binary files /dev/null and b/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/compressed/xa5fgxnhtc-g1x2ayen6w.gz differ diff --git a/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/compressed/y71s3w5f9p-zrxbvx041h.gz b/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/compressed/y71s3w5f9p-zrxbvx041h.gz new file mode 100644 index 0000000..2bf34b0 Binary files /dev/null and b/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/compressed/y71s3w5f9p-zrxbvx041h.gz differ diff --git a/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/rbcswa.dswa.cache.json b/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/rbcswa.dswa.cache.json new file mode 100644 index 0000000..ae9ac5b --- /dev/null +++ b/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/rbcswa.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"2ilJ2M8+ZdH0swl4cXFj9Ji8kay0R08ISE/fEc+OL0o=","FingerprintPatternsHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["JKyMmYfKm0V3L/mi3zEkkAJK4KND9\u002B/1DLuy4AZAElY=","KIYBu4AwHPXVlNMgH\u002BaCeJjRiHU/a2UtcTsAJQjZxPo=","cLYKQfVQYDHUDYFfbCtIkjq/mGvb45evuViomXaxzc8=","ddz0YRDeL\u002BaBAI1Vp5beZPmdw5r4tCeFYYS\u002BRCuuj20="],"CachedAssets":{"JKyMmYfKm0V3L/mi3zEkkAJK4KND9\u002B/1DLuy4AZAElY=":{"Identity":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\obj\\Debug\\net9.0\\compressed\\tzxjg6is5z-0n6lrtb02s.gz","SourceId":"MudBlazor","SourceType":"Package","ContentRoot":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\obj\\Debug\\net9.0\\compressed\\","BasePath":"_content/MudBlazor","RelativePath":"MudBlazor.min.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.12.0\\staticwebassets\\MudBlazor.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"jmv4m3zpj4","Integrity":"G6ttMFl4pZQbeXfp7Od0SO3bC9h9rp9m7NW7DgD0a1Q=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.12.0\\staticwebassets\\MudBlazor.min.css","FileLength":65509,"LastWriteTime":"2025-09-24T17:47:20.3589461+00:00"},"KIYBu4AwHPXVlNMgH\u002BaCeJjRiHU/a2UtcTsAJQjZxPo=":{"Identity":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\obj\\Debug\\net9.0\\compressed\\0wz98yz2xy-lftp6ydp6b.gz","SourceId":"MudBlazor","SourceType":"Package","ContentRoot":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\obj\\Debug\\net9.0\\compressed\\","BasePath":"_content/MudBlazor","RelativePath":"MudBlazor.min.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.12.0\\staticwebassets\\MudBlazor.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"arwivyvlfd","Integrity":"qhJtBPrvSKzfmYIXttsCBAyz1XObWORxmjjeuquTVx8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.12.0\\staticwebassets\\MudBlazor.min.js","FileLength":15884,"LastWriteTime":"2025-09-24T17:47:20.3445692+00:00"},"cLYKQfVQYDHUDYFfbCtIkjq/mGvb45evuViomXaxzc8=":{"Identity":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\obj\\Debug\\net9.0\\compressed\\y71s3w5f9p-zrxbvx041h.gz","SourceId":"CodeBeam.MudBlazor.Extensions","SourceType":"Package","ContentRoot":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\obj\\Debug\\net9.0\\compressed\\","BasePath":"_content/CodeBeam.MudBlazor.Extensions","RelativePath":"MudExtensions.min.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudblazor.extensions\\8.2.4\\staticwebassets\\MudExtensions.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"hqer92jlo9","Integrity":"WeS03YTc2L4F0UqEze8LyBRFvMQkpkCXs3OWdsWXNp0=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudblazor.extensions\\8.2.4\\staticwebassets\\MudExtensions.min.css","FileLength":4350,"LastWriteTime":"2025-09-24T17:47:20.3411754+00:00"},"ddz0YRDeL\u002BaBAI1Vp5beZPmdw5r4tCeFYYS\u002BRCuuj20=":{"Identity":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\obj\\Debug\\net9.0\\compressed\\xa5fgxnhtc-g1x2ayen6w.gz","SourceId":"CodeBeam.MudBlazor.Extensions","SourceType":"Package","ContentRoot":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\obj\\Debug\\net9.0\\compressed\\","BasePath":"_content/CodeBeam.MudBlazor.Extensions","RelativePath":"MudExtensions.min.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudblazor.extensions\\8.2.4\\staticwebassets\\MudExtensions.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"2ny8080nvo","Integrity":"XkHiI1Y1MqkfLLXku4J4lit63QuWstmIt330t6k052o=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudblazor.extensions\\8.2.4\\staticwebassets\\MudExtensions.min.js","FileLength":1750,"LastWriteTime":"2025-09-24T17:47:20.3411754+00:00"}},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/ref/OpenArchival.Blazor.CustomComponents.dll b/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/ref/OpenArchival.Blazor.CustomComponents.dll new file mode 100644 index 0000000..0348ff0 Binary files /dev/null and b/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/ref/OpenArchival.Blazor.CustomComponents.dll differ diff --git a/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/refint/OpenArchival.Blazor.CustomComponents.dll b/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/refint/OpenArchival.Blazor.CustomComponents.dll new file mode 100644 index 0000000..0348ff0 Binary files /dev/null and b/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/refint/OpenArchival.Blazor.CustomComponents.dll differ diff --git a/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/rjsmcshtml.dswa.cache.json b/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/rjsmcshtml.dswa.cache.json new file mode 100644 index 0000000..419d3d1 --- /dev/null +++ b/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/rjsmcshtml.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"lEU9IK7JHCtiQwSBP/TxPcopW1tWNtXaNJKihxw8m0A=","FingerprintPatternsHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["DcnW3Nme3rNPLAwbMJt8SAc7NtT3s0uMfdyn8pS9wY4=","jhxhndIBeVnh8UxuJCrvJYIm7MWmZd85J9s9o5wXlkY=","2U50UeUXmvocNMe\u002BHlmTkHloBEvoLIKB8dwGnilrdg4="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/rjsmrazor.dswa.cache.json b/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/rjsmrazor.dswa.cache.json new file mode 100644 index 0000000..f45b5f8 --- /dev/null +++ b/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/rjsmrazor.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"hpbkMQ9hakeljxb8W9+Il0Sx7HacuJPv2rysgndHj4c=","FingerprintPatternsHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["DcnW3Nme3rNPLAwbMJt8SAc7NtT3s0uMfdyn8pS9wY4=","jhxhndIBeVnh8UxuJCrvJYIm7MWmZd85J9s9o5wXlkY=","2U50UeUXmvocNMe\u002BHlmTkHloBEvoLIKB8dwGnilrdg4="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/rpswa.dswa.cache.json b/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/rpswa.dswa.cache.json new file mode 100644 index 0000000..a4c22ce --- /dev/null +++ b/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/rpswa.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"vjz3KQm1uI8qugMtsB8o1ithK8Mz7yLsdmt2+RtOpbA=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["DcnW3Nme3rNPLAwbMJt8SAc7NtT3s0uMfdyn8pS9wY4=","\u002BRXYQkR/ylib3AH5TClvaWmdrF3b0iL1N5oXOpzuOPY=","RKQabnTMfWHZHT3Jsdw/TrcWn3wviF/gRpclvEqduvk="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/staticwebassets.build.endpoints.json b/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/staticwebassets.build.endpoints.json new file mode 100644 index 0000000..0589c46 --- /dev/null +++ b/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/staticwebassets.build.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[{"Route":"_content/CodeBeam.MudBlazor.Extensions/MudExtensions.min.css","AssetFile":"_content/CodeBeam.MudBlazor.Extensions/MudExtensions.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"30373"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Qd3vfmrpKweNCIANQayvn3GAwTky2GRAx678f/zrQ0c=\""},{"Name":"Last-Modified","Value":"Sat, 12 Jul 2025 09:34:39 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Qd3vfmrpKweNCIANQayvn3GAwTky2GRAx678f/zrQ0c="}]},{"Route":"_content/CodeBeam.MudBlazor.Extensions/MudExtensions.min.css","AssetFile":"_content/CodeBeam.MudBlazor.Extensions/MudExtensions.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000229832222"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4350"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"WeS03YTc2L4F0UqEze8LyBRFvMQkpkCXs3OWdsWXNp0=\""},{"Name":"ETag","Value":"W/\"Qd3vfmrpKweNCIANQayvn3GAwTky2GRAx678f/zrQ0c=\""},{"Name":"Last-Modified","Value":"Wed, 24 Sep 2025 17:47:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Qd3vfmrpKweNCIANQayvn3GAwTky2GRAx678f/zrQ0c="}]},{"Route":"_content/CodeBeam.MudBlazor.Extensions/MudExtensions.min.css.gz","AssetFile":"_content/CodeBeam.MudBlazor.Extensions/MudExtensions.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"4350"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"WeS03YTc2L4F0UqEze8LyBRFvMQkpkCXs3OWdsWXNp0=\""},{"Name":"Last-Modified","Value":"Wed, 24 Sep 2025 17:47:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WeS03YTc2L4F0UqEze8LyBRFvMQkpkCXs3OWdsWXNp0="}]},{"Route":"_content/CodeBeam.MudBlazor.Extensions/MudExtensions.min.g1x2ayen6w.js","AssetFile":"_content/CodeBeam.MudBlazor.Extensions/MudExtensions.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5438"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"PDrTwptwN1LMCMh9gFmN0gwdQFXI7gU07aR2u1lfRqs=\""},{"Name":"Last-Modified","Value":"Sat, 12 Jul 2025 09:35:02 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"g1x2ayen6w"},{"Name":"integrity","Value":"sha256-PDrTwptwN1LMCMh9gFmN0gwdQFXI7gU07aR2u1lfRqs="},{"Name":"label","Value":"_content/CodeBeam.MudBlazor.Extensions/MudExtensions.min.js"}]},{"Route":"_content/CodeBeam.MudBlazor.Extensions/MudExtensions.min.js","AssetFile":"_content/CodeBeam.MudBlazor.Extensions/MudExtensions.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5438"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"PDrTwptwN1LMCMh9gFmN0gwdQFXI7gU07aR2u1lfRqs=\""},{"Name":"Last-Modified","Value":"Sat, 12 Jul 2025 09:35:02 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PDrTwptwN1LMCMh9gFmN0gwdQFXI7gU07aR2u1lfRqs="}]},{"Route":"_content/CodeBeam.MudBlazor.Extensions/MudExtensions.min.js","AssetFile":"_content/CodeBeam.MudBlazor.Extensions/MudExtensions.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000571102227"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1750"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"XkHiI1Y1MqkfLLXku4J4lit63QuWstmIt330t6k052o=\""},{"Name":"ETag","Value":"W/\"PDrTwptwN1LMCMh9gFmN0gwdQFXI7gU07aR2u1lfRqs=\""},{"Name":"Last-Modified","Value":"Wed, 24 Sep 2025 17:47:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PDrTwptwN1LMCMh9gFmN0gwdQFXI7gU07aR2u1lfRqs="}]},{"Route":"_content/CodeBeam.MudBlazor.Extensions/MudExtensions.min.js.gz","AssetFile":"_content/CodeBeam.MudBlazor.Extensions/MudExtensions.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1750"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"XkHiI1Y1MqkfLLXku4J4lit63QuWstmIt330t6k052o=\""},{"Name":"Last-Modified","Value":"Wed, 24 Sep 2025 17:47:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XkHiI1Y1MqkfLLXku4J4lit63QuWstmIt330t6k052o="}]},{"Route":"_content/CodeBeam.MudBlazor.Extensions/MudExtensions.min.zrxbvx041h.css","AssetFile":"_content/CodeBeam.MudBlazor.Extensions/MudExtensions.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"30373"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Qd3vfmrpKweNCIANQayvn3GAwTky2GRAx678f/zrQ0c=\""},{"Name":"Last-Modified","Value":"Sat, 12 Jul 2025 09:34:39 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zrxbvx041h"},{"Name":"integrity","Value":"sha256-Qd3vfmrpKweNCIANQayvn3GAwTky2GRAx678f/zrQ0c="},{"Name":"label","Value":"_content/CodeBeam.MudBlazor.Extensions/MudExtensions.min.css"}]},{"Route":"_content/CodeBeam.MudBlazor.Extensions/Mud_Secondary.png","AssetFile":"_content/CodeBeam.MudBlazor.Extensions/Mud_Secondary.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4558"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"G3hYUw4Ps9P/IQ3lw2zu96RSZaOf4zU+4QkXkH8Xi3Y=\""},{"Name":"Last-Modified","Value":"Sun, 08 Jun 2025 12:55:27 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G3hYUw4Ps9P/IQ3lw2zu96RSZaOf4zU+4QkXkH8Xi3Y="}]},{"Route":"_content/CodeBeam.MudBlazor.Extensions/Mud_Secondary.tig1qhobl3.png","AssetFile":"_content/CodeBeam.MudBlazor.Extensions/Mud_Secondary.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4558"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"G3hYUw4Ps9P/IQ3lw2zu96RSZaOf4zU+4QkXkH8Xi3Y=\""},{"Name":"Last-Modified","Value":"Sun, 08 Jun 2025 12:55:27 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tig1qhobl3"},{"Name":"integrity","Value":"sha256-G3hYUw4Ps9P/IQ3lw2zu96RSZaOf4zU+4QkXkH8Xi3Y="},{"Name":"label","Value":"_content/CodeBeam.MudBlazor.Extensions/Mud_Secondary.png"}]},{"Route":"_content/CodeBeam.MudBlazor.Extensions/eraser.8puvc5nbz2.cur","AssetFile":"_content/CodeBeam.MudBlazor.Extensions/eraser.cur","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4286"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"1GL+TjmZdDm3eGG+MG1FLkkZF8SOwo3eG/7qsNX0HuU=\""},{"Name":"Last-Modified","Value":"Sun, 08 Jun 2025 12:55:27 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8puvc5nbz2"},{"Name":"integrity","Value":"sha256-1GL+TjmZdDm3eGG+MG1FLkkZF8SOwo3eG/7qsNX0HuU="},{"Name":"label","Value":"_content/CodeBeam.MudBlazor.Extensions/eraser.cur"}]},{"Route":"_content/CodeBeam.MudBlazor.Extensions/eraser.cur","AssetFile":"_content/CodeBeam.MudBlazor.Extensions/eraser.cur","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4286"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"1GL+TjmZdDm3eGG+MG1FLkkZF8SOwo3eG/7qsNX0HuU=\""},{"Name":"Last-Modified","Value":"Sun, 08 Jun 2025 12:55:27 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1GL+TjmZdDm3eGG+MG1FLkkZF8SOwo3eG/7qsNX0HuU="}]},{"Route":"_content/CodeBeam.MudBlazor.Extensions/pencil.cpli8oaqtf.cur","AssetFile":"_content/CodeBeam.MudBlazor.Extensions/pencil.cur","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"326"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"oDnErTJbRIXAeq4Awzx/PNkRW2XA0ClXG7BIA/jTt9E=\""},{"Name":"Last-Modified","Value":"Sun, 08 Jun 2025 12:55:27 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cpli8oaqtf"},{"Name":"integrity","Value":"sha256-oDnErTJbRIXAeq4Awzx/PNkRW2XA0ClXG7BIA/jTt9E="},{"Name":"label","Value":"_content/CodeBeam.MudBlazor.Extensions/pencil.cur"}]},{"Route":"_content/CodeBeam.MudBlazor.Extensions/pencil.cur","AssetFile":"_content/CodeBeam.MudBlazor.Extensions/pencil.cur","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"326"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"oDnErTJbRIXAeq4Awzx/PNkRW2XA0ClXG7BIA/jTt9E=\""},{"Name":"Last-Modified","Value":"Sun, 08 Jun 2025 12:55:27 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-oDnErTJbRIXAeq4Awzx/PNkRW2XA0ClXG7BIA/jTt9E="}]},{"Route":"_content/MudBlazor/MudBlazor.min.0n6lrtb02s.css","AssetFile":"_content/MudBlazor/MudBlazor.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"606258"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"3FM/mjas9rQiq2CY+FQPy1Pe1iCLSx/qZltQxK4dcuQ=\""},{"Name":"Last-Modified","Value":"Tue, 02 Sep 2025 18:25:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0n6lrtb02s"},{"Name":"integrity","Value":"sha256-3FM/mjas9rQiq2CY+FQPy1Pe1iCLSx/qZltQxK4dcuQ="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.css"}]},{"Route":"_content/MudBlazor/MudBlazor.min.css","AssetFile":"_content/MudBlazor/MudBlazor.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"606258"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"3FM/mjas9rQiq2CY+FQPy1Pe1iCLSx/qZltQxK4dcuQ=\""},{"Name":"Last-Modified","Value":"Tue, 02 Sep 2025 18:25:58 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3FM/mjas9rQiq2CY+FQPy1Pe1iCLSx/qZltQxK4dcuQ="}]},{"Route":"_content/MudBlazor/MudBlazor.min.css","AssetFile":"_content/MudBlazor/MudBlazor.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015264845"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"65509"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"G6ttMFl4pZQbeXfp7Od0SO3bC9h9rp9m7NW7DgD0a1Q=\""},{"Name":"ETag","Value":"W/\"3FM/mjas9rQiq2CY+FQPy1Pe1iCLSx/qZltQxK4dcuQ=\""},{"Name":"Last-Modified","Value":"Wed, 24 Sep 2025 17:47:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3FM/mjas9rQiq2CY+FQPy1Pe1iCLSx/qZltQxK4dcuQ="}]},{"Route":"_content/MudBlazor/MudBlazor.min.css.gz","AssetFile":"_content/MudBlazor/MudBlazor.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"65509"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"G6ttMFl4pZQbeXfp7Od0SO3bC9h9rp9m7NW7DgD0a1Q=\""},{"Name":"Last-Modified","Value":"Wed, 24 Sep 2025 17:47:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G6ttMFl4pZQbeXfp7Od0SO3bC9h9rp9m7NW7DgD0a1Q="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js","AssetFile":"_content/MudBlazor/MudBlazor.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"73682"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Qf9/gSPxTxchB08Wi5WXxjPqw2IQvnyVUW27s7cwoUo=\""},{"Name":"Last-Modified","Value":"Tue, 02 Sep 2025 18:25:58 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Qf9/gSPxTxchB08Wi5WXxjPqw2IQvnyVUW27s7cwoUo="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js","AssetFile":"_content/MudBlazor/MudBlazor.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000062952471"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15884"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"qhJtBPrvSKzfmYIXttsCBAyz1XObWORxmjjeuquTVx8=\""},{"Name":"ETag","Value":"W/\"Qf9/gSPxTxchB08Wi5WXxjPqw2IQvnyVUW27s7cwoUo=\""},{"Name":"Last-Modified","Value":"Wed, 24 Sep 2025 17:47:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Qf9/gSPxTxchB08Wi5WXxjPqw2IQvnyVUW27s7cwoUo="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js.gz","AssetFile":"_content/MudBlazor/MudBlazor.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15884"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"qhJtBPrvSKzfmYIXttsCBAyz1XObWORxmjjeuquTVx8=\""},{"Name":"Last-Modified","Value":"Wed, 24 Sep 2025 17:47:20 GMT"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qhJtBPrvSKzfmYIXttsCBAyz1XObWORxmjjeuquTVx8="}]},{"Route":"_content/MudBlazor/MudBlazor.min.lftp6ydp6b.js","AssetFile":"_content/MudBlazor/MudBlazor.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"73682"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Qf9/gSPxTxchB08Wi5WXxjPqw2IQvnyVUW27s7cwoUo=\""},{"Name":"Last-Modified","Value":"Tue, 02 Sep 2025 18:25:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lftp6ydp6b"},{"Name":"integrity","Value":"sha256-Qf9/gSPxTxchB08Wi5WXxjPqw2IQvnyVUW27s7cwoUo="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.js"}]}]} \ No newline at end of file diff --git a/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/staticwebassets.build.json b/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/staticwebassets.build.json new file mode 100644 index 0000000..8a7c41a --- /dev/null +++ b/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/staticwebassets.build.json @@ -0,0 +1 @@ +{"Version":1,"Hash":"AaaKzUDv2YDCHPyoR5Z75brQPzCn7OqSnarOfHDUAhQ=","Source":"OpenArchival.Blazor.CustomComponents","BasePath":"_content/OpenArchival.Blazor.CustomComponents","Mode":"Default","ManifestType":"Build","ReferencedProjectsConfiguration":[{"Identity":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj","Version":2,"Source":"OpenArchival.DataAccess","GetPublishAssetsTargets":"ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems","AdditionalPublishProperties":"Configuration=Debug;Platform=AnyCPU","AdditionalPublishPropertiesToRemove":"TargetFramework","GetBuildAssetsTargets":"GetCurrentProjectBuildStaticWebAssetItems","AdditionalBuildProperties":"Configuration=Debug;Platform=AnyCPU","AdditionalBuildPropertiesToRemove":"TargetFramework"}],"DiscoveryPatterns":[],"Assets":[{"Identity":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudblazor.extensions\\8.2.4\\staticwebassets\\eraser.cur","SourceId":"CodeBeam.MudBlazor.Extensions","SourceType":"Package","ContentRoot":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudblazor.extensions\\8.2.4\\staticwebassets\\","BasePath":"_content/CodeBeam.MudBlazor.Extensions","RelativePath":"eraser.cur","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"8puvc5nbz2","Integrity":"1GL+TjmZdDm3eGG+MG1FLkkZF8SOwo3eG/7qsNX0HuU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudblazor.extensions\\8.2.4\\staticwebassets\\eraser.cur","FileLength":4286,"LastWriteTime":"2025-06-08T12:55:27+00:00"},{"Identity":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudblazor.extensions\\8.2.4\\staticwebassets\\Mud_Secondary.png","SourceId":"CodeBeam.MudBlazor.Extensions","SourceType":"Package","ContentRoot":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudblazor.extensions\\8.2.4\\staticwebassets\\","BasePath":"_content/CodeBeam.MudBlazor.Extensions","RelativePath":"Mud_Secondary.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"tig1qhobl3","Integrity":"G3hYUw4Ps9P/IQ3lw2zu96RSZaOf4zU+4QkXkH8Xi3Y=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudblazor.extensions\\8.2.4\\staticwebassets\\Mud_Secondary.png","FileLength":4558,"LastWriteTime":"2025-06-08T12:55:27+00:00"},{"Identity":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudblazor.extensions\\8.2.4\\staticwebassets\\MudExtensions.min.css","SourceId":"CodeBeam.MudBlazor.Extensions","SourceType":"Package","ContentRoot":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudblazor.extensions\\8.2.4\\staticwebassets\\","BasePath":"_content/CodeBeam.MudBlazor.Extensions","RelativePath":"MudExtensions.min.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"zrxbvx041h","Integrity":"Qd3vfmrpKweNCIANQayvn3GAwTky2GRAx678f/zrQ0c=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudblazor.extensions\\8.2.4\\staticwebassets\\MudExtensions.min.css","FileLength":30373,"LastWriteTime":"2025-07-12T09:34:39+00:00"},{"Identity":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudblazor.extensions\\8.2.4\\staticwebassets\\MudExtensions.min.js","SourceId":"CodeBeam.MudBlazor.Extensions","SourceType":"Package","ContentRoot":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudblazor.extensions\\8.2.4\\staticwebassets\\","BasePath":"_content/CodeBeam.MudBlazor.Extensions","RelativePath":"MudExtensions.min.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"g1x2ayen6w","Integrity":"PDrTwptwN1LMCMh9gFmN0gwdQFXI7gU07aR2u1lfRqs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudblazor.extensions\\8.2.4\\staticwebassets\\MudExtensions.min.js","FileLength":5438,"LastWriteTime":"2025-07-12T09:35:02+00:00"},{"Identity":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudblazor.extensions\\8.2.4\\staticwebassets\\pencil.cur","SourceId":"CodeBeam.MudBlazor.Extensions","SourceType":"Package","ContentRoot":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudblazor.extensions\\8.2.4\\staticwebassets\\","BasePath":"_content/CodeBeam.MudBlazor.Extensions","RelativePath":"pencil.cur","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"cpli8oaqtf","Integrity":"oDnErTJbRIXAeq4Awzx/PNkRW2XA0ClXG7BIA/jTt9E=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudblazor.extensions\\8.2.4\\staticwebassets\\pencil.cur","FileLength":326,"LastWriteTime":"2025-06-08T12:55:27+00:00"},{"Identity":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.12.0\\staticwebassets\\MudBlazor.min.css","SourceId":"MudBlazor","SourceType":"Package","ContentRoot":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.12.0\\staticwebassets\\","BasePath":"_content/MudBlazor","RelativePath":"MudBlazor.min.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"0n6lrtb02s","Integrity":"3FM/mjas9rQiq2CY+FQPy1Pe1iCLSx/qZltQxK4dcuQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.12.0\\staticwebassets\\MudBlazor.min.css","FileLength":606258,"LastWriteTime":"2025-09-02T18:25:58+00:00"},{"Identity":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.12.0\\staticwebassets\\MudBlazor.min.js","SourceId":"MudBlazor","SourceType":"Package","ContentRoot":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.12.0\\staticwebassets\\","BasePath":"_content/MudBlazor","RelativePath":"MudBlazor.min.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"lftp6ydp6b","Integrity":"Qf9/gSPxTxchB08Wi5WXxjPqw2IQvnyVUW27s7cwoUo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.12.0\\staticwebassets\\MudBlazor.min.js","FileLength":73682,"LastWriteTime":"2025-09-02T18:25:58+00:00"},{"Identity":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\obj\\Debug\\net9.0\\compressed\\0wz98yz2xy-lftp6ydp6b.gz","SourceId":"MudBlazor","SourceType":"Package","ContentRoot":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\obj\\Debug\\net9.0\\compressed\\","BasePath":"_content/MudBlazor","RelativePath":"MudBlazor.min.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.12.0\\staticwebassets\\MudBlazor.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"arwivyvlfd","Integrity":"qhJtBPrvSKzfmYIXttsCBAyz1XObWORxmjjeuquTVx8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.12.0\\staticwebassets\\MudBlazor.min.js","FileLength":15884,"LastWriteTime":"2025-09-24T17:47:20+00:00"},{"Identity":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\obj\\Debug\\net9.0\\compressed\\tzxjg6is5z-0n6lrtb02s.gz","SourceId":"MudBlazor","SourceType":"Package","ContentRoot":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\obj\\Debug\\net9.0\\compressed\\","BasePath":"_content/MudBlazor","RelativePath":"MudBlazor.min.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.12.0\\staticwebassets\\MudBlazor.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"jmv4m3zpj4","Integrity":"G6ttMFl4pZQbeXfp7Od0SO3bC9h9rp9m7NW7DgD0a1Q=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.12.0\\staticwebassets\\MudBlazor.min.css","FileLength":65509,"LastWriteTime":"2025-09-24T17:47:20+00:00"},{"Identity":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\obj\\Debug\\net9.0\\compressed\\xa5fgxnhtc-g1x2ayen6w.gz","SourceId":"CodeBeam.MudBlazor.Extensions","SourceType":"Package","ContentRoot":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\obj\\Debug\\net9.0\\compressed\\","BasePath":"_content/CodeBeam.MudBlazor.Extensions","RelativePath":"MudExtensions.min.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudblazor.extensions\\8.2.4\\staticwebassets\\MudExtensions.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"2ny8080nvo","Integrity":"XkHiI1Y1MqkfLLXku4J4lit63QuWstmIt330t6k052o=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudblazor.extensions\\8.2.4\\staticwebassets\\MudExtensions.min.js","FileLength":1750,"LastWriteTime":"2025-09-24T17:47:20+00:00"},{"Identity":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\obj\\Debug\\net9.0\\compressed\\y71s3w5f9p-zrxbvx041h.gz","SourceId":"CodeBeam.MudBlazor.Extensions","SourceType":"Package","ContentRoot":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\obj\\Debug\\net9.0\\compressed\\","BasePath":"_content/CodeBeam.MudBlazor.Extensions","RelativePath":"MudExtensions.min.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudblazor.extensions\\8.2.4\\staticwebassets\\MudExtensions.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"hqer92jlo9","Integrity":"WeS03YTc2L4F0UqEze8LyBRFvMQkpkCXs3OWdsWXNp0=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudblazor.extensions\\8.2.4\\staticwebassets\\MudExtensions.min.css","FileLength":4350,"LastWriteTime":"2025-09-24T17:47:20+00:00"}],"Endpoints":[{"Route":"_content/CodeBeam.MudBlazor.Extensions/eraser.8puvc5nbz2.cur","AssetFile":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudblazor.extensions\\8.2.4\\staticwebassets\\eraser.cur","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4286"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"1GL+TjmZdDm3eGG+MG1FLkkZF8SOwo3eG/7qsNX0HuU=\""},{"Name":"Last-Modified","Value":"Sun, 08 Jun 2025 12:55:27 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"8puvc5nbz2"},{"Name":"integrity","Value":"sha256-1GL+TjmZdDm3eGG+MG1FLkkZF8SOwo3eG/7qsNX0HuU="},{"Name":"label","Value":"_content/CodeBeam.MudBlazor.Extensions/eraser.cur"}]},{"Route":"_content/CodeBeam.MudBlazor.Extensions/eraser.cur","AssetFile":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudblazor.extensions\\8.2.4\\staticwebassets\\eraser.cur","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4286"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"1GL+TjmZdDm3eGG+MG1FLkkZF8SOwo3eG/7qsNX0HuU=\""},{"Name":"Last-Modified","Value":"Sun, 08 Jun 2025 12:55:27 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1GL+TjmZdDm3eGG+MG1FLkkZF8SOwo3eG/7qsNX0HuU="}]},{"Route":"_content/CodeBeam.MudBlazor.Extensions/Mud_Secondary.png","AssetFile":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudblazor.extensions\\8.2.4\\staticwebassets\\Mud_Secondary.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4558"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"G3hYUw4Ps9P/IQ3lw2zu96RSZaOf4zU+4QkXkH8Xi3Y=\""},{"Name":"Last-Modified","Value":"Sun, 08 Jun 2025 12:55:27 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G3hYUw4Ps9P/IQ3lw2zu96RSZaOf4zU+4QkXkH8Xi3Y="}]},{"Route":"_content/CodeBeam.MudBlazor.Extensions/Mud_Secondary.tig1qhobl3.png","AssetFile":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudblazor.extensions\\8.2.4\\staticwebassets\\Mud_Secondary.png","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4558"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"G3hYUw4Ps9P/IQ3lw2zu96RSZaOf4zU+4QkXkH8Xi3Y=\""},{"Name":"Last-Modified","Value":"Sun, 08 Jun 2025 12:55:27 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tig1qhobl3"},{"Name":"integrity","Value":"sha256-G3hYUw4Ps9P/IQ3lw2zu96RSZaOf4zU+4QkXkH8Xi3Y="},{"Name":"label","Value":"_content/CodeBeam.MudBlazor.Extensions/Mud_Secondary.png"}]},{"Route":"_content/CodeBeam.MudBlazor.Extensions/MudExtensions.min.css","AssetFile":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudblazor.extensions\\8.2.4\\staticwebassets\\MudExtensions.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"30373"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Qd3vfmrpKweNCIANQayvn3GAwTky2GRAx678f/zrQ0c=\""},{"Name":"Last-Modified","Value":"Sat, 12 Jul 2025 09:34:39 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Qd3vfmrpKweNCIANQayvn3GAwTky2GRAx678f/zrQ0c="}]},{"Route":"_content/CodeBeam.MudBlazor.Extensions/MudExtensions.min.css","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\obj\\Debug\\net9.0\\compressed\\y71s3w5f9p-zrxbvx041h.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000229832222"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"4350"},{"Name":"ETag","Value":"\"WeS03YTc2L4F0UqEze8LyBRFvMQkpkCXs3OWdsWXNp0=\""},{"Name":"Last-Modified","Value":"Wed, 24 Sep 2025 17:47:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"Qd3vfmrpKweNCIANQayvn3GAwTky2GRAx678f/zrQ0c=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Qd3vfmrpKweNCIANQayvn3GAwTky2GRAx678f/zrQ0c="}]},{"Route":"_content/CodeBeam.MudBlazor.Extensions/MudExtensions.min.css.gz","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\obj\\Debug\\net9.0\\compressed\\y71s3w5f9p-zrxbvx041h.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"4350"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"WeS03YTc2L4F0UqEze8LyBRFvMQkpkCXs3OWdsWXNp0=\""},{"Name":"Last-Modified","Value":"Wed, 24 Sep 2025 17:47:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WeS03YTc2L4F0UqEze8LyBRFvMQkpkCXs3OWdsWXNp0="}]},{"Route":"_content/CodeBeam.MudBlazor.Extensions/MudExtensions.min.g1x2ayen6w.js","AssetFile":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudblazor.extensions\\8.2.4\\staticwebassets\\MudExtensions.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5438"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"PDrTwptwN1LMCMh9gFmN0gwdQFXI7gU07aR2u1lfRqs=\""},{"Name":"Last-Modified","Value":"Sat, 12 Jul 2025 09:35:02 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"g1x2ayen6w"},{"Name":"integrity","Value":"sha256-PDrTwptwN1LMCMh9gFmN0gwdQFXI7gU07aR2u1lfRqs="},{"Name":"label","Value":"_content/CodeBeam.MudBlazor.Extensions/MudExtensions.min.js"}]},{"Route":"_content/CodeBeam.MudBlazor.Extensions/MudExtensions.min.js","AssetFile":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudblazor.extensions\\8.2.4\\staticwebassets\\MudExtensions.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5438"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"PDrTwptwN1LMCMh9gFmN0gwdQFXI7gU07aR2u1lfRqs=\""},{"Name":"Last-Modified","Value":"Sat, 12 Jul 2025 09:35:02 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PDrTwptwN1LMCMh9gFmN0gwdQFXI7gU07aR2u1lfRqs="}]},{"Route":"_content/CodeBeam.MudBlazor.Extensions/MudExtensions.min.js","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\obj\\Debug\\net9.0\\compressed\\xa5fgxnhtc-g1x2ayen6w.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000571102227"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"1750"},{"Name":"ETag","Value":"\"XkHiI1Y1MqkfLLXku4J4lit63QuWstmIt330t6k052o=\""},{"Name":"Last-Modified","Value":"Wed, 24 Sep 2025 17:47:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"W/\"PDrTwptwN1LMCMh9gFmN0gwdQFXI7gU07aR2u1lfRqs=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PDrTwptwN1LMCMh9gFmN0gwdQFXI7gU07aR2u1lfRqs="}]},{"Route":"_content/CodeBeam.MudBlazor.Extensions/MudExtensions.min.js.gz","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\obj\\Debug\\net9.0\\compressed\\xa5fgxnhtc-g1x2ayen6w.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"1750"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"XkHiI1Y1MqkfLLXku4J4lit63QuWstmIt330t6k052o=\""},{"Name":"Last-Modified","Value":"Wed, 24 Sep 2025 17:47:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XkHiI1Y1MqkfLLXku4J4lit63QuWstmIt330t6k052o="}]},{"Route":"_content/CodeBeam.MudBlazor.Extensions/MudExtensions.min.zrxbvx041h.css","AssetFile":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudblazor.extensions\\8.2.4\\staticwebassets\\MudExtensions.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"30373"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Qd3vfmrpKweNCIANQayvn3GAwTky2GRAx678f/zrQ0c=\""},{"Name":"Last-Modified","Value":"Sat, 12 Jul 2025 09:34:39 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zrxbvx041h"},{"Name":"integrity","Value":"sha256-Qd3vfmrpKweNCIANQayvn3GAwTky2GRAx678f/zrQ0c="},{"Name":"label","Value":"_content/CodeBeam.MudBlazor.Extensions/MudExtensions.min.css"}]},{"Route":"_content/CodeBeam.MudBlazor.Extensions/pencil.cpli8oaqtf.cur","AssetFile":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudblazor.extensions\\8.2.4\\staticwebassets\\pencil.cur","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"326"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"oDnErTJbRIXAeq4Awzx/PNkRW2XA0ClXG7BIA/jTt9E=\""},{"Name":"Last-Modified","Value":"Sun, 08 Jun 2025 12:55:27 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cpli8oaqtf"},{"Name":"integrity","Value":"sha256-oDnErTJbRIXAeq4Awzx/PNkRW2XA0ClXG7BIA/jTt9E="},{"Name":"label","Value":"_content/CodeBeam.MudBlazor.Extensions/pencil.cur"}]},{"Route":"_content/CodeBeam.MudBlazor.Extensions/pencil.cur","AssetFile":"C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudblazor.extensions\\8.2.4\\staticwebassets\\pencil.cur","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"326"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\"oDnErTJbRIXAeq4Awzx/PNkRW2XA0ClXG7BIA/jTt9E=\""},{"Name":"Last-Modified","Value":"Sun, 08 Jun 2025 12:55:27 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-oDnErTJbRIXAeq4Awzx/PNkRW2XA0ClXG7BIA/jTt9E="}]},{"Route":"_content/MudBlazor/MudBlazor.min.0n6lrtb02s.css","AssetFile":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.12.0\\staticwebassets\\MudBlazor.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"606258"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"3FM/mjas9rQiq2CY+FQPy1Pe1iCLSx/qZltQxK4dcuQ=\""},{"Name":"Last-Modified","Value":"Tue, 02 Sep 2025 18:25:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0n6lrtb02s"},{"Name":"integrity","Value":"sha256-3FM/mjas9rQiq2CY+FQPy1Pe1iCLSx/qZltQxK4dcuQ="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.css"}]},{"Route":"_content/MudBlazor/MudBlazor.min.css","AssetFile":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.12.0\\staticwebassets\\MudBlazor.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"606258"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"3FM/mjas9rQiq2CY+FQPy1Pe1iCLSx/qZltQxK4dcuQ=\""},{"Name":"Last-Modified","Value":"Tue, 02 Sep 2025 18:25:58 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3FM/mjas9rQiq2CY+FQPy1Pe1iCLSx/qZltQxK4dcuQ="}]},{"Route":"_content/MudBlazor/MudBlazor.min.css","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\obj\\Debug\\net9.0\\compressed\\tzxjg6is5z-0n6lrtb02s.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015264845"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"65509"},{"Name":"ETag","Value":"\"G6ttMFl4pZQbeXfp7Od0SO3bC9h9rp9m7NW7DgD0a1Q=\""},{"Name":"Last-Modified","Value":"Wed, 24 Sep 2025 17:47:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"W/\"3FM/mjas9rQiq2CY+FQPy1Pe1iCLSx/qZltQxK4dcuQ=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3FM/mjas9rQiq2CY+FQPy1Pe1iCLSx/qZltQxK4dcuQ="}]},{"Route":"_content/MudBlazor/MudBlazor.min.css.gz","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\obj\\Debug\\net9.0\\compressed\\tzxjg6is5z-0n6lrtb02s.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"65509"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"G6ttMFl4pZQbeXfp7Od0SO3bC9h9rp9m7NW7DgD0a1Q=\""},{"Name":"Last-Modified","Value":"Wed, 24 Sep 2025 17:47:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G6ttMFl4pZQbeXfp7Od0SO3bC9h9rp9m7NW7DgD0a1Q="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js","AssetFile":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.12.0\\staticwebassets\\MudBlazor.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"73682"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Qf9/gSPxTxchB08Wi5WXxjPqw2IQvnyVUW27s7cwoUo=\""},{"Name":"Last-Modified","Value":"Tue, 02 Sep 2025 18:25:58 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Qf9/gSPxTxchB08Wi5WXxjPqw2IQvnyVUW27s7cwoUo="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\obj\\Debug\\net9.0\\compressed\\0wz98yz2xy-lftp6ydp6b.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000062952471"}],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"15884"},{"Name":"ETag","Value":"\"qhJtBPrvSKzfmYIXttsCBAyz1XObWORxmjjeuquTVx8=\""},{"Name":"Last-Modified","Value":"Wed, 24 Sep 2025 17:47:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"W/\"Qf9/gSPxTxchB08Wi5WXxjPqw2IQvnyVUW27s7cwoUo=\""}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Qf9/gSPxTxchB08Wi5WXxjPqw2IQvnyVUW27s7cwoUo="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js.gz","AssetFile":"C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\obj\\Debug\\net9.0\\compressed\\0wz98yz2xy-lftp6ydp6b.gz","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Content-Length","Value":"15884"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"qhJtBPrvSKzfmYIXttsCBAyz1XObWORxmjjeuquTVx8=\""},{"Name":"Last-Modified","Value":"Wed, 24 Sep 2025 17:47:20 GMT"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Vary","Value":"Content-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qhJtBPrvSKzfmYIXttsCBAyz1XObWORxmjjeuquTVx8="}]},{"Route":"_content/MudBlazor/MudBlazor.min.lftp6ydp6b.js","AssetFile":"C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.12.0\\staticwebassets\\MudBlazor.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"73682"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Qf9/gSPxTxchB08Wi5WXxjPqw2IQvnyVUW27s7cwoUo=\""},{"Name":"Last-Modified","Value":"Tue, 02 Sep 2025 18:25:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lftp6ydp6b"},{"Name":"integrity","Value":"sha256-Qf9/gSPxTxchB08Wi5WXxjPqw2IQvnyVUW27s7cwoUo="},{"Name":"label","Value":"_content/MudBlazor/MudBlazor.min.js"}]}]} \ No newline at end of file diff --git a/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/staticwebassets.build.json.cache b/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/staticwebassets.build.json.cache new file mode 100644 index 0000000..3d9b53f --- /dev/null +++ b/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/staticwebassets.build.json.cache @@ -0,0 +1 @@ +AaaKzUDv2YDCHPyoR5Z75brQPzCn7OqSnarOfHDUAhQ= \ No newline at end of file diff --git a/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/staticwebassets.development.json b/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/staticwebassets.development.json new file mode 100644 index 0000000..56e34eb --- /dev/null +++ b/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/staticwebassets.development.json @@ -0,0 +1 @@ +{"ContentRoots":["C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudblazor.extensions\\8.2.4\\staticwebassets\\","C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\obj\\Debug\\net9.0\\compressed\\","C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.12.0\\staticwebassets\\"],"Root":{"Children":{"_content":{"Children":{"CodeBeam.MudBlazor.Extensions":{"Children":{"eraser.cur":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"eraser.cur"},"Patterns":null},"Mud_Secondary.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"Mud_Secondary.png"},"Patterns":null},"MudExtensions.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"MudExtensions.min.css"},"Patterns":null},"MudExtensions.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"y71s3w5f9p-zrxbvx041h.gz"},"Patterns":null},"MudExtensions.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"MudExtensions.min.js"},"Patterns":null},"MudExtensions.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"xa5fgxnhtc-g1x2ayen6w.gz"},"Patterns":null},"pencil.cur":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"pencil.cur"},"Patterns":null}},"Asset":null,"Patterns":null},"MudBlazor":{"Children":{"MudBlazor.min.css":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"MudBlazor.min.css"},"Patterns":null},"MudBlazor.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"tzxjg6is5z-0n6lrtb02s.gz"},"Patterns":null},"MudBlazor.min.js":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"MudBlazor.min.js"},"Patterns":null},"MudBlazor.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"0wz98yz2xy-lftp6ydp6b.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}} \ No newline at end of file diff --git a/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/staticwebassets.references.upToDateCheck.txt b/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/staticwebassets.references.upToDateCheck.txt new file mode 100644 index 0000000..c901800 --- /dev/null +++ b/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/staticwebassets.references.upToDateCheck.txt @@ -0,0 +1 @@ +C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json diff --git a/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/staticwebassets.removed.txt b/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/staticwebassets.removed.txt new file mode 100644 index 0000000..e69de29 diff --git a/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/staticwebassets/msbuild.build.OpenArchival.Blazor.CustomComponents.props b/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/staticwebassets/msbuild.build.OpenArchival.Blazor.CustomComponents.props new file mode 100644 index 0000000..ddaed44 --- /dev/null +++ b/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/staticwebassets/msbuild.build.OpenArchival.Blazor.CustomComponents.props @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/staticwebassets/msbuild.buildMultiTargeting.OpenArchival.Blazor.CustomComponents.props b/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/staticwebassets/msbuild.buildMultiTargeting.OpenArchival.Blazor.CustomComponents.props new file mode 100644 index 0000000..bb29b3b --- /dev/null +++ b/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/staticwebassets/msbuild.buildMultiTargeting.OpenArchival.Blazor.CustomComponents.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/staticwebassets/msbuild.buildTransitive.OpenArchival.Blazor.CustomComponents.props b/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/staticwebassets/msbuild.buildTransitive.OpenArchival.Blazor.CustomComponents.props new file mode 100644 index 0000000..61b4923 --- /dev/null +++ b/old/OpenArchival.Blazor.CustomComponents/obj/Debug/net9.0/staticwebassets/msbuild.buildTransitive.OpenArchival.Blazor.CustomComponents.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/old/OpenArchival.Blazor.CustomComponents/obj/OpenArchival.Blazor.CustomComponents.csproj.nuget.dgspec.json b/old/OpenArchival.Blazor.CustomComponents/obj/OpenArchival.Blazor.CustomComponents.csproj.nuget.dgspec.json new file mode 100644 index 0000000..33f2d48 --- /dev/null +++ b/old/OpenArchival.Blazor.CustomComponents/obj/OpenArchival.Blazor.CustomComponents.csproj.nuget.dgspec.json @@ -0,0 +1,192 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\OpenArchival.Blazor.CustomComponents.csproj": {} + }, + "projects": { + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\OpenArchival.Blazor.CustomComponents.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\OpenArchival.Blazor.CustomComponents.csproj", + "projectName": "OpenArchival.Blazor.CustomComponents", + "projectPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\OpenArchival.Blazor.CustomComponents.csproj", + "packagesPath": "C:\\Users\\vtall\\.nuget\\packages\\", + "outputPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\NuGet.Config", + "C:\\Users\\vtall\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net9.0" + ], + "sources": { + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "projectReferences": { + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj": { + "projectPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "9.0.300" + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "dependencies": { + "CodeBeam.MudBlazor.Extensions": { + "target": "Package", + "version": "[8.2.4, )" + }, + "MudBlazor": { + "target": "Package", + "version": "[8.12.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.304/PortableRuntimeIdentifierGraph.json" + } + } + }, + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj", + "projectName": "OpenArchival.DataAccess", + "projectPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj", + "packagesPath": "C:\\Users\\vtall\\.nuget\\packages\\", + "outputPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\NuGet.Config", + "C:\\Users\\vtall\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net9.0" + ], + "sources": { + "C:\\Program Files\\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": { + "EntityFramework": { + "target": "Package", + "version": "[6.5.1, )" + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore": { + "target": "Package", + "version": "[9.0.8, )" + }, + "Microsoft.EntityFrameworkCore": { + "target": "Package", + "version": "[9.0.8, )" + }, + "Microsoft.EntityFrameworkCore.Design": { + "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", + "suppressParent": "All", + "target": "Package", + "version": "[9.0.8, )" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions": { + "target": "Package", + "version": "[9.0.8, )" + }, + "Npgsql": { + "target": "Package", + "version": "[9.0.3, )" + }, + "Npgsql.EntityFrameworkCore.PostgreSQL": { + "target": "Package", + "version": "[9.0.4, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.304/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/old/OpenArchival.Blazor.CustomComponents/obj/OpenArchival.Blazor.CustomComponents.csproj.nuget.g.props b/old/OpenArchival.Blazor.CustomComponents/obj/OpenArchival.Blazor.CustomComponents.csproj.nuget.g.props new file mode 100644 index 0000000..c0d8e16 --- /dev/null +++ b/old/OpenArchival.Blazor.CustomComponents/obj/OpenArchival.Blazor.CustomComponents.csproj.nuget.g.props @@ -0,0 +1,26 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\vtall\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + PackageReference + 6.14.1 + + + + + + + + + + + + + C:\Users\vtall\.nuget\packages\entityframework\6.5.1 + C:\Users\vtall\.nuget\packages\buildbundlerminifier\3.2.449 + + \ No newline at end of file diff --git a/old/OpenArchival.Blazor.CustomComponents/obj/OpenArchival.Blazor.CustomComponents.csproj.nuget.g.targets b/old/OpenArchival.Blazor.CustomComponents/obj/OpenArchival.Blazor.CustomComponents.csproj.nuget.g.targets new file mode 100644 index 0000000..7cdbad5 --- /dev/null +++ b/old/OpenArchival.Blazor.CustomComponents/obj/OpenArchival.Blazor.CustomComponents.csproj.nuget.g.targets @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/old/OpenArchival.Blazor.CustomComponents/obj/Release/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs b/old/OpenArchival.Blazor.CustomComponents/obj/Release/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs new file mode 100644 index 0000000..feda5e9 --- /dev/null +++ b/old/OpenArchival.Blazor.CustomComponents/obj/Release/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/old/OpenArchival.Blazor.CustomComponents/obj/Release/net9.0/OpenArchival.Blazor.CustomComponents.AssemblyInfo.cs b/old/OpenArchival.Blazor.CustomComponents/obj/Release/net9.0/OpenArchival.Blazor.CustomComponents.AssemblyInfo.cs new file mode 100644 index 0000000..14db676 --- /dev/null +++ b/old/OpenArchival.Blazor.CustomComponents/obj/Release/net9.0/OpenArchival.Blazor.CustomComponents.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// 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("OpenArchival.Blazor.CustomComponents")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+781793a27f2e164808340b1adb5ce70e1800b187")] +[assembly: System.Reflection.AssemblyProductAttribute("OpenArchival.Blazor.CustomComponents")] +[assembly: System.Reflection.AssemblyTitleAttribute("OpenArchival.Blazor.CustomComponents")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/old/OpenArchival.Blazor.CustomComponents/obj/Release/net9.0/OpenArchival.Blazor.CustomComponents.AssemblyInfoInputs.cache b/old/OpenArchival.Blazor.CustomComponents/obj/Release/net9.0/OpenArchival.Blazor.CustomComponents.AssemblyInfoInputs.cache new file mode 100644 index 0000000..258a0ee --- /dev/null +++ b/old/OpenArchival.Blazor.CustomComponents/obj/Release/net9.0/OpenArchival.Blazor.CustomComponents.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +7a347bacb5d18ffb8b0ea17fe205cf495975c72521dc3e59fab2f33e1a28ce44 diff --git a/old/OpenArchival.Blazor.CustomComponents/obj/Release/net9.0/OpenArchival.Blazor.CustomComponents.GeneratedMSBuildEditorConfig.editorconfig b/old/OpenArchival.Blazor.CustomComponents/obj/Release/net9.0/OpenArchival.Blazor.CustomComponents.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..9b11110 --- /dev/null +++ b/old/OpenArchival.Blazor.CustomComponents/obj/Release/net9.0/OpenArchival.Blazor.CustomComponents.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,36 @@ +is_global = true +build_property.MudDebugAnalyzer = +build_property.MudAllowedAttributePattern = +build_property.MudAllowedAttributeList = +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 +build_property.RootNamespace = OpenArchival.Blazor.CustomComponents +build_property.RootNamespace = OpenArchival.Blazor.CustomComponents +build_property.ProjectDir = C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.RazorLangVersion = 9.0 +build_property.SupportLocalizedComponentNames = +build_property.GenerateRazorMetadataSourceChecksumAttributes = +build_property.MSBuildProjectDirectory = C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.Blazor.CustomComponents +build_property._RazorSourceGeneratorDebug = +build_property.EffectiveAnalysisLevelStyle = 9.0 +build_property.EnableCodeStyleSeverity = + +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor.CustomComponents/ChipContainer.razor] +build_metadata.AdditionalFiles.TargetPath = Q2hpcENvbnRhaW5lci5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor.CustomComponents/UploadDropBox.razor] +build_metadata.AdditionalFiles.TargetPath = VXBsb2FkRHJvcEJveC5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/vtall/source/repos/vtallen/Open-Archival/OpenArchival.Blazor.CustomComponents/Areas/MyFeature/Pages/Page1.cshtml] +build_metadata.AdditionalFiles.TargetPath = QXJlYXNcTXlGZWF0dXJlXFBhZ2VzXFBhZ2UxLmNzaHRtbA== +build_metadata.AdditionalFiles.CssScope = diff --git a/old/OpenArchival.Blazor.CustomComponents/obj/Release/net9.0/OpenArchival.Blazor.CustomComponents.GlobalUsings.g.cs b/old/OpenArchival.Blazor.CustomComponents/obj/Release/net9.0/OpenArchival.Blazor.CustomComponents.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/old/OpenArchival.Blazor.CustomComponents/obj/Release/net9.0/OpenArchival.Blazor.CustomComponents.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/old/OpenArchival.Blazor.CustomComponents/obj/Release/net9.0/OpenArchival.Blazor.CustomComponents.RazorAssemblyInfo.cache b/old/OpenArchival.Blazor.CustomComponents/obj/Release/net9.0/OpenArchival.Blazor.CustomComponents.RazorAssemblyInfo.cache new file mode 100644 index 0000000..ecb9c97 --- /dev/null +++ b/old/OpenArchival.Blazor.CustomComponents/obj/Release/net9.0/OpenArchival.Blazor.CustomComponents.RazorAssemblyInfo.cache @@ -0,0 +1 @@ +d5ac7ab69059af111e9d7125adeb7b174ca570725d4b64a544cca7bd11ac7ca0 diff --git a/old/OpenArchival.Blazor.CustomComponents/obj/Release/net9.0/OpenArchival.Blazor.CustomComponents.RazorAssemblyInfo.cs b/old/OpenArchival.Blazor.CustomComponents/obj/Release/net9.0/OpenArchival.Blazor.CustomComponents.RazorAssemblyInfo.cs new file mode 100644 index 0000000..cd3853c --- /dev/null +++ b/old/OpenArchival.Blazor.CustomComponents/obj/Release/net9.0/OpenArchival.Blazor.CustomComponents.RazorAssemblyInfo.cs @@ -0,0 +1,18 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ProvideApplicationPartFactoryAttribute("Microsoft.AspNetCore.Mvc.ApplicationParts.ConsolidatedAssemblyApplicationPartFact" + + "ory, Microsoft.AspNetCore.Mvc.Razor")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/old/OpenArchival.Blazor.CustomComponents/obj/Release/net9.0/OpenArchival.Blazor.CustomComponents.assets.cache b/old/OpenArchival.Blazor.CustomComponents/obj/Release/net9.0/OpenArchival.Blazor.CustomComponents.assets.cache new file mode 100644 index 0000000..5cb70b0 Binary files /dev/null and b/old/OpenArchival.Blazor.CustomComponents/obj/Release/net9.0/OpenArchival.Blazor.CustomComponents.assets.cache differ diff --git a/old/OpenArchival.Blazor.CustomComponents/obj/Release/net9.0/OpenArchival.Blazor.CustomComponents.csproj.AssemblyReference.cache b/old/OpenArchival.Blazor.CustomComponents/obj/Release/net9.0/OpenArchival.Blazor.CustomComponents.csproj.AssemblyReference.cache new file mode 100644 index 0000000..c2e8508 Binary files /dev/null and b/old/OpenArchival.Blazor.CustomComponents/obj/Release/net9.0/OpenArchival.Blazor.CustomComponents.csproj.AssemblyReference.cache differ diff --git a/old/OpenArchival.Blazor.CustomComponents/obj/project.assets.json b/old/OpenArchival.Blazor.CustomComponents/obj/project.assets.json new file mode 100644 index 0000000..6b47482 --- /dev/null +++ b/old/OpenArchival.Blazor.CustomComponents/obj/project.assets.json @@ -0,0 +1,2579 @@ +{ + "version": 3, + "targets": { + "net9.0": { + "BuildBundlerMinifier/3.2.449": { + "type": "package", + "build": { + "build/_._": {} + } + }, + "CodeBeam.MudBlazor.Extensions/8.2.4": { + "type": "package", + "dependencies": { + "BuildBundlerMinifier": "3.2.449", + "CsvHelper": "33.0.1", + "Microsoft.AspNetCore.Components": "9.0.7", + "Microsoft.AspNetCore.Components.Web": "9.0.7", + "MudBlazor": "8.0.0", + "ZXing.Net": "0.16.9" + }, + "compile": { + "lib/net9.0/CodeBeam.MudBlazor.Extensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/CodeBeam.MudBlazor.Extensions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/CodeBeam.MudBlazor.Extensions.props": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/CodeBeam.MudBlazor.Extensions.props": {} + } + }, + "CsvHelper/33.0.1": { + "type": "package", + "compile": { + "lib/net8.0/CsvHelper.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/CsvHelper.dll": { + "related": ".xml" + } + } + }, + "EntityFramework/6.5.1": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.7.0", + "System.CodeDom": "6.0.0", + "System.ComponentModel.Annotations": "5.0.0", + "System.Configuration.ConfigurationManager": "6.0.1", + "System.Data.SqlClient": "4.8.6" + }, + "compile": { + "lib/netstandard2.1/EntityFramework.SqlServer.dll": { + "related": ".xml" + }, + "lib/netstandard2.1/EntityFramework.dll": { + "related": ".SqlServer.xml;.xml" + } + }, + "runtime": { + "lib/netstandard2.1/EntityFramework.SqlServer.dll": { + "related": ".xml" + }, + "lib/netstandard2.1/EntityFramework.dll": { + "related": ".SqlServer.xml;.xml" + } + }, + "build": { + "buildTransitive/net6.0/EntityFramework.props": {}, + "buildTransitive/net6.0/EntityFramework.targets": {} + } + }, + "Microsoft.AspNetCore.Authorization/9.0.7": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Metadata": "9.0.7", + "Microsoft.Extensions.Logging.Abstractions": "9.0.7", + "Microsoft.Extensions.Options": "9.0.7" + }, + "compile": { + "lib/net9.0/Microsoft.AspNetCore.Authorization.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Authorization.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Components/9.0.7": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Authorization": "9.0.7", + "Microsoft.AspNetCore.Components.Analyzers": "9.0.7" + }, + "compile": { + "lib/net9.0/Microsoft.AspNetCore.Components.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Components.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Components.Analyzers/9.0.7": { + "type": "package", + "build": { + "buildTransitive/netstandard2.0/Microsoft.AspNetCore.Components.Analyzers.targets": {} + } + }, + "Microsoft.AspNetCore.Components.Forms/9.0.7": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Components": "9.0.7" + }, + "compile": { + "lib/net9.0/Microsoft.AspNetCore.Components.Forms.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Components.Forms.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Components.Web/9.0.7": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Components": "9.0.7", + "Microsoft.AspNetCore.Components.Forms": "9.0.7", + "Microsoft.Extensions.DependencyInjection": "9.0.7", + "Microsoft.Extensions.Primitives": "9.0.7", + "Microsoft.JSInterop": "9.0.7" + }, + "compile": { + "lib/net9.0/Microsoft.AspNetCore.Components.Web.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Components.Web.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Cryptography.Internal/9.0.8": { + "type": "package", + "compile": { + "lib/net9.0/Microsoft.AspNetCore.Cryptography.Internal.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Cryptography.Internal.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Cryptography.Internal": "9.0.8" + }, + "compile": { + "lib/net9.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore.Relational": "9.0.8", + "Microsoft.Extensions.Identity.Stores": "9.0.8" + }, + "compile": { + "lib/net9.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Metadata/9.0.7": { + "type": "package", + "compile": { + "lib/net9.0/Microsoft.AspNetCore.Metadata.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Metadata.dll": { + "related": ".xml" + } + } + }, + "Microsoft.CSharp/4.7.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "Microsoft.EntityFrameworkCore/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "9.0.8", + "Microsoft.EntityFrameworkCore.Analyzers": "9.0.8", + "Microsoft.Extensions.Caching.Memory": "9.0.8", + "Microsoft.Extensions.Logging": "9.0.8" + }, + "compile": { + "lib/net8.0/Microsoft.EntityFrameworkCore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.EntityFrameworkCore.props": {} + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/9.0.8": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/9.0.8": { + "type": "package" + }, + "Microsoft.EntityFrameworkCore.Relational/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore": "9.0.8", + "Microsoft.Extensions.Caching.Memory": "9.0.8", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.8", + "Microsoft.Extensions.Logging": "9.0.8" + }, + "compile": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Caching.Abstractions/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.8" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Caching.Memory/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "9.0.8", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8", + "Microsoft.Extensions.Logging.Abstractions": "9.0.8", + "Microsoft.Extensions.Options": "9.0.8", + "Microsoft.Extensions.Primitives": "9.0.8" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Caching.Memory.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Caching.Memory.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.8" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.8": { + "type": "package", + "compile": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Identity.Core/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Cryptography.KeyDerivation": "9.0.8", + "Microsoft.Extensions.Logging": "9.0.8", + "Microsoft.Extensions.Options": "9.0.8" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Identity.Core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Identity.Core.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Identity.Stores/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "9.0.8", + "Microsoft.Extensions.Identity.Core": "9.0.8", + "Microsoft.Extensions.Logging": "9.0.8" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Identity.Stores.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Identity.Stores.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Localization/9.0.1": { + "type": "package", + "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" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Localization.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Localization.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Localization.Abstractions/9.0.1": { + "type": "package", + "compile": { + "lib/net9.0/Microsoft.Extensions.Localization.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Localization.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Logging/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "9.0.8", + "Microsoft.Extensions.Logging.Abstractions": "9.0.8", + "Microsoft.Extensions.Options": "9.0.8" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.Options/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8", + "Microsoft.Extensions.Primitives": "9.0.8" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.Extensions.Options.targets": {} + } + }, + "Microsoft.Extensions.Primitives/9.0.8": { + "type": "package", + "compile": { + "lib/net9.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.JSInterop/9.0.7": { + "type": "package", + "compile": { + "lib/net9.0/Microsoft.JSInterop.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.JSInterop.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Win32.Registry/4.7.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "MudBlazor/8.12.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Components": "9.0.1", + "Microsoft.AspNetCore.Components.Web": "9.0.1", + "Microsoft.Extensions.Localization": "9.0.1" + }, + "compile": { + "lib/net9.0/MudBlazor.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/MudBlazor.dll": { + "related": ".xml" + } + }, + "build": { + "build/MudBlazor.targets": {}, + "buildTransitive/MudBlazor.props": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/MudBlazor.props": {} + } + }, + "Npgsql/9.0.3": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "8.0.2" + }, + "compile": { + "lib/net8.0/Npgsql.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Npgsql.dll": { + "related": ".xml" + } + } + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/9.0.4": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore": "[9.0.1, 10.0.0)", + "Microsoft.EntityFrameworkCore.Relational": "[9.0.1, 10.0.0)", + "Npgsql": "9.0.3" + }, + "compile": { + "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { + "related": ".xml" + } + } + }, + "runtime.native.System.Data.SqlClient.sni/4.7.0": { + "type": "package", + "dependencies": { + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0" + } + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "runtimeTargets": { + "runtimes/win-arm64/native/sni.dll": { + "assetType": "native", + "rid": "win-arm64" + } + } + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "runtimeTargets": { + "runtimes/win-x64/native/sni.dll": { + "assetType": "native", + "rid": "win-x64" + } + } + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "runtimeTargets": { + "runtimes/win-x86/native/sni.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "System.CodeDom/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.CodeDom.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.CodeDom.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.ComponentModel.Annotations/5.0.0": { + "type": "package", + "compile": { + "ref/netstandard2.1/System.ComponentModel.Annotations.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/System.ComponentModel.Annotations.dll": { + "related": ".xml" + } + } + }, + "System.Configuration.ConfigurationManager/6.0.1": { + "type": "package", + "dependencies": { + "System.Security.Cryptography.ProtectedData": "6.0.0", + "System.Security.Permissions": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Configuration.ConfigurationManager.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Configuration.ConfigurationManager.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Data.SqlClient/4.8.6": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Registry": "4.7.0", + "System.Security.Principal.Windows": "4.7.0", + "runtime.native.System.Data.SqlClient.sni": "4.7.0" + }, + "compile": { + "ref/netcoreapp2.1/System.Data.SqlClient.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Drawing.Common/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Win32.SystemEvents": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Drawing.Common.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Drawing.Common.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/net6.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.AccessControl/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Security.AccessControl.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Security.AccessControl.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Security.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.ProtectedData/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Permissions/6.0.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Windows.Extensions": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Security.Permissions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Security.Permissions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Security.Principal.Windows/4.7.0": { + "type": "package", + "compile": { + "ref/netcoreapp3.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Security.Principal.Windows.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Windows.Extensions/6.0.0": { + "type": "package", + "dependencies": { + "System.Drawing.Common": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Windows.Extensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Windows.Extensions.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "ZXing.Net/0.16.9": { + "type": "package", + "compile": { + "lib/net7.0/zxing.dll": { + "related": ".XML" + } + }, + "runtime": { + "lib/net7.0/zxing.dll": { + "related": ".XML" + } + } + }, + "OpenArchival.DataAccess/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v9.0", + "dependencies": { + "EntityFramework": "6.5.1", + "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "9.0.8", + "Microsoft.EntityFrameworkCore": "9.0.8", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8", + "Npgsql": "9.0.3", + "Npgsql.EntityFrameworkCore.PostgreSQL": "9.0.4" + }, + "compile": { + "bin/placeholder/OpenArchival.DataAccess.dll": {} + }, + "runtime": { + "bin/placeholder/OpenArchival.DataAccess.dll": {} + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + } + } + }, + "libraries": { + "BuildBundlerMinifier/3.2.449": { + "sha512": "uA9sYDy4VepL3xwzBTLcP2LyuVYMt0ZIT3gaSiXvGoX15Ob+rOP+hGydhevlSVd+rFo+Y+VQFEHDuWU8HBW+XA==", + "type": "package", + "path": "buildbundlerminifier/3.2.449", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/BuildBundlerMinifier.targets", + "buildbundlerminifier.3.2.449.nupkg.sha512", + "buildbundlerminifier.nuspec", + "tools/net46/BundlerMinifier.dll", + "tools/net46/NUglify.dll", + "tools/net46/Newtonsoft.Json.dll", + "tools/netcoreapp2.0/BundlerMinifier.dll", + "tools/netcoreapp2.0/NUglify.dll", + "tools/netcoreapp2.0/Newtonsoft.Json.dll", + "tools/netcoreapp3.0/BundlerMinifier.dll", + "tools/netcoreapp3.0/NUglify.dll", + "tools/netcoreapp3.0/Newtonsoft.Json.dll", + "tools/netcoreapp3.1/BundlerMinifier.dll", + "tools/netcoreapp3.1/NUglify.dll", + "tools/netcoreapp3.1/Newtonsoft.Json.dll", + "tools/netstandard1.3/BundlerMinifier.dll", + "tools/netstandard1.3/NUglify.dll", + "tools/netstandard1.3/Newtonsoft.Json.dll" + ] + }, + "CodeBeam.MudBlazor.Extensions/8.2.4": { + "sha512": "IaQoIcREfkHq8VUxFDZQrK69blNw+0FwTjC8JGHhhSGugJZ3UFOjhpYYAhiU/1Eue3PXySLXzJFXzsD/hIArVw==", + "type": "package", + "path": "codebeam.mudblazor.extensions/8.2.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Mud_Secondary.png", + "build/CodeBeam.MudBlazor.Extensions.props", + "build/Microsoft.AspNetCore.StaticWebAssetEndpoints.props", + "build/Microsoft.AspNetCore.StaticWebAssets.props", + "buildMultiTargeting/CodeBeam.MudBlazor.Extensions.props", + "buildTransitive/CodeBeam.MudBlazor.Extensions.props", + "codebeam.mudblazor.extensions.8.2.4.nupkg.sha512", + "codebeam.mudblazor.extensions.nuspec", + "lib/net8.0/CodeBeam.MudBlazor.Extensions.dll", + "lib/net8.0/CodeBeam.MudBlazor.Extensions.xml", + "lib/net9.0/CodeBeam.MudBlazor.Extensions.dll", + "lib/net9.0/CodeBeam.MudBlazor.Extensions.xml", + "staticwebassets/MudExtensions.min.css", + "staticwebassets/MudExtensions.min.js", + "staticwebassets/Mud_Secondary.png", + "staticwebassets/eraser.cur", + "staticwebassets/pencil.cur" + ] + }, + "CsvHelper/33.0.1": { + "sha512": "fev4lynklAU2A9GVMLtwarkwaanjSYB4wUqO2nOJX5hnzObORzUqVLe+bDYCUyIIRQM4o5Bsq3CcyJR89iMmEQ==", + "type": "package", + "path": "csvhelper/33.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "csvhelper.33.0.1.nupkg.sha512", + "csvhelper.nuspec", + "lib/net462/CsvHelper.dll", + "lib/net462/CsvHelper.xml", + "lib/net47/CsvHelper.dll", + "lib/net47/CsvHelper.xml", + "lib/net48/CsvHelper.dll", + "lib/net48/CsvHelper.xml", + "lib/net6.0/CsvHelper.dll", + "lib/net6.0/CsvHelper.xml", + "lib/net7.0/CsvHelper.dll", + "lib/net7.0/CsvHelper.xml", + "lib/net8.0/CsvHelper.dll", + "lib/net8.0/CsvHelper.xml", + "lib/netstandard2.0/CsvHelper.dll", + "lib/netstandard2.0/CsvHelper.xml", + "lib/netstandard2.1/CsvHelper.dll", + "lib/netstandard2.1/CsvHelper.xml" + ] + }, + "EntityFramework/6.5.1": { + "sha512": "sQRP2lWg1i3aAGWqdliAM8zrGx7LHMUk+9/MoxUjwfTZYGMXvZ2JYZTlyTm1PqDxvn3c9E3U76TWDON7Y5+CVA==", + "type": "package", + "path": "entityframework/6.5.1", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "README.md", + "build/EntityFramework.DefaultItems.props", + "build/EntityFramework.props", + "build/EntityFramework.targets", + "build/Microsoft.Data.Entity.Build.Tasks.dll", + "build/net6.0/EntityFramework.props", + "build/net6.0/EntityFramework.targets", + "buildTransitive/EntityFramework.props", + "buildTransitive/EntityFramework.targets", + "buildTransitive/net6.0/EntityFramework.props", + "buildTransitive/net6.0/EntityFramework.targets", + "content/net40/App.config.install.xdt", + "content/net40/App.config.transform", + "content/net40/Web.config.install.xdt", + "content/net40/Web.config.transform", + "entityframework.6.5.1.nupkg.sha512", + "entityframework.nuspec", + "lib/net40/EntityFramework.SqlServer.dll", + "lib/net40/EntityFramework.SqlServer.xml", + "lib/net40/EntityFramework.dll", + "lib/net40/EntityFramework.xml", + "lib/net45/EntityFramework.SqlServer.dll", + "lib/net45/EntityFramework.SqlServer.xml", + "lib/net45/EntityFramework.dll", + "lib/net45/EntityFramework.xml", + "lib/netstandard2.1/EntityFramework.SqlServer.dll", + "lib/netstandard2.1/EntityFramework.SqlServer.xml", + "lib/netstandard2.1/EntityFramework.dll", + "lib/netstandard2.1/EntityFramework.xml", + "tools/EntityFramework6.PS2.psd1", + "tools/EntityFramework6.PS2.psm1", + "tools/EntityFramework6.psd1", + "tools/EntityFramework6.psm1", + "tools/about_EntityFramework6.help.txt", + "tools/init.ps1", + "tools/install.ps1", + "tools/net40/any/ef6.exe", + "tools/net40/any/ef6.pdb", + "tools/net40/win-arm64/ef6.exe", + "tools/net40/win-arm64/ef6.pdb", + "tools/net40/win-x86/ef6.exe", + "tools/net40/win-x86/ef6.pdb", + "tools/net45/any/ef6.exe", + "tools/net45/any/ef6.pdb", + "tools/net45/win-arm64/ef6.exe", + "tools/net45/win-arm64/ef6.pdb", + "tools/net45/win-x86/ef6.exe", + "tools/net45/win-x86/ef6.pdb", + "tools/net6.0/any/ef6.dll", + "tools/net6.0/any/ef6.pdb", + "tools/net6.0/any/ef6.runtimeconfig.json" + ] + }, + "Microsoft.AspNetCore.Authorization/9.0.7": { + "sha512": "P0Gej6X5cEoK+sS9XpgYSzg0Nz8OOlvfQb12aOAJW/P4b9nAzLQCVoNp1GDyR/P8eMSnoPARiKPaa6q51iR0oA==", + "type": "package", + "path": "microsoft.aspnetcore.authorization/9.0.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/Microsoft.AspNetCore.Authorization.dll", + "lib/net462/Microsoft.AspNetCore.Authorization.xml", + "lib/net9.0/Microsoft.AspNetCore.Authorization.dll", + "lib/net9.0/Microsoft.AspNetCore.Authorization.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.xml", + "microsoft.aspnetcore.authorization.9.0.7.nupkg.sha512", + "microsoft.aspnetcore.authorization.nuspec" + ] + }, + "Microsoft.AspNetCore.Components/9.0.7": { + "sha512": "cZpVsxWWGagoP2U6Kjqm107gVZHTmiM2m7YDNRsScTWoBB1iyEIznvYG9ZK4XkDY4yDUTdnZrXRMMVu8K7dJ8Q==", + "type": "package", + "path": "microsoft.aspnetcore.components/9.0.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.txt", + "lib/net9.0/Microsoft.AspNetCore.Components.dll", + "lib/net9.0/Microsoft.AspNetCore.Components.xml", + "microsoft.aspnetcore.components.9.0.7.nupkg.sha512", + "microsoft.aspnetcore.components.nuspec" + ] + }, + "Microsoft.AspNetCore.Components.Analyzers/9.0.7": { + "sha512": "SlMcfUJHFxjIFAecPY55in8u93AZo5NQrRlPY3hKrSsLEgyjjtZGzWIn+F9RluHw5wRct/QFRCt2sQwEhn8qtA==", + "type": "package", + "path": "microsoft.aspnetcore.components.analyzers/9.0.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.txt", + "analyzers/dotnet/cs/Microsoft.AspNetCore.Components.Analyzers.dll", + "build/netstandard2.0/Microsoft.AspNetCore.Components.Analyzers.targets", + "buildTransitive/netstandard2.0/Microsoft.AspNetCore.Components.Analyzers.targets", + "microsoft.aspnetcore.components.analyzers.9.0.7.nupkg.sha512", + "microsoft.aspnetcore.components.analyzers.nuspec" + ] + }, + "Microsoft.AspNetCore.Components.Forms/9.0.7": { + "sha512": "ecnFWXV/ClmBfkevmalj1e1+T00AkihOyK8yQdKOwKmibraYphyup4BdOLP7v17PNVF4d5njsoHmFtVBvYpsJg==", + "type": "package", + "path": "microsoft.aspnetcore.components.forms/9.0.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.txt", + "lib/net9.0/Microsoft.AspNetCore.Components.Forms.dll", + "lib/net9.0/Microsoft.AspNetCore.Components.Forms.xml", + "microsoft.aspnetcore.components.forms.9.0.7.nupkg.sha512", + "microsoft.aspnetcore.components.forms.nuspec" + ] + }, + "Microsoft.AspNetCore.Components.Web/9.0.7": { + "sha512": "fP+WmahEXWgCTgL/aRo/y75v1nni8E8WfbpkbWOeMBk2UdQORqQbFPIkttu8JPYVACDfVYgEDKIDtVqEY9Akkg==", + "type": "package", + "path": "microsoft.aspnetcore.components.web/9.0.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.txt", + "lib/net9.0/Microsoft.AspNetCore.Components.Web.dll", + "lib/net9.0/Microsoft.AspNetCore.Components.Web.xml", + "microsoft.aspnetcore.components.web.9.0.7.nupkg.sha512", + "microsoft.aspnetcore.components.web.nuspec" + ] + }, + "Microsoft.AspNetCore.Cryptography.Internal/9.0.8": { + "sha512": "NwGO0wh/IjEthBLGA6fWfIiftsNF/paA5RxWp6ji4wWazetJgQ4truR9nU2thAzzFLiXqlg8vGjdVDA8bHu0zA==", + "type": "package", + "path": "microsoft.aspnetcore.cryptography.internal/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/Microsoft.AspNetCore.Cryptography.Internal.dll", + "lib/net462/Microsoft.AspNetCore.Cryptography.Internal.xml", + "lib/net9.0/Microsoft.AspNetCore.Cryptography.Internal.dll", + "lib/net9.0/Microsoft.AspNetCore.Cryptography.Internal.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.xml", + "microsoft.aspnetcore.cryptography.internal.9.0.8.nupkg.sha512", + "microsoft.aspnetcore.cryptography.internal.nuspec" + ] + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/9.0.8": { + "sha512": "gK70xxXYwwPiXYKYVmLYMuIO5EOGrRtQghmM6PkgtZ/0lgLEjIs//xgSLvZkV/mroNHA1DEqTcqscEj9OzZ1IA==", + "type": "package", + "path": "microsoft.aspnetcore.cryptography.keyderivation/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll", + "lib/net462/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml", + "lib/net9.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll", + "lib/net9.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml", + "microsoft.aspnetcore.cryptography.keyderivation.9.0.8.nupkg.sha512", + "microsoft.aspnetcore.cryptography.keyderivation.nuspec" + ] + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore/9.0.8": { + "sha512": "z4q9roxXMQePwFM5tXXZS5sKkU78yYXVkj56NYYx9xKe+mxGkJMV1MaO0GFE6HnnM8bE3Xxhs0hAPw2jKbse6w==", + "type": "package", + "path": "microsoft.aspnetcore.identity.entityframeworkcore/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net9.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll", + "lib/net9.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.xml", + "microsoft.aspnetcore.identity.entityframeworkcore.9.0.8.nupkg.sha512", + "microsoft.aspnetcore.identity.entityframeworkcore.nuspec" + ] + }, + "Microsoft.AspNetCore.Metadata/9.0.7": { + "sha512": "bM2x5yps2P6eXqFkR5ztKX7QRGGqJ4Vy5PxVdR7ADjYPNmMhrD57r8d9H++hpljk9sdjKI3Sppd7NZyA721nEA==", + "type": "package", + "path": "microsoft.aspnetcore.metadata/9.0.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/Microsoft.AspNetCore.Metadata.dll", + "lib/net462/Microsoft.AspNetCore.Metadata.xml", + "lib/net9.0/Microsoft.AspNetCore.Metadata.dll", + "lib/net9.0/Microsoft.AspNetCore.Metadata.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Metadata.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Metadata.xml", + "microsoft.aspnetcore.metadata.9.0.7.nupkg.sha512", + "microsoft.aspnetcore.metadata.nuspec" + ] + }, + "Microsoft.CSharp/4.7.0": { + "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", + "type": "package", + "path": "microsoft.csharp/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/Microsoft.CSharp.dll", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.3/Microsoft.CSharp.dll", + "lib/netstandard2.0/Microsoft.CSharp.dll", + "lib/netstandard2.0/Microsoft.CSharp.xml", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/uap10.0.16299/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.csharp.4.7.0.nupkg.sha512", + "microsoft.csharp.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/Microsoft.CSharp.dll", + "ref/netcore50/Microsoft.CSharp.xml", + "ref/netcore50/de/Microsoft.CSharp.xml", + "ref/netcore50/es/Microsoft.CSharp.xml", + "ref/netcore50/fr/Microsoft.CSharp.xml", + "ref/netcore50/it/Microsoft.CSharp.xml", + "ref/netcore50/ja/Microsoft.CSharp.xml", + "ref/netcore50/ko/Microsoft.CSharp.xml", + "ref/netcore50/ru/Microsoft.CSharp.xml", + "ref/netcore50/zh-hans/Microsoft.CSharp.xml", + "ref/netcore50/zh-hant/Microsoft.CSharp.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.0/Microsoft.CSharp.dll", + "ref/netstandard1.0/Microsoft.CSharp.xml", + "ref/netstandard1.0/de/Microsoft.CSharp.xml", + "ref/netstandard1.0/es/Microsoft.CSharp.xml", + "ref/netstandard1.0/fr/Microsoft.CSharp.xml", + "ref/netstandard1.0/it/Microsoft.CSharp.xml", + "ref/netstandard1.0/ja/Microsoft.CSharp.xml", + "ref/netstandard1.0/ko/Microsoft.CSharp.xml", + "ref/netstandard1.0/ru/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml", + "ref/netstandard2.0/Microsoft.CSharp.dll", + "ref/netstandard2.0/Microsoft.CSharp.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.0.16299/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.EntityFrameworkCore/9.0.8": { + "sha512": "bNGdPhN762+BIIO5MFYLjafRqkSS1MqLOc/erd55InvLnFxt9H3N5JNsuag1ZHyBor1VtD42U0CHpgqkWeAYgQ==", + "type": "package", + "path": "microsoft.entityframeworkcore/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "buildTransitive/net8.0/Microsoft.EntityFrameworkCore.props", + "lib/net8.0/Microsoft.EntityFrameworkCore.dll", + "lib/net8.0/Microsoft.EntityFrameworkCore.xml", + "microsoft.entityframeworkcore.9.0.8.nupkg.sha512", + "microsoft.entityframeworkcore.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Abstractions/9.0.8": { + "sha512": "B2yfAIQRRAQ4zvvWqh+HudD+juV3YoLlpXnrog3tU0PM9AFpuq6xo0+mEglN1P43WgdcUiF+65CWBcZe35s15Q==", + "type": "package", + "path": "microsoft.entityframeworkcore.abstractions/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll", + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.xml", + "microsoft.entityframeworkcore.abstractions.9.0.8.nupkg.sha512", + "microsoft.entityframeworkcore.abstractions.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Analyzers/9.0.8": { + "sha512": "2EYStCXt4Hi9p3J3EYMQbItJDtASJd064Kcs8C8hj8Jt5srILrR9qlaL0Ryvk8NrWQoCQvIELsmiuqLEZMLvGA==", + "type": "package", + "path": "microsoft.entityframeworkcore.analyzers/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll", + "docs/PACKAGE.md", + "microsoft.entityframeworkcore.analyzers.9.0.8.nupkg.sha512", + "microsoft.entityframeworkcore.analyzers.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Relational/9.0.8": { + "sha512": "OVhfyxiHxMvYpwQ8Jy3YZi4koy6TK5/Q7C1oq3z6db+HEGuu6x9L1BX5zDIdJxxlRePMyO4D8ORiXj/D7+MUqw==", + "type": "package", + "path": "microsoft.entityframeworkcore.relational/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll", + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.xml", + "microsoft.entityframeworkcore.relational.9.0.8.nupkg.sha512", + "microsoft.entityframeworkcore.relational.nuspec" + ] + }, + "Microsoft.Extensions.Caching.Abstractions/9.0.8": { + "sha512": "4h7bsVoKoiK+SlPM+euX/ayGnKZhl47pPCidLTiio9xyG+vgVVfcYxcYQgjm0SCrdSxjG0EGIAKF8EFr3G8Ifw==", + "type": "package", + "path": "microsoft.extensions.caching.abstractions/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Caching.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml", + "microsoft.extensions.caching.abstractions.9.0.8.nupkg.sha512", + "microsoft.extensions.caching.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Caching.Memory/9.0.8": { + "sha512": "grR+oPyj8HVn4DT8CFUUdSw2pZZKS13KjytFe4txpHQliGM1GEDotohmjgvyl3hm7RFB3FRqvbouEX3/1ewp5A==", + "type": "package", + "path": "microsoft.extensions.caching.memory/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Caching.Memory.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Memory.targets", + "lib/net462/Microsoft.Extensions.Caching.Memory.dll", + "lib/net462/Microsoft.Extensions.Caching.Memory.xml", + "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/net8.0/Microsoft.Extensions.Caching.Memory.xml", + "lib/net9.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/net9.0/Microsoft.Extensions.Caching.Memory.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml", + "microsoft.extensions.caching.memory.9.0.8.nupkg.sha512", + "microsoft.extensions.caching.memory.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.8": { + "sha512": "yNou2KM35RvzOh4vUFtl2l33rWPvOCoba+nzEDJ+BgD8aOL/jew4WPCibQvntRfOJ2pJU8ARygSMD+pdjvDHuA==", + "type": "package", + "path": "microsoft.extensions.configuration.abstractions/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "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/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.9.0.8.nupkg.sha512", + "microsoft.extensions.configuration.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection/9.0.8": { + "sha512": "JJjI2Fa+QtZcUyuNjbKn04OjIUX5IgFGFu/Xc+qvzh1rXdZHLcnqqVXhR4093bGirTwacRlHiVg1XYI9xum6QQ==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets", + "lib/net462/Microsoft.Extensions.DependencyInjection.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml", + "microsoft.extensions.dependencyinjection.9.0.8.nupkg.sha512", + "microsoft.extensions.dependencyinjection.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.8": { + "sha512": "xY3lTjj4+ZYmiKIkyWitddrp1uL5uYiweQjqo4BKBw01ZC4HhcfgLghDpPZcUlppgWAFqFy9SgkiYWOMx365pw==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "microsoft.extensions.dependencyinjection.abstractions.9.0.8.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Identity.Core/9.0.8": { + "sha512": "giUYz84GHAizDucZp5vWAusDO2s9Jrrg2jQ6HUQNGs5HQMKJVobLPMQSiyg8R4yecH0pIc0QjANh0B/Kw13BHA==", + "type": "package", + "path": "microsoft.extensions.identity.core/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/Microsoft.Extensions.Identity.Core.dll", + "lib/net462/Microsoft.Extensions.Identity.Core.xml", + "lib/net9.0/Microsoft.Extensions.Identity.Core.dll", + "lib/net9.0/Microsoft.Extensions.Identity.Core.xml", + "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.dll", + "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.xml", + "microsoft.extensions.identity.core.9.0.8.nupkg.sha512", + "microsoft.extensions.identity.core.nuspec" + ] + }, + "Microsoft.Extensions.Identity.Stores/9.0.8": { + "sha512": "sycaHcq78yI591+KxEdd53a7pJGQEl9H/wDsFkaPNE9g7loyq8vufPcc/9RH3KlGt5joR5Ey7PdoRSrlLjCgJg==", + "type": "package", + "path": "microsoft.extensions.identity.stores/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/Microsoft.Extensions.Identity.Stores.dll", + "lib/net462/Microsoft.Extensions.Identity.Stores.xml", + "lib/net9.0/Microsoft.Extensions.Identity.Stores.dll", + "lib/net9.0/Microsoft.Extensions.Identity.Stores.xml", + "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.dll", + "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.xml", + "microsoft.extensions.identity.stores.9.0.8.nupkg.sha512", + "microsoft.extensions.identity.stores.nuspec" + ] + }, + "Microsoft.Extensions.Localization/9.0.1": { + "sha512": "UgvX4Yb2T3tEsKT30ktZr0H7kTRPapCgEH0bdTwxiEGSdA39/hAQMvvb+vgHpqmevDU5+puyI9ujRkmmbF946w==", + "type": "package", + "path": "microsoft.extensions.localization/9.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/Microsoft.Extensions.Localization.dll", + "lib/net462/Microsoft.Extensions.Localization.xml", + "lib/net9.0/Microsoft.Extensions.Localization.dll", + "lib/net9.0/Microsoft.Extensions.Localization.xml", + "lib/netstandard2.0/Microsoft.Extensions.Localization.dll", + "lib/netstandard2.0/Microsoft.Extensions.Localization.xml", + "microsoft.extensions.localization.9.0.1.nupkg.sha512", + "microsoft.extensions.localization.nuspec" + ] + }, + "Microsoft.Extensions.Localization.Abstractions/9.0.1": { + "sha512": "CABog43lyaZQMjmlktuImCy6zmAzRBaXqN81uPaMQjlp//ISDVYItZPh6KWpWRF4MY/B67X5oDc3JTUpfdocZw==", + "type": "package", + "path": "microsoft.extensions.localization.abstractions/9.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/Microsoft.Extensions.Localization.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Localization.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.Localization.Abstractions.dll", + "lib/net9.0/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.9.0.1.nupkg.sha512", + "microsoft.extensions.localization.abstractions.nuspec" + ] + }, + "Microsoft.Extensions.Logging/9.0.8": { + "sha512": "Z/7ze+0iheT7FJeZPqJKARYvyC2bmwu3whbm/48BJjdlGVvgDguoCqJIkI/67NkroTYobd5geai1WheNQvWrgA==", + "type": "package", + "path": "microsoft.extensions.logging/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "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/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.9.0.8.nupkg.sha512", + "microsoft.extensions.logging.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.8": { + "sha512": "pYnAffJL7ARD/HCnnPvnFKSIHnTSmWz84WIlT9tPeQ4lHNiu0Az7N/8itihWvcF8sT+VVD5lq8V+ckMzu4SbOw==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", + "microsoft.extensions.logging.abstractions.9.0.8.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Options/9.0.8": { + "sha512": "OmTaQ0v4gxGQkehpwWIqPoEiwsPuG/u4HUsbOFoWGx4DKET2AXzopnFe/fE608FIhzc/kcg2p8JdyMRCCUzitQ==", + "type": "package", + "path": "microsoft.extensions.options/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Options.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "buildTransitive/net461/Microsoft.Extensions.Options.targets", + "buildTransitive/net462/Microsoft.Extensions.Options.targets", + "buildTransitive/net8.0/Microsoft.Extensions.Options.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Options.targets", + "lib/net462/Microsoft.Extensions.Options.dll", + "lib/net462/Microsoft.Extensions.Options.xml", + "lib/net8.0/Microsoft.Extensions.Options.dll", + "lib/net8.0/Microsoft.Extensions.Options.xml", + "lib/net9.0/Microsoft.Extensions.Options.dll", + "lib/net9.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.0/Microsoft.Extensions.Options.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.1/Microsoft.Extensions.Options.dll", + "lib/netstandard2.1/Microsoft.Extensions.Options.xml", + "microsoft.extensions.options.9.0.8.nupkg.sha512", + "microsoft.extensions.options.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Primitives/9.0.8": { + "sha512": "tizSIOEsIgSNSSh+hKeUVPK7xmTIjR8s+mJWOu1KXV3htvNQiPMFRMO17OdI1y/4ZApdBVk49u/08QGC9yvLug==", + "type": "package", + "path": "microsoft.extensions.primitives/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Primitives.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets", + "lib/net462/Microsoft.Extensions.Primitives.dll", + "lib/net462/Microsoft.Extensions.Primitives.xml", + "lib/net8.0/Microsoft.Extensions.Primitives.dll", + "lib/net8.0/Microsoft.Extensions.Primitives.xml", + "lib/net9.0/Microsoft.Extensions.Primitives.dll", + "lib/net9.0/Microsoft.Extensions.Primitives.xml", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", + "microsoft.extensions.primitives.9.0.8.nupkg.sha512", + "microsoft.extensions.primitives.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.JSInterop/9.0.7": { + "sha512": "+FFcgE9nFf/M/8sSJPzKnGFkALO5Q3mCdljpsxe/ZFRt6bqMcImv8d74HgMamOauhmVlC7MU9GmnbblF9CpNlQ==", + "type": "package", + "path": "microsoft.jsinterop/9.0.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net9.0/Microsoft.JSInterop.dll", + "lib/net9.0/Microsoft.JSInterop.xml", + "microsoft.jsinterop.9.0.7.nupkg.sha512", + "microsoft.jsinterop.nuspec" + ] + }, + "Microsoft.Win32.Registry/4.7.0": { + "sha512": "KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", + "type": "package", + "path": "microsoft.win32.registry/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.xml", + "lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "microsoft.win32.registry.4.7.0.nupkg.sha512", + "microsoft.win32.registry.nuspec", + "ref/net46/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.xml", + "ref/net472/Microsoft.Win32.Registry.dll", + "ref/net472/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/Microsoft.Win32.Registry.dll", + "ref/netstandard1.3/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml", + "ref/netstandard2.0/Microsoft.Win32.Registry.dll", + "ref/netstandard2.0/Microsoft.Win32.Registry.xml", + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml", + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "sha512": "hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==", + "type": "package", + "path": "microsoft.win32.systemevents/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Win32.SystemEvents.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Win32.SystemEvents.dll", + "lib/net461/Microsoft.Win32.SystemEvents.xml", + "lib/net6.0/Microsoft.Win32.SystemEvents.dll", + "lib/net6.0/Microsoft.Win32.SystemEvents.xml", + "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll", + "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml", + "microsoft.win32.systemevents.6.0.0.nupkg.sha512", + "microsoft.win32.systemevents.nuspec", + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.xml", + "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml", + "useSharedDesignerContext.txt" + ] + }, + "MudBlazor/8.12.0": { + "sha512": "ZwgHPt2DwiQoFeP8jxPzNEsUmJF17ljtospVH+uMUKUKpklz6jEkdE5vNs7PnHaPH9HEbpFEQgJw8QPlnFZjsQ==", + "type": "package", + "path": "mudblazor/8.12.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE", + "Nuget.png", + "README.md", + "analyzers/dotnet/cs/MudBlazor.Analyzers.dll", + "build/Microsoft.AspNetCore.StaticWebAssetEndpoints.props", + "build/Microsoft.AspNetCore.StaticWebAssets.props", + "build/MudBlazor.props", + "build/MudBlazor.targets", + "buildMultiTargeting/MudBlazor.props", + "buildTransitive/MudBlazor.props", + "lib/net8.0/MudBlazor.dll", + "lib/net8.0/MudBlazor.xml", + "lib/net9.0/MudBlazor.dll", + "lib/net9.0/MudBlazor.xml", + "mudblazor.8.12.0.nupkg.sha512", + "mudblazor.nuspec", + "staticwebassets/MudBlazor.min.css", + "staticwebassets/MudBlazor.min.js" + ] + }, + "Npgsql/9.0.3": { + "sha512": "tPvY61CxOAWxNsKLEBg+oR646X4Bc8UmyQ/tJszL/7mEmIXQnnBhVJZrZEEUv0Bstu0mEsHZD5At3EO8zQRAYw==", + "type": "package", + "path": "npgsql/9.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net6.0/Npgsql.dll", + "lib/net6.0/Npgsql.xml", + "lib/net8.0/Npgsql.dll", + "lib/net8.0/Npgsql.xml", + "npgsql.9.0.3.nupkg.sha512", + "npgsql.nuspec", + "postgresql.png" + ] + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/9.0.4": { + "sha512": "mw5vcY2IEc7L+IeGrxpp/J5OSnCcjkjAgJYCm/eD52wpZze8zsSifdqV7zXslSMmfJG2iIUGZyo3KuDtEFKwMQ==", + "type": "package", + "path": "npgsql.entityframeworkcore.postgresql/9.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll", + "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.xml", + "npgsql.entityframeworkcore.postgresql.9.0.4.nupkg.sha512", + "npgsql.entityframeworkcore.postgresql.nuspec", + "postgresql.png" + ] + }, + "runtime.native.System.Data.SqlClient.sni/4.7.0": { + "sha512": "9kyFSIdN3T0qjDQ2R0HRXYIhS3l5psBzQi6qqhdLz+SzFyEy4sVxNOke+yyYv8Cu8rPER12c3RDjLT8wF3WBYQ==", + "type": "package", + "path": "runtime.native.system.data.sqlclient.sni/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512", + "runtime.native.system.data.sqlclient.sni.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "sha512": "LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==", + "type": "package", + "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.nuspec", + "runtimes/win-arm64/native/sni.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "sha512": "38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==", + "type": "package", + "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "runtime.win-x64.runtime.native.system.data.sqlclient.sni.nuspec", + "runtimes/win-x64/native/sni.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "sha512": "YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==", + "type": "package", + "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "runtime.win-x86.runtime.native.system.data.sqlclient.sni.nuspec", + "runtimes/win-x86/native/sni.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.CodeDom/6.0.0": { + "sha512": "CPc6tWO1LAer3IzfZufDBRL+UZQcj5uS207NHALQzP84Vp/z6wF0Aa0YZImOQY8iStY0A2zI/e3ihKNPfUm8XA==", + "type": "package", + "path": "system.codedom/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.CodeDom.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.CodeDom.dll", + "lib/net461/System.CodeDom.xml", + "lib/net6.0/System.CodeDom.dll", + "lib/net6.0/System.CodeDom.xml", + "lib/netstandard2.0/System.CodeDom.dll", + "lib/netstandard2.0/System.CodeDom.xml", + "system.codedom.6.0.0.nupkg.sha512", + "system.codedom.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.ComponentModel.Annotations/5.0.0": { + "sha512": "dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==", + "type": "package", + "path": "system.componentmodel.annotations/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.ComponentModel.Annotations.dll", + "lib/netcore50/System.ComponentModel.Annotations.dll", + "lib/netstandard1.4/System.ComponentModel.Annotations.dll", + "lib/netstandard2.0/System.ComponentModel.Annotations.dll", + "lib/netstandard2.1/System.ComponentModel.Annotations.dll", + "lib/netstandard2.1/System.ComponentModel.Annotations.xml", + "lib/portable-net45+win8/_._", + "lib/win8/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.ComponentModel.Annotations.dll", + "ref/net461/System.ComponentModel.Annotations.xml", + "ref/netcore50/System.ComponentModel.Annotations.dll", + "ref/netcore50/System.ComponentModel.Annotations.xml", + "ref/netcore50/de/System.ComponentModel.Annotations.xml", + "ref/netcore50/es/System.ComponentModel.Annotations.xml", + "ref/netcore50/fr/System.ComponentModel.Annotations.xml", + "ref/netcore50/it/System.ComponentModel.Annotations.xml", + "ref/netcore50/ja/System.ComponentModel.Annotations.xml", + "ref/netcore50/ko/System.ComponentModel.Annotations.xml", + "ref/netcore50/ru/System.ComponentModel.Annotations.xml", + "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/System.ComponentModel.Annotations.dll", + "ref/netstandard1.1/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/System.ComponentModel.Annotations.dll", + "ref/netstandard1.3/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/System.ComponentModel.Annotations.dll", + "ref/netstandard1.4/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard2.0/System.ComponentModel.Annotations.dll", + "ref/netstandard2.0/System.ComponentModel.Annotations.xml", + "ref/netstandard2.1/System.ComponentModel.Annotations.dll", + "ref/netstandard2.1/System.ComponentModel.Annotations.xml", + "ref/portable-net45+win8/_._", + "ref/win8/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.annotations.5.0.0.nupkg.sha512", + "system.componentmodel.annotations.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Configuration.ConfigurationManager/6.0.1": { + "sha512": "jXw9MlUu/kRfEU0WyTptAVueupqIeE3/rl0EZDMlf8pcvJnitQ8HeVEp69rZdaStXwTV72boi/Bhw8lOeO+U2w==", + "type": "package", + "path": "system.configuration.configurationmanager/6.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Configuration.ConfigurationManager.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Configuration.ConfigurationManager.dll", + "lib/net461/System.Configuration.ConfigurationManager.xml", + "lib/net6.0/System.Configuration.ConfigurationManager.dll", + "lib/net6.0/System.Configuration.ConfigurationManager.xml", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml", + "runtimes/win/lib/net461/System.Configuration.ConfigurationManager.dll", + "runtimes/win/lib/net461/System.Configuration.ConfigurationManager.xml", + "system.configuration.configurationmanager.6.0.1.nupkg.sha512", + "system.configuration.configurationmanager.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Data.SqlClient/4.8.6": { + "sha512": "2Ij/LCaTQRyAi5lAv7UUTV9R2FobC8xN9mE0fXBZohum/xLl8IZVmE98Rq5ugQHjCgTBRKqpXRb4ORulRdA6Ig==", + "type": "package", + "path": "system.data.sqlclient/4.8.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net451/System.Data.SqlClient.dll", + "lib/net46/System.Data.SqlClient.dll", + "lib/net461/System.Data.SqlClient.dll", + "lib/net461/System.Data.SqlClient.xml", + "lib/netcoreapp2.1/System.Data.SqlClient.dll", + "lib/netcoreapp2.1/System.Data.SqlClient.xml", + "lib/netstandard1.2/System.Data.SqlClient.dll", + "lib/netstandard1.2/System.Data.SqlClient.xml", + "lib/netstandard1.3/System.Data.SqlClient.dll", + "lib/netstandard1.3/System.Data.SqlClient.xml", + "lib/netstandard2.0/System.Data.SqlClient.dll", + "lib/netstandard2.0/System.Data.SqlClient.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net451/System.Data.SqlClient.dll", + "ref/net46/System.Data.SqlClient.dll", + "ref/net461/System.Data.SqlClient.dll", + "ref/net461/System.Data.SqlClient.xml", + "ref/netcoreapp2.1/System.Data.SqlClient.dll", + "ref/netcoreapp2.1/System.Data.SqlClient.xml", + "ref/netstandard1.2/System.Data.SqlClient.dll", + "ref/netstandard1.2/System.Data.SqlClient.xml", + "ref/netstandard1.2/de/System.Data.SqlClient.xml", + "ref/netstandard1.2/es/System.Data.SqlClient.xml", + "ref/netstandard1.2/fr/System.Data.SqlClient.xml", + "ref/netstandard1.2/it/System.Data.SqlClient.xml", + "ref/netstandard1.2/ja/System.Data.SqlClient.xml", + "ref/netstandard1.2/ko/System.Data.SqlClient.xml", + "ref/netstandard1.2/ru/System.Data.SqlClient.xml", + "ref/netstandard1.2/zh-hans/System.Data.SqlClient.xml", + "ref/netstandard1.2/zh-hant/System.Data.SqlClient.xml", + "ref/netstandard1.3/System.Data.SqlClient.dll", + "ref/netstandard1.3/System.Data.SqlClient.xml", + "ref/netstandard1.3/de/System.Data.SqlClient.xml", + "ref/netstandard1.3/es/System.Data.SqlClient.xml", + "ref/netstandard1.3/fr/System.Data.SqlClient.xml", + "ref/netstandard1.3/it/System.Data.SqlClient.xml", + "ref/netstandard1.3/ja/System.Data.SqlClient.xml", + "ref/netstandard1.3/ko/System.Data.SqlClient.xml", + "ref/netstandard1.3/ru/System.Data.SqlClient.xml", + "ref/netstandard1.3/zh-hans/System.Data.SqlClient.xml", + "ref/netstandard1.3/zh-hant/System.Data.SqlClient.xml", + "ref/netstandard2.0/System.Data.SqlClient.dll", + "ref/netstandard2.0/System.Data.SqlClient.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll", + "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.xml", + "runtimes/unix/lib/netstandard1.3/System.Data.SqlClient.dll", + "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll", + "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.xml", + "runtimes/win/lib/net451/System.Data.SqlClient.dll", + "runtimes/win/lib/net46/System.Data.SqlClient.dll", + "runtimes/win/lib/net461/System.Data.SqlClient.dll", + "runtimes/win/lib/net461/System.Data.SqlClient.xml", + "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll", + "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.xml", + "runtimes/win/lib/netstandard1.3/System.Data.SqlClient.dll", + "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll", + "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.xml", + "runtimes/win/lib/uap10.0.16299/System.Data.SqlClient.dll", + "runtimes/win/lib/uap10.0.16299/System.Data.SqlClient.xml", + "system.data.sqlclient.4.8.6.nupkg.sha512", + "system.data.sqlclient.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Drawing.Common/6.0.0": { + "sha512": "NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==", + "type": "package", + "path": "system.drawing.common/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Drawing.Common.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Drawing.Common.dll", + "lib/net461/System.Drawing.Common.xml", + "lib/net6.0/System.Drawing.Common.dll", + "lib/net6.0/System.Drawing.Common.xml", + "lib/netcoreapp3.1/System.Drawing.Common.dll", + "lib/netcoreapp3.1/System.Drawing.Common.xml", + "lib/netstandard2.0/System.Drawing.Common.dll", + "lib/netstandard2.0/System.Drawing.Common.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "runtimes/unix/lib/net6.0/System.Drawing.Common.dll", + "runtimes/unix/lib/net6.0/System.Drawing.Common.xml", + "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.dll", + "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.xml", + "runtimes/win/lib/net6.0/System.Drawing.Common.dll", + "runtimes/win/lib/net6.0/System.Drawing.Common.xml", + "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.dll", + "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.xml", + "system.drawing.common.6.0.0.nupkg.sha512", + "system.drawing.common.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.AccessControl/6.0.0": { + "sha512": "AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==", + "type": "package", + "path": "system.security.accesscontrol/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Security.AccessControl.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.xml", + "lib/net6.0/System.Security.AccessControl.dll", + "lib/net6.0/System.Security.AccessControl.xml", + "lib/netstandard2.0/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.xml", + "runtimes/win/lib/net461/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.xml", + "runtimes/win/lib/net6.0/System.Security.AccessControl.dll", + "runtimes/win/lib/net6.0/System.Security.AccessControl.xml", + "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.dll", + "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.xml", + "system.security.accesscontrol.6.0.0.nupkg.sha512", + "system.security.accesscontrol.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Cryptography.ProtectedData/6.0.0": { + "sha512": "rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==", + "type": "package", + "path": "system.security.cryptography.protecteddata/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Security.Cryptography.ProtectedData.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Security.Cryptography.ProtectedData.dll", + "lib/net461/System.Security.Cryptography.ProtectedData.xml", + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll", + "lib/net6.0/System.Security.Cryptography.ProtectedData.xml", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml", + "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.xml", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512", + "system.security.cryptography.protecteddata.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Permissions/6.0.0": { + "sha512": "T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==", + "type": "package", + "path": "system.security.permissions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Security.Permissions.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Security.Permissions.dll", + "lib/net461/System.Security.Permissions.xml", + "lib/net5.0/System.Security.Permissions.dll", + "lib/net5.0/System.Security.Permissions.xml", + "lib/net6.0/System.Security.Permissions.dll", + "lib/net6.0/System.Security.Permissions.xml", + "lib/netcoreapp3.1/System.Security.Permissions.dll", + "lib/netcoreapp3.1/System.Security.Permissions.xml", + "lib/netstandard2.0/System.Security.Permissions.dll", + "lib/netstandard2.0/System.Security.Permissions.xml", + "runtimes/win/lib/net461/System.Security.Permissions.dll", + "runtimes/win/lib/net461/System.Security.Permissions.xml", + "system.security.permissions.6.0.0.nupkg.sha512", + "system.security.permissions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Principal.Windows/4.7.0": { + "sha512": "ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==", + "type": "package", + "path": "system.security.principal.windows/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.xml", + "lib/netstandard1.3/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.xml", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.xml", + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll", + "ref/netcoreapp3.0/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/System.Security.Principal.Windows.dll", + "ref/netstandard1.3/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/de/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/es/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/it/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml", + "ref/netstandard2.0/System.Security.Principal.Windows.dll", + "ref/netstandard2.0/System.Security.Principal.Windows.xml", + "ref/uap10.0.16299/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.principal.windows.4.7.0.nupkg.sha512", + "system.security.principal.windows.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Windows.Extensions/6.0.0": { + "sha512": "IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==", + "type": "package", + "path": "system.windows.extensions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net6.0/System.Windows.Extensions.dll", + "lib/net6.0/System.Windows.Extensions.xml", + "lib/netcoreapp3.1/System.Windows.Extensions.dll", + "lib/netcoreapp3.1/System.Windows.Extensions.xml", + "runtimes/win/lib/net6.0/System.Windows.Extensions.dll", + "runtimes/win/lib/net6.0/System.Windows.Extensions.xml", + "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.dll", + "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.xml", + "system.windows.extensions.6.0.0.nupkg.sha512", + "system.windows.extensions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "ZXing.Net/0.16.9": { + "sha512": "7WaVMHklpT3Ye2ragqRIwlFRsb6kOk63BOGADV0fan3ulVfGLUYkDi5yNUsZS/7FVNkWbtHAlDLmu4WnHGfqvQ==", + "type": "package", + "path": "zxing.net/0.16.9", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/native/zxing.XML", + "lib/native/zxing.pri", + "lib/native/zxing.winmd", + "lib/net20-cf/zxing.ce2.0.dll", + "lib/net20-cf/zxing.ce2.0.xml", + "lib/net20/zxing.XML", + "lib/net20/zxing.dll", + "lib/net35-cf/zxing.ce3.5.dll", + "lib/net35-cf/zxing.ce3.5.xml", + "lib/net35/zxing.XML", + "lib/net35/zxing.dll", + "lib/net40/zxing.XML", + "lib/net40/zxing.dll", + "lib/net40/zxing.presentation.XML", + "lib/net40/zxing.presentation.dll", + "lib/net45/zxing.XML", + "lib/net45/zxing.dll", + "lib/net45/zxing.presentation.XML", + "lib/net45/zxing.presentation.dll", + "lib/net461/zxing.XML", + "lib/net461/zxing.dll", + "lib/net461/zxing.presentation.XML", + "lib/net461/zxing.presentation.dll", + "lib/net47/zxing.XML", + "lib/net47/zxing.dll", + "lib/net47/zxing.presentation.XML", + "lib/net47/zxing.presentation.dll", + "lib/net48/zxing.XML", + "lib/net48/zxing.dll", + "lib/net48/zxing.presentation.XML", + "lib/net48/zxing.presentation.dll", + "lib/net5.0/zxing.XML", + "lib/net5.0/zxing.dll", + "lib/net6.0/zxing.XML", + "lib/net6.0/zxing.dll", + "lib/net7.0/zxing.XML", + "lib/net7.0/zxing.dll", + "lib/netcoreapp3.0/zxing.dll", + "lib/netcoreapp3.0/zxing.xml", + "lib/netcoreapp3.1/zxing.dll", + "lib/netcoreapp3.1/zxing.xml", + "lib/netstandard1.0/zxing.dll", + "lib/netstandard1.0/zxing.xml", + "lib/netstandard1.1/zxing.dll", + "lib/netstandard1.1/zxing.xml", + "lib/netstandard1.3/zxing.dll", + "lib/netstandard1.3/zxing.xml", + "lib/netstandard2.0/zxing.dll", + "lib/netstandard2.0/zxing.xml", + "lib/netstandard2.1/zxing.dll", + "lib/netstandard2.1/zxing.xml", + "lib/portable-win+net40+sl4+sl5+wp7+wp71+wp8/zxing.portable.XML", + "lib/portable-win+net40+sl4+sl5+wp7+wp71+wp8/zxing.portable.dll", + "lib/sl3-wp/zxing.wp7.0.XML", + "lib/sl3-wp/zxing.wp7.0.dll", + "lib/sl4-wp71/zxing.wp7.1.XML", + "lib/sl4-wp71/zxing.wp7.1.dll", + "lib/sl4/zxing.sl4.XML", + "lib/sl4/zxing.sl4.dll", + "lib/sl5/zxing.sl5.XML", + "lib/sl5/zxing.sl5.dll", + "lib/uap10/zxing.dll", + "lib/uap10/zxing.pri", + "lib/uap10/zxing.xml", + "lib/windows8-managed/zxing.winrt.XML", + "lib/windows8-managed/zxing.winrt.dll", + "lib/windows8/zxing.XML", + "lib/windows8/zxing.pri", + "lib/windows8/zxing.winmd", + "lib/wp8/zxing.wp8.0.XML", + "lib/wp8/zxing.wp8.0.dll", + "logo.jpg", + "zxing.net.0.16.9.nupkg.sha512", + "zxing.net.nuspec" + ] + }, + "OpenArchival.DataAccess/1.0.0": { + "type": "project", + "path": "../OpenArchival.DataAccess/OpenArchival.DataAccess.csproj", + "msbuildProject": "../OpenArchival.DataAccess/OpenArchival.DataAccess.csproj" + } + }, + "projectFileDependencyGroups": { + "net9.0": [ + "CodeBeam.MudBlazor.Extensions >= 8.2.4", + "MudBlazor >= 8.12.0", + "OpenArchival.DataAccess >= 1.0.0" + ] + }, + "packageFolders": { + "C:\\Users\\vtall\\.nuget\\packages\\": {}, + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\OpenArchival.Blazor.CustomComponents.csproj", + "projectName": "OpenArchival.Blazor.CustomComponents", + "projectPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\OpenArchival.Blazor.CustomComponents.csproj", + "packagesPath": "C:\\Users\\vtall\\.nuget\\packages\\", + "outputPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\NuGet.Config", + "C:\\Users\\vtall\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net9.0" + ], + "sources": { + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "projectReferences": { + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj": { + "projectPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "9.0.300" + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "dependencies": { + "CodeBeam.MudBlazor.Extensions": { + "target": "Package", + "version": "[8.2.4, )" + }, + "MudBlazor": { + "target": "Package", + "version": "[8.12.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.304/PortableRuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/old/OpenArchival.Blazor.CustomComponents/obj/project.nuget.cache b/old/OpenArchival.Blazor.CustomComponents/obj/project.nuget.cache new file mode 100644 index 0000000..4527ee7 --- /dev/null +++ b/old/OpenArchival.Blazor.CustomComponents/obj/project.nuget.cache @@ -0,0 +1,61 @@ +{ + "version": 2, + "dgSpecHash": "MDq338Qzfxs=", + "success": true, + "projectFilePath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\OpenArchival.Blazor.CustomComponents.csproj", + "expectedPackageFiles": [ + "C:\\Users\\vtall\\.nuget\\packages\\buildbundlerminifier\\3.2.449\\buildbundlerminifier.3.2.449.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudblazor.extensions\\8.2.4\\codebeam.mudblazor.extensions.8.2.4.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\csvhelper\\33.0.1\\csvhelper.33.0.1.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\entityframework\\6.5.1\\entityframework.6.5.1.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.aspnetcore.authorization\\9.0.7\\microsoft.aspnetcore.authorization.9.0.7.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.aspnetcore.components\\9.0.7\\microsoft.aspnetcore.components.9.0.7.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.aspnetcore.components.analyzers\\9.0.7\\microsoft.aspnetcore.components.analyzers.9.0.7.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.aspnetcore.components.forms\\9.0.7\\microsoft.aspnetcore.components.forms.9.0.7.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.aspnetcore.components.web\\9.0.7\\microsoft.aspnetcore.components.web.9.0.7.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.aspnetcore.cryptography.internal\\9.0.8\\microsoft.aspnetcore.cryptography.internal.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.aspnetcore.cryptography.keyderivation\\9.0.8\\microsoft.aspnetcore.cryptography.keyderivation.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.aspnetcore.identity.entityframeworkcore\\9.0.8\\microsoft.aspnetcore.identity.entityframeworkcore.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.aspnetcore.metadata\\9.0.7\\microsoft.aspnetcore.metadata.9.0.7.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.csharp\\4.7.0\\microsoft.csharp.4.7.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.entityframeworkcore\\9.0.8\\microsoft.entityframeworkcore.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\9.0.8\\microsoft.entityframeworkcore.abstractions.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\9.0.8\\microsoft.entityframeworkcore.analyzers.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\9.0.8\\microsoft.entityframeworkcore.relational.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\9.0.8\\microsoft.extensions.caching.abstractions.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.caching.memory\\9.0.8\\microsoft.extensions.caching.memory.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\9.0.8\\microsoft.extensions.configuration.abstractions.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\9.0.8\\microsoft.extensions.dependencyinjection.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\9.0.8\\microsoft.extensions.dependencyinjection.abstractions.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.identity.core\\9.0.8\\microsoft.extensions.identity.core.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.identity.stores\\9.0.8\\microsoft.extensions.identity.stores.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.localization\\9.0.1\\microsoft.extensions.localization.9.0.1.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.localization.abstractions\\9.0.1\\microsoft.extensions.localization.abstractions.9.0.1.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.logging\\9.0.8\\microsoft.extensions.logging.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\9.0.8\\microsoft.extensions.logging.abstractions.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.options\\9.0.8\\microsoft.extensions.options.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.primitives\\9.0.8\\microsoft.extensions.primitives.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.jsinterop\\9.0.7\\microsoft.jsinterop.9.0.7.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.win32.registry\\4.7.0\\microsoft.win32.registry.4.7.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.win32.systemevents\\6.0.0\\microsoft.win32.systemevents.6.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.12.0\\mudblazor.8.12.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\npgsql\\9.0.3\\npgsql.9.0.3.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\npgsql.entityframeworkcore.postgresql\\9.0.4\\npgsql.entityframeworkcore.postgresql.9.0.4.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\runtime.native.system.data.sqlclient.sni\\4.7.0\\runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\runtime.win-arm64.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\runtime.win-x64.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\runtime.win-x86.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.codedom\\6.0.0\\system.codedom.6.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.componentmodel.annotations\\5.0.0\\system.componentmodel.annotations.5.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.configuration.configurationmanager\\6.0.1\\system.configuration.configurationmanager.6.0.1.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.data.sqlclient\\4.8.6\\system.data.sqlclient.4.8.6.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.drawing.common\\6.0.0\\system.drawing.common.6.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.security.accesscontrol\\6.0.0\\system.security.accesscontrol.6.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.security.cryptography.protecteddata\\6.0.0\\system.security.cryptography.protecteddata.6.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.security.permissions\\6.0.0\\system.security.permissions.6.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.security.principal.windows\\4.7.0\\system.security.principal.windows.4.7.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.windows.extensions\\6.0.0\\system.windows.extensions.6.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\zxing.net\\0.16.9\\zxing.net.0.16.9.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/old/OpenArchival.FileViewer/obj/OpenArchival.FileViewer.csproj.nuget.dgspec.json b/old/OpenArchival.FileViewer/obj/OpenArchival.FileViewer.csproj.nuget.dgspec.json new file mode 100644 index 0000000..8028d20 --- /dev/null +++ b/old/OpenArchival.FileViewer/obj/OpenArchival.FileViewer.csproj.nuget.dgspec.json @@ -0,0 +1,192 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.FileViewer\\OpenArchival.FileViewer.csproj": {} + }, + "projects": { + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj", + "projectName": "OpenArchival.DataAccess", + "projectPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj", + "packagesPath": "C:\\Users\\vtall\\.nuget\\packages\\", + "outputPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\NuGet.Config", + "C:\\Users\\vtall\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net9.0" + ], + "sources": { + "C:\\Program Files\\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": { + "EntityFramework": { + "target": "Package", + "version": "[6.5.1, )" + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore": { + "target": "Package", + "version": "[9.0.8, )" + }, + "Microsoft.EntityFrameworkCore": { + "target": "Package", + "version": "[9.0.8, )" + }, + "Microsoft.EntityFrameworkCore.Design": { + "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", + "suppressParent": "All", + "target": "Package", + "version": "[9.0.8, )" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions": { + "target": "Package", + "version": "[9.0.8, )" + }, + "Npgsql": { + "target": "Package", + "version": "[9.0.3, )" + }, + "Npgsql.EntityFrameworkCore.PostgreSQL": { + "target": "Package", + "version": "[9.0.4, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.304/PortableRuntimeIdentifierGraph.json" + } + } + }, + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.FileViewer\\OpenArchival.FileViewer.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.FileViewer\\OpenArchival.FileViewer.csproj", + "projectName": "OpenArchival.FileViewer", + "projectPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.FileViewer\\OpenArchival.FileViewer.csproj", + "packagesPath": "C:\\Users\\vtall\\.nuget\\packages\\", + "outputPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.FileViewer\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\NuGet.Config", + "C:\\Users\\vtall\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net9.0" + ], + "sources": { + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "projectReferences": { + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj": { + "projectPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "9.0.300" + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "dependencies": { + "CodeBeam.MudExtensions": { + "target": "Package", + "version": "[6.3.0, )" + }, + "MudBlazor": { + "target": "Package", + "version": "[8.13.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.304/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/old/OpenArchival.FileViewer/obj/OpenArchival.FileViewer.csproj.nuget.g.props b/old/OpenArchival.FileViewer/obj/OpenArchival.FileViewer.csproj.nuget.g.props new file mode 100644 index 0000000..3606f97 --- /dev/null +++ b/old/OpenArchival.FileViewer/obj/OpenArchival.FileViewer.csproj.nuget.g.props @@ -0,0 +1,26 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\vtall\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + PackageReference + 6.14.1 + + + + + + + + + + + + + C:\Users\vtall\.nuget\packages\entityframework\6.5.1 + C:\Users\vtall\.nuget\packages\buildbundlerminifier\3.2.449 + + \ No newline at end of file diff --git a/old/OpenArchival.FileViewer/obj/OpenArchival.FileViewer.csproj.nuget.g.targets b/old/OpenArchival.FileViewer/obj/OpenArchival.FileViewer.csproj.nuget.g.targets new file mode 100644 index 0000000..1dd74b3 --- /dev/null +++ b/old/OpenArchival.FileViewer/obj/OpenArchival.FileViewer.csproj.nuget.g.targets @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/old/OpenArchival.FileViewer/obj/project.assets.json b/old/OpenArchival.FileViewer/obj/project.assets.json new file mode 100644 index 0000000..5acd6cc --- /dev/null +++ b/old/OpenArchival.FileViewer/obj/project.assets.json @@ -0,0 +1,2469 @@ +{ + "version": 3, + "targets": { + "net9.0": { + "BuildBundlerMinifier/3.2.449": { + "type": "package", + "build": { + "build/_._": {} + } + }, + "CodeBeam.MudExtensions/6.3.0": { + "type": "package", + "dependencies": { + "BuildBundlerMinifier": "3.2.449", + "CsvHelper": "30.0.1", + "Microsoft.AspNetCore.Components": "7.0.1", + "Microsoft.AspNetCore.Components.Web": "7.0.1", + "MudBlazor": "6.1.9" + }, + "compile": { + "lib/net7.0/CodeBeam.MudExtensions.dll": {} + }, + "runtime": { + "lib/net7.0/CodeBeam.MudExtensions.dll": {} + }, + "build": { + "buildTransitive/CodeBeam.MudExtensions.props": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/CodeBeam.MudExtensions.props": {} + } + }, + "CsvHelper/30.0.1": { + "type": "package", + "compile": { + "lib/net6.0/CsvHelper.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/CsvHelper.dll": { + "related": ".xml" + } + } + }, + "EntityFramework/6.5.1": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.7.0", + "System.CodeDom": "6.0.0", + "System.ComponentModel.Annotations": "5.0.0", + "System.Configuration.ConfigurationManager": "6.0.1", + "System.Data.SqlClient": "4.8.6" + }, + "compile": { + "lib/netstandard2.1/EntityFramework.SqlServer.dll": { + "related": ".xml" + }, + "lib/netstandard2.1/EntityFramework.dll": { + "related": ".SqlServer.xml;.xml" + } + }, + "runtime": { + "lib/netstandard2.1/EntityFramework.SqlServer.dll": { + "related": ".xml" + }, + "lib/netstandard2.1/EntityFramework.dll": { + "related": ".SqlServer.xml;.xml" + } + }, + "build": { + "buildTransitive/net6.0/EntityFramework.props": {}, + "buildTransitive/net6.0/EntityFramework.targets": {} + } + }, + "Microsoft.AspNetCore.Authorization/9.0.1": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Metadata": "9.0.1", + "Microsoft.Extensions.Logging.Abstractions": "9.0.1", + "Microsoft.Extensions.Options": "9.0.1" + }, + "compile": { + "lib/net9.0/Microsoft.AspNetCore.Authorization.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Authorization.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Components/9.0.1": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Authorization": "9.0.1", + "Microsoft.AspNetCore.Components.Analyzers": "9.0.1" + }, + "compile": { + "lib/net9.0/Microsoft.AspNetCore.Components.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Components.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Components.Analyzers/9.0.1": { + "type": "package", + "build": { + "buildTransitive/netstandard2.0/Microsoft.AspNetCore.Components.Analyzers.targets": {} + } + }, + "Microsoft.AspNetCore.Components.Forms/9.0.1": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Components": "9.0.1" + }, + "compile": { + "lib/net9.0/Microsoft.AspNetCore.Components.Forms.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Components.Forms.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Components.Web/9.0.1": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Components": "9.0.1", + "Microsoft.AspNetCore.Components.Forms": "9.0.1", + "Microsoft.Extensions.DependencyInjection": "9.0.1", + "Microsoft.Extensions.Primitives": "9.0.1", + "Microsoft.JSInterop": "9.0.1" + }, + "compile": { + "lib/net9.0/Microsoft.AspNetCore.Components.Web.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Components.Web.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Cryptography.Internal/9.0.8": { + "type": "package", + "compile": { + "lib/net9.0/Microsoft.AspNetCore.Cryptography.Internal.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Cryptography.Internal.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Cryptography.Internal": "9.0.8" + }, + "compile": { + "lib/net9.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore.Relational": "9.0.8", + "Microsoft.Extensions.Identity.Stores": "9.0.8" + }, + "compile": { + "lib/net9.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Metadata/9.0.1": { + "type": "package", + "compile": { + "lib/net9.0/Microsoft.AspNetCore.Metadata.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Metadata.dll": { + "related": ".xml" + } + } + }, + "Microsoft.CSharp/4.7.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "Microsoft.EntityFrameworkCore/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "9.0.8", + "Microsoft.EntityFrameworkCore.Analyzers": "9.0.8", + "Microsoft.Extensions.Caching.Memory": "9.0.8", + "Microsoft.Extensions.Logging": "9.0.8" + }, + "compile": { + "lib/net8.0/Microsoft.EntityFrameworkCore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.EntityFrameworkCore.props": {} + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/9.0.8": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/9.0.8": { + "type": "package" + }, + "Microsoft.EntityFrameworkCore.Relational/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore": "9.0.8", + "Microsoft.Extensions.Caching.Memory": "9.0.8", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.8", + "Microsoft.Extensions.Logging": "9.0.8" + }, + "compile": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Caching.Abstractions/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.8" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Caching.Memory/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "9.0.8", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8", + "Microsoft.Extensions.Logging.Abstractions": "9.0.8", + "Microsoft.Extensions.Options": "9.0.8", + "Microsoft.Extensions.Primitives": "9.0.8" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Caching.Memory.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Caching.Memory.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.8" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.8": { + "type": "package", + "compile": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Identity.Core/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Cryptography.KeyDerivation": "9.0.8", + "Microsoft.Extensions.Logging": "9.0.8", + "Microsoft.Extensions.Options": "9.0.8" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Identity.Core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Identity.Core.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Identity.Stores/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "9.0.8", + "Microsoft.Extensions.Identity.Core": "9.0.8", + "Microsoft.Extensions.Logging": "9.0.8" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Identity.Stores.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Identity.Stores.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Localization/9.0.1": { + "type": "package", + "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" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Localization.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Localization.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Localization.Abstractions/9.0.1": { + "type": "package", + "compile": { + "lib/net9.0/Microsoft.Extensions.Localization.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Localization.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Logging/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "9.0.8", + "Microsoft.Extensions.Logging.Abstractions": "9.0.8", + "Microsoft.Extensions.Options": "9.0.8" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.Options/9.0.8": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8", + "Microsoft.Extensions.Primitives": "9.0.8" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.Extensions.Options.targets": {} + } + }, + "Microsoft.Extensions.Primitives/9.0.8": { + "type": "package", + "compile": { + "lib/net9.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.JSInterop/9.0.1": { + "type": "package", + "compile": { + "lib/net9.0/Microsoft.JSInterop.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.JSInterop.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Win32.Registry/4.7.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "MudBlazor/8.13.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Components": "9.0.1", + "Microsoft.AspNetCore.Components.Web": "9.0.1", + "Microsoft.Extensions.Localization": "9.0.1" + }, + "compile": { + "lib/net9.0/MudBlazor.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/MudBlazor.dll": { + "related": ".xml" + } + }, + "build": { + "build/MudBlazor.targets": {}, + "buildTransitive/MudBlazor.props": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/MudBlazor.props": {} + } + }, + "Npgsql/9.0.3": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "8.0.2" + }, + "compile": { + "lib/net8.0/Npgsql.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Npgsql.dll": { + "related": ".xml" + } + } + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/9.0.4": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore": "[9.0.1, 10.0.0)", + "Microsoft.EntityFrameworkCore.Relational": "[9.0.1, 10.0.0)", + "Npgsql": "9.0.3" + }, + "compile": { + "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { + "related": ".xml" + } + } + }, + "runtime.native.System.Data.SqlClient.sni/4.7.0": { + "type": "package", + "dependencies": { + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0" + } + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "runtimeTargets": { + "runtimes/win-arm64/native/sni.dll": { + "assetType": "native", + "rid": "win-arm64" + } + } + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "runtimeTargets": { + "runtimes/win-x64/native/sni.dll": { + "assetType": "native", + "rid": "win-x64" + } + } + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "runtimeTargets": { + "runtimes/win-x86/native/sni.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "System.CodeDom/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.CodeDom.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.CodeDom.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.ComponentModel.Annotations/5.0.0": { + "type": "package", + "compile": { + "ref/netstandard2.1/System.ComponentModel.Annotations.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/System.ComponentModel.Annotations.dll": { + "related": ".xml" + } + } + }, + "System.Configuration.ConfigurationManager/6.0.1": { + "type": "package", + "dependencies": { + "System.Security.Cryptography.ProtectedData": "6.0.0", + "System.Security.Permissions": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Configuration.ConfigurationManager.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Configuration.ConfigurationManager.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Data.SqlClient/4.8.6": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Registry": "4.7.0", + "System.Security.Principal.Windows": "4.7.0", + "runtime.native.System.Data.SqlClient.sni": "4.7.0" + }, + "compile": { + "ref/netcoreapp2.1/System.Data.SqlClient.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Drawing.Common/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Win32.SystemEvents": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Drawing.Common.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Drawing.Common.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/net6.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.AccessControl/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Security.AccessControl.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Security.AccessControl.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Security.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.ProtectedData/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Permissions/6.0.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Windows.Extensions": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Security.Permissions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Security.Permissions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Security.Principal.Windows/4.7.0": { + "type": "package", + "compile": { + "ref/netcoreapp3.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Security.Principal.Windows.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Windows.Extensions/6.0.0": { + "type": "package", + "dependencies": { + "System.Drawing.Common": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Windows.Extensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Windows.Extensions.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "OpenArchival.DataAccess/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v9.0", + "dependencies": { + "EntityFramework": "6.5.1", + "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "9.0.8", + "Microsoft.EntityFrameworkCore": "9.0.8", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.8", + "Npgsql": "9.0.3", + "Npgsql.EntityFrameworkCore.PostgreSQL": "9.0.4" + }, + "compile": { + "bin/placeholder/OpenArchival.DataAccess.dll": {} + }, + "runtime": { + "bin/placeholder/OpenArchival.DataAccess.dll": {} + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + } + } + }, + "libraries": { + "BuildBundlerMinifier/3.2.449": { + "sha512": "uA9sYDy4VepL3xwzBTLcP2LyuVYMt0ZIT3gaSiXvGoX15Ob+rOP+hGydhevlSVd+rFo+Y+VQFEHDuWU8HBW+XA==", + "type": "package", + "path": "buildbundlerminifier/3.2.449", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/BuildBundlerMinifier.targets", + "buildbundlerminifier.3.2.449.nupkg.sha512", + "buildbundlerminifier.nuspec", + "tools/net46/BundlerMinifier.dll", + "tools/net46/NUglify.dll", + "tools/net46/Newtonsoft.Json.dll", + "tools/netcoreapp2.0/BundlerMinifier.dll", + "tools/netcoreapp2.0/NUglify.dll", + "tools/netcoreapp2.0/Newtonsoft.Json.dll", + "tools/netcoreapp3.0/BundlerMinifier.dll", + "tools/netcoreapp3.0/NUglify.dll", + "tools/netcoreapp3.0/Newtonsoft.Json.dll", + "tools/netcoreapp3.1/BundlerMinifier.dll", + "tools/netcoreapp3.1/NUglify.dll", + "tools/netcoreapp3.1/Newtonsoft.Json.dll", + "tools/netstandard1.3/BundlerMinifier.dll", + "tools/netstandard1.3/NUglify.dll", + "tools/netstandard1.3/Newtonsoft.Json.dll" + ] + }, + "CodeBeam.MudExtensions/6.3.0": { + "sha512": "U5J0IlIg8R166hm9RwVjjbCtbBs3ixLev94NmfQHaBVUn3P4un+DoirfUjcUs96wvKb5K9H9ou39Yq+wBO11IA==", + "type": "package", + "path": "codebeam.mudextensions/6.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Mud_Secondary.png", + "build/CodeBeam.MudExtensions.props", + "build/Microsoft.AspNetCore.StaticWebAssets.props", + "buildMultiTargeting/CodeBeam.MudExtensions.props", + "buildTransitive/CodeBeam.MudExtensions.props", + "codebeam.mudextensions.6.3.0.nupkg.sha512", + "codebeam.mudextensions.nuspec", + "lib/net6.0/CodeBeam.MudExtensions.dll", + "lib/net7.0/CodeBeam.MudExtensions.dll", + "staticwebassets/MudExtensions.min.css", + "staticwebassets/MudExtensions.min.js", + "staticwebassets/Mud_Secondary.png" + ] + }, + "CsvHelper/30.0.1": { + "sha512": "rcZtgbWR+As4G3Vpgx0AMNmShGuQLFjkHAPIIflzrfkJCx8/AOd4m96ZRmiU1Wi39qS5UVjV0P8qdgqOo5Cwyg==", + "type": "package", + "path": "csvhelper/30.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "csvhelper.30.0.1.nupkg.sha512", + "csvhelper.nuspec", + "lib/net45/CsvHelper.dll", + "lib/net45/CsvHelper.xml", + "lib/net47/CsvHelper.dll", + "lib/net47/CsvHelper.xml", + "lib/net5.0/CsvHelper.dll", + "lib/net5.0/CsvHelper.xml", + "lib/net6.0/CsvHelper.dll", + "lib/net6.0/CsvHelper.xml", + "lib/netstandard2.0/CsvHelper.dll", + "lib/netstandard2.0/CsvHelper.xml", + "lib/netstandard2.1/CsvHelper.dll", + "lib/netstandard2.1/CsvHelper.xml" + ] + }, + "EntityFramework/6.5.1": { + "sha512": "sQRP2lWg1i3aAGWqdliAM8zrGx7LHMUk+9/MoxUjwfTZYGMXvZ2JYZTlyTm1PqDxvn3c9E3U76TWDON7Y5+CVA==", + "type": "package", + "path": "entityframework/6.5.1", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "README.md", + "build/EntityFramework.DefaultItems.props", + "build/EntityFramework.props", + "build/EntityFramework.targets", + "build/Microsoft.Data.Entity.Build.Tasks.dll", + "build/net6.0/EntityFramework.props", + "build/net6.0/EntityFramework.targets", + "buildTransitive/EntityFramework.props", + "buildTransitive/EntityFramework.targets", + "buildTransitive/net6.0/EntityFramework.props", + "buildTransitive/net6.0/EntityFramework.targets", + "content/net40/App.config.install.xdt", + "content/net40/App.config.transform", + "content/net40/Web.config.install.xdt", + "content/net40/Web.config.transform", + "entityframework.6.5.1.nupkg.sha512", + "entityframework.nuspec", + "lib/net40/EntityFramework.SqlServer.dll", + "lib/net40/EntityFramework.SqlServer.xml", + "lib/net40/EntityFramework.dll", + "lib/net40/EntityFramework.xml", + "lib/net45/EntityFramework.SqlServer.dll", + "lib/net45/EntityFramework.SqlServer.xml", + "lib/net45/EntityFramework.dll", + "lib/net45/EntityFramework.xml", + "lib/netstandard2.1/EntityFramework.SqlServer.dll", + "lib/netstandard2.1/EntityFramework.SqlServer.xml", + "lib/netstandard2.1/EntityFramework.dll", + "lib/netstandard2.1/EntityFramework.xml", + "tools/EntityFramework6.PS2.psd1", + "tools/EntityFramework6.PS2.psm1", + "tools/EntityFramework6.psd1", + "tools/EntityFramework6.psm1", + "tools/about_EntityFramework6.help.txt", + "tools/init.ps1", + "tools/install.ps1", + "tools/net40/any/ef6.exe", + "tools/net40/any/ef6.pdb", + "tools/net40/win-arm64/ef6.exe", + "tools/net40/win-arm64/ef6.pdb", + "tools/net40/win-x86/ef6.exe", + "tools/net40/win-x86/ef6.pdb", + "tools/net45/any/ef6.exe", + "tools/net45/any/ef6.pdb", + "tools/net45/win-arm64/ef6.exe", + "tools/net45/win-arm64/ef6.pdb", + "tools/net45/win-x86/ef6.exe", + "tools/net45/win-x86/ef6.pdb", + "tools/net6.0/any/ef6.dll", + "tools/net6.0/any/ef6.pdb", + "tools/net6.0/any/ef6.runtimeconfig.json" + ] + }, + "Microsoft.AspNetCore.Authorization/9.0.1": { + "sha512": "WgLlLBlMczb2+QLNG6sM95OUZ0EBztz60k/N75tjIgpyu0SdpIfYytAmX/7JJAjRTZF0c/CrWaQV+SH9FuGsrA==", + "type": "package", + "path": "microsoft.aspnetcore.authorization/9.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/Microsoft.AspNetCore.Authorization.dll", + "lib/net462/Microsoft.AspNetCore.Authorization.xml", + "lib/net9.0/Microsoft.AspNetCore.Authorization.dll", + "lib/net9.0/Microsoft.AspNetCore.Authorization.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.xml", + "microsoft.aspnetcore.authorization.9.0.1.nupkg.sha512", + "microsoft.aspnetcore.authorization.nuspec" + ] + }, + "Microsoft.AspNetCore.Components/9.0.1": { + "sha512": "6pwfbQKNtvPkbF4tCGiAKGyt6BVpu58xAXz7u2YXcUKTNmNxrymbG1mEyMc0EPzVdnquDDqTyfXM3mC1EJycxQ==", + "type": "package", + "path": "microsoft.aspnetcore.components/9.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.txt", + "lib/net9.0/Microsoft.AspNetCore.Components.dll", + "lib/net9.0/Microsoft.AspNetCore.Components.xml", + "microsoft.aspnetcore.components.9.0.1.nupkg.sha512", + "microsoft.aspnetcore.components.nuspec" + ] + }, + "Microsoft.AspNetCore.Components.Analyzers/9.0.1": { + "sha512": "I8Rs4LXT5UQxM5Nin2+Oj8aSY2heszSZ3EyTLgt3mxmfiRPrVO7D8NNSsf1voI2Gb0qFJceof/J5c9E+nfNuHw==", + "type": "package", + "path": "microsoft.aspnetcore.components.analyzers/9.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.9.0.1.nupkg.sha512", + "microsoft.aspnetcore.components.analyzers.nuspec" + ] + }, + "Microsoft.AspNetCore.Components.Forms/9.0.1": { + "sha512": "KyULVU32bLz74LWDwPEwNUEllTehzWJuM7YAsz80rMKEzvR0K8cRjRzO0fnN/nfydMeLRRlbI0xj8wnEAymLVw==", + "type": "package", + "path": "microsoft.aspnetcore.components.forms/9.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.txt", + "lib/net9.0/Microsoft.AspNetCore.Components.Forms.dll", + "lib/net9.0/Microsoft.AspNetCore.Components.Forms.xml", + "microsoft.aspnetcore.components.forms.9.0.1.nupkg.sha512", + "microsoft.aspnetcore.components.forms.nuspec" + ] + }, + "Microsoft.AspNetCore.Components.Web/9.0.1": { + "sha512": "LI0vjYEd9MaDZPDQxPCn4gGYDkEC5U9rp1nWZo7rPozJxgTG2zU3WERujxTi2LeAC2ZzdXlOVCrUyPQ55LZV2A==", + "type": "package", + "path": "microsoft.aspnetcore.components.web/9.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.txt", + "lib/net9.0/Microsoft.AspNetCore.Components.Web.dll", + "lib/net9.0/Microsoft.AspNetCore.Components.Web.xml", + "microsoft.aspnetcore.components.web.9.0.1.nupkg.sha512", + "microsoft.aspnetcore.components.web.nuspec" + ] + }, + "Microsoft.AspNetCore.Cryptography.Internal/9.0.8": { + "sha512": "NwGO0wh/IjEthBLGA6fWfIiftsNF/paA5RxWp6ji4wWazetJgQ4truR9nU2thAzzFLiXqlg8vGjdVDA8bHu0zA==", + "type": "package", + "path": "microsoft.aspnetcore.cryptography.internal/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/Microsoft.AspNetCore.Cryptography.Internal.dll", + "lib/net462/Microsoft.AspNetCore.Cryptography.Internal.xml", + "lib/net9.0/Microsoft.AspNetCore.Cryptography.Internal.dll", + "lib/net9.0/Microsoft.AspNetCore.Cryptography.Internal.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.xml", + "microsoft.aspnetcore.cryptography.internal.9.0.8.nupkg.sha512", + "microsoft.aspnetcore.cryptography.internal.nuspec" + ] + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/9.0.8": { + "sha512": "gK70xxXYwwPiXYKYVmLYMuIO5EOGrRtQghmM6PkgtZ/0lgLEjIs//xgSLvZkV/mroNHA1DEqTcqscEj9OzZ1IA==", + "type": "package", + "path": "microsoft.aspnetcore.cryptography.keyderivation/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll", + "lib/net462/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml", + "lib/net9.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll", + "lib/net9.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml", + "microsoft.aspnetcore.cryptography.keyderivation.9.0.8.nupkg.sha512", + "microsoft.aspnetcore.cryptography.keyderivation.nuspec" + ] + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore/9.0.8": { + "sha512": "z4q9roxXMQePwFM5tXXZS5sKkU78yYXVkj56NYYx9xKe+mxGkJMV1MaO0GFE6HnnM8bE3Xxhs0hAPw2jKbse6w==", + "type": "package", + "path": "microsoft.aspnetcore.identity.entityframeworkcore/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net9.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll", + "lib/net9.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.xml", + "microsoft.aspnetcore.identity.entityframeworkcore.9.0.8.nupkg.sha512", + "microsoft.aspnetcore.identity.entityframeworkcore.nuspec" + ] + }, + "Microsoft.AspNetCore.Metadata/9.0.1": { + "sha512": "EZnHifamF7IFEIyjAKMtJM3I/94OIe72i3P09v5oL0twmsmfQwal6Ni3m8lbB5mge3jWFhMozeW+rUdRSqnXRQ==", + "type": "package", + "path": "microsoft.aspnetcore.metadata/9.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/Microsoft.AspNetCore.Metadata.dll", + "lib/net462/Microsoft.AspNetCore.Metadata.xml", + "lib/net9.0/Microsoft.AspNetCore.Metadata.dll", + "lib/net9.0/Microsoft.AspNetCore.Metadata.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Metadata.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Metadata.xml", + "microsoft.aspnetcore.metadata.9.0.1.nupkg.sha512", + "microsoft.aspnetcore.metadata.nuspec" + ] + }, + "Microsoft.CSharp/4.7.0": { + "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", + "type": "package", + "path": "microsoft.csharp/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/Microsoft.CSharp.dll", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.3/Microsoft.CSharp.dll", + "lib/netstandard2.0/Microsoft.CSharp.dll", + "lib/netstandard2.0/Microsoft.CSharp.xml", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/uap10.0.16299/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.csharp.4.7.0.nupkg.sha512", + "microsoft.csharp.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/Microsoft.CSharp.dll", + "ref/netcore50/Microsoft.CSharp.xml", + "ref/netcore50/de/Microsoft.CSharp.xml", + "ref/netcore50/es/Microsoft.CSharp.xml", + "ref/netcore50/fr/Microsoft.CSharp.xml", + "ref/netcore50/it/Microsoft.CSharp.xml", + "ref/netcore50/ja/Microsoft.CSharp.xml", + "ref/netcore50/ko/Microsoft.CSharp.xml", + "ref/netcore50/ru/Microsoft.CSharp.xml", + "ref/netcore50/zh-hans/Microsoft.CSharp.xml", + "ref/netcore50/zh-hant/Microsoft.CSharp.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.0/Microsoft.CSharp.dll", + "ref/netstandard1.0/Microsoft.CSharp.xml", + "ref/netstandard1.0/de/Microsoft.CSharp.xml", + "ref/netstandard1.0/es/Microsoft.CSharp.xml", + "ref/netstandard1.0/fr/Microsoft.CSharp.xml", + "ref/netstandard1.0/it/Microsoft.CSharp.xml", + "ref/netstandard1.0/ja/Microsoft.CSharp.xml", + "ref/netstandard1.0/ko/Microsoft.CSharp.xml", + "ref/netstandard1.0/ru/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml", + "ref/netstandard2.0/Microsoft.CSharp.dll", + "ref/netstandard2.0/Microsoft.CSharp.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.0.16299/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.EntityFrameworkCore/9.0.8": { + "sha512": "bNGdPhN762+BIIO5MFYLjafRqkSS1MqLOc/erd55InvLnFxt9H3N5JNsuag1ZHyBor1VtD42U0CHpgqkWeAYgQ==", + "type": "package", + "path": "microsoft.entityframeworkcore/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "buildTransitive/net8.0/Microsoft.EntityFrameworkCore.props", + "lib/net8.0/Microsoft.EntityFrameworkCore.dll", + "lib/net8.0/Microsoft.EntityFrameworkCore.xml", + "microsoft.entityframeworkcore.9.0.8.nupkg.sha512", + "microsoft.entityframeworkcore.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Abstractions/9.0.8": { + "sha512": "B2yfAIQRRAQ4zvvWqh+HudD+juV3YoLlpXnrog3tU0PM9AFpuq6xo0+mEglN1P43WgdcUiF+65CWBcZe35s15Q==", + "type": "package", + "path": "microsoft.entityframeworkcore.abstractions/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll", + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.xml", + "microsoft.entityframeworkcore.abstractions.9.0.8.nupkg.sha512", + "microsoft.entityframeworkcore.abstractions.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Analyzers/9.0.8": { + "sha512": "2EYStCXt4Hi9p3J3EYMQbItJDtASJd064Kcs8C8hj8Jt5srILrR9qlaL0Ryvk8NrWQoCQvIELsmiuqLEZMLvGA==", + "type": "package", + "path": "microsoft.entityframeworkcore.analyzers/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll", + "docs/PACKAGE.md", + "microsoft.entityframeworkcore.analyzers.9.0.8.nupkg.sha512", + "microsoft.entityframeworkcore.analyzers.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Relational/9.0.8": { + "sha512": "OVhfyxiHxMvYpwQ8Jy3YZi4koy6TK5/Q7C1oq3z6db+HEGuu6x9L1BX5zDIdJxxlRePMyO4D8ORiXj/D7+MUqw==", + "type": "package", + "path": "microsoft.entityframeworkcore.relational/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll", + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.xml", + "microsoft.entityframeworkcore.relational.9.0.8.nupkg.sha512", + "microsoft.entityframeworkcore.relational.nuspec" + ] + }, + "Microsoft.Extensions.Caching.Abstractions/9.0.8": { + "sha512": "4h7bsVoKoiK+SlPM+euX/ayGnKZhl47pPCidLTiio9xyG+vgVVfcYxcYQgjm0SCrdSxjG0EGIAKF8EFr3G8Ifw==", + "type": "package", + "path": "microsoft.extensions.caching.abstractions/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Caching.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml", + "microsoft.extensions.caching.abstractions.9.0.8.nupkg.sha512", + "microsoft.extensions.caching.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Caching.Memory/9.0.8": { + "sha512": "grR+oPyj8HVn4DT8CFUUdSw2pZZKS13KjytFe4txpHQliGM1GEDotohmjgvyl3hm7RFB3FRqvbouEX3/1ewp5A==", + "type": "package", + "path": "microsoft.extensions.caching.memory/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Caching.Memory.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Memory.targets", + "lib/net462/Microsoft.Extensions.Caching.Memory.dll", + "lib/net462/Microsoft.Extensions.Caching.Memory.xml", + "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/net8.0/Microsoft.Extensions.Caching.Memory.xml", + "lib/net9.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/net9.0/Microsoft.Extensions.Caching.Memory.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml", + "microsoft.extensions.caching.memory.9.0.8.nupkg.sha512", + "microsoft.extensions.caching.memory.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.8": { + "sha512": "yNou2KM35RvzOh4vUFtl2l33rWPvOCoba+nzEDJ+BgD8aOL/jew4WPCibQvntRfOJ2pJU8ARygSMD+pdjvDHuA==", + "type": "package", + "path": "microsoft.extensions.configuration.abstractions/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "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/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.9.0.8.nupkg.sha512", + "microsoft.extensions.configuration.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection/9.0.8": { + "sha512": "JJjI2Fa+QtZcUyuNjbKn04OjIUX5IgFGFu/Xc+qvzh1rXdZHLcnqqVXhR4093bGirTwacRlHiVg1XYI9xum6QQ==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets", + "lib/net462/Microsoft.Extensions.DependencyInjection.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml", + "microsoft.extensions.dependencyinjection.9.0.8.nupkg.sha512", + "microsoft.extensions.dependencyinjection.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.8": { + "sha512": "xY3lTjj4+ZYmiKIkyWitddrp1uL5uYiweQjqo4BKBw01ZC4HhcfgLghDpPZcUlppgWAFqFy9SgkiYWOMx365pw==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "microsoft.extensions.dependencyinjection.abstractions.9.0.8.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Identity.Core/9.0.8": { + "sha512": "giUYz84GHAizDucZp5vWAusDO2s9Jrrg2jQ6HUQNGs5HQMKJVobLPMQSiyg8R4yecH0pIc0QjANh0B/Kw13BHA==", + "type": "package", + "path": "microsoft.extensions.identity.core/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/Microsoft.Extensions.Identity.Core.dll", + "lib/net462/Microsoft.Extensions.Identity.Core.xml", + "lib/net9.0/Microsoft.Extensions.Identity.Core.dll", + "lib/net9.0/Microsoft.Extensions.Identity.Core.xml", + "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.dll", + "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.xml", + "microsoft.extensions.identity.core.9.0.8.nupkg.sha512", + "microsoft.extensions.identity.core.nuspec" + ] + }, + "Microsoft.Extensions.Identity.Stores/9.0.8": { + "sha512": "sycaHcq78yI591+KxEdd53a7pJGQEl9H/wDsFkaPNE9g7loyq8vufPcc/9RH3KlGt5joR5Ey7PdoRSrlLjCgJg==", + "type": "package", + "path": "microsoft.extensions.identity.stores/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/Microsoft.Extensions.Identity.Stores.dll", + "lib/net462/Microsoft.Extensions.Identity.Stores.xml", + "lib/net9.0/Microsoft.Extensions.Identity.Stores.dll", + "lib/net9.0/Microsoft.Extensions.Identity.Stores.xml", + "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.dll", + "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.xml", + "microsoft.extensions.identity.stores.9.0.8.nupkg.sha512", + "microsoft.extensions.identity.stores.nuspec" + ] + }, + "Microsoft.Extensions.Localization/9.0.1": { + "sha512": "UgvX4Yb2T3tEsKT30ktZr0H7kTRPapCgEH0bdTwxiEGSdA39/hAQMvvb+vgHpqmevDU5+puyI9ujRkmmbF946w==", + "type": "package", + "path": "microsoft.extensions.localization/9.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/Microsoft.Extensions.Localization.dll", + "lib/net462/Microsoft.Extensions.Localization.xml", + "lib/net9.0/Microsoft.Extensions.Localization.dll", + "lib/net9.0/Microsoft.Extensions.Localization.xml", + "lib/netstandard2.0/Microsoft.Extensions.Localization.dll", + "lib/netstandard2.0/Microsoft.Extensions.Localization.xml", + "microsoft.extensions.localization.9.0.1.nupkg.sha512", + "microsoft.extensions.localization.nuspec" + ] + }, + "Microsoft.Extensions.Localization.Abstractions/9.0.1": { + "sha512": "CABog43lyaZQMjmlktuImCy6zmAzRBaXqN81uPaMQjlp//ISDVYItZPh6KWpWRF4MY/B67X5oDc3JTUpfdocZw==", + "type": "package", + "path": "microsoft.extensions.localization.abstractions/9.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/Microsoft.Extensions.Localization.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Localization.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.Localization.Abstractions.dll", + "lib/net9.0/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.9.0.1.nupkg.sha512", + "microsoft.extensions.localization.abstractions.nuspec" + ] + }, + "Microsoft.Extensions.Logging/9.0.8": { + "sha512": "Z/7ze+0iheT7FJeZPqJKARYvyC2bmwu3whbm/48BJjdlGVvgDguoCqJIkI/67NkroTYobd5geai1WheNQvWrgA==", + "type": "package", + "path": "microsoft.extensions.logging/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "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/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.9.0.8.nupkg.sha512", + "microsoft.extensions.logging.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.8": { + "sha512": "pYnAffJL7ARD/HCnnPvnFKSIHnTSmWz84WIlT9tPeQ4lHNiu0Az7N/8itihWvcF8sT+VVD5lq8V+ckMzu4SbOw==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", + "microsoft.extensions.logging.abstractions.9.0.8.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Options/9.0.8": { + "sha512": "OmTaQ0v4gxGQkehpwWIqPoEiwsPuG/u4HUsbOFoWGx4DKET2AXzopnFe/fE608FIhzc/kcg2p8JdyMRCCUzitQ==", + "type": "package", + "path": "microsoft.extensions.options/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Options.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "buildTransitive/net461/Microsoft.Extensions.Options.targets", + "buildTransitive/net462/Microsoft.Extensions.Options.targets", + "buildTransitive/net8.0/Microsoft.Extensions.Options.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Options.targets", + "lib/net462/Microsoft.Extensions.Options.dll", + "lib/net462/Microsoft.Extensions.Options.xml", + "lib/net8.0/Microsoft.Extensions.Options.dll", + "lib/net8.0/Microsoft.Extensions.Options.xml", + "lib/net9.0/Microsoft.Extensions.Options.dll", + "lib/net9.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.0/Microsoft.Extensions.Options.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.1/Microsoft.Extensions.Options.dll", + "lib/netstandard2.1/Microsoft.Extensions.Options.xml", + "microsoft.extensions.options.9.0.8.nupkg.sha512", + "microsoft.extensions.options.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Primitives/9.0.8": { + "sha512": "tizSIOEsIgSNSSh+hKeUVPK7xmTIjR8s+mJWOu1KXV3htvNQiPMFRMO17OdI1y/4ZApdBVk49u/08QGC9yvLug==", + "type": "package", + "path": "microsoft.extensions.primitives/9.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Primitives.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets", + "lib/net462/Microsoft.Extensions.Primitives.dll", + "lib/net462/Microsoft.Extensions.Primitives.xml", + "lib/net8.0/Microsoft.Extensions.Primitives.dll", + "lib/net8.0/Microsoft.Extensions.Primitives.xml", + "lib/net9.0/Microsoft.Extensions.Primitives.dll", + "lib/net9.0/Microsoft.Extensions.Primitives.xml", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", + "microsoft.extensions.primitives.9.0.8.nupkg.sha512", + "microsoft.extensions.primitives.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.JSInterop/9.0.1": { + "sha512": "/xBwIfb0YoC2Muv6EsHjxpqZw2aKv94+i0g0FWZvqvGv3DeAy+8wipAuECVvKYEs2EIclRD41bjajHLoD6mTtw==", + "type": "package", + "path": "microsoft.jsinterop/9.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net9.0/Microsoft.JSInterop.dll", + "lib/net9.0/Microsoft.JSInterop.xml", + "microsoft.jsinterop.9.0.1.nupkg.sha512", + "microsoft.jsinterop.nuspec" + ] + }, + "Microsoft.Win32.Registry/4.7.0": { + "sha512": "KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", + "type": "package", + "path": "microsoft.win32.registry/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.xml", + "lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "microsoft.win32.registry.4.7.0.nupkg.sha512", + "microsoft.win32.registry.nuspec", + "ref/net46/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.xml", + "ref/net472/Microsoft.Win32.Registry.dll", + "ref/net472/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/Microsoft.Win32.Registry.dll", + "ref/netstandard1.3/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml", + "ref/netstandard2.0/Microsoft.Win32.Registry.dll", + "ref/netstandard2.0/Microsoft.Win32.Registry.xml", + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml", + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "sha512": "hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==", + "type": "package", + "path": "microsoft.win32.systemevents/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Win32.SystemEvents.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Win32.SystemEvents.dll", + "lib/net461/Microsoft.Win32.SystemEvents.xml", + "lib/net6.0/Microsoft.Win32.SystemEvents.dll", + "lib/net6.0/Microsoft.Win32.SystemEvents.xml", + "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll", + "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml", + "microsoft.win32.systemevents.6.0.0.nupkg.sha512", + "microsoft.win32.systemevents.nuspec", + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.xml", + "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml", + "useSharedDesignerContext.txt" + ] + }, + "MudBlazor/8.13.0": { + "sha512": "Y6JW93zf8tiVhMSkkL0mZ3ruqjOTNftvVoX3sik6NEnIye+Gs0FXI8rhXfrH2LU79Mw/fOtT5ms3L/Q4TKx2kA==", + "type": "package", + "path": "mudblazor/8.13.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE", + "Nuget.png", + "README.md", + "analyzers/dotnet/cs/MudBlazor.Analyzers.dll", + "build/Microsoft.AspNetCore.StaticWebAssetEndpoints.props", + "build/Microsoft.AspNetCore.StaticWebAssets.props", + "build/MudBlazor.props", + "build/MudBlazor.targets", + "buildMultiTargeting/MudBlazor.props", + "buildTransitive/MudBlazor.props", + "lib/net8.0/MudBlazor.dll", + "lib/net8.0/MudBlazor.xml", + "lib/net9.0/MudBlazor.dll", + "lib/net9.0/MudBlazor.xml", + "mudblazor.8.13.0.nupkg.sha512", + "mudblazor.nuspec", + "staticwebassets/MudBlazor.min.css", + "staticwebassets/MudBlazor.min.js" + ] + }, + "Npgsql/9.0.3": { + "sha512": "tPvY61CxOAWxNsKLEBg+oR646X4Bc8UmyQ/tJszL/7mEmIXQnnBhVJZrZEEUv0Bstu0mEsHZD5At3EO8zQRAYw==", + "type": "package", + "path": "npgsql/9.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net6.0/Npgsql.dll", + "lib/net6.0/Npgsql.xml", + "lib/net8.0/Npgsql.dll", + "lib/net8.0/Npgsql.xml", + "npgsql.9.0.3.nupkg.sha512", + "npgsql.nuspec", + "postgresql.png" + ] + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/9.0.4": { + "sha512": "mw5vcY2IEc7L+IeGrxpp/J5OSnCcjkjAgJYCm/eD52wpZze8zsSifdqV7zXslSMmfJG2iIUGZyo3KuDtEFKwMQ==", + "type": "package", + "path": "npgsql.entityframeworkcore.postgresql/9.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll", + "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.xml", + "npgsql.entityframeworkcore.postgresql.9.0.4.nupkg.sha512", + "npgsql.entityframeworkcore.postgresql.nuspec", + "postgresql.png" + ] + }, + "runtime.native.System.Data.SqlClient.sni/4.7.0": { + "sha512": "9kyFSIdN3T0qjDQ2R0HRXYIhS3l5psBzQi6qqhdLz+SzFyEy4sVxNOke+yyYv8Cu8rPER12c3RDjLT8wF3WBYQ==", + "type": "package", + "path": "runtime.native.system.data.sqlclient.sni/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512", + "runtime.native.system.data.sqlclient.sni.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "sha512": "LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==", + "type": "package", + "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.nuspec", + "runtimes/win-arm64/native/sni.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "sha512": "38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==", + "type": "package", + "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "runtime.win-x64.runtime.native.system.data.sqlclient.sni.nuspec", + "runtimes/win-x64/native/sni.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "sha512": "YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==", + "type": "package", + "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "runtime.win-x86.runtime.native.system.data.sqlclient.sni.nuspec", + "runtimes/win-x86/native/sni.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.CodeDom/6.0.0": { + "sha512": "CPc6tWO1LAer3IzfZufDBRL+UZQcj5uS207NHALQzP84Vp/z6wF0Aa0YZImOQY8iStY0A2zI/e3ihKNPfUm8XA==", + "type": "package", + "path": "system.codedom/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.CodeDom.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.CodeDom.dll", + "lib/net461/System.CodeDom.xml", + "lib/net6.0/System.CodeDom.dll", + "lib/net6.0/System.CodeDom.xml", + "lib/netstandard2.0/System.CodeDom.dll", + "lib/netstandard2.0/System.CodeDom.xml", + "system.codedom.6.0.0.nupkg.sha512", + "system.codedom.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.ComponentModel.Annotations/5.0.0": { + "sha512": "dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==", + "type": "package", + "path": "system.componentmodel.annotations/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.ComponentModel.Annotations.dll", + "lib/netcore50/System.ComponentModel.Annotations.dll", + "lib/netstandard1.4/System.ComponentModel.Annotations.dll", + "lib/netstandard2.0/System.ComponentModel.Annotations.dll", + "lib/netstandard2.1/System.ComponentModel.Annotations.dll", + "lib/netstandard2.1/System.ComponentModel.Annotations.xml", + "lib/portable-net45+win8/_._", + "lib/win8/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.ComponentModel.Annotations.dll", + "ref/net461/System.ComponentModel.Annotations.xml", + "ref/netcore50/System.ComponentModel.Annotations.dll", + "ref/netcore50/System.ComponentModel.Annotations.xml", + "ref/netcore50/de/System.ComponentModel.Annotations.xml", + "ref/netcore50/es/System.ComponentModel.Annotations.xml", + "ref/netcore50/fr/System.ComponentModel.Annotations.xml", + "ref/netcore50/it/System.ComponentModel.Annotations.xml", + "ref/netcore50/ja/System.ComponentModel.Annotations.xml", + "ref/netcore50/ko/System.ComponentModel.Annotations.xml", + "ref/netcore50/ru/System.ComponentModel.Annotations.xml", + "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/System.ComponentModel.Annotations.dll", + "ref/netstandard1.1/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/System.ComponentModel.Annotations.dll", + "ref/netstandard1.3/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/System.ComponentModel.Annotations.dll", + "ref/netstandard1.4/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard2.0/System.ComponentModel.Annotations.dll", + "ref/netstandard2.0/System.ComponentModel.Annotations.xml", + "ref/netstandard2.1/System.ComponentModel.Annotations.dll", + "ref/netstandard2.1/System.ComponentModel.Annotations.xml", + "ref/portable-net45+win8/_._", + "ref/win8/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.annotations.5.0.0.nupkg.sha512", + "system.componentmodel.annotations.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Configuration.ConfigurationManager/6.0.1": { + "sha512": "jXw9MlUu/kRfEU0WyTptAVueupqIeE3/rl0EZDMlf8pcvJnitQ8HeVEp69rZdaStXwTV72boi/Bhw8lOeO+U2w==", + "type": "package", + "path": "system.configuration.configurationmanager/6.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Configuration.ConfigurationManager.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Configuration.ConfigurationManager.dll", + "lib/net461/System.Configuration.ConfigurationManager.xml", + "lib/net6.0/System.Configuration.ConfigurationManager.dll", + "lib/net6.0/System.Configuration.ConfigurationManager.xml", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml", + "runtimes/win/lib/net461/System.Configuration.ConfigurationManager.dll", + "runtimes/win/lib/net461/System.Configuration.ConfigurationManager.xml", + "system.configuration.configurationmanager.6.0.1.nupkg.sha512", + "system.configuration.configurationmanager.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Data.SqlClient/4.8.6": { + "sha512": "2Ij/LCaTQRyAi5lAv7UUTV9R2FobC8xN9mE0fXBZohum/xLl8IZVmE98Rq5ugQHjCgTBRKqpXRb4ORulRdA6Ig==", + "type": "package", + "path": "system.data.sqlclient/4.8.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net451/System.Data.SqlClient.dll", + "lib/net46/System.Data.SqlClient.dll", + "lib/net461/System.Data.SqlClient.dll", + "lib/net461/System.Data.SqlClient.xml", + "lib/netcoreapp2.1/System.Data.SqlClient.dll", + "lib/netcoreapp2.1/System.Data.SqlClient.xml", + "lib/netstandard1.2/System.Data.SqlClient.dll", + "lib/netstandard1.2/System.Data.SqlClient.xml", + "lib/netstandard1.3/System.Data.SqlClient.dll", + "lib/netstandard1.3/System.Data.SqlClient.xml", + "lib/netstandard2.0/System.Data.SqlClient.dll", + "lib/netstandard2.0/System.Data.SqlClient.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net451/System.Data.SqlClient.dll", + "ref/net46/System.Data.SqlClient.dll", + "ref/net461/System.Data.SqlClient.dll", + "ref/net461/System.Data.SqlClient.xml", + "ref/netcoreapp2.1/System.Data.SqlClient.dll", + "ref/netcoreapp2.1/System.Data.SqlClient.xml", + "ref/netstandard1.2/System.Data.SqlClient.dll", + "ref/netstandard1.2/System.Data.SqlClient.xml", + "ref/netstandard1.2/de/System.Data.SqlClient.xml", + "ref/netstandard1.2/es/System.Data.SqlClient.xml", + "ref/netstandard1.2/fr/System.Data.SqlClient.xml", + "ref/netstandard1.2/it/System.Data.SqlClient.xml", + "ref/netstandard1.2/ja/System.Data.SqlClient.xml", + "ref/netstandard1.2/ko/System.Data.SqlClient.xml", + "ref/netstandard1.2/ru/System.Data.SqlClient.xml", + "ref/netstandard1.2/zh-hans/System.Data.SqlClient.xml", + "ref/netstandard1.2/zh-hant/System.Data.SqlClient.xml", + "ref/netstandard1.3/System.Data.SqlClient.dll", + "ref/netstandard1.3/System.Data.SqlClient.xml", + "ref/netstandard1.3/de/System.Data.SqlClient.xml", + "ref/netstandard1.3/es/System.Data.SqlClient.xml", + "ref/netstandard1.3/fr/System.Data.SqlClient.xml", + "ref/netstandard1.3/it/System.Data.SqlClient.xml", + "ref/netstandard1.3/ja/System.Data.SqlClient.xml", + "ref/netstandard1.3/ko/System.Data.SqlClient.xml", + "ref/netstandard1.3/ru/System.Data.SqlClient.xml", + "ref/netstandard1.3/zh-hans/System.Data.SqlClient.xml", + "ref/netstandard1.3/zh-hant/System.Data.SqlClient.xml", + "ref/netstandard2.0/System.Data.SqlClient.dll", + "ref/netstandard2.0/System.Data.SqlClient.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll", + "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.xml", + "runtimes/unix/lib/netstandard1.3/System.Data.SqlClient.dll", + "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll", + "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.xml", + "runtimes/win/lib/net451/System.Data.SqlClient.dll", + "runtimes/win/lib/net46/System.Data.SqlClient.dll", + "runtimes/win/lib/net461/System.Data.SqlClient.dll", + "runtimes/win/lib/net461/System.Data.SqlClient.xml", + "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll", + "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.xml", + "runtimes/win/lib/netstandard1.3/System.Data.SqlClient.dll", + "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll", + "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.xml", + "runtimes/win/lib/uap10.0.16299/System.Data.SqlClient.dll", + "runtimes/win/lib/uap10.0.16299/System.Data.SqlClient.xml", + "system.data.sqlclient.4.8.6.nupkg.sha512", + "system.data.sqlclient.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Drawing.Common/6.0.0": { + "sha512": "NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==", + "type": "package", + "path": "system.drawing.common/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Drawing.Common.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Drawing.Common.dll", + "lib/net461/System.Drawing.Common.xml", + "lib/net6.0/System.Drawing.Common.dll", + "lib/net6.0/System.Drawing.Common.xml", + "lib/netcoreapp3.1/System.Drawing.Common.dll", + "lib/netcoreapp3.1/System.Drawing.Common.xml", + "lib/netstandard2.0/System.Drawing.Common.dll", + "lib/netstandard2.0/System.Drawing.Common.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "runtimes/unix/lib/net6.0/System.Drawing.Common.dll", + "runtimes/unix/lib/net6.0/System.Drawing.Common.xml", + "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.dll", + "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.xml", + "runtimes/win/lib/net6.0/System.Drawing.Common.dll", + "runtimes/win/lib/net6.0/System.Drawing.Common.xml", + "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.dll", + "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.xml", + "system.drawing.common.6.0.0.nupkg.sha512", + "system.drawing.common.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.AccessControl/6.0.0": { + "sha512": "AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==", + "type": "package", + "path": "system.security.accesscontrol/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Security.AccessControl.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.xml", + "lib/net6.0/System.Security.AccessControl.dll", + "lib/net6.0/System.Security.AccessControl.xml", + "lib/netstandard2.0/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.xml", + "runtimes/win/lib/net461/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.xml", + "runtimes/win/lib/net6.0/System.Security.AccessControl.dll", + "runtimes/win/lib/net6.0/System.Security.AccessControl.xml", + "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.dll", + "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.xml", + "system.security.accesscontrol.6.0.0.nupkg.sha512", + "system.security.accesscontrol.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Cryptography.ProtectedData/6.0.0": { + "sha512": "rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==", + "type": "package", + "path": "system.security.cryptography.protecteddata/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Security.Cryptography.ProtectedData.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Security.Cryptography.ProtectedData.dll", + "lib/net461/System.Security.Cryptography.ProtectedData.xml", + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll", + "lib/net6.0/System.Security.Cryptography.ProtectedData.xml", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml", + "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.xml", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512", + "system.security.cryptography.protecteddata.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Permissions/6.0.0": { + "sha512": "T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==", + "type": "package", + "path": "system.security.permissions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Security.Permissions.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Security.Permissions.dll", + "lib/net461/System.Security.Permissions.xml", + "lib/net5.0/System.Security.Permissions.dll", + "lib/net5.0/System.Security.Permissions.xml", + "lib/net6.0/System.Security.Permissions.dll", + "lib/net6.0/System.Security.Permissions.xml", + "lib/netcoreapp3.1/System.Security.Permissions.dll", + "lib/netcoreapp3.1/System.Security.Permissions.xml", + "lib/netstandard2.0/System.Security.Permissions.dll", + "lib/netstandard2.0/System.Security.Permissions.xml", + "runtimes/win/lib/net461/System.Security.Permissions.dll", + "runtimes/win/lib/net461/System.Security.Permissions.xml", + "system.security.permissions.6.0.0.nupkg.sha512", + "system.security.permissions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Principal.Windows/4.7.0": { + "sha512": "ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==", + "type": "package", + "path": "system.security.principal.windows/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.xml", + "lib/netstandard1.3/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.xml", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.xml", + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll", + "ref/netcoreapp3.0/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/System.Security.Principal.Windows.dll", + "ref/netstandard1.3/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/de/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/es/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/it/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml", + "ref/netstandard2.0/System.Security.Principal.Windows.dll", + "ref/netstandard2.0/System.Security.Principal.Windows.xml", + "ref/uap10.0.16299/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.principal.windows.4.7.0.nupkg.sha512", + "system.security.principal.windows.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Windows.Extensions/6.0.0": { + "sha512": "IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==", + "type": "package", + "path": "system.windows.extensions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net6.0/System.Windows.Extensions.dll", + "lib/net6.0/System.Windows.Extensions.xml", + "lib/netcoreapp3.1/System.Windows.Extensions.dll", + "lib/netcoreapp3.1/System.Windows.Extensions.xml", + "runtimes/win/lib/net6.0/System.Windows.Extensions.dll", + "runtimes/win/lib/net6.0/System.Windows.Extensions.xml", + "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.dll", + "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.xml", + "system.windows.extensions.6.0.0.nupkg.sha512", + "system.windows.extensions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "OpenArchival.DataAccess/1.0.0": { + "type": "project", + "path": "../OpenArchival.DataAccess/OpenArchival.DataAccess.csproj", + "msbuildProject": "../OpenArchival.DataAccess/OpenArchival.DataAccess.csproj" + } + }, + "projectFileDependencyGroups": { + "net9.0": [ + "CodeBeam.MudExtensions >= 6.3.0", + "MudBlazor >= 8.13.0", + "OpenArchival.DataAccess >= 1.0.0" + ] + }, + "packageFolders": { + "C:\\Users\\vtall\\.nuget\\packages\\": {}, + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.FileViewer\\OpenArchival.FileViewer.csproj", + "projectName": "OpenArchival.FileViewer", + "projectPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.FileViewer\\OpenArchival.FileViewer.csproj", + "packagesPath": "C:\\Users\\vtall\\.nuget\\packages\\", + "outputPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.FileViewer\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\NuGet.Config", + "C:\\Users\\vtall\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net9.0" + ], + "sources": { + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "projectReferences": { + "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj": { + "projectPath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "9.0.300" + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "dependencies": { + "CodeBeam.MudExtensions": { + "target": "Package", + "version": "[6.3.0, )" + }, + "MudBlazor": { + "target": "Package", + "version": "[8.13.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.304/PortableRuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/old/OpenArchival.FileViewer/obj/project.nuget.cache b/old/OpenArchival.FileViewer/obj/project.nuget.cache new file mode 100644 index 0000000..eaab237 --- /dev/null +++ b/old/OpenArchival.FileViewer/obj/project.nuget.cache @@ -0,0 +1,60 @@ +{ + "version": 2, + "dgSpecHash": "jl75vFhcIHY=", + "success": true, + "projectFilePath": "C:\\Users\\vtall\\source\\repos\\vtallen\\Open-Archival\\OpenArchival.FileViewer\\OpenArchival.FileViewer.csproj", + "expectedPackageFiles": [ + "C:\\Users\\vtall\\.nuget\\packages\\buildbundlerminifier\\3.2.449\\buildbundlerminifier.3.2.449.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\codebeam.mudextensions.6.3.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\csvhelper\\30.0.1\\csvhelper.30.0.1.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\entityframework\\6.5.1\\entityframework.6.5.1.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.aspnetcore.authorization\\9.0.1\\microsoft.aspnetcore.authorization.9.0.1.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.aspnetcore.components\\9.0.1\\microsoft.aspnetcore.components.9.0.1.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.aspnetcore.components.analyzers\\9.0.1\\microsoft.aspnetcore.components.analyzers.9.0.1.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.aspnetcore.components.forms\\9.0.1\\microsoft.aspnetcore.components.forms.9.0.1.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.aspnetcore.components.web\\9.0.1\\microsoft.aspnetcore.components.web.9.0.1.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.aspnetcore.cryptography.internal\\9.0.8\\microsoft.aspnetcore.cryptography.internal.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.aspnetcore.cryptography.keyderivation\\9.0.8\\microsoft.aspnetcore.cryptography.keyderivation.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.aspnetcore.identity.entityframeworkcore\\9.0.8\\microsoft.aspnetcore.identity.entityframeworkcore.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.aspnetcore.metadata\\9.0.1\\microsoft.aspnetcore.metadata.9.0.1.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.csharp\\4.7.0\\microsoft.csharp.4.7.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.entityframeworkcore\\9.0.8\\microsoft.entityframeworkcore.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\9.0.8\\microsoft.entityframeworkcore.abstractions.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\9.0.8\\microsoft.entityframeworkcore.analyzers.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\9.0.8\\microsoft.entityframeworkcore.relational.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\9.0.8\\microsoft.extensions.caching.abstractions.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.caching.memory\\9.0.8\\microsoft.extensions.caching.memory.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\9.0.8\\microsoft.extensions.configuration.abstractions.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\9.0.8\\microsoft.extensions.dependencyinjection.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\9.0.8\\microsoft.extensions.dependencyinjection.abstractions.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.identity.core\\9.0.8\\microsoft.extensions.identity.core.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.identity.stores\\9.0.8\\microsoft.extensions.identity.stores.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.localization\\9.0.1\\microsoft.extensions.localization.9.0.1.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.localization.abstractions\\9.0.1\\microsoft.extensions.localization.abstractions.9.0.1.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.logging\\9.0.8\\microsoft.extensions.logging.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\9.0.8\\microsoft.extensions.logging.abstractions.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.options\\9.0.8\\microsoft.extensions.options.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.extensions.primitives\\9.0.8\\microsoft.extensions.primitives.9.0.8.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.jsinterop\\9.0.1\\microsoft.jsinterop.9.0.1.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.win32.registry\\4.7.0\\microsoft.win32.registry.4.7.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\microsoft.win32.systemevents\\6.0.0\\microsoft.win32.systemevents.6.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\mudblazor\\8.13.0\\mudblazor.8.13.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\npgsql\\9.0.3\\npgsql.9.0.3.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\npgsql.entityframeworkcore.postgresql\\9.0.4\\npgsql.entityframeworkcore.postgresql.9.0.4.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\runtime.native.system.data.sqlclient.sni\\4.7.0\\runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\runtime.win-arm64.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\runtime.win-x64.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\runtime.win-x86.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.codedom\\6.0.0\\system.codedom.6.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.componentmodel.annotations\\5.0.0\\system.componentmodel.annotations.5.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.configuration.configurationmanager\\6.0.1\\system.configuration.configurationmanager.6.0.1.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.data.sqlclient\\4.8.6\\system.data.sqlclient.4.8.6.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.drawing.common\\6.0.0\\system.drawing.common.6.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.security.accesscontrol\\6.0.0\\system.security.accesscontrol.6.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.security.cryptography.protecteddata\\6.0.0\\system.security.cryptography.protecteddata.6.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.security.permissions\\6.0.0\\system.security.permissions.6.0.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.security.principal.windows\\4.7.0\\system.security.principal.windows.4.7.0.nupkg.sha512", + "C:\\Users\\vtall\\.nuget\\packages\\system.windows.extensions\\6.0.0\\system.windows.extensions.6.0.0.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file