This commit is contained in:
2026-05-17 20:54:09 -04:00
parent 6da2183583
commit 74c21ee5cc
3000 changed files with 11794 additions and 15301 deletions

View File

@@ -52,6 +52,11 @@ public class ApplicationDbContext(DbContextOptions<ApplicationDbContext> options
public DbSet<BlogPostTag> BlogPostTags { get; set; }
public DbSet<BlogPostViewCount> BlogPostViews { get; set; }
/// <summary>
/// Only allowed to have 1 row
/// </summary>
public DbSet<HomePageConfiguration> HomePageConfiguration { get; set; }
/// <summary>
/// Configuration for what featured artifacts will be show on the homepage of the search page
@@ -117,6 +122,11 @@ public class ApplicationDbContext(DbContextOptions<ApplicationDbContext> options
.WithOne(file => file.ParentBlogPost)
.HasForeignKey<FilePathListing>(file => file.ParentBlogPostId);
modelBuilder.Entity<HomePageConfiguration>()
.HasOne(config => config.HomePageBanner)
.WithOne(file => file.HomePageConfiguration)
.HasForeignKey<FilePathListing>(file => file.HomePageConfigurationId);
// Create the search vector columns for artifat groupings
modelBuilder.Entity<ArtifactGrouping>()
.HasGeneratedTsVectorColumn(

View File

@@ -0,0 +1,28 @@

using Microsoft.EntityFrameworkCore;
using System.Runtime.InteropServices.Marshalling;
namespace OpenArchival.DataAccess;
public static class HomepageConfigurationSeeder
{
public static async Task SeedHomepageConfig(IServiceProvider serviceProvider)
{
var contextFactory = serviceProvider.GetRequiredService<IDbContextFactory<ApplicationDbContext>>();
await using var context = await contextFactory.CreateDbContextAsync();
HomePageConfiguration? existingConfig = await context.HomePageConfiguration.FirstOrDefaultAsync();
if (existingConfig == null)
{
var config = new HomePageConfiguration() {
Content = "<p>No homepage content configured</p>",
HomePageBanner = null,
SliderEntries = null
};
context.HomePageConfiguration.Add(config);
await context.SaveChangesAsync();
}
}
}

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,107 @@
using Microsoft.EntityFrameworkCore.Migrations;
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
#nullable disable
namespace OpenArchival.DataAccess.Migrations
{
/// <inheritdoc />
public partial class HomePageConfiguration : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<int>(
name: "HomePageConfigurationId",
table: "SearchPageSliderEntries",
type: "integer",
nullable: true);
migrationBuilder.AddColumn<bool>(
name: "IsHomePageSlider",
table: "SearchPageSliderEntries",
type: "boolean",
nullable: false,
defaultValue: false);
migrationBuilder.AddColumn<int>(
name: "HomePageConfigurationId",
table: "ArtifactFilePaths",
type: "integer",
nullable: true);
migrationBuilder.CreateTable(
name: "HomePageConfiguration",
columns: table => new
{
Id = table.Column<int>(type: "integer", nullable: false)
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
Content = table.Column<string>(type: "text", nullable: true)
},
constraints: table =>
{
table.PrimaryKey("PK_HomePageConfiguration", x => x.Id);
});
migrationBuilder.CreateIndex(
name: "IX_SearchPageSliderEntries_HomePageConfigurationId",
table: "SearchPageSliderEntries",
column: "HomePageConfigurationId");
migrationBuilder.CreateIndex(
name: "IX_ArtifactFilePaths_HomePageConfigurationId",
table: "ArtifactFilePaths",
column: "HomePageConfigurationId",
unique: true);
migrationBuilder.AddForeignKey(
name: "FK_ArtifactFilePaths_HomePageConfiguration_HomePageConfigurati~",
table: "ArtifactFilePaths",
column: "HomePageConfigurationId",
principalTable: "HomePageConfiguration",
principalColumn: "Id");
migrationBuilder.AddForeignKey(
name: "FK_SearchPageSliderEntries_HomePageConfiguration_HomePageConfi~",
table: "SearchPageSliderEntries",
column: "HomePageConfigurationId",
principalTable: "HomePageConfiguration",
principalColumn: "Id");
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropForeignKey(
name: "FK_ArtifactFilePaths_HomePageConfiguration_HomePageConfigurati~",
table: "ArtifactFilePaths");
migrationBuilder.DropForeignKey(
name: "FK_SearchPageSliderEntries_HomePageConfiguration_HomePageConfi~",
table: "SearchPageSliderEntries");
migrationBuilder.DropTable(
name: "HomePageConfiguration");
migrationBuilder.DropIndex(
name: "IX_SearchPageSliderEntries_HomePageConfigurationId",
table: "SearchPageSliderEntries");
migrationBuilder.DropIndex(
name: "IX_ArtifactFilePaths_HomePageConfigurationId",
table: "ArtifactFilePaths");
migrationBuilder.DropColumn(
name: "HomePageConfigurationId",
table: "SearchPageSliderEntries");
migrationBuilder.DropColumn(
name: "IsHomePageSlider",
table: "SearchPageSliderEntries");
migrationBuilder.DropColumn(
name: "HomePageConfigurationId",
table: "ArtifactFilePaths");
}
}
}

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,22 @@
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace OpenArchival.DataAccess.Migrations
{
/// <inheritdoc />
public partial class UpdateHomePage : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
}
}
}

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,38 @@
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace OpenArchival.DataAccess.Migrations
{
/// <inheritdoc />
public partial class ThumbnailsAdded : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<string>(
name: "LargeThumbnailPath",
table: "ArtifactFilePaths",
type: "text",
nullable: true);
migrationBuilder.AddColumn<string>(
name: "SmallThumbnailPath",
table: "ArtifactFilePaths",
type: "text",
nullable: true);
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "LargeThumbnailPath",
table: "ArtifactFilePaths");
migrationBuilder.DropColumn(
name: "SmallThumbnailPath",
table: "ArtifactFilePaths");
}
}
}

