init
This commit is contained in:
35
OpenArchival.Blazor.ArchiveDisplay/ArchiveSearchBar.razor
Normal file
35
OpenArchival.Blazor.ArchiveDisplay/ArchiveSearchBar.razor
Normal file
@@ -0,0 +1,35 @@
|
||||
@using MudBlazor
|
||||
@namespace OpenArchival.Blazor.ArchiveDisplay
|
||||
|
||||
<Microsoft.AspNetCore.Components.Forms.EditForm Model="this" OnSubmit="OnSubmit">
|
||||
<MudTextField FullWidth="true"
|
||||
AutoFocus="string.IsNullOrEmpty(SearchTerms)"
|
||||
Placeholder="Search"
|
||||
T="string"
|
||||
Variant="Variant.Outlined"
|
||||
Adornment="Adornment.Start"
|
||||
AdornmentIcon="@Icons.Material.Filled.Search"
|
||||
Class="mt-5"
|
||||
@bind-Value="SearchTerms"
|
||||
/>
|
||||
|
||||
</Microsoft.AspNetCore.Components.Forms.EditForm>
|
||||
@code {
|
||||
[Parameter]
|
||||
public string SearchTerms { get; set; } = "";
|
||||
|
||||
[Parameter]
|
||||
public EventCallback<string> SearchTermsChanged { get; set; }
|
||||
|
||||
private async Task HandleSearchKeyDown(Microsoft.AspNetCore.Components.Web.KeyboardEventArgs args)
|
||||
{
|
||||
if (args.Key == "Enter")
|
||||
{
|
||||
await SearchTermsChanged.InvokeAsync(SearchTerms);
|
||||
}
|
||||
}
|
||||
private async Task OnSubmit(Microsoft.AspNetCore.Components.Forms.EditContext args)
|
||||
{
|
||||
await SearchTermsChanged.InvokeAsync(SearchTerms);
|
||||
}
|
||||
}
|
||||
44
OpenArchival.Blazor.ArchiveDisplay/ArchiveSliderHome.razor
Normal file
44
OpenArchival.Blazor.ArchiveDisplay/ArchiveSliderHome.razor
Normal file
@@ -0,0 +1,44 @@
|
||||
@page "/featured"
|
||||
|
||||
@using Microsoft.EntityFrameworkCore
|
||||
@using Microsoft.Extensions.Logging
|
||||
@using MudBlazor
|
||||
@using NpgsqlTypes
|
||||
@using OpenArchival.DataAccess
|
||||
@using Persic
|
||||
@using Npgsql.EntityFrameworkCore.PostgreSQL
|
||||
@using System.Linq
|
||||
@using System.Linq.Expressions
|
||||
|
||||
@using OpenArchival.Blazor.ArtifactGroupingDisplay
|
||||
@using OpenArchival.Blazor.ArchiveSearch
|
||||
|
||||
@namespace OpenArchival.Blazor.ArchiveDisplay
|
||||
|
||||
<MudText Typo="Typo.h2" Color="Color.Primary" Align="Align.Center">Featured Artifacts</MudText>
|
||||
<MudButton Variant="Variant.Filled" Color="Color.Primary" FullWidth="true" Href="/search">See All Artifacts</MudButton>
|
||||
|
||||
@foreach (SearchPageSliderEntry entry in _sliderEntries)
|
||||
{
|
||||
<SearchPageSlider SliderEntry="entry"></SearchPageSlider>
|
||||
}
|
||||
|
||||
@inject IDbContextFactory<ApplicationDbContext> ContextFactory;
|
||||
@inject ILogger<SearchArchive> Logger;
|
||||
@inject NavigationManager NavigationManager;
|
||||
|
||||
@code {
|
||||
[Parameter]
|
||||
public string SearchTerms { get; set; } = "";
|
||||
|
||||
private List<SearchPageSliderEntry> _sliderEntries { get; set; } = [];
|
||||
|
||||
// Field to store the current filter logic
|
||||
private Expression<Func<ArtifactGrouping, bool>> _currentFilterPredicate;
|
||||
|
||||
protected override async Task OnParametersSetAsync()
|
||||
{
|
||||
await using var context = await ContextFactory.CreateDbContextAsync();
|
||||
_sliderEntries = await context.SearchPageSliderEntries.Include(e => e.FilterTags).Where(e=>e.IsHomePageSlider == false).ToListAsync();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
@page
|
||||
@model OpenArchival.Blazor.ArchiveSearch.MyFeature.Pages.Page1Model
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Page1</title>
|
||||
</head>
|
||||
<body>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,12 @@
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using Microsoft.AspNetCore.Mvc.RazorPages;
|
||||
|
||||
namespace OpenArchival.Blazor.ArchiveSearch.MyFeature.Pages;
|
||||
|
||||
public class Page1Model : PageModel
|
||||
{
|
||||
public void OnGet()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
132
OpenArchival.Blazor.ArchiveDisplay/ArtifactGroupingSearch.cs
Normal file
132
OpenArchival.Blazor.ArchiveDisplay/ArtifactGroupingSearch.cs
Normal file
@@ -0,0 +1,132 @@
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using Microsoft.EntityFrameworkCore.Internal;
|
||||
using Microsoft.Extensions.Logging;
|
||||
using MudBlazor;
|
||||
using Npgsql.EntityFrameworkCore.PostgreSQL;
|
||||
using NpgsqlTypes;
|
||||
using OpenArchival.DataAccess;
|
||||
using OpenArchival.DataAccess;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Drawing.Printing;
|
||||
using System.Linq;
|
||||
using System.Linq;
|
||||
using System.Linq.Expressions;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace OpenArchival.Blazor.ArchiveDisplay;
|
||||
|
||||
public enum ArchiveSearchFilterType
|
||||
{
|
||||
All,
|
||||
Tags,
|
||||
Defects,
|
||||
ListedNames,
|
||||
Title,
|
||||
Description,
|
||||
Filenames,
|
||||
ArtifactTranscriptions
|
||||
}
|
||||
|
||||
public class ArtifactGroupingSearch
|
||||
{
|
||||
|
||||
public int TotalResults { get; set; }
|
||||
|
||||
public int TotalPages { get; set; }
|
||||
|
||||
public int PageSize { get; set; } = 20;
|
||||
|
||||
public int CurrentPage { get; set; }
|
||||
|
||||
public List<ArtifactGrouping> SearchResults { get; set; } = [];
|
||||
|
||||
private string _searchTerms { get; set; }
|
||||
|
||||
private IDbContextFactory<ApplicationDbContext> _contextFactory { get; set; }
|
||||
|
||||
private Expression<Func<ArtifactGrouping, bool>> _currentFilterPredicate;
|
||||
|
||||
private ArchiveSearchFilterType _selectedFilter = ArchiveSearchFilterType.All;
|
||||
|
||||
public ArtifactGroupingSearch(IDbContextFactory<ApplicationDbContext> contextFactory)
|
||||
{
|
||||
_contextFactory = contextFactory;
|
||||
}
|
||||
|
||||
public async Task Search(string Terms, ArchiveSearchFilterType filter, int page = 1)
|
||||
{
|
||||
_searchTerms = Terms;
|
||||
_selectedFilter = filter;
|
||||
|
||||
// Determine which filter expression to use based on the radio button selection
|
||||
switch (_selectedFilter)
|
||||
{
|
||||
case ArchiveSearchFilterType.Tags:
|
||||
_currentFilterPredicate = x => x.TagsSearchVector.Matches(_searchTerms);
|
||||
break;
|
||||
case ArchiveSearchFilterType.Title:
|
||||
_currentFilterPredicate = x => x.TitleSearchVector.Matches(_searchTerms);
|
||||
break;
|
||||
case ArchiveSearchFilterType.Description:
|
||||
_currentFilterPredicate = x => x.DescriptionSearchVector.Matches(_searchTerms);
|
||||
break;
|
||||
case ArchiveSearchFilterType.Defects:
|
||||
_currentFilterPredicate = x => x.DefectsSearchVector.Matches(_searchTerms);
|
||||
break;
|
||||
case ArchiveSearchFilterType.Filenames:
|
||||
_currentFilterPredicate = x => x.FilenamesSearchVector.Matches(_searchTerms);
|
||||
break;
|
||||
case ArchiveSearchFilterType.ArtifactTranscriptions:
|
||||
_currentFilterPredicate = x => x.FileContentSearchVector.Matches(_searchTerms);
|
||||
break;
|
||||
case ArchiveSearchFilterType.ListedNames:
|
||||
_currentFilterPredicate = x => x.ListedNamesSearchVector.Matches(_searchTerms);
|
||||
break;
|
||||
case ArchiveSearchFilterType.All:
|
||||
default:
|
||||
_currentFilterPredicate = x => x.AllSearchVector.Matches(_searchTerms);
|
||||
break;
|
||||
}
|
||||
|
||||
// Get the total count using the chosen filter
|
||||
await using var context = await _contextFactory.CreateDbContextAsync();
|
||||
TotalResults = await context.ArtifactGroupings.Where(_currentFilterPredicate).CountAsync();
|
||||
TotalPages = (int)Math.Ceiling(TotalResults / (double)PageSize);
|
||||
|
||||
// Load the first page with the chosen filter
|
||||
await LoadPageAsync(page);
|
||||
}
|
||||
|
||||
public async Task LoadPageAsync(int page)
|
||||
{
|
||||
CurrentPage = page;
|
||||
|
||||
if (_currentFilterPredicate == null) // Don't run if no search has been performed
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
await using var context = await _contextFactory.CreateDbContextAsync();
|
||||
|
||||
// The query uses the dynamically set filter predicate
|
||||
SearchResults = await context.ArtifactGroupings
|
||||
.Where(_currentFilterPredicate)
|
||||
.Include(x => x.ChildArtifactEntries)
|
||||
.ThenInclude(x => x.Files)
|
||||
.Include(x=>x.Category)
|
||||
.OrderBy(x => x.Id)
|
||||
.Skip((CurrentPage - 1) * PageSize)
|
||||
.Take(PageSize)
|
||||
.ToListAsync();
|
||||
|
||||
}
|
||||
|
||||
public void ClearResults()
|
||||
{
|
||||
SearchResults.Clear();
|
||||
TotalResults = 0;
|
||||
TotalPages = 0;
|
||||
}
|
||||
}
|
||||
111
OpenArchival.Blazor.ArchiveDisplay/FilterSelectorComponent.razor
Normal file
111
OpenArchival.Blazor.ArchiveDisplay/FilterSelectorComponent.razor
Normal file
@@ -0,0 +1,111 @@
|
||||
@namespace OpenArchival.Blazor.ArchiveDisplay
|
||||
@using Microsoft.AspNetCore.Components.Web
|
||||
@using MudBlazor
|
||||
|
||||
<MudExpansionPanel Text="Filter...">
|
||||
<MudText Typo="Typo.caption">Choose which data the serach bar will search on:</MudText>
|
||||
<MudDivider></MudDivider>
|
||||
|
||||
<MudRadioGroup
|
||||
T="ArchiveSearchFilterType"
|
||||
Value="SelectedFilter"
|
||||
ValueChanged="OnSelectedFilterChanged"
|
||||
>
|
||||
<MudRadio Option="ArchiveSearchFilterType.All" T="ArchiveSearchFilterType">All</MudRadio>
|
||||
<MudRadio Option="ArchiveSearchFilterType.Tags" T="ArchiveSearchFilterType">Tags</MudRadio>
|
||||
<MudRadio Option="ArchiveSearchFilterType.Defects" T="ArchiveSearchFilterType">Defects</MudRadio>
|
||||
<MudRadio Option="ArchiveSearchFilterType.ListedNames" T="ArchiveSearchFilterType">Listed Names</MudRadio>
|
||||
<MudRadio Option="ArchiveSearchFilterType.Title" T="ArchiveSearchFilterType">Title</MudRadio>
|
||||
<MudRadio Option="ArchiveSearchFilterType.Description" T="ArchiveSearchFilterType">Description</MudRadio>
|
||||
<MudRadio Option="ArchiveSearchFilterType.Filenames" T="ArchiveSearchFilterType">Filenames</MudRadio>
|
||||
<MudRadio Option="ArchiveSearchFilterType.ArtifactTranscriptions" T="ArchiveSearchFilterType">Artifact Transcriptions</MudRadio>
|
||||
|
||||
</MudRadioGroup>
|
||||
|
||||
@if (SelectedTitlePrefixEnabled)
|
||||
{
|
||||
<MudText Typo="Typo.caption">Filter artifacts by the first letter of their title</MudText>
|
||||
<MudDivider/>
|
||||
<MudSelect
|
||||
Text="Title First Letter Filter"
|
||||
T="string"
|
||||
Value="SelectedTitlePrefix"
|
||||
ValueChanged="OnSelectedTitlePrefixChanged"
|
||||
Variant="Variant.Outlined">
|
||||
@foreach (var value in TitlePrefixOptions)
|
||||
{
|
||||
<MudSelectItem Value="@value">@value</MudSelectItem>
|
||||
}
|
||||
</MudSelect>
|
||||
<MudButton OnClick="ApplyFiltersClicked">Apply Filters</MudButton>
|
||||
}
|
||||
</MudExpansionPanel>
|
||||
|
||||
@code {
|
||||
// Search parameters
|
||||
[Parameter]
|
||||
public ArchiveSearchFilterType SelectedFilter { get; set; } = ArchiveSearchFilterType.All;
|
||||
[Parameter]
|
||||
public EventCallback<ArchiveSearchFilterType> SelectedFilterChanged { get; set; }
|
||||
|
||||
// Filter parameters
|
||||
[Parameter]
|
||||
public bool SelectedTitlePrefixEnabled { get; set; } = true;
|
||||
[Parameter]
|
||||
public string SelectedTitlePrefix { get; set; } = "";
|
||||
[Parameter]
|
||||
public EventCallback<string> SelectedTitlePrefixChanged { get; set; }
|
||||
|
||||
[Parameter]
|
||||
public EventCallback<MouseEventArgs> ApplyFiltersClicked { get; set; }
|
||||
|
||||
[Parameter]
|
||||
public IEnumerable<string> TitlePrefixOptions { get; set; } =
|
||||
new List<string> {
|
||||
"",
|
||||
"a",
|
||||
"b",
|
||||
"c",
|
||||
"d",
|
||||
"e",
|
||||
"f",
|
||||
"g",
|
||||
"h",
|
||||
"i",
|
||||
"j",
|
||||
"k",
|
||||
"l",
|
||||
"m",
|
||||
"n",
|
||||
"o",
|
||||
"p",
|
||||
"q",
|
||||
"r",
|
||||
"s",
|
||||
"t",
|
||||
"u",
|
||||
"v",
|
||||
"w",
|
||||
"x",
|
||||
"y",
|
||||
"z"
|
||||
};
|
||||
|
||||
private async Task OnSelectedTitlePrefixChanged(string value)
|
||||
{
|
||||
SelectedTitlePrefix = value;
|
||||
if (SelectedTitlePrefixChanged.HasDelegate)
|
||||
{
|
||||
await SelectedTitlePrefixChanged.InvokeAsync(value);
|
||||
}
|
||||
}
|
||||
|
||||
private async Task OnSelectedFilterChanged(ArchiveSearchFilterType filter)
|
||||
{
|
||||
SelectedFilter = filter;
|
||||
if (SelectedFilterChanged.HasDelegate)
|
||||
{
|
||||
await SelectedFilterChanged.InvokeAsync(filter);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,25 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk.Razor">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net9.0</TargetFramework>
|
||||
<Nullable>enable</Nullable>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<AddRazorSupportForMvc>true</AddRazorSupportForMvc>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<FrameworkReference Include="Microsoft.AspNetCore.App" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="MudBlazor" Version="8.13.0" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\OpenArchival.Blazor.ArtifactGroupingDisplay\OpenArchival.Blazor.ArtifactGroupingDisplay.csproj" />
|
||||
<ProjectReference Include="..\OpenArchival.DataAccess\OpenArchival.DataAccess.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
|
||||
|
||||
</Project>
|
||||
242
OpenArchival.Blazor.ArchiveDisplay/SearchArchive.razor
Normal file
242
OpenArchival.Blazor.ArchiveDisplay/SearchArchive.razor
Normal file
@@ -0,0 +1,242 @@
|
||||
@page "/search"
|
||||
@page "/search/{SearchTerms}"
|
||||
|
||||
@using Microsoft.AspNetCore.Components.Web
|
||||
@using Microsoft.EntityFrameworkCore
|
||||
@using Microsoft.Extensions.Logging
|
||||
@using MudBlazor
|
||||
@using NpgsqlTypes
|
||||
@using OpenArchival.DataAccess
|
||||
@using Persic
|
||||
@using Npgsql.EntityFrameworkCore.PostgreSQL
|
||||
@using System.Linq
|
||||
@using System.Linq.Expressions
|
||||
|
||||
@using OpenArchival.Blazor.ArtifactGroupingDisplay
|
||||
@using OpenArchival.Blazor.ArchiveSearch
|
||||
|
||||
@namespace OpenArchival.Blazor.ArchiveDisplay
|
||||
|
||||
<ArchiveSearchBar SearchTermsChanged="OnSearchSubmittedAsync"/>
|
||||
<FilterSelectorComponent
|
||||
@bind-SelectedFilter="_selectedFilter"
|
||||
@bind-SelectedTitlePrefix="_selectedLetter"
|
||||
ApplyFiltersClicked="OnApplyFilters"></FilterSelectorComponent>
|
||||
|
||||
@if (_totalResults > 0 && !_allArtifactsMode)
|
||||
{
|
||||
<MudGrid Justify="Justify.FlexStart" Class="mt-1 ml-1 mb-2">
|
||||
<MudText Typo="Typo.subtitle2" Class="my-2">@_totalResults results found</MudText>
|
||||
<MudButton Class="ml-1"
|
||||
StartIcon="@Icons.Material.Filled.Clear"
|
||||
OnClick="@(args => OnClearResults(args, true, true))"
|
||||
Variant="Variant.Filled"
|
||||
Color="Color.Primary"
|
||||
Size="Size.Small">Clear</MudButton>
|
||||
</MudGrid>
|
||||
}
|
||||
|
||||
@if (_artifactGroupings.Count > 0)
|
||||
{
|
||||
<MudGrid>
|
||||
@foreach (var grouping in _artifactGroupings)
|
||||
{
|
||||
<MudItem xs="12" sm="6" md="4" lg="4">
|
||||
<ArtifactGroupingSearchResult ArtifactGrouping="grouping"></ArtifactGroupingSearchResult>
|
||||
</MudItem>
|
||||
}
|
||||
</MudGrid>
|
||||
|
||||
<MudPaper Class="d-flex justify-center py-2 mt-4" Elevation="0">
|
||||
<MudPagination Count="_totalPages" Selected="_currentPage" SelectedChanged="OnPageChangedAsync" />
|
||||
</MudPaper>
|
||||
}
|
||||
|
||||
|
||||
@inject IDbContextFactory<ApplicationDbContext> ContextFactory;
|
||||
@inject ILogger<SearchArchive> Logger;
|
||||
@inject NavigationManager NavigationManager;
|
||||
@code {
|
||||
[Parameter]
|
||||
public string SearchTerms { get; set; } = "";
|
||||
|
||||
private ArchiveSearchFilterType _selectedFilter = ArchiveSearchFilterType.All;
|
||||
|
||||
// Field to store the current filter logic
|
||||
private Expression<Func<ArtifactGrouping, bool>> _currentFilterPredicate;
|
||||
|
||||
private List<ArtifactGrouping> _artifactGroupings { get; set; } = [];
|
||||
private int _currentPage { get; set; } = 1;
|
||||
private int _totalPages { get; set; } = 0;
|
||||
private int _totalResults { get; set; } = 0;
|
||||
private const int PageSize = 20;
|
||||
|
||||
private bool _allArtifactsMode = true;
|
||||
private string? _selectedLetter;
|
||||
|
||||
protected override async Task OnParametersSetAsync()
|
||||
{
|
||||
if (string.IsNullOrWhiteSpace(SearchTerms))
|
||||
{
|
||||
_allArtifactsMode = true;
|
||||
await LoadPageAsync(1);
|
||||
} else
|
||||
{
|
||||
_allArtifactsMode = false;
|
||||
await PerformSearchAsync();
|
||||
}
|
||||
}
|
||||
|
||||
private IQueryable<ArtifactGrouping> BuildFilterQuery(IQueryable<ArtifactGrouping> startingQuery)
|
||||
{
|
||||
// Filter
|
||||
if (_currentFilterPredicate != null && !_allArtifactsMode)
|
||||
{
|
||||
startingQuery = startingQuery.Where(_currentFilterPredicate);
|
||||
}
|
||||
if (!string.IsNullOrWhiteSpace(_selectedLetter))
|
||||
{
|
||||
string likePattern = $"{_selectedLetter}%";
|
||||
startingQuery = startingQuery.Where(artifact => EF.Functions.ILike(artifact.Title, likePattern));
|
||||
}
|
||||
|
||||
return startingQuery;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Called by the ArchiveSearchBar component's 'SearchTermsChanged' event.
|
||||
/// </summary>
|
||||
private async Task OnSearchSubmittedAsync(string searchTerms)
|
||||
{
|
||||
|
||||
await OnClearResults(null, false, true);
|
||||
if (string.IsNullOrWhiteSpace(searchTerms))
|
||||
{
|
||||
// Tell the clear operation not to navigate back to the search page and refresh
|
||||
_allArtifactsMode = true;
|
||||
await PerformSearchAsync();
|
||||
return;
|
||||
}
|
||||
|
||||
SearchTerms = searchTerms;
|
||||
NavigationManager.NavigateTo($"/search/{Uri.EscapeDataString(SearchTerms)}", replace: true);
|
||||
_allArtifactsMode = false;
|
||||
// This eventually calls LoadPageAsync
|
||||
await PerformSearchAsync();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Sets the search predicate, calculates total results, and loads the first page.
|
||||
/// </summary>
|
||||
private async Task PerformSearchAsync()
|
||||
{
|
||||
// Determine which filter expression to use
|
||||
switch (_selectedFilter)
|
||||
{
|
||||
case ArchiveSearchFilterType.Tags:
|
||||
_currentFilterPredicate = x => x.TagsSearchVector.Matches(SearchTerms);
|
||||
break;
|
||||
case ArchiveSearchFilterType.Title:
|
||||
_currentFilterPredicate = x => x.TitleSearchVector.Matches(SearchTerms);
|
||||
break;
|
||||
case ArchiveSearchFilterType.Description:
|
||||
_currentFilterPredicate = x => x.DescriptionSearchVector.Matches(SearchTerms);
|
||||
break;
|
||||
case ArchiveSearchFilterType.Defects:
|
||||
_currentFilterPredicate = x => x.DefectsSearchVector.Matches(SearchTerms);
|
||||
break;
|
||||
case ArchiveSearchFilterType.Filenames:
|
||||
_currentFilterPredicate = x => x.FilenamesSearchVector.Matches(SearchTerms);
|
||||
break;
|
||||
case ArchiveSearchFilterType.ArtifactTranscriptions:
|
||||
_currentFilterPredicate = x => x.FileContentSearchVector.Matches(SearchTerms);
|
||||
break;
|
||||
case ArchiveSearchFilterType.ListedNames:
|
||||
_currentFilterPredicate = x => x.ListedNamesSearchVector.Matches(SearchTerms);
|
||||
break;
|
||||
case ArchiveSearchFilterType.All:
|
||||
default:
|
||||
_currentFilterPredicate = x => x.AllSearchVector.Matches(SearchTerms);
|
||||
break;
|
||||
}
|
||||
|
||||
// Load the first page with the chosen filter
|
||||
await LoadPageAsync(1);
|
||||
}
|
||||
|
||||
private async Task OnPageChangedAsync(int page)
|
||||
{
|
||||
await LoadPageAsync(page);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Fetches a specific page of data from the database using the currently set filter.
|
||||
/// </summary>
|
||||
private async Task LoadPageAsync(int page)
|
||||
{
|
||||
await using var context = await ContextFactory.CreateDbContextAsync();
|
||||
IQueryable<ArtifactGrouping> query = context.ArtifactGroupings;
|
||||
|
||||
query = BuildFilterQuery(query);
|
||||
|
||||
// Select child data we want
|
||||
query = query
|
||||
.Include(x => x.ChildArtifactEntries)
|
||||
.ThenInclude(x => x.Files);
|
||||
|
||||
// If we are showing all artifacts, then order results alphabetically
|
||||
if (_allArtifactsMode)
|
||||
{
|
||||
query = query.OrderBy(artifact => artifact.Title);
|
||||
} else
|
||||
{
|
||||
query = query.OrderBy(artifact => artifact.Id);
|
||||
}
|
||||
|
||||
_totalResults = await query.CountAsync();
|
||||
_totalPages = (int)Math.Ceiling(_totalResults / (double)PageSize);
|
||||
_currentPage = page;
|
||||
|
||||
query = query
|
||||
.Skip((_currentPage - 1) * PageSize)
|
||||
.Take(PageSize);
|
||||
|
||||
|
||||
_artifactGroupings = await query.ToListAsync();
|
||||
|
||||
StateHasChanged();
|
||||
}
|
||||
|
||||
private async Task OnClearResults(Microsoft.AspNetCore.Components.Web.MouseEventArgs args, bool navigate = true, bool resetFirstLetterFilter = false)
|
||||
{
|
||||
_totalResults = 0;
|
||||
_artifactGroupings.Clear();
|
||||
_currentPage = 1;
|
||||
_totalPages = 0;
|
||||
SearchTerms = "";
|
||||
|
||||
if (navigate)
|
||||
{
|
||||
NavigationManager.NavigateTo("/search", replace: true);
|
||||
}
|
||||
|
||||
if (resetFirstLetterFilter)
|
||||
{
|
||||
_selectedLetter = "";
|
||||
}
|
||||
|
||||
StateHasChanged();
|
||||
}
|
||||
|
||||
private async Task OnApplyFilters(MouseEventArgs args)
|
||||
{
|
||||
if (string.IsNullOrWhiteSpace(SearchTerms))
|
||||
{
|
||||
_allArtifactsMode = true;
|
||||
} else
|
||||
{
|
||||
_allArtifactsMode = false;
|
||||
}
|
||||
await PerformSearchAsync();
|
||||
}
|
||||
}
|
||||
64
OpenArchival.Blazor.ArchiveDisplay/SearchPageSlider.razor
Normal file
64
OpenArchival.Blazor.ArchiveDisplay/SearchPageSlider.razor
Normal file
@@ -0,0 +1,64 @@
|
||||
@using Microsoft.EntityFrameworkCore
|
||||
@using OpenArchival.DataAccess
|
||||
@using MudBlazor
|
||||
@using OpenArchival.Blazor.ArtifactGroupingDisplay
|
||||
|
||||
@namespace OpenArchival.Blazor.ArchiveDisplay
|
||||
|
||||
<MudPaper Class="pa-4 ma-2 rounded" Elevation="3" Style="overflow-x:auto">
|
||||
<MudText Typo="Typo.h6">@SliderEntry.Title</MudText>
|
||||
<MudDivider/>
|
||||
@if (!string.IsNullOrEmpty(SliderEntry.Description))
|
||||
{
|
||||
<MudText Typo="Typo.caption">@SliderEntry.Description</MudText>
|
||||
}
|
||||
<MudStack Row="true" Spacing="4" Style="flex-wrap: nowrap;">
|
||||
@foreach (ArtifactGrouping grouping in ArtifactGroupings)
|
||||
{
|
||||
<div style="min-width: 300px;">
|
||||
<ArtifactGroupingSearchResult ArtifactGrouping="grouping" Height="300"></ArtifactGroupingSearchResult>
|
||||
</div>
|
||||
}
|
||||
</MudStack>
|
||||
</MudPaper>
|
||||
|
||||
|
||||
@inject IDbContextFactory<ApplicationDbContext> ContextFactory;
|
||||
@code {
|
||||
[Parameter]
|
||||
public required SearchPageSliderEntry SliderEntry { get; set; }
|
||||
|
||||
private List<ArtifactGrouping> ArtifactGroupings { get; set; } = [];
|
||||
|
||||
protected override async Task OnParametersSetAsync()
|
||||
{
|
||||
await using var context = await ContextFactory.CreateDbContextAsync();
|
||||
|
||||
// First, handle the case where there are no tags to filter by.
|
||||
if (SliderEntry.FilterTags == null || !SliderEntry.FilterTags.Any())
|
||||
{
|
||||
ArtifactGroupings = new List<ArtifactGrouping>();
|
||||
return;
|
||||
}
|
||||
|
||||
// It's much more efficient to get the IDs of the tags first.
|
||||
var requiredTagIds = SliderEntry.FilterTags.Select(t => t.Id).ToList();
|
||||
int requiredTagCount = requiredTagIds.Count;
|
||||
|
||||
ArtifactGroupings = await context.ArtifactGroupings
|
||||
.Include(g => g.ChildArtifactEntries)
|
||||
.ThenInclude(e => e.Tags)
|
||||
.Include(g=>g.ChildArtifactEntries)
|
||||
.ThenInclude(e=>e.Files)
|
||||
.Where(grouping =>
|
||||
grouping.ChildArtifactEntries.Any(entry =>
|
||||
entry.Tags.Count(tag => requiredTagIds.Contains(tag.Id)) == requiredTagCount
|
||||
)
|
||||
)
|
||||
// AsSplitQuery() is a performance optimization for complex queries with multiple Includes.
|
||||
.AsSplitQuery()
|
||||
.ToListAsync();
|
||||
|
||||
StateHasChanged();
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
@@ -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
|
||||
}
|
||||
}
|
||||
}
|
||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
||||
{"ContentRoots":["C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.ArchiveDisplay\\obj\\Debug\\net9.0\\scopedcss\\bundle\\","C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.ArchiveDisplay\\obj\\Debug\\net9.0\\compressed\\","C:\\Users\\Vincent\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\","C:\\Users\\Vincent\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\","C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\scopedcss\\projectbundle\\","C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\compressed\\"],"Root":{"Children":{"OpenArchival.Blazor.ArchiveDisplay.styles.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"OpenArchival.Blazor.ArchiveDisplay.styles.css"},"Patterns":null},"OpenArchival.Blazor.ArchiveDisplay.styles.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"tp9idb5csd-{0}-3vyvv1v143-3vyvv1v143.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.js":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"MudExtensions.min.js"},"Patterns":null}},"Asset":null,"Patterns":null},"MudBlazor":{"Children":{"MudBlazor.min.css":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"MudBlazor.min.css"},"Patterns":null},"MudBlazor.min.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"MudBlazor.min.js"},"Patterns":null}},"Asset":null,"Patterns":null},"OpenArchival.Blazor.FileViewer":{"Children":{"OpenArchival.Blazor.FileViewer.niubdl7feg.bundle.scp.css":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"OpenArchival.Blazor.FileViewer.bundle.scp.css"},"Patterns":null},"OpenArchival.Blazor.FileViewer.niubdl7feg.bundle.scp.css.gz":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"46737f4nmk-{0}-niubdl7feg-niubdl7feg.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}}
|
||||
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
||||
{"ContentRoots":["C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.ArtifactGroupingDisplay\\obj\\Debug\\net9.0\\scopedcss\\bundle\\","C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.ArtifactGroupingDisplay\\obj\\Debug\\net9.0\\compressed\\","C:\\Users\\Vincent\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\","C:\\Users\\Vincent\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\","C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\scopedcss\\projectbundle\\","C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\compressed\\"],"Root":{"Children":{"OpenArchival.Blazor.ArtifactGroupingDisplay.styles.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"OpenArchival.Blazor.ArtifactGroupingDisplay.styles.css"},"Patterns":null},"OpenArchival.Blazor.ArtifactGroupingDisplay.styles.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"v7y6uo7l7v-{0}-3vyvv1v143-3vyvv1v143.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.js":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"MudExtensions.min.js"},"Patterns":null}},"Asset":null,"Patterns":null},"MudBlazor":{"Children":{"MudBlazor.min.css":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"MudBlazor.min.css"},"Patterns":null},"MudBlazor.min.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"MudBlazor.min.js"},"Patterns":null}},"Asset":null,"Patterns":null},"OpenArchival.Blazor.FileViewer":{"Children":{"OpenArchival.Blazor.FileViewer.niubdl7feg.bundle.scp.css":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"OpenArchival.Blazor.FileViewer.bundle.scp.css"},"Patterns":null},"OpenArchival.Blazor.FileViewer.niubdl7feg.bundle.scp.css.gz":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"46737f4nmk-{0}-niubdl7feg-niubdl7feg.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}}
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -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":"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.js","AssetFile":"_content/CodeBeam.MudExtensions/MudExtensions.min.js","Selectors":[],"ResponseHeaders":[{"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/Mud_Secondary.png","AssetFile":"_content/CodeBeam.MudExtensions/Mud_Secondary.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"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.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.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"}]}]}
|
||||
@@ -0,0 +1 @@
|
||||
{"ContentRoots":["C:\\Users\\Vincent\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\","C:\\Users\\Vincent\\.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.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"MudExtensions.min.js"},"Patterns":null}},"Asset":null,"Patterns":null},"MudBlazor":{"Children":{"MudBlazor.min.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"MudBlazor.min.css"},"Patterns":null},"MudBlazor.min.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"MudBlazor.min.js"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}}
|
||||
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
||||
{"ContentRoots":["C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\scopedcss\\bundle\\","C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\compressed\\","C:\\Users\\Vincent\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\","C:\\Users\\Vincent\\.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":"hp0c67wuvj-{0}-niubdl7feg-niubdl7feg.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.js":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"MudExtensions.min.js"},"Patterns":null}},"Asset":null,"Patterns":null},"MudBlazor":{"Children":{"MudBlazor.min.css":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"MudBlazor.min.css"},"Patterns":null},"MudBlazor.min.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"MudBlazor.min.js"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}}
|
||||
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -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
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
{"Version":1,"ManifestType":"Build","Endpoints":[]}
|
||||
@@ -0,0 +1,4 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v9.0", FrameworkDisplayName = ".NET 9.0")]
|
||||
@@ -0,0 +1,23 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// 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.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("OpenArchival.Blazor.ArchiveDisplay")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+6da218358353bb54f8e6b58efa699ba221b50ff1")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("OpenArchival.Blazor.ArchiveDisplay")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("OpenArchival.Blazor.ArchiveDisplay")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
||||
// Generated by the MSBuild WriteCodeFragment class.
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
47c757cdffe0c3463add08c048b140362508b816ee08bebecaa2fbaa8dc93892
|
||||
@@ -0,0 +1,50 @@
|
||||
is_global = true
|
||||
build_property.MudDebugAnalyzer =
|
||||
build_property.MudAllowedAttributePattern =
|
||||
build_property.MudAllowedAttributeList =
|
||||
build_property.TargetFramework = net9.0
|
||||
build_property.TargetFrameworkIdentifier = .NETCoreApp
|
||||
build_property.TargetFrameworkVersion = v9.0
|
||||
build_property.TargetPlatformMinVersion =
|
||||
build_property.UsingMicrosoftNETSdkWeb =
|
||||
build_property.ProjectTypeGuids =
|
||||
build_property.InvariantGlobalization =
|
||||
build_property.PlatformNeutralAssembly =
|
||||
build_property.EnforceExtendedAnalyzerRules =
|
||||
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||
build_property.RootNamespace = OpenArchival.Blazor.ArchiveDisplay
|
||||
build_property.RootNamespace = OpenArchival.Blazor.ArchiveDisplay
|
||||
build_property.ProjectDir = C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArchiveDisplay\
|
||||
build_property.EnableComHosting =
|
||||
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||
build_property.RazorLangVersion = 9.0
|
||||
build_property.SupportLocalizedComponentNames =
|
||||
build_property.GenerateRazorMetadataSourceChecksumAttributes =
|
||||
build_property.MSBuildProjectDirectory = C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArchiveDisplay
|
||||
build_property._RazorSourceGeneratorDebug =
|
||||
build_property.EffectiveAnalysisLevelStyle = 9.0
|
||||
build_property.EnableCodeStyleSeverity =
|
||||
|
||||
[C:/Users/Vincent/Documents/dev/Open-Archival/OpenArchival.Blazor.ArchiveDisplay/ArchiveSearchBar.razor]
|
||||
build_metadata.AdditionalFiles.TargetPath = QXJjaGl2ZVNlYXJjaEJhci5yYXpvcg==
|
||||
build_metadata.AdditionalFiles.CssScope =
|
||||
|
||||
[C:/Users/Vincent/Documents/dev/Open-Archival/OpenArchival.Blazor.ArchiveDisplay/ArchiveSliderHome.razor]
|
||||
build_metadata.AdditionalFiles.TargetPath = QXJjaGl2ZVNsaWRlckhvbWUucmF6b3I=
|
||||
build_metadata.AdditionalFiles.CssScope =
|
||||
|
||||
[C:/Users/Vincent/Documents/dev/Open-Archival/OpenArchival.Blazor.ArchiveDisplay/FilterSelectorComponent.razor]
|
||||
build_metadata.AdditionalFiles.TargetPath = RmlsdGVyU2VsZWN0b3JDb21wb25lbnQucmF6b3I=
|
||||
build_metadata.AdditionalFiles.CssScope =
|
||||
|
||||
[C:/Users/Vincent/Documents/dev/Open-Archival/OpenArchival.Blazor.ArchiveDisplay/SearchArchive.razor]
|
||||
build_metadata.AdditionalFiles.TargetPath = U2VhcmNoQXJjaGl2ZS5yYXpvcg==
|
||||
build_metadata.AdditionalFiles.CssScope =
|
||||
|
||||
[C:/Users/Vincent/Documents/dev/Open-Archival/OpenArchival.Blazor.ArchiveDisplay/SearchPageSlider.razor]
|
||||
build_metadata.AdditionalFiles.TargetPath = U2VhcmNoUGFnZVNsaWRlci5yYXpvcg==
|
||||
build_metadata.AdditionalFiles.CssScope =
|
||||
|
||||
[C:/Users/Vincent/Documents/dev/Open-Archival/OpenArchival.Blazor.ArchiveDisplay/Areas/MyFeature/Pages/Page1.cshtml]
|
||||
build_metadata.AdditionalFiles.TargetPath = QXJlYXNcTXlGZWF0dXJlXFBhZ2VzXFBhZ2UxLmNzaHRtbA==
|
||||
build_metadata.AdditionalFiles.CssScope =
|
||||
@@ -0,0 +1,8 @@
|
||||
// <auto-generated/>
|
||||
global using System;
|
||||
global using System.Collections.Generic;
|
||||
global using System.IO;
|
||||
global using System.Linq;
|
||||
global using System.Net.Http;
|
||||
global using System.Threading;
|
||||
global using System.Threading.Tasks;
|
||||
@@ -0,0 +1 @@
|
||||
d5ac7ab69059af111e9d7125adeb7b174ca570725d4b64a544cca7bd11ac7ca0
|
||||
@@ -0,0 +1,18 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// 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.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
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.
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1 @@
|
||||
4ab046809da975e41cb2f58356eba52799ea3d0db7561f24d38e26180546c43c
|
||||
@@ -0,0 +1,59 @@
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArchiveDisplay\bin\Debug\net9.0\OpenArchival.DataAccess.deps.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArchiveDisplay\bin\Debug\net9.0\OpenArchival.DataAccess.runtimeconfig.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArchiveDisplay\bin\Debug\net9.0\OpenArchival.DataAccess.staticwebassets.endpoints.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArchiveDisplay\bin\Debug\net9.0\OpenArchival.DataAccess.exe
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArchiveDisplay\bin\Debug\net9.0\OpenArchival.Blazor.CustomComponents.staticwebassets.runtime.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArchiveDisplay\bin\Debug\net9.0\OpenArchival.Blazor.CustomComponents.staticwebassets.endpoints.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArchiveDisplay\bin\Debug\net9.0\OpenArchival.Blazor.FileViewer.staticwebassets.runtime.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArchiveDisplay\bin\Debug\net9.0\OpenArchival.Blazor.FileViewer.staticwebassets.endpoints.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArchiveDisplay\bin\Debug\net9.0\OpenArchival.Blazor.ArtifactGroupingDisplay.staticwebassets.runtime.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArchiveDisplay\bin\Debug\net9.0\OpenArchival.Blazor.ArtifactGroupingDisplay.staticwebassets.endpoints.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArchiveDisplay\bin\Debug\net9.0\OpenArchival.Blazor.ArchiveDisplay.staticwebassets.runtime.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArchiveDisplay\bin\Debug\net9.0\OpenArchival.Blazor.ArchiveDisplay.staticwebassets.endpoints.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArchiveDisplay\bin\Debug\net9.0\OpenArchival.Blazor.ArchiveDisplay.deps.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArchiveDisplay\bin\Debug\net9.0\OpenArchival.Blazor.ArchiveDisplay.runtimeconfig.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArchiveDisplay\bin\Debug\net9.0\OpenArchival.Blazor.ArchiveDisplay.dll
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArchiveDisplay\bin\Debug\net9.0\OpenArchival.Blazor.ArchiveDisplay.pdb
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArchiveDisplay\bin\Debug\net9.0\OpenArchival.Blazor.ArtifactGroupingDisplay.dll
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArchiveDisplay\bin\Debug\net9.0\OpenArchival.Blazor.Config.dll
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArchiveDisplay\bin\Debug\net9.0\OpenArchival.Blazor.CustomComponents.dll
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArchiveDisplay\bin\Debug\net9.0\OpenArchival.Blazor.FileViewer.dll
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArchiveDisplay\bin\Debug\net9.0\OpenArchival.DataAccess.dll
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArchiveDisplay\bin\Debug\net9.0\OpenArchival.DataAccess.FileAccessManager.dll
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArchiveDisplay\bin\Debug\net9.0\OpenArchival.Blazor.ArtifactGroupingDisplay.pdb
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArchiveDisplay\bin\Debug\net9.0\OpenArchival.DataAccess.pdb
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArchiveDisplay\bin\Debug\net9.0\OpenArchival.Blazor.Config.pdb
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArchiveDisplay\bin\Debug\net9.0\OpenArchival.Blazor.CustomComponents.pdb
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArchiveDisplay\bin\Debug\net9.0\OpenArchival.Blazor.FileViewer.pdb
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArchiveDisplay\bin\Debug\net9.0\OpenArchival.DataAccess.FileAccessManager.pdb
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArchiveDisplay\obj\Debug\net9.0\OpenArchival.Blazor.ArchiveDisplay.csproj.AssemblyReference.cache
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArchiveDisplay\obj\Debug\net9.0\rpswa.dswa.cache.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArchiveDisplay\obj\Debug\net9.0\OpenArchival.Blazor.ArchiveDisplay.GeneratedMSBuildEditorConfig.editorconfig
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArchiveDisplay\obj\Debug\net9.0\OpenArchival.Blazor.ArchiveDisplay.AssemblyInfoInputs.cache
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArchiveDisplay\obj\Debug\net9.0\OpenArchival.Blazor.ArchiveDisplay.AssemblyInfo.cs
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArchiveDisplay\obj\Debug\net9.0\OpenArchival.Blazor.ArchiveDisplay.csproj.CoreCompileInputs.cache
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArchiveDisplay\obj\Debug\net9.0\OpenArchival.Blazor.ArchiveDisplay.RazorAssemblyInfo.cache
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArchiveDisplay\obj\Debug\net9.0\OpenArchival.Blazor.ArchiveDisplay.RazorAssemblyInfo.cs
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArchiveDisplay\obj\Debug\net9.0\rjimswa.dswa.cache.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArchiveDisplay\obj\Debug\net9.0\rjsmrazor.dswa.cache.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArchiveDisplay\obj\Debug\net9.0\rjsmcshtml.dswa.cache.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArchiveDisplay\obj\Debug\net9.0\scopedcss\bundle\OpenArchival.Blazor.ArchiveDisplay.styles.css
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArchiveDisplay\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArchiveDisplay\obj\Debug\net9.0\staticwebassets.build.json.cache
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArchiveDisplay\obj\Debug\net9.0\staticwebassets.development.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArchiveDisplay\obj\Debug\net9.0\staticwebassets.build.endpoints.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArchiveDisplay\obj\Debug\net9.0\swae.build.ex.cache
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArchiveDisplay\obj\Debug\net9.0\staticwebassets\msbuild.OpenArchival.Blazor.ArchiveDisplay.Microsoft.AspNetCore.StaticWebAssets.props
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArchiveDisplay\obj\Debug\net9.0\staticwebassets\msbuild.OpenArchival.Blazor.ArchiveDisplay.Microsoft.AspNetCore.StaticWebAssetEndpoints.props
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArchiveDisplay\obj\Debug\net9.0\staticwebassets\msbuild.build.OpenArchival.Blazor.ArchiveDisplay.props
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArchiveDisplay\obj\Debug\net9.0\staticwebassets\msbuild.buildMultiTargeting.OpenArchival.Blazor.ArchiveDisplay.props
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArchiveDisplay\obj\Debug\net9.0\staticwebassets\msbuild.buildTransitive.OpenArchival.Blazor.ArchiveDisplay.props
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArchiveDisplay\obj\Debug\net9.0\staticwebassets.pack.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArchiveDisplay\obj\Debug\net9.0\OpenArch.6412000F.Up2Date
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArchiveDisplay\obj\Debug\net9.0\OpenArchival.Blazor.ArchiveDisplay.dll
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArchiveDisplay\obj\Debug\net9.0\refint\OpenArchival.Blazor.ArchiveDisplay.dll
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArchiveDisplay\obj\Debug\net9.0\OpenArchival.Blazor.ArchiveDisplay.pdb
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArchiveDisplay\obj\Debug\net9.0\OpenArchival.Blazor.ArchiveDisplay.genruntimeconfig.cache
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArchiveDisplay\obj\Debug\net9.0\ref\OpenArchival.Blazor.ArchiveDisplay.dll
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArchiveDisplay\obj\Debug\net9.0\compressed\tp9idb5csd-{0}-3vyvv1v143-3vyvv1v143.gz
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArchiveDisplay\obj\Debug\net9.0\staticwebassets.upToDateCheck.txt
|
||||
Binary file not shown.
@@ -0,0 +1 @@
|
||||
e2f11a650c351bb3728e0adfdc896cd2ca5ef43a27c0bb47d76d4013216452b3
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1 @@
|
||||
{"GlobalPropertiesHash":"2ilJ2M8+ZdH0swl4cXFj9Ji8kay0R08ISE/fEc+OL0o=","FingerprintPatternsHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["lWJFtcyt7PiEgACAkVVQXpCTWsOMG1HCB/k8jwahP6U="],"CachedAssets":{"lWJFtcyt7PiEgACAkVVQXpCTWsOMG1HCB/k8jwahP6U=":{"Identity":"C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.ArchiveDisplay\\obj\\Debug\\net9.0\\compressed\\tp9idb5csd-{0}-3vyvv1v143-3vyvv1v143.gz","SourceId":"OpenArchival.Blazor.ArchiveDisplay","SourceType":"Computed","ContentRoot":"C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.ArchiveDisplay\\obj\\Debug\\net9.0\\compressed\\","BasePath":"_content/OpenArchival.Blazor.ArchiveDisplay","RelativePath":"OpenArchival.Blazor.ArchiveDisplay#[.{fingerprint=3vyvv1v143}]?.styles.css.gz","AssetKind":"All","AssetMode":"CurrentProject","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.ArchiveDisplay\\obj\\Debug\\net9.0\\scopedcss\\bundle\\OpenArchival.Blazor.ArchiveDisplay.styles.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"1llzcdahe0","Integrity":"\u002B\u002Bfx8u52jMjTZ99uS5Yy63FNXpoMVpKoDerl7/1Lo2o=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.ArchiveDisplay\\obj\\Debug\\net9.0\\scopedcss\\bundle\\OpenArchival.Blazor.ArchiveDisplay.styles.css","FileLength":102,"LastWriteTime":"2026-05-16T20:55:19.7057935+00:00"}},"CachedCopyCandidates":{}}
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1 @@
|
||||
{"GlobalPropertiesHash":"iCndVPBk7e9YADG0v3A8CbmEtuN9PMK1yw+ObwLfhfI=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["KKHf6aiBi/TV9f2fsigTTNdMRoms\u002BY1yKp14BayzAzU=","tnXmEVG3uHxWL\u002BVEYu8GcJcCRTbiqoEN7odECrYeXps=","ZPu9frkjhb1hctILUU17NNjrpXGThGPI3qr2HAcAh3c=","3Sb8ZgfFVG5MgtH4OtV8Fb2dJIgu9ULgdt220Bnfk4w=","mkJ8TyCexqAlh0CkWyfvGKtAZAK4LkdncJ46O83AwdY=","5O3mHTUK4GIrcY6qcZLQLtPR/X02oKNCIrxcapuYExg="],"CachedAssets":{},"CachedCopyCandidates":{}}
|
||||
@@ -0,0 +1 @@
|
||||
{"GlobalPropertiesHash":"NheyaQyjJsIHMs6VzyumBQ9FC1WeMWzcRzv6H92Lh98=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["KKHf6aiBi/TV9f2fsigTTNdMRoms\u002BY1yKp14BayzAzU=","tnXmEVG3uHxWL\u002BVEYu8GcJcCRTbiqoEN7odECrYeXps=","ZPu9frkjhb1hctILUU17NNjrpXGThGPI3qr2HAcAh3c=","3Sb8ZgfFVG5MgtH4OtV8Fb2dJIgu9ULgdt220Bnfk4w=","mkJ8TyCexqAlh0CkWyfvGKtAZAK4LkdncJ46O83AwdY=","5O3mHTUK4GIrcY6qcZLQLtPR/X02oKNCIrxcapuYExg="],"CachedAssets":{},"CachedCopyCandidates":{}}
|
||||
@@ -0,0 +1 @@
|
||||
{"GlobalPropertiesHash":"/kC41vyr4RQe39Q6UrAurtiS9csrZOzuCjVr195USKc=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["7YZU6dBQBTW7HkTWkR6SDjHM6xuAFrhHFR34MK5MEJA=","B9WObc4Xsw0xatSprddm9vasIINIUGJ6RFcHqlyHuvc=","M1kfMxzaNKJJUkvp52\u002BkcPjtLZV3nqMEg2hSGOyUyZM=","TQS84TVxSBXKMff7SadtHkG9W4gRfAeDMuu8P6Ubaag=","k1cA\u002BGyz8tgWfLwUkhuLmW0NZ4eD9SjjRmCrdRXu970=","SPa34F/Vk//3Ge6\u002BWOBF6eRzq9M8XBrEM5huO4\u002BubAc="],"CachedAssets":{},"CachedCopyCandidates":{}}
|
||||
@@ -0,0 +1,2 @@
|
||||
@import '_content/OpenArchival.Blazor.FileViewer/OpenArchival.Blazor.FileViewer.niubdl7feg.bundle.scp.css';
|
||||
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
||||
c0uDWi6LDAXQoDcS9SCAX1uKjGQmuuhj3a2SnC8nu5c=
|
||||
@@ -0,0 +1 @@
|
||||
{"ContentRoots":["C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.ArchiveDisplay\\obj\\Debug\\net9.0\\scopedcss\\bundle\\","C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.ArchiveDisplay\\obj\\Debug\\net9.0\\compressed\\","C:\\Users\\Vincent\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\","C:\\Users\\Vincent\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\","C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\scopedcss\\projectbundle\\","C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\compressed\\"],"Root":{"Children":{"OpenArchival.Blazor.ArchiveDisplay.styles.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"OpenArchival.Blazor.ArchiveDisplay.styles.css"},"Patterns":null},"OpenArchival.Blazor.ArchiveDisplay.styles.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"tp9idb5csd-{0}-3vyvv1v143-3vyvv1v143.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.js":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"MudExtensions.min.js"},"Patterns":null}},"Asset":null,"Patterns":null},"MudBlazor":{"Children":{"MudBlazor.min.css":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"MudBlazor.min.css"},"Patterns":null},"MudBlazor.min.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"MudBlazor.min.js"},"Patterns":null}},"Asset":null,"Patterns":null},"OpenArchival.Blazor.FileViewer":{"Children":{"OpenArchival.Blazor.FileViewer.niubdl7feg.bundle.scp.css":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"OpenArchival.Blazor.FileViewer.bundle.scp.css"},"Patterns":null},"OpenArchival.Blazor.FileViewer.niubdl7feg.bundle.scp.css.gz":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"46737f4nmk-{0}-niubdl7feg-niubdl7feg.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}}
|
||||
@@ -0,0 +1,88 @@
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArtifactGroupingDisplay\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.FileViewer\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArtifactGroupingDisplay\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.FileViewer\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArtifactGroupingDisplay\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.FileViewer\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArtifactGroupingDisplay\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.FileViewer\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArtifactGroupingDisplay\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.FileViewer\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArtifactGroupingDisplay\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.FileViewer\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArtifactGroupingDisplay\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.FileViewer\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArtifactGroupingDisplay\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.FileViewer\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArtifactGroupingDisplay\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.FileViewer\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArtifactGroupingDisplay\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.FileViewer\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArtifactGroupingDisplay\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.FileViewer\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArtifactGroupingDisplay\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.FileViewer\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArtifactGroupingDisplay\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.FileViewer\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArtifactGroupingDisplay\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.FileViewer\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArtifactGroupingDisplay\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.FileViewer\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArtifactGroupingDisplay\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.FileViewer\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArtifactGroupingDisplay\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.FileViewer\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArtifactGroupingDisplay\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.FileViewer\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArtifactGroupingDisplay\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.FileViewer\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArtifactGroupingDisplay\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.FileViewer\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArtifactGroupingDisplay\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.FileViewer\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.ArtifactGroupingDisplay\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.CustomComponents\obj\Debug\net9.0\staticwebassets.build.json
|
||||
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.Blazor.FileViewer\obj\Debug\net9.0\staticwebassets.build.json
|
||||
@@ -0,0 +1,4 @@
|
||||
<Project>
|
||||
<Import Project="Microsoft.AspNetCore.StaticWebAssetEndpoints.props" />
|
||||
<Import Project="Microsoft.AspNetCore.StaticWebAssets.props" />
|
||||
</Project>
|
||||
@@ -0,0 +1,3 @@
|
||||
<Project>
|
||||
<Import Project="..\build\OpenArchival.Blazor.ArchiveDisplay.props" />
|
||||
</Project>
|
||||
@@ -0,0 +1,3 @@
|
||||
<Project>
|
||||
<Import Project="..\buildMultiTargeting\OpenArchival.Blazor.ArchiveDisplay.props" />
|
||||
</Project>
|
||||
@@ -0,0 +1,598 @@
|
||||
{
|
||||
"format": 1,
|
||||
"restore": {
|
||||
"C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.ArchiveDisplay\\OpenArchival.Blazor.ArchiveDisplay.csproj": {}
|
||||
},
|
||||
"projects": {
|
||||
"C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.ArchiveDisplay\\OpenArchival.Blazor.ArchiveDisplay.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.ArchiveDisplay\\OpenArchival.Blazor.ArchiveDisplay.csproj",
|
||||
"projectName": "OpenArchival.Blazor.ArchiveDisplay",
|
||||
"projectPath": "C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.ArchiveDisplay\\OpenArchival.Blazor.ArchiveDisplay.csproj",
|
||||
"packagesPath": "C:\\Users\\Vincent\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.ArchiveDisplay\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
],
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\NuGet.Config",
|
||||
"C:\\Users\\Vincent\\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": {
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"net9.0": {
|
||||
"targetAlias": "net9.0",
|
||||
"projectReferences": {
|
||||
"C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.ArtifactGroupingDisplay\\OpenArchival.Blazor.ArtifactGroupingDisplay.csproj": {
|
||||
"projectPath": "C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.ArtifactGroupingDisplay\\OpenArchival.Blazor.ArtifactGroupingDisplay.csproj"
|
||||
},
|
||||
"C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj": {
|
||||
"projectPath": "C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
},
|
||||
"restoreAuditProperties": {
|
||||
"enableAudit": "true",
|
||||
"auditLevel": "low",
|
||||
"auditMode": "direct"
|
||||
},
|
||||
"SdkAnalysisLevel": "10.0.100"
|
||||
},
|
||||
"frameworks": {
|
||||
"net9.0": {
|
||||
"targetAlias": "net9.0",
|
||||
"dependencies": {
|
||||
"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\\10.0.103/PortableRuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
},
|
||||
"C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.ArtifactGroupingDisplay\\OpenArchival.Blazor.ArtifactGroupingDisplay.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.ArtifactGroupingDisplay\\OpenArchival.Blazor.ArtifactGroupingDisplay.csproj",
|
||||
"projectName": "OpenArchival.Blazor.ArtifactGroupingDisplay",
|
||||
"projectPath": "C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.ArtifactGroupingDisplay\\OpenArchival.Blazor.ArtifactGroupingDisplay.csproj",
|
||||
"packagesPath": "C:\\Users\\Vincent\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.ArtifactGroupingDisplay\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
],
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\NuGet.Config",
|
||||
"C:\\Users\\Vincent\\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": {
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"net9.0": {
|
||||
"targetAlias": "net9.0",
|
||||
"projectReferences": {
|
||||
"C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\OpenArchival.Blazor.CustomComponents.csproj": {
|
||||
"projectPath": "C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\OpenArchival.Blazor.CustomComponents.csproj"
|
||||
},
|
||||
"C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.FileViewer\\OpenArchival.Blazor.FileViewer.csproj": {
|
||||
"projectPath": "C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.FileViewer\\OpenArchival.Blazor.FileViewer.csproj"
|
||||
},
|
||||
"C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj": {
|
||||
"projectPath": "C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
},
|
||||
"restoreAuditProperties": {
|
||||
"enableAudit": "true",
|
||||
"auditLevel": "low",
|
||||
"auditMode": "direct"
|
||||
},
|
||||
"SdkAnalysisLevel": "10.0.100"
|
||||
},
|
||||
"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\\10.0.103/PortableRuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
},
|
||||
"C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.Config\\OpenArchival.Blazor.Config.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.Config\\OpenArchival.Blazor.Config.csproj",
|
||||
"projectName": "OpenArchival.Blazor.Config",
|
||||
"projectPath": "C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.Config\\OpenArchival.Blazor.Config.csproj",
|
||||
"packagesPath": "C:\\Users\\Vincent\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.Config\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
],
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\NuGet.Config",
|
||||
"C:\\Users\\Vincent\\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": {
|
||||
"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": "10.0.100"
|
||||
},
|
||||
"frameworks": {
|
||||
"net9.0": {
|
||||
"targetAlias": "net9.0",
|
||||
"imports": [
|
||||
"net461",
|
||||
"net462",
|
||||
"net47",
|
||||
"net471",
|
||||
"net472",
|
||||
"net48",
|
||||
"net481"
|
||||
],
|
||||
"assetTargetFallback": true,
|
||||
"warn": true,
|
||||
"frameworkReferences": {
|
||||
"Microsoft.NETCore.App": {
|
||||
"privateAssets": "all"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.103/PortableRuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
},
|
||||
"C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\OpenArchival.Blazor.CustomComponents.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\OpenArchival.Blazor.CustomComponents.csproj",
|
||||
"projectName": "OpenArchival.Blazor.CustomComponents",
|
||||
"projectPath": "C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\OpenArchival.Blazor.CustomComponents.csproj",
|
||||
"packagesPath": "C:\\Users\\Vincent\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.CustomComponents\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
],
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\NuGet.Config",
|
||||
"C:\\Users\\Vincent\\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": {
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"net9.0": {
|
||||
"targetAlias": "net9.0",
|
||||
"projectReferences": {
|
||||
"C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.Config\\OpenArchival.Blazor.Config.csproj": {
|
||||
"projectPath": "C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.Config\\OpenArchival.Blazor.Config.csproj"
|
||||
},
|
||||
"C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.DataAccess.FileAccessManager\\OpenArchival.DataAccess.FileAccessManager.csproj": {
|
||||
"projectPath": "C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.DataAccess.FileAccessManager\\OpenArchival.DataAccess.FileAccessManager.csproj"
|
||||
},
|
||||
"C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj": {
|
||||
"projectPath": "C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
},
|
||||
"restoreAuditProperties": {
|
||||
"enableAudit": "true",
|
||||
"auditLevel": "low",
|
||||
"auditMode": "direct"
|
||||
},
|
||||
"SdkAnalysisLevel": "10.0.100"
|
||||
},
|
||||
"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\\10.0.103/PortableRuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
},
|
||||
"C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.FileViewer\\OpenArchival.Blazor.FileViewer.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.FileViewer\\OpenArchival.Blazor.FileViewer.csproj",
|
||||
"projectName": "OpenArchival.Blazor.FileViewer",
|
||||
"projectPath": "C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.FileViewer\\OpenArchival.Blazor.FileViewer.csproj",
|
||||
"packagesPath": "C:\\Users\\Vincent\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
],
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\NuGet.Config",
|
||||
"C:\\Users\\Vincent\\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": {
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"net9.0": {
|
||||
"targetAlias": "net9.0",
|
||||
"projectReferences": {
|
||||
"C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj": {
|
||||
"projectPath": "C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
},
|
||||
"restoreAuditProperties": {
|
||||
"enableAudit": "true",
|
||||
"auditLevel": "low",
|
||||
"auditMode": "direct"
|
||||
},
|
||||
"SdkAnalysisLevel": "10.0.100"
|
||||
},
|
||||
"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\\10.0.103/PortableRuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
},
|
||||
"C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.DataAccess.FileAccessManager\\OpenArchival.DataAccess.FileAccessManager.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.DataAccess.FileAccessManager\\OpenArchival.DataAccess.FileAccessManager.csproj",
|
||||
"projectName": "OpenArchival.DataAccess.FileAccessManager",
|
||||
"projectPath": "C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.DataAccess.FileAccessManager\\OpenArchival.DataAccess.FileAccessManager.csproj",
|
||||
"packagesPath": "C:\\Users\\Vincent\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.DataAccess.FileAccessManager\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
],
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\NuGet.Config",
|
||||
"C:\\Users\\Vincent\\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": {
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"net9.0": {
|
||||
"targetAlias": "net9.0",
|
||||
"projectReferences": {
|
||||
"C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.Config\\OpenArchival.Blazor.Config.csproj": {
|
||||
"projectPath": "C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.Config\\OpenArchival.Blazor.Config.csproj"
|
||||
},
|
||||
"C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj": {
|
||||
"projectPath": "C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
},
|
||||
"restoreAuditProperties": {
|
||||
"enableAudit": "true",
|
||||
"auditLevel": "low",
|
||||
"auditMode": "direct"
|
||||
},
|
||||
"SdkAnalysisLevel": "10.0.100"
|
||||
},
|
||||
"frameworks": {
|
||||
"net9.0": {
|
||||
"targetAlias": "net9.0",
|
||||
"dependencies": {
|
||||
"Microsoft.EntityFrameworkCore": {
|
||||
"target": "Package",
|
||||
"version": "[9.0.8, )"
|
||||
},
|
||||
"SixLabors.ImageSharp": {
|
||||
"target": "Package",
|
||||
"version": "[3.1.5, )"
|
||||
}
|
||||
},
|
||||
"imports": [
|
||||
"net461",
|
||||
"net462",
|
||||
"net47",
|
||||
"net471",
|
||||
"net472",
|
||||
"net48",
|
||||
"net481"
|
||||
],
|
||||
"assetTargetFallback": true,
|
||||
"warn": true,
|
||||
"frameworkReferences": {
|
||||
"Microsoft.NETCore.App": {
|
||||
"privateAssets": "all"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.103/PortableRuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
},
|
||||
"C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj",
|
||||
"projectName": "OpenArchival.DataAccess",
|
||||
"projectPath": "C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.DataAccess\\OpenArchival.DataAccess.csproj",
|
||||
"packagesPath": "C:\\Users\\Vincent\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.DataAccess\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
],
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\NuGet.Config",
|
||||
"C:\\Users\\Vincent\\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": {
|
||||
"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": "10.0.100"
|
||||
},
|
||||
"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, )"
|
||||
},
|
||||
"Persic.EF.Postgres": {
|
||||
"target": "Package",
|
||||
"version": "[2025.106.102.11, )"
|
||||
}
|
||||
},
|
||||
"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\\10.0.103/PortableRuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
|
||||
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
||||
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
|
||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\Vincent\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
|
||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">7.0.0</NuGetToolVersion>
|
||||
</PropertyGroup>
|
||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<SourceRoot Include="C:\Users\Vincent\.nuget\packages\" />
|
||||
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
|
||||
</ItemGroup>
|
||||
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<Import Project="$(NuGetPackageRoot)microsoft.entityframeworkcore\9.0.8\buildTransitive\net8.0\Microsoft.EntityFrameworkCore.props" Condition="Exists('$(NuGetPackageRoot)microsoft.entityframeworkcore\9.0.8\buildTransitive\net8.0\Microsoft.EntityFrameworkCore.props')" />
|
||||
<Import Project="$(NuGetPackageRoot)entityframework\6.5.1\buildTransitive\net6.0\EntityFramework.props" Condition="Exists('$(NuGetPackageRoot)entityframework\6.5.1\buildTransitive\net6.0\EntityFramework.props')" />
|
||||
<Import Project="$(NuGetPackageRoot)mudblazor\8.13.0\buildTransitive\MudBlazor.props" Condition="Exists('$(NuGetPackageRoot)mudblazor\8.13.0\buildTransitive\MudBlazor.props')" />
|
||||
<Import Project="$(NuGetPackageRoot)codebeam.mudextensions\6.3.0\buildTransitive\CodeBeam.MudExtensions.props" Condition="Exists('$(NuGetPackageRoot)codebeam.mudextensions\6.3.0\buildTransitive\CodeBeam.MudExtensions.props')" />
|
||||
</ImportGroup>
|
||||
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<PkgEntityFramework Condition=" '$(PkgEntityFramework)' == '' ">C:\Users\Vincent\.nuget\packages\entityframework\6.5.1</PkgEntityFramework>
|
||||
<PkgBuildBundlerMinifier Condition=" '$(PkgBuildBundlerMinifier)' == '' ">C:\Users\Vincent\.nuget\packages\buildbundlerminifier\3.2.449</PkgBuildBundlerMinifier>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<Import Project="$(NuGetPackageRoot)microsoft.extensions.options\9.0.8\buildTransitive\net8.0\Microsoft.Extensions.Options.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.options\9.0.8\buildTransitive\net8.0\Microsoft.Extensions.Options.targets')" />
|
||||
<Import Project="$(NuGetPackageRoot)microsoft.extensions.logging.abstractions\9.0.8\buildTransitive\net8.0\Microsoft.Extensions.Logging.Abstractions.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.logging.abstractions\9.0.8\buildTransitive\net8.0\Microsoft.Extensions.Logging.Abstractions.targets')" />
|
||||
<Import Project="$(NuGetPackageRoot)entityframework\6.5.1\buildTransitive\net6.0\EntityFramework.targets" Condition="Exists('$(NuGetPackageRoot)entityframework\6.5.1\buildTransitive\net6.0\EntityFramework.targets')" />
|
||||
<Import Project="$(NuGetPackageRoot)microsoft.aspnetcore.components.analyzers\9.0.1\buildTransitive\netstandard2.0\Microsoft.AspNetCore.Components.Analyzers.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.aspnetcore.components.analyzers\9.0.1\buildTransitive\netstandard2.0\Microsoft.AspNetCore.Components.Analyzers.targets')" />
|
||||
<Import Project="$(NuGetPackageRoot)mudblazor\8.13.0\build\MudBlazor.targets" Condition="Exists('$(NuGetPackageRoot)mudblazor\8.13.0\build\MudBlazor.targets')" />
|
||||
</ImportGroup>
|
||||
</Project>
|
||||
2762
OpenArchival.Blazor.ArchiveDisplay/obj/project.assets.json
Normal file
2762
OpenArchival.Blazor.ArchiveDisplay/obj/project.assets.json
Normal file
File diff suppressed because it is too large
Load Diff
66
OpenArchival.Blazor.ArchiveDisplay/obj/project.nuget.cache
Normal file
66
OpenArchival.Blazor.ArchiveDisplay/obj/project.nuget.cache
Normal file
@@ -0,0 +1,66 @@
|
||||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "NHSDrg7l8fk=",
|
||||
"success": true,
|
||||
"projectFilePath": "C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.ArchiveDisplay\\OpenArchival.Blazor.ArchiveDisplay.csproj",
|
||||
"expectedPackageFiles": [
|
||||
"C:\\Users\\Vincent\\.nuget\\packages\\buildbundlerminifier\\3.2.449\\buildbundlerminifier.3.2.449.nupkg.sha512",
|
||||
"C:\\Users\\Vincent\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\codebeam.mudextensions.6.3.0.nupkg.sha512",
|
||||
"C:\\Users\\Vincent\\.nuget\\packages\\confi\\2024.110.108.4\\confi.2024.110.108.4.nupkg.sha512",
|
||||
"C:\\Users\\Vincent\\.nuget\\packages\\csvhelper\\30.0.1\\csvhelper.30.0.1.nupkg.sha512",
|
||||
"C:\\Users\\Vincent\\.nuget\\packages\\efcore.namingconventions\\9.0.0\\efcore.namingconventions.9.0.0.nupkg.sha512",
|
||||
"C:\\Users\\Vincent\\.nuget\\packages\\entityframework\\6.5.1\\entityframework.6.5.1.nupkg.sha512",
|
||||
"C:\\Users\\Vincent\\.nuget\\packages\\microsoft.aspnetcore.authorization\\9.0.1\\microsoft.aspnetcore.authorization.9.0.1.nupkg.sha512",
|
||||
"C:\\Users\\Vincent\\.nuget\\packages\\microsoft.aspnetcore.components\\9.0.1\\microsoft.aspnetcore.components.9.0.1.nupkg.sha512",
|
||||
"C:\\Users\\Vincent\\.nuget\\packages\\microsoft.aspnetcore.components.analyzers\\9.0.1\\microsoft.aspnetcore.components.analyzers.9.0.1.nupkg.sha512",
|
||||
"C:\\Users\\Vincent\\.nuget\\packages\\microsoft.aspnetcore.components.forms\\9.0.1\\microsoft.aspnetcore.components.forms.9.0.1.nupkg.sha512",
|
||||
"C:\\Users\\Vincent\\.nuget\\packages\\microsoft.aspnetcore.components.web\\9.0.1\\microsoft.aspnetcore.components.web.9.0.1.nupkg.sha512",
|
||||
"C:\\Users\\Vincent\\.nuget\\packages\\microsoft.aspnetcore.cryptography.internal\\9.0.8\\microsoft.aspnetcore.cryptography.internal.9.0.8.nupkg.sha512",
|
||||
"C:\\Users\\Vincent\\.nuget\\packages\\microsoft.aspnetcore.cryptography.keyderivation\\9.0.8\\microsoft.aspnetcore.cryptography.keyderivation.9.0.8.nupkg.sha512",
|
||||
"C:\\Users\\Vincent\\.nuget\\packages\\microsoft.aspnetcore.identity.entityframeworkcore\\9.0.8\\microsoft.aspnetcore.identity.entityframeworkcore.9.0.8.nupkg.sha512",
|
||||
"C:\\Users\\Vincent\\.nuget\\packages\\microsoft.aspnetcore.metadata\\9.0.1\\microsoft.aspnetcore.metadata.9.0.1.nupkg.sha512",
|
||||
"C:\\Users\\Vincent\\.nuget\\packages\\microsoft.csharp\\4.7.0\\microsoft.csharp.4.7.0.nupkg.sha512",
|
||||
"C:\\Users\\Vincent\\.nuget\\packages\\microsoft.entityframeworkcore\\9.0.8\\microsoft.entityframeworkcore.9.0.8.nupkg.sha512",
|
||||
"C:\\Users\\Vincent\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\9.0.8\\microsoft.entityframeworkcore.abstractions.9.0.8.nupkg.sha512",
|
||||
"C:\\Users\\Vincent\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\9.0.8\\microsoft.entityframeworkcore.analyzers.9.0.8.nupkg.sha512",
|
||||
"C:\\Users\\Vincent\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\9.0.8\\microsoft.entityframeworkcore.relational.9.0.8.nupkg.sha512",
|
||||
"C:\\Users\\Vincent\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\9.0.8\\microsoft.extensions.caching.abstractions.9.0.8.nupkg.sha512",
|
||||
"C:\\Users\\Vincent\\.nuget\\packages\\microsoft.extensions.caching.memory\\9.0.8\\microsoft.extensions.caching.memory.9.0.8.nupkg.sha512",
|
||||
"C:\\Users\\Vincent\\.nuget\\packages\\microsoft.extensions.configuration\\8.0.0\\microsoft.extensions.configuration.8.0.0.nupkg.sha512",
|
||||
"C:\\Users\\Vincent\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\9.0.8\\microsoft.extensions.configuration.abstractions.9.0.8.nupkg.sha512",
|
||||
"C:\\Users\\Vincent\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\9.0.8\\microsoft.extensions.dependencyinjection.9.0.8.nupkg.sha512",
|
||||
"C:\\Users\\Vincent\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\9.0.8\\microsoft.extensions.dependencyinjection.abstractions.9.0.8.nupkg.sha512",
|
||||
"C:\\Users\\Vincent\\.nuget\\packages\\microsoft.extensions.identity.core\\9.0.8\\microsoft.extensions.identity.core.9.0.8.nupkg.sha512",
|
||||
"C:\\Users\\Vincent\\.nuget\\packages\\microsoft.extensions.identity.stores\\9.0.8\\microsoft.extensions.identity.stores.9.0.8.nupkg.sha512",
|
||||
"C:\\Users\\Vincent\\.nuget\\packages\\microsoft.extensions.localization\\9.0.1\\microsoft.extensions.localization.9.0.1.nupkg.sha512",
|
||||
"C:\\Users\\Vincent\\.nuget\\packages\\microsoft.extensions.localization.abstractions\\9.0.1\\microsoft.extensions.localization.abstractions.9.0.1.nupkg.sha512",
|
||||
"C:\\Users\\Vincent\\.nuget\\packages\\microsoft.extensions.logging\\9.0.8\\microsoft.extensions.logging.9.0.8.nupkg.sha512",
|
||||
"C:\\Users\\Vincent\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\9.0.8\\microsoft.extensions.logging.abstractions.9.0.8.nupkg.sha512",
|
||||
"C:\\Users\\Vincent\\.nuget\\packages\\microsoft.extensions.options\\9.0.8\\microsoft.extensions.options.9.0.8.nupkg.sha512",
|
||||
"C:\\Users\\Vincent\\.nuget\\packages\\microsoft.extensions.primitives\\9.0.8\\microsoft.extensions.primitives.9.0.8.nupkg.sha512",
|
||||
"C:\\Users\\Vincent\\.nuget\\packages\\microsoft.jsinterop\\9.0.1\\microsoft.jsinterop.9.0.1.nupkg.sha512",
|
||||
"C:\\Users\\Vincent\\.nuget\\packages\\microsoft.win32.registry\\4.7.0\\microsoft.win32.registry.4.7.0.nupkg.sha512",
|
||||
"C:\\Users\\Vincent\\.nuget\\packages\\microsoft.win32.systemevents\\6.0.0\\microsoft.win32.systemevents.6.0.0.nupkg.sha512",
|
||||
"C:\\Users\\Vincent\\.nuget\\packages\\mudblazor\\8.13.0\\mudblazor.8.13.0.nupkg.sha512",
|
||||
"C:\\Users\\Vincent\\.nuget\\packages\\npgsql\\9.0.3\\npgsql.9.0.3.nupkg.sha512",
|
||||
"C:\\Users\\Vincent\\.nuget\\packages\\npgsql.entityframeworkcore.postgresql\\9.0.4\\npgsql.entityframeworkcore.postgresql.9.0.4.nupkg.sha512",
|
||||
"C:\\Users\\Vincent\\.nuget\\packages\\persic.ef\\2025.105.129.21\\persic.ef.2025.105.129.21.nupkg.sha512",
|
||||
"C:\\Users\\Vincent\\.nuget\\packages\\persic.ef.postgres\\2025.106.102.11\\persic.ef.postgres.2025.106.102.11.nupkg.sha512",
|
||||
"C:\\Users\\Vincent\\.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\\.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\\.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\\.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\\.nuget\\packages\\sixlabors.imagesharp\\3.1.5\\sixlabors.imagesharp.3.1.5.nupkg.sha512",
|
||||
"C:\\Users\\Vincent\\.nuget\\packages\\system.codedom\\6.0.0\\system.codedom.6.0.0.nupkg.sha512",
|
||||
"C:\\Users\\Vincent\\.nuget\\packages\\system.componentmodel.annotations\\5.0.0\\system.componentmodel.annotations.5.0.0.nupkg.sha512",
|
||||
"C:\\Users\\Vincent\\.nuget\\packages\\system.configuration.configurationmanager\\6.0.1\\system.configuration.configurationmanager.6.0.1.nupkg.sha512",
|
||||
"C:\\Users\\Vincent\\.nuget\\packages\\system.data.sqlclient\\4.8.6\\system.data.sqlclient.4.8.6.nupkg.sha512",
|
||||
"C:\\Users\\Vincent\\.nuget\\packages\\system.drawing.common\\6.0.0\\system.drawing.common.6.0.0.nupkg.sha512",
|
||||
"C:\\Users\\Vincent\\.nuget\\packages\\system.security.accesscontrol\\6.0.0\\system.security.accesscontrol.6.0.0.nupkg.sha512",
|
||||
"C:\\Users\\Vincent\\.nuget\\packages\\system.security.cryptography.protecteddata\\6.0.0\\system.security.cryptography.protecteddata.6.0.0.nupkg.sha512",
|
||||
"C:\\Users\\Vincent\\.nuget\\packages\\system.security.permissions\\6.0.0\\system.security.permissions.6.0.0.nupkg.sha512",
|
||||
"C:\\Users\\Vincent\\.nuget\\packages\\system.security.principal.windows\\4.7.0\\system.security.principal.windows.4.7.0.nupkg.sha512",
|
||||
"C:\\Users\\Vincent\\.nuget\\packages\\system.windows.extensions\\6.0.0\\system.windows.extensions.6.0.0.nupkg.sha512"
|
||||
],
|
||||
"logs": []
|
||||
}
|
||||
Reference in New Issue
Block a user