View File

@@ -773,6 +773,12 @@ namespace OpenArchival.DataAccess.Migrations
NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property<int>("Id"));
b.Property<int?>("HomePageConfigurationId")
.HasColumnType("integer");
b.Property<string>("LargeThumbnailPath")
.HasColumnType("text");
b.Property<string>("OriginalName")
.IsRequired()
.HasColumnType("text");
@@ -787,8 +793,14 @@ namespace OpenArchival.DataAccess.Migrations
.IsRequired()
.HasColumnType("text");
b.Property<string>("SmallThumbnailPath")
.HasColumnType("text");
b.HasKey("Id");
b.HasIndex("HomePageConfigurationId")
.IsUnique();
b.HasIndex("ParentArtifactEntryId");
b.HasIndex("ParentBlogPostId")
@@ -797,6 +809,22 @@ namespace OpenArchival.DataAccess.Migrations
b.ToTable("ArtifactFilePaths");
});
modelBuilder.Entity("OpenArchival.DataAccess.HomePageConfiguration", b =>
{
b.Property<int>("Id")
.ValueGeneratedOnAdd()
.HasColumnType("integer");
NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property<int>("Id"));
b.Property<string>("Content")
.HasColumnType("text");
b.HasKey("Id");
b.ToTable("HomePageConfiguration");
});
modelBuilder.Entity("OpenArchival.DataAccess.ListedName", b =>
{
b.Property<int>("Id")
@@ -826,6 +854,12 @@ namespace OpenArchival.DataAccess.Migrations
.IsRequired()
.HasColumnType("text");
b.Property<int?>("HomePageConfigurationId")
.HasColumnType("integer");
b.Property<bool>("IsHomePageSlider")
.HasColumnType("boolean");
b.Property<int>("MaxCount")
.HasColumnType("integer");
@@ -835,6 +869,8 @@ namespace OpenArchival.DataAccess.Migrations
b.HasKey("Id");
b.HasIndex("HomePageConfigurationId");
b.ToTable("SearchPageSliderEntries");
});
@@ -1086,6 +1122,10 @@ namespace OpenArchival.DataAccess.Migrations
modelBuilder.Entity("OpenArchival.DataAccess.FilePathListing", b =>
{
b.HasOne("OpenArchival.DataAccess.HomePageConfiguration", "HomePageConfiguration")
.WithOne("HomePageBanner")
.HasForeignKey("OpenArchival.DataAccess.FilePathListing", "HomePageConfigurationId");
b.HasOne("OpenArchival.DataAccess.ArtifactEntry", "ParentArtifactEntry")
.WithMany("Files")
.HasForeignKey("ParentArtifactEntryId")
@@ -1096,11 +1136,22 @@ namespace OpenArchival.DataAccess.Migrations
.HasForeignKey("OpenArchival.DataAccess.FilePathListing", "ParentBlogPostId")
.OnDelete(DeleteBehavior.Cascade);
b.Navigation("HomePageConfiguration");
b.Navigation("ParentArtifactEntry");
b.Navigation("ParentBlogPost");
});
modelBuilder.Entity("OpenArchival.DataAccess.SearchPageSliderEntry", b =>
{
b.HasOne("OpenArchival.DataAccess.HomePageConfiguration", "HomePageConfiguration")
.WithMany("SliderEntries")
.HasForeignKey("HomePageConfigurationId");
b.Navigation("HomePageConfiguration");
});
modelBuilder.Entity("OpenArchival.DataAccess.ArtifactEntry", b =>
{
b.Navigation("Files");
@@ -1131,6 +1182,13 @@ namespace OpenArchival.DataAccess.Migrations
b.Navigation("Views")
.IsRequired();
});
modelBuilder.Entity("OpenArchival.DataAccess.HomePageConfiguration", b =>
{
b.Navigation("HomePageBanner");
b.Navigation("SliderEntries");
});
#pragma warning restore 612, 618
}
}

View File

@@ -16,8 +16,15 @@ public class FilePathListing
public BlogPost? ParentBlogPost { get; set; }
public int? ParentBlogPostId { get; set; }
public int? HomePageConfigurationId { get; set; }
public HomePageConfiguration? HomePageConfiguration { get; set; }
public required string OriginalName { get; set; }
public required string Path { get; set; }
public string? SmallThumbnailPath { get; set; }
public string? LargeThumbnailPath { get; set; }
}

View File

@@ -0,0 +1,17 @@
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
namespace OpenArchival.DataAccess;
public class HomePageConfiguration
{
[DefaultValue(1)]
[Key]
public int Id { get; set; }
public FilePathListing? HomePageBanner { get; set; }
public string? Content { get; set; }
public List<SearchPageSliderEntry>? SliderEntries { get; set; }
}

View File

@@ -1,4 +1,5 @@
using System.ComponentModel.DataAnnotations;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
namespace OpenArchival.DataAccess;
@@ -19,8 +20,21 @@ public class SearchPageSliderEntry
/// </summary>
public List<ArtifactEntryTag> FilterTags { get; set; } = [];
/// <summary>
/// Only set to true when the slider should show up on the home page, if it is false,
/// it is assumed that this slider should only show up on the featured page
/// </summary>
[DefaultValue(false)]
public bool IsHomePageSlider { get; set; }
/// <summary>
/// Linkage to the homepage configuration if this slider is part of it
/// </summary>
public HomePageConfiguration? HomePageConfiguration { get; set; }
/// <summary>
/// The maximum number of artifact entries that should be pulled for this slider
/// </summary>
public int MaxCount { get; set; } = 10;
}

View File

@@ -23,6 +23,8 @@ public class ArtifactGroupingProvider : IArtifactGroupingProvider
.Include(g => g.Category)
.Include(g => g.IdentifierFields)
.Include(g => g.Type)
.Include(g => g.ChildArtifactEntries)
.ThenInclude(g => g.Files)
.Include(g => g.ChildArtifactEntries)
.ThenInclude(e => e.StorageLocation)
.Include(g => g.ChildArtifactEntries)

View File

@@ -15,7 +15,7 @@ using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("OpenArchival.DataAccess")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+dde9ffcedb0cf584318d02205327e3d89d7f3dfb")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+6da218358353bb54f8e6b58efa699ba221b50ff1")]
[assembly: System.Reflection.AssemblyProductAttribute("OpenArchival.DataAccess")]
[assembly: System.Reflection.AssemblyTitleAttribute("OpenArchival.DataAccess")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]

View File

@@ -1 +1 @@
dc52d04cc3c44ec1e1f7c68c59e1efcc9564b7d37139fb78e19ce06e69441da6
e3f19bf8b4909a3f2b3d061cb7409a8de0786b2cb5a7b56e8e43a83499a8faab

View File

@@ -1 +1 @@
12033627c1ff78e15b2b312a9bccbd47ec083d5390b0260510385bafa6fe4469
c74cf25712cae8e05d675ccd0abef7281af24da55c2403319722be839360880d

View File

@@ -1,157 +1,3 @@
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\OpenArchival.DataAccess.staticwebassets.endpoints.json
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\OpenArchival.DataAccess.exe
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\OpenArchival.DataAccess.deps.json
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\OpenArchival.DataAccess.runtimeconfig.json
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\OpenArchival.DataAccess.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\OpenArchival.DataAccess.pdb
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\Confi.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\EFCore.NamingConventions.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\EntityFramework.SqlServer.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\EntityFramework.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\Humanizer.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\Microsoft.AspNetCore.Cryptography.Internal.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\Microsoft.AspNetCore.Cryptography.KeyDerivation.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\Microsoft.Bcl.AsyncInterfaces.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\Microsoft.Build.Locator.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\Microsoft.CodeAnalysis.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\Microsoft.CodeAnalysis.CSharp.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\Microsoft.CodeAnalysis.CSharp.Workspaces.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\Microsoft.CodeAnalysis.Workspaces.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\Microsoft.CodeAnalysis.Workspaces.MSBuild.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\Microsoft.EntityFrameworkCore.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\Microsoft.EntityFrameworkCore.Abstractions.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\Microsoft.EntityFrameworkCore.Design.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\Microsoft.EntityFrameworkCore.Relational.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\Microsoft.Extensions.Caching.Abstractions.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\Microsoft.Extensions.Caching.Memory.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\Microsoft.Extensions.Configuration.Abstractions.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\Microsoft.Extensions.DependencyInjection.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\Microsoft.Extensions.DependencyModel.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\Microsoft.Extensions.Identity.Core.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\Microsoft.Extensions.Identity.Stores.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\Microsoft.Extensions.Logging.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\Microsoft.Extensions.Logging.Abstractions.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\Microsoft.Extensions.Options.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\Microsoft.Extensions.Primitives.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\Microsoft.Win32.SystemEvents.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\Mono.TextTemplating.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\Npgsql.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\Npgsql.EntityFrameworkCore.PostgreSQL.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\Persic.EF.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\Persic.EF.Postgres.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\System.CodeDom.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\System.Composition.AttributedModel.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\System.Composition.Convention.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\System.Composition.Hosting.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\System.Composition.Runtime.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\System.Composition.TypedParts.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\System.Configuration.ConfigurationManager.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\System.Data.SqlClient.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\System.Drawing.Common.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\System.Security.Cryptography.ProtectedData.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\System.Security.Permissions.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\System.Windows.Extensions.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\cs\Microsoft.CodeAnalysis.resources.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\de\Microsoft.CodeAnalysis.resources.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\es\Microsoft.CodeAnalysis.resources.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\fr\Microsoft.CodeAnalysis.resources.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\it\Microsoft.CodeAnalysis.resources.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\ja\Microsoft.CodeAnalysis.resources.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\ko\Microsoft.CodeAnalysis.resources.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\pl\Microsoft.CodeAnalysis.resources.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\pt-BR\Microsoft.CodeAnalysis.resources.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\ru\Microsoft.CodeAnalysis.resources.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\tr\Microsoft.CodeAnalysis.resources.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\zh-Hans\Microsoft.CodeAnalysis.resources.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\zh-Hant\Microsoft.CodeAnalysis.resources.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\cs\Microsoft.CodeAnalysis.CSharp.resources.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\de\Microsoft.CodeAnalysis.CSharp.resources.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\es\Microsoft.CodeAnalysis.CSharp.resources.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\fr\Microsoft.CodeAnalysis.CSharp.resources.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\it\Microsoft.CodeAnalysis.CSharp.resources.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\ja\Microsoft.CodeAnalysis.CSharp.resources.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\ko\Microsoft.CodeAnalysis.CSharp.resources.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\pl\Microsoft.CodeAnalysis.CSharp.resources.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\pt-BR\Microsoft.CodeAnalysis.CSharp.resources.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\ru\Microsoft.CodeAnalysis.CSharp.resources.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\tr\Microsoft.CodeAnalysis.CSharp.resources.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.resources.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.resources.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\cs\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\de\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\es\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\fr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\it\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\ja\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\ko\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\pl\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\pt-BR\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\ru\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\tr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\cs\Microsoft.CodeAnalysis.Workspaces.resources.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\de\Microsoft.CodeAnalysis.Workspaces.resources.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\es\Microsoft.CodeAnalysis.Workspaces.resources.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\fr\Microsoft.CodeAnalysis.Workspaces.resources.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\it\Microsoft.CodeAnalysis.Workspaces.resources.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\ja\Microsoft.CodeAnalysis.Workspaces.resources.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\ko\Microsoft.CodeAnalysis.Workspaces.resources.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\pl\Microsoft.CodeAnalysis.Workspaces.resources.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\pt-BR\Microsoft.CodeAnalysis.Workspaces.resources.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\ru\Microsoft.CodeAnalysis.Workspaces.resources.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\tr\Microsoft.CodeAnalysis.Workspaces.resources.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\zh-Hans\Microsoft.CodeAnalysis.Workspaces.resources.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\zh-Hant\Microsoft.CodeAnalysis.Workspaces.resources.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\cs\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\de\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\es\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\fr\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\it\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\ja\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\ko\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\pl\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\pt-BR\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\ru\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\tr\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\zh-Hans\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\zh-Hant\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\runtimes\win\lib\net6.0\Microsoft.Win32.SystemEvents.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\runtimes\win-arm64\native\sni.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\runtimes\win-x64\native\sni.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\runtimes\win-x86\native\sni.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\runtimes\unix\lib\netcoreapp2.1\System.Data.SqlClient.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\runtimes\win\lib\netcoreapp2.1\System.Data.SqlClient.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\runtimes\unix\lib\net6.0\System.Drawing.Common.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\runtimes\win\lib\net6.0\System.Drawing.Common.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\runtimes\win\lib\net6.0\System.Security.Cryptography.ProtectedData.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\runtimes\win\lib\net6.0\System.Windows.Extensions.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\OpenArchival.DataAccess.csproj.AssemblyReference.cache
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\rpswa.dswa.cache.json
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\OpenArchival.DataAccess.GeneratedMSBuildEditorConfig.editorconfig
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\OpenArchival.DataAccess.AssemblyInfoInputs.cache
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\OpenArchival.DataAccess.AssemblyInfo.cs
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\OpenArchival.DataAccess.csproj.CoreCompileInputs.cache
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\OpenArchival.DataAccess.MvcApplicationPartsAssemblyInfo.cache
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\OpenArchival.DataAccess.sourcelink.json
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\rjimswa.dswa.cache.json
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\rjsmrazor.dswa.cache.json
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\rjsmcshtml.dswa.cache.json
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\scopedcss\bundle\OpenArchival.DataAccess.styles.css
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.json.cache
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.development.json
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.build.endpoints.json
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\OpenArch.D40B5A94.Up2Date
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\OpenArchival.DataAccess.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\refint\OpenArchival.DataAccess.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\OpenArchival.DataAccess.pdb
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\OpenArchival.DataAccess.genruntimeconfig.cache
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\ref\OpenArchival.DataAccess.dll
C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.upToDateCheck.txt
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\OpenArchival.DataAccess.staticwebassets.endpoints.json
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\OpenArchival.DataAccess.exe
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.DataAccess\bin\Debug\net9.0\OpenArchival.DataAccess.deps.json
@@ -305,4 +151,3 @@ C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.DataAccess\obj\Debug\n
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\OpenArchival.DataAccess.pdb
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\OpenArchival.DataAccess.genruntimeconfig.cache
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\ref\OpenArchival.DataAccess.dll
C:\Users\Vincent\Documents\dev\Open-Archival\OpenArchival.DataAccess\obj\Debug\net9.0\staticwebassets.upToDateCheck.txt

View File

@@ -1 +1 @@
{"GlobalPropertiesHash":"xv45WNT2g2XkogtgnZ44UpFRBjZ2iZdpriOCF04ZK+0=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["Ap1LS2Bu\u002BlbeHcQc7/mIjvf\u002BPMTy7htRuShcfgTbCrA=","/\u002BUMDoi/qJv4E27Z1Kdi5OA8EElZtZDVp1UNzs3Q57Y=","AZ2OSNlSeBWOQOKxwZ4sozly3K8\u002BI0/3eD0YApiQVCw=","pMd54fdzP1kbqafTlUzXcRB4MPEHWTF0FW0zgCl6j\u002BQ=","6r9KZkIwYsT3Ht846lxPtYo7gb0MkP1lhyqOsADXq6U="],"CachedAssets":{},"CachedCopyCandidates":{}}
{"GlobalPropertiesHash":"xv45WNT2g2XkogtgnZ44UpFRBjZ2iZdpriOCF04ZK+0=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["JTx5kbTRG9DLOC8voAhSwO22hW6a2bJAYXTiHiP/s30=","/\u002BUMDoi/qJv4E27Z1Kdi5OA8EElZtZDVp1UNzs3Q57Y=","AZ2OSNlSeBWOQOKxwZ4sozly3K8\u002BI0/3eD0YApiQVCw=","pMd54fdzP1kbqafTlUzXcRB4MPEHWTF0FW0zgCl6j\u002BQ=","svU/qfbjYNE10h7bnOxWWLPtNJxEfFMNpaNzf6t8O70="],"CachedAssets":{},"CachedCopyCandidates":{}}

View File

@@ -1 +1 @@
{"GlobalPropertiesHash":"DYy3s2sbfV/4UGwrtlTKRWjMCNJZIQmzu5Royx6M/LQ=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["Ap1LS2Bu\u002BlbeHcQc7/mIjvf\u002BPMTy7htRuShcfgTbCrA=","/\u002BUMDoi/qJv4E27Z1Kdi5OA8EElZtZDVp1UNzs3Q57Y=","AZ2OSNlSeBWOQOKxwZ4sozly3K8\u002BI0/3eD0YApiQVCw=","pMd54fdzP1kbqafTlUzXcRB4MPEHWTF0FW0zgCl6j\u002BQ=","6r9KZkIwYsT3Ht846lxPtYo7gb0MkP1lhyqOsADXq6U="],"CachedAssets":{},"CachedCopyCandidates":{}}
{"GlobalPropertiesHash":"DYy3s2sbfV/4UGwrtlTKRWjMCNJZIQmzu5Royx6M/LQ=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["JTx5kbTRG9DLOC8voAhSwO22hW6a2bJAYXTiHiP/s30=","/\u002BUMDoi/qJv4E27Z1Kdi5OA8EElZtZDVp1UNzs3Q57Y=","AZ2OSNlSeBWOQOKxwZ4sozly3K8\u002BI0/3eD0YApiQVCw=","pMd54fdzP1kbqafTlUzXcRB4MPEHWTF0FW0zgCl6j\u002BQ=","svU/qfbjYNE10h7bnOxWWLPtNJxEfFMNpaNzf6t8O70="],"CachedAssets":{},"CachedCopyCandidates":{}}

View File

@@ -1,28 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Target Name="GetEFProjectMetadata">
<MSBuild Condition=" '$(TargetFramework)' == '' "
Projects="$(MSBuildProjectFile)"
Targets="GetEFProjectMetadata"
Properties="TargetFramework=$(TargetFrameworks.Split(';')[0]);EFProjectMetadataFile=$(EFProjectMetadataFile)" />
<ItemGroup Condition=" '$(TargetFramework)' != '' ">
<EFProjectMetadata Include="AssemblyName: $(AssemblyName)" />
<EFProjectMetadata Include="Language: $(Language)" />
<EFProjectMetadata Include="OutputPath: $(OutputPath)" />
<EFProjectMetadata Include="Platform: $(Platform)" />
<EFProjectMetadata Include="PlatformTarget: $(PlatformTarget)" />
<EFProjectMetadata Include="ProjectAssetsFile: $(ProjectAssetsFile)" />
<EFProjectMetadata Include="ProjectDir: $(ProjectDir)" />
<EFProjectMetadata Include="RootNamespace: $(RootNamespace)" />
<EFProjectMetadata Include="RuntimeFrameworkVersion: $(RuntimeFrameworkVersion)" />
<EFProjectMetadata Include="TargetFileName: $(TargetFileName)" />
<EFProjectMetadata Include="TargetFrameworkMoniker: $(TargetFrameworkMoniker)" />
<EFProjectMetadata Include="Nullable: $(Nullable)" />
<EFProjectMetadata Include="TargetFramework: $(TargetFramework)" />
<EFProjectMetadata Include="TargetPlatformIdentifier: $(TargetPlatformIdentifier)" />
</ItemGroup>
<WriteLinesToFile Condition=" '$(TargetFramework)' != '' "
File="$(EFProjectMetadataFile)"
Lines="@(EFProjectMetadata)" />
</Target>
</Project>

View File

@@ -1,4 +0,0 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v9.0", FrameworkDisplayName = ".NET 9.0")]

View File

@@ -1,24 +0,0 @@
//------------------------------------------------------------------------------
// <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.Extensions.Configuration.UserSecrets.UserSecretsIdAttribute("699b0057-1557-4ee6-a42f-747e6cc9d2c0")]
[assembly: System.Reflection.AssemblyCompanyAttribute("OpenArchival.DataAccess")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+b34449808fa29388ff6ca79b560f657d74738fdd")]
[assembly: System.Reflection.AssemblyProductAttribute("OpenArchival.DataAccess")]
[assembly: System.Reflection.AssemblyTitleAttribute("OpenArchival.DataAccess")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Generated by the MSBuild WriteCodeFragment class.

View File

@@ -1 +0,0 @@
96be221ecec424b8b64c9756ef03cb2c76f63efa169f86108d11887f1493bc61

View File

@@ -1,29 +0,0 @@
is_global = true
build_property.TargetFramework = net9.0
build_property.TargetFramework = net9.0
build_property.TargetPlatformMinVersion =
build_property.TargetPlatformMinVersion =
build_property.UsingMicrosoftNETSdkWeb = true
build_property.UsingMicrosoftNETSdkWeb = true
build_property.ProjectTypeGuids =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = OpenArchival.DataAccess
build_property.RootNamespace = OpenArchival.DataAccess
build_property.ProjectDir = C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess\
build_property.EnableComHosting =
build_property.EnableGeneratedComInterfaceComImportInterop =
build_property.RazorLangVersion = 9.0
build_property.SupportLocalizedComponentNames =
build_property.GenerateRazorMetadataSourceChecksumAttributes =
build_property.MSBuildProjectDirectory = C:\Users\vtall\source\repos\vtallen\Open-Archival\OpenArchival.DataAccess
build_property._RazorSourceGeneratorDebug =
build_property.EffectiveAnalysisLevelStyle = 9.0
build_property.EnableCodeStyleSeverity =

View File

@@ -1,17 +0,0 @@
// <auto-generated/>
global using global::Microsoft.AspNetCore.Builder;
global using global::Microsoft.AspNetCore.Hosting;
global using global::Microsoft.AspNetCore.Http;
global using global::Microsoft.AspNetCore.Routing;
global using global::Microsoft.Extensions.Configuration;
global using global::Microsoft.Extensions.DependencyInjection;
global using global::Microsoft.Extensions.Hosting;
global using global::Microsoft.Extensions.Logging;
global using global::System;
global using global::System.Collections.Generic;
global using global::System.IO;
global using global::System.Linq;
global using global::System.Net.Http;
global using global::System.Net.Http.Json;
global using global::System.Threading;
global using global::System.Threading.Tasks;